Mercurial > hg > isophonics-drupal-site
annotate core/modules/contextual/css/contextual.icons.theme.css @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children | af1871eacc83 |
rev | line source |
---|---|
Chris@0 | 1 /** |
Chris@0 | 2 * @file |
Chris@0 | 3 * Styling for contextual module icons. |
Chris@0 | 4 */ |
Chris@0 | 5 |
Chris@0 | 6 /** |
Chris@0 | 7 * Toolbar tab icon. |
Chris@0 | 8 */ |
Chris@0 | 9 .toolbar-bar .toolbar-icon-edit:before { |
Chris@0 | 10 background-image: url(../../../misc/icons/bebebe/pencil.svg); |
Chris@0 | 11 } |
Chris@0 | 12 .toolbar-bar .toolbar-icon-edit:active:before, |
Chris@0 | 13 .toolbar-bar .toolbar-icon-edit.is-active:before { |
Chris@0 | 14 background-image: url(../../../misc/icons/ffffff/pencil.svg); |
Chris@0 | 15 } |
Chris@0 | 16 |
Chris@0 | 17 /** |
Chris@0 | 18 * Contextual trigger. |
Chris@0 | 19 */ |
Chris@0 | 20 .contextual .trigger { |
Chris@0 | 21 background-image: url(../../../misc/icons/bebebe/pencil.svg); |
Chris@0 | 22 background-position: center center; |
Chris@0 | 23 background-repeat: no-repeat; |
Chris@0 | 24 background-size: 16px 16px; |
Chris@0 | 25 /* Override the .focusable height: auto */ |
Chris@0 | 26 height: 26px !important; |
Chris@0 | 27 /* Override the .focusable height: auto */ |
Chris@0 | 28 width: 26px !important; |
Chris@0 | 29 text-indent: -9999px; |
Chris@0 | 30 } |
Chris@0 | 31 |
Chris@0 | 32 .contextual .trigger:hover { |
Chris@0 | 33 background-image: url(../../../misc/icons/787878/pencil.svg); |
Chris@0 | 34 } |
Chris@0 | 35 |
Chris@0 | 36 .contextual .trigger:focus { |
Chris@0 | 37 background-image: url(../../../misc/icons/5181c6/pencil.svg); |
Chris@0 | 38 outline: none; |
Chris@0 | 39 } |