mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-23 18:14:04 +03:00
fixed well
This commit is contained in:
parent
12bf07506b
commit
1b9dc6ac82
10
dist/css/material-wfont.css
vendored
10
dist/css/material-wfont.css
vendored
|
@ -2380,6 +2380,16 @@ body .well:not([class^="well well-material-"]) .create,
|
||||||
.container-fluid .well:not([class^="well well-material-"]) .create {
|
.container-fluid .well:not([class^="well well-material-"]) .create {
|
||||||
color: rgba(0, 0, 0, 0.84);
|
color: rgba(0, 0, 0, 0.84);
|
||||||
}
|
}
|
||||||
|
body .well-sm,
|
||||||
|
.container .well-sm,
|
||||||
|
.container-fluid .well-sm {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
body .well-lg,
|
||||||
|
.container .well-lg,
|
||||||
|
.container-fluid .well-lg {
|
||||||
|
padding: 26px;
|
||||||
|
}
|
||||||
body [class^="well well-material-"],
|
body [class^="well well-material-"],
|
||||||
.container [class^="well well-material-"],
|
.container [class^="well well-material-"],
|
||||||
.container-fluid [class^="well well-material-"],
|
.container-fluid [class^="well well-material-"],
|
||||||
|
|
2
dist/css/material-wfont.css.map
vendored
2
dist/css/material-wfont.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/css/material-wfont.min.css
vendored
2
dist/css/material-wfont.min.css
vendored
File diff suppressed because one or more lines are too long
10
dist/css/material.css
vendored
10
dist/css/material.css
vendored
|
@ -2356,6 +2356,16 @@ body .well:not([class^="well well-material-"]) .create,
|
||||||
.container-fluid .well:not([class^="well well-material-"]) .create {
|
.container-fluid .well:not([class^="well well-material-"]) .create {
|
||||||
color: rgba(0, 0, 0, 0.84);
|
color: rgba(0, 0, 0, 0.84);
|
||||||
}
|
}
|
||||||
|
body .well-sm,
|
||||||
|
.container .well-sm,
|
||||||
|
.container-fluid .well-sm {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
body .well-lg,
|
||||||
|
.container .well-lg,
|
||||||
|
.container-fluid .well-lg {
|
||||||
|
padding: 26px;
|
||||||
|
}
|
||||||
body [class^="well well-material-"],
|
body [class^="well well-material-"],
|
||||||
.container [class^="well well-material-"],
|
.container [class^="well well-material-"],
|
||||||
.container-fluid [class^="well well-material-"],
|
.container-fluid [class^="well well-material-"],
|
||||||
|
|
2
dist/css/material.css.map
vendored
2
dist/css/material.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/css/material.min.css
vendored
2
dist/css/material.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -1,65 +1,71 @@
|
||||||
body, .container, .container-fluid {
|
body, .container, .container-fluid {
|
||||||
|
|
||||||
.well, .well:not([class^="well well-material-"]) {
|
.well, .well:not([class^="well well-material-"]) {
|
||||||
&, .form-control {
|
&, .form-control {
|
||||||
color: @lightbg-text;
|
color: @lightbg-text;
|
||||||
}
|
}
|
||||||
.floating-label {
|
.floating-label {
|
||||||
color: #7e7e7e;
|
color: #7e7e7e;
|
||||||
}
|
}
|
||||||
.form-control {
|
.form-control {
|
||||||
border-bottom-color: #7e7e7e;
|
border-bottom-color: #7e7e7e;
|
||||||
&::-webkit-input-placeholder {
|
&::-webkit-input-placeholder {
|
||||||
color: #7e7e7e;
|
color: #7e7e7e;
|
||||||
}
|
}
|
||||||
&::-moz-placeholder {
|
&::-moz-placeholder {
|
||||||
color: #7e7e7e;
|
color: #7e7e7e;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
&:-ms-input-placeholder {
|
&:-ms-input-placeholder {
|
||||||
color: #7e7e7e;
|
color: #7e7e7e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.option, .create {
|
.option, .create {
|
||||||
color: @lightbg-text;
|
color: @lightbg-text;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
.well-sm {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
.well-lg {
|
||||||
|
padding: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class^="well 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.well, .jumbotron {
|
||||||
|
|
||||||
|
background-color: #fff;
|
||||||
|
padding: 19px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
.shadow-z-2();
|
||||||
|
border-radius: 2px;
|
||||||
|
border: 0;
|
||||||
|
p {
|
||||||
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
|
|
||||||
[class^="well well-material-"] {
|
.variations(~"", background-color, #FFF);
|
||||||
&, .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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.well, .jumbotron {
|
|
||||||
|
|
||||||
background-color: #fff;
|
|
||||||
padding: 19px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
.shadow-z-2();
|
|
||||||
border-radius: 2px;
|
|
||||||
border: 0;
|
|
||||||
p {
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
|
|
||||||
.variations(~"", background-color, #FFF);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user