Bug 1699465 - Use Proton Primary Blue for URL color in darktext themes. r=dao

Differential Revision: https://phabricator.services.mozilla.com/D108995
This commit is contained in:
Harry Twyford 2021-03-25 15:52:00 +00:00
Родитель 5688cf327e
Коммит 02b9c24a63
5 изменённых файлов: 27 добавлений и 3 удалений

Просмотреть файл

@ -203,12 +203,17 @@ menuitem.bookmark-item {
%include ../shared/urlbarView.inc.css
:root:not(:-moz-lwtheme) {
--urlbar-popup-url-color: -moz-nativehyperlinktext;
--urlbar-popup-action-color: -moz-nativehyperlinktext;
--autocomplete-popup-highlight-background: Highlight;
--autocomplete-popup-highlight-color: HighlightText;
}
@supports not -moz-bool-pref("browser.proton.urlbar.enabled") {
:root:not(:-moz-lwtheme) {
--urlbar-popup-url-color: -moz-nativehyperlinktext;
}
} /*** END !proton ***/
/* Translation infobar */
%include ../shared/translation/infobar.inc.css

Просмотреть файл

@ -54,6 +54,7 @@
--autocomplete-popup-highlight-background: var(--arrowpanel-dimmed);
--autocomplete-popup-highlight-color: rgb(21,20,26);
--urlbar-result-hover-bgcolor: rgb(240,240,244);
--urlbar-popup-url-color: rgb(0,97,224);
}
} /** END Proton **/
}

Просмотреть файл

@ -45,6 +45,7 @@
--urlbar-min-height: 32px;
--urlbar-icon-padding: 6px; /* (32px - 2px border - 2px padding - 16px icon) / 2 */
--urlbar-separator-color: var(--panel-separator-color);
--urlbar-popup-url-color: -moz-nativehyperlinktext;
--lwt-additional-images: none;
--lwt-background-alignment: right top;

Просмотреть файл

@ -18,7 +18,6 @@
--autocomplete-popup-highlight-color: HighlightText;
--urlbar-result-hover-bgcolor: var(--arrowpanel-dimmed);
--urlbar-popup-url-color: hsl(210, 77%, 47%);
--urlbar-popup-action-color: hsl(178, 100%, 28%);
/* Colors copied from in-content button styling */
@ -34,6 +33,18 @@
--urlbarView-item-inline-padding: calc(var(--urlbar-icon-padding) / 2 + 3px);
}
@supports not -moz-bool-pref("browser.proton.urlbar.enabled") {
:root {
--urlbar-popup-url-color: hsl(210, 77%, 47%);
}
} /*** END !proton ***/
@supports -moz-bool-pref("browser.proton.urlbar.enabled") {
:root:-moz-lwtheme {
--urlbar-popup-url-color: rgb(0,97,224);
}
} /*** END proton ***/
:root[lwt-toolbar-field-focus-brighttext] {
--urlbar-popup-url-color: var(--lwt-popup-brighttext-url-color);
--urlbar-popup-action-color: #30e60b;
@ -54,6 +65,7 @@
--autocomplete-popup-highlight-background: rgb(0, 99, 255);
--autocomplete-popup-highlight-color: white;
}
:root[lwt-toolbar-field-brighttext] {
--autocomplete-popup-highlight-background: rgb(0, 99, 225);
}

Просмотреть файл

@ -572,7 +572,6 @@ menuitem.bookmark-item {
@media (-moz-windows-default-theme: 0) {
:root:not(:-moz-lwtheme) {
--urlbar-popup-url-color: -moz-nativehyperlinktext;
--urlbar-popup-action-color: -moz-nativehyperlinktext;
--urlbarView-button-text: buttontext;
@ -587,6 +586,12 @@ menuitem.bookmark-item {
}
}
@supports not -moz-bool-pref("browser.proton.urlbar.enabled") {
:root:not(:-moz-lwtheme) {
--urlbar-popup-url-color: -moz-nativehyperlinktext;
}
} /*** END !proton ***/
/* Autocomplete */
%include ../shared/autocomplete.inc.css