From a2f8bb7bbfe87835bfed665a6b549427281076fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20Torbj=C3=B6rn=20Petersen?= Date: Thu, 3 Sep 2020 12:14:58 +0200 Subject: [PATCH 1/4] Update tabbar.css --- chrome/tabbar/tabbar.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/chrome/tabbar/tabbar.css b/chrome/tabbar/tabbar.css index 2d4b8ba7..045636bb 100755 --- a/chrome/tabbar/tabbar.css +++ b/chrome/tabbar/tabbar.css @@ -568,3 +568,6 @@ spacer[part="overflow-end-indicator"] } } } + +// Prevent pinned tabs from clipping into the URL bar +#TabsToolbar { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } From 847968c54be3d485a4df7541f63c135d89fc5eed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20Torbj=C3=B6rn=20Petersen?= Date: Thu, 3 Sep 2020 12:42:33 +0200 Subject: [PATCH 2/4] Update tabbar.css --- chrome/tabbar/tabbar.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chrome/tabbar/tabbar.css b/chrome/tabbar/tabbar.css index 045636bb..4dd9e24d 100755 --- a/chrome/tabbar/tabbar.css +++ b/chrome/tabbar/tabbar.css @@ -3,6 +3,9 @@ width: 0 !important; } +// Prevent pinned tabs from clipping into the URL bar +#TabsToolbar { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important; } + @media (-moz-mac-yosemite-theme) { #TabsToolbar @@ -568,6 +571,3 @@ spacer[part="overflow-end-indicator"] } } } - -// Prevent pinned tabs from clipping into the URL bar -#TabsToolbar { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } From a623f5c664654537d4d5c6f952f64332e239e7ca Mon Sep 17 00:00:00 2001 From: Nils Petersen Date: Fri, 4 Sep 2020 08:26:52 +0200 Subject: [PATCH 3/4] Optimize URL bar items border radius --- chrome/urlbar/urlbar.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/chrome/urlbar/urlbar.css b/chrome/urlbar/urlbar.css index c5ce071a..360da181 100755 --- a/chrome/urlbar/urlbar.css +++ b/chrome/urlbar/urlbar.css @@ -456,13 +456,17 @@ padding: 4px 8px !important; margin: 0 !important; border: 0 !important; - border-radius: 99px !important; +/* border-radius: 99px !important;*/ fill-opacity: 1 !important; transition: background-color .2s var(--ease-basic) !important; background: 0 !important; background-color: transparent !important; } +#star-button { + border-radius: 0 99px 99px 0 !important; +} + #tracking-protection-icon-container { background: 0 !important; From 80f974b98845e4eb60a8f39790daf18151687487 Mon Sep 17 00:00:00 2001 From: Nils Petersen Date: Fri, 4 Sep 2020 08:31:48 +0200 Subject: [PATCH 4/4] Update identity icon border radius as well --- chrome/urlbar/urlbar.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/chrome/urlbar/urlbar.css b/chrome/urlbar/urlbar.css index 360da181..ab0af531 100755 --- a/chrome/urlbar/urlbar.css +++ b/chrome/urlbar/urlbar.css @@ -463,6 +463,10 @@ background-color: transparent !important; } +#identity-box { + border-radius: 99px 0 0 99px !important; +} + #star-button { border-radius: 0 99px 99px 0 !important; }