Add --theme-container-color (#1706)
* Add --theme-container-color Initial pass adding `--theme-container-color` for theming * Add --theme-container-color Initial pass adding `--theme-container-color` for theming
This commit is contained in:
parent
cbb96bb7b8
commit
9e8fbff5df
1 changed files with 6 additions and 0 deletions
|
|
@ -190,6 +190,7 @@
|
|||
}
|
||||
a{
|
||||
color:$black;
|
||||
color: var(--theme-container-color, $black);
|
||||
}
|
||||
a.small-pic-link-wrapper,.placeholder-div{
|
||||
display:block;
|
||||
|
|
@ -459,6 +460,7 @@
|
|||
background:white;
|
||||
background: var(--theme-container-background, #fff);
|
||||
color:$black;
|
||||
color: var(--theme-container-color, $black);
|
||||
position:relative;
|
||||
z-index:5;
|
||||
border-top:1px solid darken($lightest-gray,4%);
|
||||
|
|
@ -791,6 +793,7 @@
|
|||
width:100%;
|
||||
line-height:20px;
|
||||
color: $black;
|
||||
color: var(--theme-container-color, $black);
|
||||
&:hover{
|
||||
opacity:0.9;
|
||||
}
|
||||
|
|
@ -962,6 +965,7 @@
|
|||
background: var(--theme-container-background, #fff);
|
||||
display:block;
|
||||
color: $black;
|
||||
color: var(--theme-container-color, $black);
|
||||
border-radius:3px;
|
||||
border: 1px solid $outline-color;
|
||||
border: var(--theme-container-border, 1px solid $outline-color);
|
||||
|
|
@ -1047,6 +1051,7 @@
|
|||
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
||||
a{
|
||||
color: $black;
|
||||
color: var(--theme-container-color, $black);
|
||||
h4{
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
|
|
@ -1301,6 +1306,7 @@
|
|||
padding-left:20px;
|
||||
a{
|
||||
color:$black;
|
||||
color: var(--theme-container-color, $black);
|
||||
font-weight:500;
|
||||
line-height:1em;
|
||||
// display:inline-block;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue