Mercurial > hg > cmmr2012-drupal-site
comparison core/modules/contextual/css/contextual.icons.theme.css @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children | 12f9dff5fda9 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c75dbcec494b |
---|---|
1 /** | |
2 * @file | |
3 * Styling for contextual module icons. | |
4 */ | |
5 | |
6 /** | |
7 * Toolbar tab icon. | |
8 */ | |
9 .toolbar-bar .toolbar-icon-edit:before { | |
10 background-image: url(../../../misc/icons/bebebe/pencil.svg); | |
11 } | |
12 .toolbar-bar .toolbar-icon-edit:active:before, | |
13 .toolbar-bar .toolbar-icon-edit.is-active:before { | |
14 background-image: url(../../../misc/icons/ffffff/pencil.svg); | |
15 } | |
16 | |
17 /** | |
18 * Contextual trigger. | |
19 */ | |
20 .contextual .trigger { | |
21 background-image: url(../../../misc/icons/bebebe/pencil.svg); | |
22 background-position: center center; | |
23 background-repeat: no-repeat; | |
24 background-size: 16px 16px; | |
25 /* Override the .focusable height: auto */ | |
26 height: 26px !important; | |
27 /* Override the .focusable height: auto */ | |
28 width: 26px !important; | |
29 text-indent: -9999px; | |
30 } | |
31 | |
32 .contextual .trigger:hover { | |
33 background-image: url(../../../misc/icons/787878/pencil.svg); | |
34 } | |
35 | |
36 .contextual .trigger:focus { | |
37 background-image: url(../../../misc/icons/5181c6/pencil.svg); | |
38 outline: none; | |
39 } |