mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 20:28:14 +03:00
65 lines
1.6 KiB
Plaintext
65 lines
1.6 KiB
Plaintext
// main: material.less
|
|
body, .container, .container-fluid {
|
|
[class^="well-material"] {
|
|
&, .form-control, .floating-label {
|
|
color: @darkbg-text;
|
|
}
|
|
.form-control {
|
|
border-bottom-color: @darkbg-text;
|
|
&::-webkit-input-placeholder {
|
|
color: @darkbg-text;
|
|
}
|
|
&::-moz-placeholder {
|
|
color: @darkbg-text;
|
|
opacity: 1;
|
|
}
|
|
&:-ms-input-placeholder {
|
|
color: @darkbg-text;
|
|
}
|
|
}
|
|
// Rule to fix selectize plugin
|
|
.option, .create {
|
|
color: @lightbg-text;
|
|
}
|
|
}
|
|
|
|
[class="well"], [class^="well "], [class="jumbotron"], [class^="jumbotron "] {
|
|
&, .form-control, .floating-label {
|
|
color: @lightbg-text;
|
|
}
|
|
.form-control {
|
|
border-bottom-color: #757575;
|
|
&::-webkit-input-placeholder {
|
|
color: @lightbg-text;
|
|
}
|
|
&::-moz-placeholder {
|
|
color: @lightbg-text;
|
|
opacity: 1;
|
|
}
|
|
&:-ms-input-placeholder {
|
|
color: @lightbg-text;
|
|
}
|
|
}
|
|
// Rule to fix selectize plugin
|
|
.option, .create {
|
|
color: @lightbg-text;
|
|
}
|
|
}
|
|
|
|
.well, .jumbotron, [class^="well-material"] {
|
|
|
|
background-color: #fff;
|
|
padding: 19px;
|
|
margin-bottom: 20px;
|
|
.shadow-z-2();
|
|
border-radius: 2px;
|
|
border: 0;
|
|
p {
|
|
font-weight: 300;
|
|
}
|
|
}
|
|
.well {
|
|
.variations(~"", background-color, #FFF);
|
|
}
|
|
}
|