diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-06-20 17:57:59 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-20 17:57:59 +0200 |
commit | b5ef99dc4c38ea44bd53c59c610cba6b9f01fe8c (patch) | |
tree | b4578499a1373232a345fedf6ae2084df25eaafe /application/palemoon/themes/linux/newtab | |
parent | c850e5ab026ef275d451bf122d6f81e4b0bf6a90 (diff) | |
download | UXP-b5ef99dc4c38ea44bd53c59c610cba6b9f01fe8c.tar UXP-b5ef99dc4c38ea44bd53c59c610cba6b9f01fe8c.tar.gz UXP-b5ef99dc4c38ea44bd53c59c610cba6b9f01fe8c.tar.lz UXP-b5ef99dc4c38ea44bd53c59c610cba6b9f01fe8c.tar.xz UXP-b5ef99dc4c38ea44bd53c59c610cba6b9f01fe8c.zip |
Issue #517 Part 4: Fix tile pinning
Diffstat (limited to 'application/palemoon/themes/linux/newtab')
-rw-r--r-- | application/palemoon/themes/linux/newtab/newTab.css | 44 |
1 files changed, 38 insertions, 6 deletions
diff --git a/application/palemoon/themes/linux/newtab/newTab.css b/application/palemoon/themes/linux/newtab/newTab.css index 9c132892e..794f25a4e 100644 --- a/application/palemoon/themes/linux/newtab/newTab.css +++ b/application/palemoon/themes/linux/newtab/newTab.css @@ -145,15 +145,47 @@ line-height: 24px; } +.newtab-site[pinned] .newtab-title { + padding-inline-start: 24px; +} + +.newtab-site[pinned] .newtab-title::before { + background-image: url(chrome://browser/skin/newtab/controls.png); + background-position: -74px -1px; + content: ""; + left: 2px; + top: 2px; + position: absolute; + width: 20px; + height: 20px; +} + +.newtab-site[pinned] .newtab-title:dir(rtl)::before { + left: auto; + right: 2px; +} + /* CONTROLS */ .newtab-control { - width: 24px; - height: 24px; - padding: 1px 2px 3px; + background-color: transparent; + background-size: 24px; border: none; + height: 24px; + width: 24px; + top: 4px; background: transparent url(chrome://browser/skin/newtab/controls.png); } +.newtab-control-pin:dir(ltr), +.newtab-control-block:dir(rtl) { + left: 4px; +} + +.newtab-control-block:dir(ltr), +.newtab-control-pin:dir(rtl) { + right: 4px; +} + .newtab-control-pin:hover { background-position: -24px 0; } @@ -162,15 +194,15 @@ background-position: -48px 0; } -.newtab-control-pin[pinned] { +.newtab-site[pinned] .newtab-control-pin { background-position: -72px 0; } -.newtab-control-pin[pinned]:hover { +.newtab-site[pinned] .newtab-control-pin:hover { background-position: -96px 0; } -.newtab-control-pin[pinned]:active { +.newtab-site[pinned] .newtab-control-pin:active { background-position: -120px 0; } |