Add night theme vars for notifications and org branding (#2127)
* Add night theme stuff to notifications * Fix night theme for org branding on show pages
This commit is contained in:
parent
ce0638c82c
commit
658be52814
2 changed files with 7 additions and 0 deletions
|
|
@ -113,6 +113,7 @@ article {
|
|||
margin: auto;
|
||||
.org-branded-title-link {
|
||||
color: lighten($black, 4%);
|
||||
color: var(--theme-color, lighten($black, 4%));
|
||||
.org-branded-title {
|
||||
font-size: calc(0.9em + 0.3vw);
|
||||
padding: 8px 0px 6px;
|
||||
|
|
@ -1019,6 +1020,7 @@ article {
|
|||
padding-bottom: 20px;
|
||||
a {
|
||||
color: $black;
|
||||
color: var(--theme-color, $black);
|
||||
}
|
||||
.inner {
|
||||
width: 800px;
|
||||
|
|
|
|||
|
|
@ -67,6 +67,7 @@
|
|||
margin: 10px auto;
|
||||
width: 90%;
|
||||
color:#666666;
|
||||
color: var(--theme-secondary-color, #666666);
|
||||
&.milestone-emojis{
|
||||
font-size: xx-large;
|
||||
padding-top: 10px;
|
||||
|
|
@ -126,8 +127,10 @@
|
|||
display:inline-block;
|
||||
margin-bottom:3px;
|
||||
color:$black !important;
|
||||
color: var(--theme-color, $black) !important;
|
||||
&:hover{
|
||||
background:lighten($blue,57%);
|
||||
background: var(--theme-container-background-hover, lighten($blue,57%));
|
||||
border:1px solid lighten($sky-blue,17%);
|
||||
}
|
||||
}
|
||||
|
|
@ -137,6 +140,7 @@
|
|||
border: 1px solid lighten($dark-gray,18%);
|
||||
border-radius:3px;
|
||||
color:$black;
|
||||
color: var(--theme-color, $black);
|
||||
position:relative;
|
||||
.notification-new-post-title{
|
||||
font-size:1.7em;
|
||||
|
|
@ -145,6 +149,7 @@
|
|||
.notification-new-post-tags{
|
||||
margin-top:6px;
|
||||
color:$medium-gray;
|
||||
color: var(--theme-color, $medium-gray);
|
||||
}
|
||||
}
|
||||
.footnote{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue