diff options
author | Alessio Vanni <vannilla@firemail.cc> | 2019-02-20 14:21:14 +0100 |
---|---|---|
committer | Alessio Vanni <vannilla@firemail.cc> | 2019-02-20 14:21:14 +0100 |
commit | 85496570ee5649ca1cf5fb8424fa2bee605ad276 (patch) | |
tree | c5ef7f6c80c0509dd7c8dd47914d5bc92d9cb0d0 | |
parent | 5787b5d439eb70e6ef882a4ce8ac3d9c97a6fc92 (diff) | |
download | ematrix-85496570ee5649ca1cf5fb8424fa2bee605ad276.tar.lz ematrix-85496570ee5649ca1cf5fb8424fa2bee605ad276.tar.xz ematrix-85496570ee5649ca1cf5fb8424fa2bee605ad276.zip |
Rename unrenamed IDs
-rw-r--r-- | css/legacy-toolbar-button.css | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/css/legacy-toolbar-button.css b/css/legacy-toolbar-button.css index ff5ec2b..23bcff3 100644 --- a/css/legacy-toolbar-button.css +++ b/css/legacy-toolbar-button.css @@ -20,20 +20,20 @@ uMatrix Home: https://github.com/gorhill/uMatrix */ -#umatrix-legacy-button { +#ematrix-button { list-style-image: url('../img/browsericons/icon19-19.png'); } -#umatrix-legacy-button.off { +#ematrix-button.off { list-style-image: url('../img/browsericons/icon19-off.png'); } -toolbar[iconsize="small"] #umatrix-legacy-button { +toolbar[iconsize="small"] #ematrix-button { list-style-image: url('../img/browsericons/icon19-19.png'); } -toolbar[iconsize="small"] #umatrix-legacy-button.off { +toolbar[iconsize="small"] #ematrix-button.off { list-style-image: url('../img/browsericons/icon19-off.png'); } -#umatrix-legacy-button[badge]::before { +#ematrix-button[badge]::before { background: #000; color: #fff; content: attr(badge); @@ -46,23 +46,23 @@ toolbar[iconsize="small"] #umatrix-legacy-button.off { popup (without firing any events). So just hide it instead. Note, can't actually *hide* it, or the same thing happens. **/ -#umatrix-legacy-button[badge=""]::before { +#ematrix-button[badge=""]::before { padding: 0; } /* Override off state when in palette */ -toolbarpaletteitem #umatrix-legacy-button.off { +toolbarpaletteitem #ematrix-button.off { list-style-image: url('../img/browsericons/icon19-12.png'); } /* Override badge when in palette */ -toolbarpaletteitem #umatrix-legacy-button[badge]::before { +toolbarpaletteitem #ematrix-button[badge]::before { content: none; } -/* Prevent pale moon from showing the arrow underneath the button */ +/* Prevent Pale Moon from showing the arrow underneath the button */ /* https://github.com/chrisaljoudi/uBlock/issues/1449#issuecomment-112112761 */ -#umatrix-legacy-button .toolbarbutton-menu-dropmarker { +#ematrix-button .toolbarbutton-menu-dropmarker { display: none; -moz-box-orient: horizontal; } |