Fix text color

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

View File

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

View File

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

View File

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

View File

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

View File

@ -224,7 +224,7 @@
background: $green; background: $green;
color: $white; color: $white;
padding: .5rem; padding: .5rem;
font-size: 1.5rem; font-size: 1rem;
margin-left: .5rem; margin-left: .5rem;
font-weight: bold; font-weight: bold;
line-height: 1; 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 { .navbar-menu .navbar-item .icon {
margin: 0 0.5rem; margin: 0 0.5rem;
} }
@ -378,7 +355,7 @@
z-index: 31; z-index: 31;
font-weight: bold; font-weight: bold;
font-size: 2rem; font-size: 2rem;
color: $dark; color: $text;
line-height: 1; line-height: 1;
&:hover, &:focus { &:hover, &:focus {
@ -390,7 +367,7 @@
position: fixed; position: fixed;
&:hover, &:focus { &:hover, &:focus {
color: $dark; color: $text;
} }
} }

View File

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