Mercurial > hg > isophonics-drupal-site
annotate core/modules/contextual/css/contextual.icons.theme.css @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
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@18 | 21 /* Override the .focusable height: auto */ |
Chris@18 | 22 width: 26px !important; |
Chris@0 | 23 /* Override the .focusable height: auto */ |
Chris@0 | 24 height: 26px !important; |
Chris@0 | 25 text-indent: -9999px; |
Chris@18 | 26 background-image: url(../../../misc/icons/bebebe/pencil.svg); |
Chris@18 | 27 background-repeat: no-repeat; |
Chris@18 | 28 background-position: center center; |
Chris@18 | 29 background-size: 16px 16px; |
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@18 | 37 outline: none; |
Chris@0 | 38 background-image: url(../../../misc/icons/5181c6/pencil.svg); |
Chris@0 | 39 } |