From 1b70c67275a24af62691bcdb3b11023394530c08 Mon Sep 17 00:00:00 2001 From: MS_Y Date: Mon, 10 May 2021 06:30:41 +0000 Subject: [PATCH 1/3] Doc: update screenshot --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.org b/README.org index 22890de..58ce0ac 100644 --- a/README.org +++ b/README.org @@ -5,7 +5,7 @@ | *Wiki* | | | [[https://github.com/black7375/Firefox-UI-Fix/wiki/Screenshots][Screenshots]] | [[https://github.com/black7375/Firefox-UI-Fix/wiki/Compatibility-Issues-Solution][Compatibility Issues Solution]] | - [[https://user-images.githubusercontent.com/25581533/117531080-49bb4480-afd0-11eb-8b6a-f04559ed2ab7.png]] + [[https://user-images.githubusercontent.com/25581533/117615662-8d8d8580-b159-11eb-8b92-7d249e31d8f3.png]] (Fixed proton design) From 93784a42b4e831630e602989f37b8935f2da61af Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Mon, 10 May 2021 16:07:34 +0900 Subject: [PATCH 2/3] Fix: make to important --- userChrome.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/userChrome.css b/userChrome.css index 241c044..de880df 100644 --- a/userChrome.css +++ b/userChrome.css @@ -35,10 +35,10 @@ /** Tab Bar - Reduce Width, Show more tabs **********************************/ .titlebar-spacer[type="pre-tabs"] { - width: 30px; /* Original: 40px */ + width: 30px !important; /* Original: 40px */ } .titlebar-spacer[type="post-tabs"] { - width: 25px; /* Original: 40px */ + width: 25px !important; /* Original: 40px */ } :root { @@ -49,11 +49,11 @@ #new-tab-button > .toolbarbutton-icon, #alltabs-button > .toolbarbutton-badge-stack { /* Original: calc(2 * var(--toolbarbutton-inner-padding) + 16px) */ - width: calc(2 * var(--newtab-button-width-padding) + 16px); + width: calc(2 * var(--newtab-button-width-padding) + 16px) !important; /* Original: --toolbarbutton-inner-padding */ - padding-left: var(--newtab-button-width-padding); - padding-right: var(--newtab-button-width-padding); + padding-left: var(--newtab-button-width-padding) !important; + padding-right: var(--newtab-button-width-padding) !important; } :root[uidensity=compact] #tabbrowser-tabs[haspinnedtabs]:not([positionpinnedtabs]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab[first-visible-unpinned-tab] { @@ -63,8 +63,8 @@ :root:not([uidensity=touch]) #tabbrowser-arrowscrollbox::part(scrollbutton-up ), :root:not([uidensity=touch]) #tabbrowser-arrowscrollbox::part(scrollbutton-down) { /* Original: 4px */ - padding-left: 1px; - padding-right: 1px; + padding-left: 1px !important; + padding-right: 1px !important; } :root:not([uidensity=touch]) #new-tab-button, #alltabs-button { From fbd7fca51242f216be7292e239da029aa5443983 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Tue, 11 May 2021 09:14:41 +0900 Subject: [PATCH 3/3] Fix: Default new tab button size to original --- userChrome.css | 1 - 1 file changed, 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index de880df..c6e8477 100644 --- a/userChrome.css +++ b/userChrome.css @@ -45,7 +45,6 @@ --newtab-button-minus-width-padding: 2px; --newtab-button-width-padding: calc(var(--toolbarbutton-inner-padding) - var(--newtab-button-minus-width-padding)); } - #tabs-newtab-button > .toolbarbutton-icon, #new-tab-button > .toolbarbutton-icon, #alltabs-button > .toolbarbutton-badge-stack { /* Original: calc(2 * var(--toolbarbutton-inner-padding) + 16px) */