mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-25 19:14:09 +03:00
Revert "structural refactoring of less file, no effective changes to selectors or properties."
This reverts commit 8950e01f06
.
This commit is contained in:
parent
38a8d1dc75
commit
a4216fc98b
|
@ -1,41 +1,4 @@
|
||||||
// usage: .input-validation-state(@input-danger);
|
fieldset[disabled] .form-control, .form-control {
|
||||||
.input-validation-state(@color) {
|
|
||||||
.form-control {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.material-input:focus, .form-control:focus, .form-control.focus {
|
|
||||||
background-image: linear-gradient(@color, @color), linear-gradient(@input-underline-color, @input-underline-color);
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.control-label, input.form-control:focus ~ .floating-label {
|
|
||||||
color: @color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-control {
|
|
||||||
border: 0;
|
|
||||||
background-image: linear-gradient(@primary, @primary), linear-gradient(@input-underline-color, @input-underline-color);
|
|
||||||
background-size: 0 2px, 100% 1px;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: center bottom, center calc(~"100% - 1px");
|
|
||||||
background-color: transparent;
|
|
||||||
background-color: rgba(0, 0, 0, 0);
|
|
||||||
transition: background 0s ease-out;
|
|
||||||
&::-webkit-input-placeholder {
|
|
||||||
color: @input-placeholder-color;
|
|
||||||
}
|
|
||||||
&::-moz-placeholder {
|
|
||||||
color: @input-placeholder-color;
|
|
||||||
}
|
|
||||||
&:-ms-input-placeholder {
|
|
||||||
color: @input-placeholder-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
fieldset[disabled] &, & {
|
|
||||||
&:textarea {
|
|
||||||
height: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&, &:focus, &.focus {
|
&, &:focus, &.focus {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
float: none;
|
float: none;
|
||||||
|
@ -47,34 +10,43 @@
|
||||||
border-bottom: 1px solid #757575;
|
border-bottom: 1px solid #757575;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&[disabled],
|
fieldset[disabled] .form-control, .form-control {
|
||||||
&[readonly],
|
&:textarea {
|
||||||
fieldset[disabled] & {
|
height: 40px;
|
||||||
background-color: transparent;
|
|
||||||
background-color: rgba(0, 0, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:focus,
|
|
||||||
&.focus {
|
|
||||||
outline: none;
|
|
||||||
background-image: linear-gradient(@primary, @primary), linear-gradient(@input-underline-color, @input-underline-color);
|
|
||||||
background-size: 100% 2px, 100% 1px;
|
|
||||||
box-shadow: none;
|
|
||||||
transition-duration: 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:focus ~ .material-input:after,
|
|
||||||
&.focus ~ .material-input:after {
|
|
||||||
background-color: @input-default;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:invalid {
|
|
||||||
background-image: linear-gradient(@input-danger, @input-danger), linear-gradient(@input-underline-color, @input-underline-color);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
select[multiple].form-control {
|
||||||
|
&, &:focus, &.focus {
|
||||||
|
height: 85px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-control {
|
||||||
|
border: 0;
|
||||||
|
background-image: linear-gradient(@primary, @primary), linear-gradient(@input-underline-color, @input-underline-color);
|
||||||
|
background-size: 0 2px, 100% 1px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center bottom, center calc(~"100% - 1px");
|
||||||
|
background-color: transparent;
|
||||||
|
background-color: rgba(0,0,0,0);
|
||||||
|
transition: background 0s ease-out;
|
||||||
|
&::-webkit-input-placeholder {
|
||||||
|
color: @input-placeholder-color;
|
||||||
|
}
|
||||||
|
&::-moz-placeholder {
|
||||||
|
color: @input-placeholder-color;
|
||||||
|
}
|
||||||
|
&:-ms-input-placeholder {
|
||||||
|
color: @input-placeholder-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
|
||||||
|
background-color: transparent;
|
||||||
|
background-color: rgba(0,0,0,0);
|
||||||
|
}
|
||||||
fieldset[disabled] .form-control:disabled,
|
fieldset[disabled] .form-control:disabled,
|
||||||
.form-group .form-control:disabled,
|
.form-group .form-control:disabled,
|
||||||
.form-control:disabled,
|
.form-control:disabled,
|
||||||
|
@ -87,6 +59,15 @@ fieldset[disabled] .form-control.focus:disabled,
|
||||||
border: 0; // Ugly override of Bootstrap border
|
border: 0; // Ugly override of Bootstrap border
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-control:focus, .form-control.focus {
|
||||||
|
outline: none;
|
||||||
|
background-image: linear-gradient(@primary, @primary), linear-gradient(@input-underline-color, @input-underline-color);
|
||||||
|
background-size: 100% 2px, 100% 1px;
|
||||||
|
box-shadow: none;
|
||||||
|
transition-duration: 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.form-group {
|
.form-group {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
@ -97,47 +78,51 @@ fieldset[disabled] .form-control.focus:disabled,
|
||||||
left: 0px;
|
left: 0px;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
transition: 0.3s ease all;
|
transition: 0.3s ease all;
|
||||||
font-size: @font-size-base; // Input sizes
|
}
|
||||||
|
|
||||||
.form-control:focus ~ &,
|
// Input sizes
|
||||||
.form-control:not(.empty) ~ & {
|
.floating-label { // base
|
||||||
|
font-size: @font-size-base;
|
||||||
|
}
|
||||||
|
.form-control:focus ~ .floating-label,
|
||||||
|
.form-control:not(.empty) ~ .floating-label {
|
||||||
top: @floating-label-size-ratio * -@font-size-base;
|
top: @floating-label-size-ratio * -@font-size-base;
|
||||||
font-size: @floating-label-size-ratio * @font-size-base;
|
font-size: @floating-label-size-ratio * @font-size-base;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-sm + & { // small
|
.input-sm + .floating-label { // small
|
||||||
font-size: @font-size-small;
|
font-size: @font-size-small;
|
||||||
top: 7px;
|
top: 7px;
|
||||||
}
|
}
|
||||||
.form-control.input-sm:focus ~ &,
|
.form-control.input-sm:focus ~ .floating-label,
|
||||||
.form-control.input-sm:not(.empty) ~ & {
|
.form-control.input-sm:not(.empty) ~.floating-label {
|
||||||
top: @floating-label-size-ratio * -@font-size-small;
|
top: @floating-label-size-ratio * -@font-size-small;
|
||||||
font-size: @floating-label-size-ratio * @font-size-small;
|
font-size: @floating-label-size-ratio * @font-size-small;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-lg + & {
|
.input-lg + .floating-label {
|
||||||
font-size: @font-size-large;
|
font-size: @font-size-large;
|
||||||
top: 10px;
|
top: 10px;
|
||||||
}
|
}
|
||||||
.form-control.input-lg:focus ~ &,
|
.form-control.input-lg:focus ~ .floating-label,
|
||||||
.form-control.input-lg:not(.empty) ~ & {
|
.form-control.input-lg:not(.empty) ~ .floating-label {
|
||||||
top: @floating-label-size-ratio * -@font-size-large;
|
top: @floating-label-size-ratio * -@font-size-large;
|
||||||
font-size: @floating-label-size-ratio * @font-size-large;
|
font-size: @floating-label-size-ratio * @font-size-large;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-control:focus ~ & {
|
.form-control:focus ~ .floating-label {
|
||||||
color: @primary;
|
color: @primary;
|
||||||
}
|
}
|
||||||
|
.form-control:not(.empty):invalid ~ .floating-label, .form-control.focus:invalid ~ .floating-label {
|
||||||
.form-control:not(.empty):invalid ~ &,
|
|
||||||
.form-control.focus:invalid ~ & {
|
|
||||||
color: @input-danger;
|
color: @input-danger;
|
||||||
}
|
}
|
||||||
|
.form-control:focus ~ .material-input:after, .form-control.focus ~ .material-input:after {
|
||||||
|
background-color: @input-default;
|
||||||
}
|
}
|
||||||
|
.form-control:invalid {
|
||||||
textarea {
|
background-image: linear-gradient(@input-danger, @input-danger), linear-gradient(@input-underline-color, @input-underline-color);
|
||||||
resize: none;
|
|
||||||
}
|
}
|
||||||
|
textarea { resize: none; }
|
||||||
textarea ~ .form-control-highlight {
|
textarea ~ .form-control-highlight {
|
||||||
margin-top: -11px;
|
margin-top: -11px;
|
||||||
}
|
}
|
||||||
|
@ -148,8 +133,7 @@ fieldset[disabled] .form-control.focus:disabled,
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.form-control:focus ~ .hint,
|
.form-control:focus ~ .hint, .form-control.focus ~ .hint {
|
||||||
.form-control.focus ~ .hint {
|
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -162,17 +146,56 @@ fieldset[disabled] .form-control.focus:disabled,
|
||||||
appearance: none;
|
appearance: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-group {
|
||||||
&.has-warning {
|
&.has-warning {
|
||||||
.input-validation-state(@input-warning);
|
.form-control {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.material-input:focus, .form-control:focus, .form-control.focus {
|
||||||
|
background-image: linear-gradient(@input-warning, @input-warning), linear-gradient(@input-underline-color, @input-underline-color);
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.control-label, input.form-control:focus ~ .floating-label {
|
||||||
|
color: @input-warning;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&.has-error {
|
&.has-error {
|
||||||
.input-validation-state(@input-danger);
|
.form-control {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.material-input:focus, .form-control:focus, .form-control.focus {
|
||||||
|
background-image: linear-gradient(@input-danger, @input-danger), linear-gradient(@input-underline-color, @input-underline-color);
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.control-label, input.form-control:focus ~ .floating-label {
|
||||||
|
color: @input-danger;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&.has-success {
|
&.has-success {
|
||||||
.input-validation-state(@input-success);
|
.form-control {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.material-input:focus, .form-control:focus, .form-control.focus {
|
||||||
|
background-image: linear-gradient(@input-success, @input-success), linear-gradient(@input-underline-color, @input-underline-color);
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.control-label, input.form-control:focus ~ .floating-label {
|
||||||
|
color: @input-success;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&.has-info {
|
&.has-info {
|
||||||
.input-validation-state(@input-info);
|
.form-control {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.material-input:focus, .form-control:focus, .form-control.focus {
|
||||||
|
background-image: linear-gradient(@input-info, @input-info), linear-gradient(@input-underline-color, @input-underline-color);
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.control-label, input.form-control:focus ~ .floating-label {
|
||||||
|
color: @input-info;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// SASS conversion note: please mirror any content change in _mixins-shared.scss bg-img-variations-content
|
// SASS conversion note: please mirror any content change in _mixins-shared.scss bg-img-variations-content
|
||||||
.generic-variations(~" .form-control:focus", @primary, {
|
.generic-variations(~" .form-control:focus", @primary, {
|
||||||
|
@ -180,6 +203,7 @@ fieldset[disabled] .form-control.focus:disabled,
|
||||||
});
|
});
|
||||||
.variations(~" .control-label", color, @lightbg-text);
|
.variations(~" .control-label", color, @lightbg-text);
|
||||||
.variations(~" input.form-control:focus ~ .floating-label", color, @input-default);
|
.variations(~" input.form-control:focus ~ .floating-label", color, @input-default);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-group {
|
.input-group {
|
||||||
|
@ -200,12 +224,6 @@ fieldset[disabled] .form-control.focus:disabled,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
select[multiple].form-control {
|
|
||||||
&, &:focus, &.focus {
|
|
||||||
height: 85px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
select.form-control {
|
select.form-control {
|
||||||
border: 0;
|
border: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user