diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-03 11:47:45 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-20 19:17:06 +0200 |
commit | 71ce8f3107f6e355e1c64ecd67dc9dabcdb48346 (patch) | |
tree | c4e5fd9b3a64cdb782c7a8b9c90dcd9253cc124a /core/css/css-variables.scss | |
parent | 8aaf2c32729fcd0302f79546f396a07398f0d724 (diff) | |
download | nextcloud-server-71ce8f3107f6e355e1c64ecd67dc9dabcdb48346.tar.gz nextcloud-server-71ce8f3107f6e355e1c64ecd67dc9dabcdb48346.zip |
Split css variables and fix url variables
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/css/css-variables.scss')
-rw-r--r-- | core/css/css-variables.scss | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/core/css/css-variables.scss b/core/css/css-variables.scss new file mode 100644 index 00000000000..f6f2c4d1c44 --- /dev/null +++ b/core/css/css-variables.scss @@ -0,0 +1,26 @@ +// CSS4 Variables +// Remember, you cannot use scss functions with css4 variables +// All css4 variables must be fixed! Scss is a PRE processor +// css4 variables are processed after scss! +:root { + --color-main-text: $color-main-text; + --color-main-background: $color-main-background; + --color-primary: $color-primary; + --color-primary-text: $color-primary-text; + --color-error: $color-error; + --color-warning: $color-warning; + --color-success: $color-success; + --color-primary-element: $color-primary-element; + + --color-text-details: $color-text-details; + + --image-logo: $image-logo; + --image-login-background: $image-login-background; + + --color-loading: $color-loading; + --color-loading-dark: $color-loading-dark; + --color-box-shadow: $color-box-shadow; + --color-border: $color-border; + --border-radius: $border-radius; +} + |