Fix text color
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2021-01-26 20:46:17 +01:00
parent 30cb970deb
commit 3659577b57
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
7 changed files with 14 additions and 32 deletions

View File

@ -461,6 +461,11 @@ export default {
&-lines pre {
margin: 0 !important;
}
&-placeholder {
color: $grey-400;
font-style: italic;
}
}
.editor-preview {
@ -497,6 +502,7 @@ export default {
pre.CodeMirror-line {
margin-bottom: 0 !important;
color: $grey-700 !important;
}
.cm-header {

View File

@ -20,7 +20,7 @@
.filename {
font-weight: bold;
margin-bottom: .25rem;
color: $dark;
color: $text;
}
.info {

View File

@ -109,7 +109,7 @@
box-shadow: none !important;
.hint-text {
color: $dark;
color: $text;
}
}

View File

@ -97,14 +97,14 @@ $gantt-vertical-border-color: $grey-100;
}
&.has-dark-text {
color: $dark;
color: $text;
&.done span:after {
border-top: 1px solid $dark;
}
.edit-toggle {
color: $dark;
color: $text;
}
}

View File

@ -224,7 +224,7 @@
background: $green;
color: $white;
padding: .5rem;
font-size: 1.5rem;
font-size: 1rem;
margin-left: .5rem;
font-weight: bold;
line-height: 1;

View File

@ -66,29 +66,6 @@
}
}
.hero {
.navbar {
border: none;
box-shadow: none;
}
@each $name, $pair in $colors {
$color: nth($pair, 1);
$color-invert: nth($pair, 2);
&.is-#{$name} {
.navbar {
box-shadow: none;
}
}
}
@include touch {
.navbar-menu {
box-shadow: none;
}
}
}
.navbar-menu .navbar-item .icon {
margin: 0 0.5rem;
}
@ -378,7 +355,7 @@
z-index: 31;
font-weight: bold;
font-size: 2rem;
color: $dark;
color: $text;
line-height: 1;
&:hover, &:focus {
@ -390,7 +367,7 @@
position: fixed;
&:hover, &:focus {
color: $dark;
color: $text;
}
}

View File

@ -6,7 +6,6 @@ $green: #00db60;
$red: #ff4136;
$blue: #1973ff;
$primary: $blue;
$dark: $grey-900;
$info-invert: #fff;
$family-sans-serif: 'Open Sans', Helvetica, Arial, sans-serif;
@ -27,7 +26,7 @@ $vikunja-green: #4DB788;
$navbar-padding: 2rem;
$vikunja-nav-background: $light-background;
$vikunja-nav-color: $grey-800;
$vikunja-nav-color: $grey-700;
$vikunja-nav-selected-width: 0.4rem;
$transition-duration: 150ms;