|
|
|
@ -1,10 +1,34 @@
|
|
|
|
|
/*! |
|
|
|
|
* Bootstrap-select v1.13.10 (https://developer.snapappointments.com/bootstrap-select) |
|
|
|
|
* Bootstrap-select v1.13.18 (https://developer.snapappointments.com/bootstrap-select) |
|
|
|
|
* |
|
|
|
|
* Copyright 2012-2019 SnapAppointments, LLC |
|
|
|
|
* Copyright 2012-2020 SnapAppointments, LLC |
|
|
|
|
* Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
@-webkit-keyframes bs-notify-fadeOut { |
|
|
|
|
0% { |
|
|
|
|
opacity: 0.9; |
|
|
|
|
} |
|
|
|
|
100% { |
|
|
|
|
opacity: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@-o-keyframes bs-notify-fadeOut { |
|
|
|
|
0% { |
|
|
|
|
opacity: 0.9; |
|
|
|
|
} |
|
|
|
|
100% { |
|
|
|
|
opacity: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@keyframes bs-notify-fadeOut { |
|
|
|
|
0% { |
|
|
|
|
opacity: 0.9; |
|
|
|
|
} |
|
|
|
|
100% { |
|
|
|
|
opacity: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
select.bs-select-hidden, |
|
|
|
|
.bootstrap-select > select.bs-select-hidden, |
|
|
|
|
select.selectpicker { |
|
|
|
@ -90,11 +114,11 @@ select.selectpicker {
|
|
|
|
|
.has-error .bootstrap-select .dropdown-toggle, |
|
|
|
|
.error .bootstrap-select .dropdown-toggle, |
|
|
|
|
.bootstrap-select.is-invalid .dropdown-toggle, |
|
|
|
|
.was-validated .bootstrap-select .selectpicker:invalid + .dropdown-toggle { |
|
|
|
|
.was-validated .bootstrap-select select:invalid + .dropdown-toggle { |
|
|
|
|
border-color: #b94a48; |
|
|
|
|
} |
|
|
|
|
.bootstrap-select.is-valid .dropdown-toggle, |
|
|
|
|
.was-validated .bootstrap-select .selectpicker:valid + .dropdown-toggle { |
|
|
|
|
.was-validated .bootstrap-select select:valid + .dropdown-toggle { |
|
|
|
|
border-color: #28a745; |
|
|
|
|
} |
|
|
|
|
.bootstrap-select.fit-width { |
|
|
|
@ -300,6 +324,11 @@ select.selectpicker {
|
|
|
|
|
-moz-box-sizing: border-box; |
|
|
|
|
box-sizing: border-box; |
|
|
|
|
} |
|
|
|
|
.bootstrap-select .dropdown-menu .notify.fadeOut { |
|
|
|
|
-webkit-animation: 300ms linear 750ms forwards bs-notify-fadeOut; |
|
|
|
|
-o-animation: 300ms linear 750ms forwards bs-notify-fadeOut; |
|
|
|
|
animation: 300ms linear 750ms forwards bs-notify-fadeOut; |
|
|
|
|
} |
|
|
|
|
.bootstrap-select .no-results { |
|
|
|
|
padding: 3px; |
|
|
|
|
background: #f5f5f5; |
|
|
|
@ -339,6 +368,8 @@ select.selectpicker {
|
|
|
|
|
height: 1em; |
|
|
|
|
border-style: solid; |
|
|
|
|
border-width: 0 0.26em 0.26em 0; |
|
|
|
|
-webkit-transform-style: preserve-3d; |
|
|
|
|
transform-style: preserve-3d; |
|
|
|
|
-webkit-transform: rotate(45deg); |
|
|
|
|
-ms-transform: rotate(45deg); |
|
|
|
|
-o-transform: rotate(45deg); |
|
|
|
|