Revert "Use --header-text-color css variable for some classes in gr-main-header"

This reverts commit 7b85db7913.

Reason for revert: This will break the color on all links in header

Change-Id: Ia953d483fbfa45d35f89072be01cb29995422212
This commit is contained in:
Tao Zhou
2019-08-30 16:31:08 +00:00
parent 7b85db7913
commit 9d9cb90f01

View File

@@ -32,7 +32,6 @@ limitations under the License.
<template> <template>
<style include="shared-styles"> <style include="shared-styles">
:host { :host {
color: var(--header-text-color);
display: block; display: block;
} }
nav { nav {
@@ -73,6 +72,7 @@ limitations under the License.
position: relative; position: relative;
} }
.linksTitle { .linksTitle {
color: var(--header-text-color);
display: inline-block; display: inline-block;
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
position: relative; position: relative;
@@ -127,6 +127,9 @@ limitations under the License.
:host([logged-in]) gr-account-dropdown { :host([logged-in]) gr-account-dropdown {
display: inline; display: inline;
} }
iron-icon {
color: var(--header-text-color);
}
.accountContainer { .accountContainer {
align-items: center; align-items: center;
display: flex; display: flex;
@@ -136,6 +139,7 @@ limitations under the License.
white-space: nowrap; white-space: nowrap;
} }
.loginButton, .registerButton { .loginButton, .registerButton {
color: var(--header-text-color);
padding: .5em 1em; padding: .5em 1em;
} }
.dropdown-trigger { .dropdown-trigger {