Skip to content
Snippets Groups Projects
Commit 217d9713 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1972872 by mgifford, Wim Leers: Pencil's need an alternative image for hover state.

parent f614976a
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -25,7 +25,7 @@
* Contextual trigger.
*/
.contextual .trigger {
background-image: url("../../../misc/icons/787878/pencil.svg");
background-image: url("../../../misc/icons/bebebe/pencil.svg");
background-position: center center;
background-repeat: no-repeat;
background-size: 16px 16px;
......@@ -37,5 +37,14 @@
}
.no-svg .contextual .trigger {
background-image: url("../../../misc/icons/bebebe/pencil.png");
}
.contextual .trigger:focus,
.contextual .trigger:hover {
background-image: url("../../../misc/icons/787878/pencil.svg");
}
.no-svg .contextual .trigger:focus,
.no-svg .contextual .trigger:hover {
background-image: url("../../../misc/icons/787878/pencil.png");
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment