mirror of https://github.com/akveo/blur-admin
fix(inputs): cursor on disabled checkboxes and radios
parent
a2ea9cd7b3
commit
c070367bda
|
@ -88,7 +88,7 @@ textarea.form-control {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
border: none;
|
border: none;
|
||||||
color: $default-text;
|
color: $default-text;
|
||||||
.modal-header{
|
.modal-header {
|
||||||
color: $default;
|
color: $default;
|
||||||
border-top-left-radius: 5px;
|
border-top-left-radius: 5px;
|
||||||
border-top-right-radius: 5px;
|
border-top-right-radius: 5px;
|
||||||
|
@ -218,8 +218,10 @@ label.custom-checkbox {
|
||||||
&:disabled {
|
&:disabled {
|
||||||
& + span {
|
& + span {
|
||||||
color: $disabled;
|
color: $disabled;
|
||||||
|
cursor: not-allowed;
|
||||||
&:before {
|
&:before {
|
||||||
border-color: $disabled !important;
|
border-color: $disabled !important;
|
||||||
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -326,7 +328,7 @@ label.custom-input-danger {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-demo{
|
.input-demo {
|
||||||
line-height: 25px;
|
line-height: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -457,7 +459,7 @@ label.custom-input-danger {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.open {
|
&.open {
|
||||||
.btn-default + .dropdown-menu{
|
.btn-default + .dropdown-menu {
|
||||||
border-top: 1px solid $disabled;
|
border-top: 1px solid $disabled;
|
||||||
}
|
}
|
||||||
.btn-default.dropdown-toggle {
|
.btn-default.dropdown-toggle {
|
||||||
|
@ -482,14 +484,14 @@ label.custom-input-danger {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.with-search.open .btn-default + .dropdown-menu {
|
&.with-search.open .btn-default + .dropdown-menu {
|
||||||
.bs-searchbox .form-control{
|
.bs-searchbox .form-control {
|
||||||
background-color: rgba(0,0,0,0.5);
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
.no-results{
|
.no-results {
|
||||||
color: $default-text;
|
color: $default-text;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.notify{
|
.notify {
|
||||||
color: $default-text;
|
color: $default-text;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -523,7 +525,6 @@ label.custom-input-danger {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.progress-bar-primary {
|
.progress-bar-primary {
|
||||||
background-color: $primary;
|
background-color: $primary;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue