mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-05 16:42:29 +03:00
Merge branch 'v4-dev' into v4-forms-cleanup
This commit is contained in:
@@ -2151,6 +2151,11 @@ select.form-control:not([size]):not([multiple]) {
|
||||
height: 2.5rem;
|
||||
}
|
||||
|
||||
select.form-control:focus::-ms-value {
|
||||
color: #55595c;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.form-control-file,
|
||||
.form-control-range {
|
||||
display: block;
|
||||
@@ -3732,6 +3737,11 @@ input[type="button"].btn-block {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.custom-select:focus::-ms-value {
|
||||
color: #55595c;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.custom-select::-ms-expand {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -2062,13 +2062,7 @@ var Modal = (function ($) {
|
||||
}, {
|
||||
key: '_checkScrollbar',
|
||||
value: function _checkScrollbar() {
|
||||
var fullWindowWidth = window.innerWidth;
|
||||
if (!fullWindowWidth) {
|
||||
// workaround for missing window.innerWidth in IE8
|
||||
var documentElementRect = document.documentElement.getBoundingClientRect();
|
||||
fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left);
|
||||
}
|
||||
this._isBodyOverflowing = document.body.clientWidth < fullWindowWidth;
|
||||
this._isBodyOverflowing = document.body.clientWidth < window.innerWidth;
|
||||
this._scrollbarWidth = this._getScrollbarWidth();
|
||||
}
|
||||
}, {
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
Vendored
+1
-7
@@ -427,13 +427,7 @@
|
||||
}, {
|
||||
key: '_checkScrollbar',
|
||||
value: function _checkScrollbar() {
|
||||
var fullWindowWidth = window.innerWidth;
|
||||
if (!fullWindowWidth) {
|
||||
// workaround for missing window.innerWidth in IE8
|
||||
var documentElementRect = document.documentElement.getBoundingClientRect();
|
||||
fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left);
|
||||
}
|
||||
this._isBodyOverflowing = document.body.clientWidth < fullWindowWidth;
|
||||
this._isBodyOverflowing = document.body.clientWidth < window.innerWidth;
|
||||
this._scrollbarWidth = this._getScrollbarWidth();
|
||||
}
|
||||
}, {
|
||||
|
||||
Reference in New Issue
Block a user