Fixed fluid-comments in dark mode (#2246)

* Fixed fluid-comments

the inline fluid-comments in dark mode are now matching the syntax followed in the default theme.

* grey -> gray

* Added lighten function to fallback variable

Added lighten function to the fallback variable for anchor tags in fluid-comments
This commit is contained in:
Sidak Singh Aulakh 2019-04-08 02:42:49 +05:30 committed by Ben Halpern
parent 6bc248e43b
commit dbac5f6d19

View file

@ -2,11 +2,12 @@
.liquid-comment {
padding: 0px;
background: white;
background: inherit;
font-family: $helvetica;
margin:0.95em 0 1.20em;
position: relative;
border:1px solid $light-medium-gray;
border:1px solid var(--theme-color, $light-medium-gray);
box-shadow: $shadow;
border-radius:3px;
@media screen and (min-width: 760px) {
@ -61,11 +62,13 @@
width:100px;
a{
color:$medium-gray;
color: var(--theme-secondary-color, $medium-gray);
}
}
a {
color: lighten($dark-gray,3%);
color: var(--theme-secondary-color, lighten($dark-gray,3%));
line-height: initial;
align-self: center;
margin-right: 6px;
@ -81,6 +84,7 @@
.body {
font-family: $helvetica;
color: $black;
color: var(--theme-color, $black);
font-size: 0.95em;
line-height: 1.35em;
overflow: hidden;