mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-23 01:57:06 +03:00
sass conversion fix synced from 0.5.4
This commit is contained in:
parent
d4ebcb20e2
commit
66b2feb9ee
|
@ -77,12 +77,13 @@
|
||||||
|
|
||||||
// FIXME: SPEC - this should be the 600 color, how can we get that programmatically if at all? Or are we limited to the color palette only?
|
// FIXME: SPEC - this should be the 600 color, how can we get that programmatically if at all? Or are we limited to the color palette only?
|
||||||
// SASS conversion note: please mirror any content change in _mixins-shared.scss button-variations-content
|
// SASS conversion note: please mirror any content change in _mixins-shared.scss button-variations-content
|
||||||
@include alert-variations(unquote(".btn"), unquote(""), $mdb-btn-background-color);
|
@include button-variations(unquote(".btn"), "", $mdb-btn-background-color);
|
||||||
|
|
||||||
// Spec:
|
// Spec:
|
||||||
// - Raised Light/Light theme no hover.
|
// - Raised Light/Light theme no hover.
|
||||||
// - Raised Dark/Dark theme Hover color: 600
|
// - Raised Dark/Dark theme Hover color: 600
|
||||||
.theme-dark & {
|
.theme-dark & {
|
||||||
|
//
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,17 +23,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin button-variations($component, $selector-suffix, $color-default, $mdb-param-1) {
|
@mixin button-variations($component, $selector-suffix, $color-default) {
|
||||||
@include generic-variations($component, $selector-suffix, $color-default, "button-variations-content", $mdb-param-1);
|
@include generic-variations($component, $selector-suffix, $color-default, "button-variations-content", null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin button-variations-content($args) {
|
@mixin button-variations-content($args) {
|
||||||
//@debug "#{inspect($args)}";
|
//@debug "#{inspect($args)}";
|
||||||
$variation-color: map-get($args, variation-color);
|
$variation-color: map-get($args, variation-color);
|
||||||
$mdb-param-1: map-get($args, material-param-1);
|
|
||||||
background-color: contrast-color($variation-color,
|
background-color: contrast-color($variation-color,
|
||||||
darken($variation-color, $mdb-param-1),
|
darken($variation-color, 4%),
|
||||||
lighten($variation-color, $mdb-param-1));
|
lighten($variation-color, 4%));
|
||||||
}
|
}
|
||||||
|
|
||||||
// navbar-variations(" label input[type=checkbox]:checked + .toggle:active:after", $brand-primary
|
// navbar-variations(" label input[type=checkbox]:checked + .toggle:active:after", $brand-primary
|
||||||
|
|
Loading…
Reference in New Issue
Block a user