Entries: Update color vars to last changes

This commit is contained in:
Rafael Mardojai CM 2022-05-21 19:47:41 -05:00
parent 868e1d51d1
commit b7002576ea
No known key found for this signature in database
GPG Key ID: 2B2DAB2A58566C84
3 changed files with 7 additions and 22 deletions

View File

@ -10,8 +10,8 @@
--gnome-browser-before-load-background: #242424; --gnome-browser-before-load-background: #242424;
/* Accent */ /* Accent */
--gnome-accent-bg: #3584e4; --gnome-accent-bg: #3584e4;
--gnome-accent: #78aeed; --gnome-accent: #78aeed;
/* Toolbars */ /* Toolbars */
--gnome-toolbar-background: #242424; --gnome-toolbar-background: #242424;
@ -59,17 +59,11 @@
--gnome-button-active-close-background: var(--gnome-button-active-background); --gnome-button-active-close-background: var(--gnome-button-active-background);
/* Entries */ /* Entries */
--gnome-entry-background: rgba(255, 255, 255, .1); --gnome-entry-background: rgba(255, 255, 255, .1);
--gnome-entry-border-color: none;
--gnome-entry-box-shadow: none;
--gnome-entry-color: #ffffff; --gnome-entry-color: #ffffff;
--gnome-inactive-entry-background: #2E2E2E; --gnome-inactive-entry-background: #2E2E2E;
--gnome-inactive-entry-border-color: none;
--gnome-inactive-entry-box-shadow: none;
--gnome-inactive-entry-color: #d6d6d6; --gnome-inactive-entry-color: #d6d6d6;
--gnome-focused-urlbar-border-color: var(--gnome-accent); --gnome-focused-urlbar-border-color: rgba(120, 174, 237, .5); /* Same as --gnome-accent but with opacity*/
--gnome-focused-urlbar-item-hover: #4c4c4c;
--gnome-urlbar-view: #383838;
/* Switch */ /* Switch */
--gnome-switch-background: #535353; --gnome-switch-background: #535353;

View File

@ -50,7 +50,6 @@
--gnome-button-suggested-action-background: var(--gnome-accent-bg); --gnome-button-suggested-action-background: var(--gnome-accent-bg);
--gnome-button-suggested-action-hover-background: var(--gnome-accent-bg); --gnome-button-suggested-action-hover-background: var(--gnome-accent-bg);
--gnome-button-suggested-action-active-background: var(--gnome-accent-bg); --gnome-button-suggested-action-active-background: var(--gnome-accent-bg);
--gnome-button-destructive-action-background: #e01b24; --gnome-button-destructive-action-background: #e01b24;
--gnome-button-destructive-action-hover-background: #e01b24; --gnome-button-destructive-action-hover-background: #e01b24;
--gnome-button-destructive-action-active-background: #e01b24; --gnome-button-destructive-action-active-background: #e01b24;
@ -62,16 +61,10 @@
/* Entries */ /* Entries */
--gnome-entry-background: rgba(0, 0, 0, .08); --gnome-entry-background: rgba(0, 0, 0, .08);
--gnome-entry-border-color: none;
--gnome-entry-box-shadow: none;
--gnome-entry-color: #303030; --gnome-entry-color: #303030;
--gnome-inactive-entry-background: #F0F0F0; --gnome-inactive-entry-background: #F0F0F0;
--gnome-inactive-entry-border-color: none;
--gnome-inactive-entry-box-shadow: none;
--gnome-inactive-entry-color: #303030; --gnome-inactive-entry-color: #303030;
--gnome-focused-urlbar-border-color: var(--gnome-accent); --gnome-focused-urlbar-border-color: var(--gnome-accent);
--gnome-focused-urlbar-item-hover: #ebebeb;
--gnome-urlbar-view: #FFFFFF;
/* Switch */ /* Switch */
--gnome-switch-background: #E0E0E0; --gnome-switch-background: #E0E0E0;

View File

@ -14,9 +14,9 @@
#editBMPanel_tagsField { #editBMPanel_tagsField {
-moz-appearance: none !important; -moz-appearance: none !important;
background: var(--gnome-entry-background) !important; background: var(--gnome-entry-background) !important;
border: 1px solid var(--gnome-entry-border-color) !important; border: 0;
border-radius: 8px !important; border-radius: 8px !important;
box-shadow: var(--gnome-entry-box-shadow) !important; box-shadow: none !important;
color: var(--gnome-entry-color) !important; color: var(--gnome-entry-color) !important;
height: 34px !important; height: 34px !important;
max-height: 34px !important; max-height: 34px !important;
@ -51,8 +51,6 @@
#password1Textbox:-moz-window-inactive, #password1Textbox:-moz-window-inactive,
.tabsFilter:-moz-window-inactive { .tabsFilter:-moz-window-inactive {
background: var(--gnome-inactive-entry-background) !important; background: var(--gnome-inactive-entry-background) !important;
border-color: var(--gnome-inactive-entry-border-color) !important;
box-shadow: var(--gnome-inactive-entry-box-shadow) !important;
color: var(--gnome-inactive-entry-color) !important; color: var(--gnome-inactive-entry-color) !important;
} }