mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
grunt
This commit is contained in:
parent
c61a0059ad
commit
9fc54f89f4
18 changed files with 74 additions and 114 deletions
2
dist/css/bootstrap-reboot.css.map
vendored
2
dist/css/bootstrap-reboot.css.map
vendored
File diff suppressed because one or more lines are too long
|
@ -576,21 +576,25 @@ h6, .h6 {
|
||||||
.display-1 {
|
.display-1 {
|
||||||
font-size: 6rem;
|
font-size: 6rem;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
line-height: 1.1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.display-2 {
|
.display-2 {
|
||||||
font-size: 5.5rem;
|
font-size: 5.5rem;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
line-height: 1.1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.display-3 {
|
.display-3 {
|
||||||
font-size: 4.5rem;
|
font-size: 4.5rem;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
line-height: 1.1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.display-4 {
|
.display-4 {
|
||||||
font-size: 3.5rem;
|
font-size: 3.5rem;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
line-height: 1.1;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
|
@ -3293,15 +3297,13 @@ tbody.collapse.show {
|
||||||
z-index: 990;
|
z-index: 990;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropup .caret,
|
.dropup .caret {
|
||||||
.navbar-fixed-bottom .dropdown .caret {
|
|
||||||
content: "";
|
content: "";
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
border-bottom: 0.3em solid;
|
border-bottom: 0.3em solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropup .dropdown-menu,
|
.dropup .dropdown-menu {
|
||||||
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
|
||||||
top: auto;
|
top: auto;
|
||||||
bottom: 100%;
|
bottom: 100%;
|
||||||
margin-bottom: 0.125rem;
|
margin-bottom: 0.125rem;
|
||||||
|
@ -4024,20 +4026,6 @@ tbody.collapse.show {
|
||||||
padding-bottom: .425rem;
|
padding-bottom: .425rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-divider {
|
|
||||||
float: left;
|
|
||||||
width: 1px;
|
|
||||||
padding-top: 0.425rem;
|
|
||||||
padding-bottom: 0.425rem;
|
|
||||||
margin-right: 1rem;
|
|
||||||
margin-left: 1rem;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-divider::before {
|
|
||||||
content: "\00a0";
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-toggler {
|
.navbar-toggler {
|
||||||
-webkit-align-self: flex-start;
|
-webkit-align-self: flex-start;
|
||||||
-ms-flex-item-align: start;
|
-ms-flex-item-align: start;
|
||||||
|
@ -4387,29 +4375,6 @@ tbody.collapse.show {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-fixed-top,
|
|
||||||
.navbar-fixed-bottom {
|
|
||||||
position: fixed;
|
|
||||||
right: 0;
|
|
||||||
left: 0;
|
|
||||||
z-index: 1030;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-fixed-top {
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-fixed-bottom {
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-sticky-top {
|
|
||||||
position: -webkit-sticky;
|
|
||||||
position: sticky;
|
|
||||||
top: 0;
|
|
||||||
z-index: 1030;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-light .navbar-brand,
|
.navbar-light .navbar-brand,
|
||||||
.navbar-light .navbar-toggler {
|
.navbar-light .navbar-toggler {
|
||||||
color: rgba(0, 0, 0, 0.9);
|
color: rgba(0, 0, 0, 0.9);
|
||||||
|
@ -7478,6 +7443,29 @@ a.bg-inverse:focus, a.bg-inverse:hover {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fixed-top {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1030;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fixed-bottom {
|
||||||
|
position: fixed;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1030;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sticky-top {
|
||||||
|
position: -webkit-sticky;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 1030;
|
||||||
|
}
|
||||||
|
|
||||||
.sr-only {
|
.sr-only {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
|
@ -9136,14 +9124,6 @@ a.bg-inverse:focus, a.bg-inverse:hover {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.pos-f-t {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
left: 0;
|
|
||||||
z-index: 1030;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-justify {
|
.text-justify {
|
||||||
text-align: justify !important;
|
text-align: justify !important;
|
||||||
}
|
}
|
||||||
|
|
2
dist/css/bootstrap.css.map
vendored
2
dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
2
dist/css/bootstrap.min.css.map
vendored
2
dist/css/bootstrap.min.css.map
vendored
File diff suppressed because one or more lines are too long
|
@ -1699,7 +1699,7 @@ var Modal = function ($) {
|
||||||
DIALOG: '.modal-dialog',
|
DIALOG: '.modal-dialog',
|
||||||
DATA_TOGGLE: '[data-toggle="modal"]',
|
DATA_TOGGLE: '[data-toggle="modal"]',
|
||||||
DATA_DISMISS: '[data-dismiss="modal"]',
|
DATA_DISMISS: '[data-dismiss="modal"]',
|
||||||
FIXED_CONTENT: '.navbar-fixed-top, .navbar-fixed-bottom, .is-fixed'
|
FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top'
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
2
dist/js/bootstrap.min.js
vendored
2
dist/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
2
docs/assets/css/docs.min.css
vendored
2
docs/assets/css/docs.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
docs/dist/css/bootstrap-reboot.css.map
vendored
2
docs/dist/css/bootstrap-reboot.css.map
vendored
File diff suppressed because one or more lines are too long
|
@ -576,21 +576,25 @@ h6, .h6 {
|
||||||
.display-1 {
|
.display-1 {
|
||||||
font-size: 6rem;
|
font-size: 6rem;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
line-height: 1.1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.display-2 {
|
.display-2 {
|
||||||
font-size: 5.5rem;
|
font-size: 5.5rem;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
line-height: 1.1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.display-3 {
|
.display-3 {
|
||||||
font-size: 4.5rem;
|
font-size: 4.5rem;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
line-height: 1.1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.display-4 {
|
.display-4 {
|
||||||
font-size: 3.5rem;
|
font-size: 3.5rem;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
line-height: 1.1;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
|
@ -3293,15 +3297,13 @@ tbody.collapse.show {
|
||||||
z-index: 990;
|
z-index: 990;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropup .caret,
|
.dropup .caret {
|
||||||
.navbar-fixed-bottom .dropdown .caret {
|
|
||||||
content: "";
|
content: "";
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
border-bottom: 0.3em solid;
|
border-bottom: 0.3em solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropup .dropdown-menu,
|
.dropup .dropdown-menu {
|
||||||
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
|
||||||
top: auto;
|
top: auto;
|
||||||
bottom: 100%;
|
bottom: 100%;
|
||||||
margin-bottom: 0.125rem;
|
margin-bottom: 0.125rem;
|
||||||
|
@ -4024,20 +4026,6 @@ tbody.collapse.show {
|
||||||
padding-bottom: .425rem;
|
padding-bottom: .425rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-divider {
|
|
||||||
float: left;
|
|
||||||
width: 1px;
|
|
||||||
padding-top: 0.425rem;
|
|
||||||
padding-bottom: 0.425rem;
|
|
||||||
margin-right: 1rem;
|
|
||||||
margin-left: 1rem;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-divider::before {
|
|
||||||
content: "\00a0";
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-toggler {
|
.navbar-toggler {
|
||||||
-webkit-align-self: flex-start;
|
-webkit-align-self: flex-start;
|
||||||
-ms-flex-item-align: start;
|
-ms-flex-item-align: start;
|
||||||
|
@ -4387,29 +4375,6 @@ tbody.collapse.show {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-fixed-top,
|
|
||||||
.navbar-fixed-bottom {
|
|
||||||
position: fixed;
|
|
||||||
right: 0;
|
|
||||||
left: 0;
|
|
||||||
z-index: 1030;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-fixed-top {
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-fixed-bottom {
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-sticky-top {
|
|
||||||
position: -webkit-sticky;
|
|
||||||
position: sticky;
|
|
||||||
top: 0;
|
|
||||||
z-index: 1030;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-light .navbar-brand,
|
.navbar-light .navbar-brand,
|
||||||
.navbar-light .navbar-toggler {
|
.navbar-light .navbar-toggler {
|
||||||
color: rgba(0, 0, 0, 0.9);
|
color: rgba(0, 0, 0, 0.9);
|
||||||
|
@ -7478,6 +7443,29 @@ a.bg-inverse:focus, a.bg-inverse:hover {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fixed-top {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1030;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fixed-bottom {
|
||||||
|
position: fixed;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1030;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sticky-top {
|
||||||
|
position: -webkit-sticky;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 1030;
|
||||||
|
}
|
||||||
|
|
||||||
.sr-only {
|
.sr-only {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
|
@ -9136,14 +9124,6 @@ a.bg-inverse:focus, a.bg-inverse:hover {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.pos-f-t {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
left: 0;
|
|
||||||
z-index: 1030;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-justify {
|
.text-justify {
|
||||||
text-align: justify !important;
|
text-align: justify !important;
|
||||||
}
|
}
|
||||||
|
|
2
docs/dist/css/bootstrap.css.map
vendored
2
docs/dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/css/bootstrap.min.css
vendored
2
docs/dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/css/bootstrap.min.css.map
vendored
2
docs/dist/css/bootstrap.min.css.map
vendored
File diff suppressed because one or more lines are too long
|
@ -1699,7 +1699,7 @@ var Modal = function ($) {
|
||||||
DIALOG: '.modal-dialog',
|
DIALOG: '.modal-dialog',
|
||||||
DATA_TOGGLE: '[data-toggle="modal"]',
|
DATA_TOGGLE: '[data-toggle="modal"]',
|
||||||
DATA_DISMISS: '[data-dismiss="modal"]',
|
DATA_DISMISS: '[data-dismiss="modal"]',
|
||||||
FIXED_CONTENT: '.navbar-fixed-top, .navbar-fixed-bottom, .is-fixed'
|
FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top'
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
2
docs/dist/js/bootstrap.min.js
vendored
2
docs/dist/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
2
js/dist/modal.js
vendored
2
js/dist/modal.js
vendored
|
@ -69,7 +69,7 @@ var Modal = function ($) {
|
||||||
DIALOG: '.modal-dialog',
|
DIALOG: '.modal-dialog',
|
||||||
DATA_TOGGLE: '[data-toggle="modal"]',
|
DATA_TOGGLE: '[data-toggle="modal"]',
|
||||||
DATA_DISMISS: '[data-dismiss="modal"]',
|
DATA_DISMISS: '[data-dismiss="modal"]',
|
||||||
FIXED_CONTENT: '.navbar-fixed-top, .navbar-fixed-bottom, .is-fixed'
|
FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top'
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
2
js/dist/modal.js.map
vendored
2
js/dist/modal.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue