From d40bf94bd362acb60afcbbb765bdd2e556dd5e5d Mon Sep 17 00:00:00 2001 From: Florian Scholdei Date: Thu, 12 Sep 2019 11:32:51 +0200 Subject: [PATCH] changed primary color definitions to initial color definitions, added class for initial color/background styling --- scm-ui/styles/scm.scss | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/scm-ui/styles/scm.scss b/scm-ui/styles/scm.scss index ab864bc335..18c22dc029 100644 --- a/scm-ui/styles/scm.scss +++ b/scm-ui/styles/scm.scss @@ -2,21 +2,36 @@ @import "bulma/sass/utilities/functions"; $blue: #33b2e8; +$cyan: $blue; +$green: #00c79b; $mint: #11dfd0; -$info: $blue; -$success: #00c79b; - .is-ellipsis-overflow { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } +.is-word-break { + -webkit-hyphens: auto; + -moz-hyphens: auto; + -ms-hyphens: auto; + hyphens: auto; + word-break: break-all; +} + .has-rounded-border { border-radius: 0.25rem; } +.has-text-initial { + color: initial; +} + +.has-background-initial { + background-color: initial; +} + .is-full-width { width: 100%; } @@ -28,14 +43,6 @@ $success: #00c79b; padding: 0 0 0 3.8em !important; } -.is-word-break { - -webkit-hyphens: auto; - -moz-hyphens: auto; - -ms-hyphens: auto; - hyphens: auto; - word-break: break-all; -} - .main { min-height: calc(100vh - 260px); }