Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
bee20c04
Commit
bee20c04
authored
7 years ago
by
Andres Galante
Committed by
XhmikosR
7 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Move theme variables outside of the theme map. (#23918)
parent
dc5a096e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scss/_variables.scss
+17
-8
scss/_variables.scss
with
17 additions
and
8 deletions
+17
-8
scss/_variables.scss
+
17
-
8
View file @
bee20c04
...
...
@@ -62,16 +62,25 @@ $colors: map-merge((
"gray-dark"
:
$gray-800
)
,
$colors
);
$primary
:
$blue
!
default
;
$secondary
:
$gray-600
!
default
;
$success
:
$green
!
default
;
$info
:
$cyan
!
default
;
$warning
:
$yellow
!
default
;
$danger
:
$red
!
default
;
$light
:
$gray-100
!
default
;
$dark
:
$gray-800
!
default
;
$theme-colors
:
()
!
default
;
$theme-colors
:
map-merge
((
"primary"
:
$
blue
,
"secondary"
:
$
gray-600
,
"success"
:
$
green
,
"info"
:
$
cyan
,
"warning"
:
$
yellow
,
"danger"
:
$
red
,
"light"
:
$
gray-100
,
"dark"
:
$
gray-800
"primary"
:
$
primary
,
"secondary"
:
$
secondary
,
"success"
:
$
success
,
"info"
:
$
info
,
"warning"
:
$
warning
,
"danger"
:
$
danger
,
"light"
:
$
light
,
"dark"
:
$
dark
)
,
$theme-colors
);
// stylelint-enable
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets