mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
981 B
CSS
31 lines
981 B
CSS
/* Reading List button */
|
|
|
|
#urlbar:not([focused]):not(:hover) #readinglist-addremove-button {
|
|
display: none;
|
|
}
|
|
|
|
#readinglist-addremove-button {
|
|
list-style-image: url("chrome://browser/skin/readinglist/icons.svg#addpage");
|
|
-moz-image-region: rect(0, 14px, 14px, 0);
|
|
}
|
|
|
|
#readinglist-addremove-button:hover {
|
|
list-style-image: url("chrome://browser/skin/readinglist/icons.svg#addpage-hover");
|
|
}
|
|
|
|
#readinglist-addremove-button:active {
|
|
list-style-image: url("chrome://browser/skin/readinglist/icons.svg#addpage-active");
|
|
}
|
|
|
|
#readinglist-addremove-button[already-added="true"] {
|
|
list-style-image: url("chrome://browser/skin/readinglist/icons.svg#alreadyadded");
|
|
}
|
|
|
|
#readinglist-addremove-button[already-added="true"]:hover {
|
|
list-style-image: url("chrome://browser/skin/readinglist/icons.svg#alreadyadded-hover");
|
|
}
|
|
|
|
#readinglist-addremove-button[already-added="true"]:active {
|
|
list-style-image: url("chrome://browser/skin/readinglist/icons.svg#alreadyadded-active");
|
|
}
|