From ed773f42e3ea50081fc4f84ae22a6d5c18ca4d5c Mon Sep 17 00:00:00 2001 From: xAphex <5391237+xAphex@users.noreply.github.com> Date: Sat, 23 Dec 2017 14:23:20 +0200 Subject: [PATCH 1/4] fix navbar theme for uBO --- userContent.css | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/userContent.css b/userContent.css index 04891c0..e89da06 100644 --- a/userContent.css +++ b/userContent.css @@ -1060,6 +1060,22 @@ #firewallContainer.minimized > div.isDomain.totalAllowed > span:first-of-type::before { background-color: var(--green-80) !important; } + + #dashboard-nav-widgets { + border-bottom: 1px solid var(--grey-60) !important; + background-color: var(--grey-80) !important; + } + + .tabButton { + background-color: var(--grey-70) !important; + border: 1px solid var(--grey-60) !important; + border-bottom: 1px solid var(--grey-60) !important; + } + + .tabButton.selected { + background-color: var(--grey-70) !important; + border-bottom: 1px solid var(--grey-70) !important; + } } @-moz-document url-prefix("https://addons.mozilla.org") { /* Header & Footer */ @@ -1297,4 +1313,4 @@ .pi, .entity, .attribute-name, .attribute-value) { color: #de7474 !important; } -} \ No newline at end of file +} From dff3d1ad1e94da91d1a5920edc108a42252b167c Mon Sep 17 00:00:00 2001 From: xAphex <5391237+xAphex@users.noreply.github.com> Date: Sat, 23 Dec 2017 14:34:52 +0200 Subject: [PATCH 2/4] Update userContent.css --- userContent.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/userContent.css b/userContent.css index e89da06..b25c1a9 100644 --- a/userContent.css +++ b/userContent.css @@ -1076,6 +1076,10 @@ background-color: var(--grey-70) !important; border-bottom: 1px solid var(--grey-70) !important; } + + input[type="number"] { + background-color: var(--grey-60); + } } @-moz-document url-prefix("https://addons.mozilla.org") { /* Header & Footer */ From a5e3f1fcb66d631340f9e25dd1da767244f49bba Mon Sep 17 00:00:00 2001 From: xAphex <5391237+xAphex@users.noreply.github.com> Date: Sat, 23 Dec 2017 14:42:30 +0200 Subject: [PATCH 3/4] made it more dark theme. made it more dark theme, also fixed a few errors. --- userContent.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/userContent.css b/userContent.css index b25c1a9..23450e3 100644 --- a/userContent.css +++ b/userContent.css @@ -1078,7 +1078,11 @@ } input[type="number"] { - background-color: var(--grey-60); + background-color: var(--grey-60) !important; + } + + #externalLists { + background-color: var(--grey-60) !important; } } @-moz-document url-prefix("https://addons.mozilla.org") { From cfef6f90099cdd41a4d0674eaab52d5738bc0f91 Mon Sep 17 00:00:00 2001 From: xAphex <5391237+xAphex@users.noreply.github.com> Date: Sat, 23 Dec 2017 16:02:44 +0200 Subject: [PATCH 4/4] Fix for border color when not in focus. --- userChrome.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index 77da168..e89e382 100644 --- a/userChrome.css +++ b/userChrome.css @@ -648,6 +648,13 @@ url(chrome://browser/content/places/bookmarkProperties.xul) { background: var(--blue-40) !important; } + treechildren:not(.autocomplete-treebody)::-moz-tree-row(selected) { + -moz-border-top-colors: var(--grey-80) !important; + -moz-border-right-colors: var(--grey-80) !important; + -moz-border-left-colors: var(--grey-80) !important; + -moz-border-bottom-colors: var(--grey-80) !important; + } + #placeContent treechildren:not(.autocomplete-treebody)::-moz-tree-row(odd) { background: rgba(12, 12, 13, .1) !important; } @@ -752,4 +759,4 @@ browser[type="content"] > html { .tab-line[selected="true"] { background-color: var(--primary-accent-color) !important; -} \ No newline at end of file +}