mirror of https://github.com/twbs/bootstrap.git
grunt
This commit is contained in:
parent
3606c5b9c5
commit
e953d5d4f0
|
@ -1,3 +1,20 @@
|
||||||
|
@-ms-viewport {
|
||||||
|
width: device-width;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
-ms-overflow-style: scrollbar;
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
|
-webkit-box-sizing: inherit;
|
||||||
|
box-sizing: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1549,11 +1549,7 @@ var Dropdown = function ($) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var items = $.makeArray($(Selector.VISIBLE_ITEMS));
|
var items = $(parent).find(Selector.VISIBLE_ITEMS).get();
|
||||||
|
|
||||||
items = items.filter(function (item) {
|
|
||||||
return item.offsetWidth || item.offsetHeight;
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!items.length) {
|
if (!items.length) {
|
||||||
return;
|
return;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,20 @@
|
||||||
|
@-ms-viewport {
|
||||||
|
width: device-width;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
-ms-overflow-style: scrollbar;
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
|
-webkit-box-sizing: inherit;
|
||||||
|
box-sizing: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1549,11 +1549,7 @@ var Dropdown = function ($) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var items = $.makeArray($(Selector.VISIBLE_ITEMS));
|
var items = $(parent).find(Selector.VISIBLE_ITEMS).get();
|
||||||
|
|
||||||
items = items.filter(function (item) {
|
|
||||||
return item.offsetWidth || item.offsetHeight;
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!items.length) {
|
if (!items.length) {
|
||||||
return;
|
return;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -223,11 +223,7 @@ var Dropdown = function ($) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var items = $.makeArray($(Selector.VISIBLE_ITEMS));
|
var items = $(parent).find(Selector.VISIBLE_ITEMS).get();
|
||||||
|
|
||||||
items = items.filter(function (item) {
|
|
||||||
return item.offsetWidth || item.offsetHeight;
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!items.length) {
|
if (!items.length) {
|
||||||
return;
|
return;
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue