mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-15 07:33:09 +00:00
grunt
This commit is contained in:
parent
ccb5248205
commit
cecf0db2ce
25 changed files with 47 additions and 29 deletions
1
dist/css/bootstrap-flex.css
vendored
1
dist/css/bootstrap-flex.css
vendored
|
|
@ -3882,6 +3882,7 @@ tbody.collapse.active {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: 2.5rem;
|
height: 2.5rem;
|
||||||
|
margin-bottom: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
BIN
dist/css/bootstrap-flex.css.map
vendored
BIN
dist/css/bootstrap-flex.css.map
vendored
Binary file not shown.
2
dist/css/bootstrap-flex.min.css
vendored
2
dist/css/bootstrap-flex.min.css
vendored
File diff suppressed because one or more lines are too long
BIN
dist/css/bootstrap-flex.min.css.map
vendored
BIN
dist/css/bootstrap-flex.min.css.map
vendored
Binary file not shown.
BIN
dist/css/bootstrap-grid.css.map
vendored
BIN
dist/css/bootstrap-grid.css.map
vendored
Binary file not shown.
BIN
dist/css/bootstrap-reboot.css.map
vendored
BIN
dist/css/bootstrap-reboot.css.map
vendored
Binary file not shown.
BIN
dist/css/bootstrap-reboot.min.css.map
vendored
BIN
dist/css/bootstrap-reboot.min.css.map
vendored
Binary file not shown.
|
|
@ -3610,6 +3610,7 @@ tbody.collapse.active {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: 2.5rem;
|
height: 2.5rem;
|
||||||
|
margin-bottom: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
BIN
dist/css/bootstrap.css.map
vendored
BIN
dist/css/bootstrap.css.map
vendored
Binary file not shown.
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
BIN
dist/css/bootstrap.min.css.map
vendored
BIN
dist/css/bootstrap.min.css.map
vendored
Binary file not shown.
Binary file not shown.
18
docs/assets/css/docs.min.css
vendored
18
docs/assets/css/docs.min.css
vendored
|
|
@ -65,6 +65,8 @@
|
||||||
padding: 3rem 15px 2rem;
|
padding: 3rem 15px 2rem;
|
||||||
color: #cdbfe3;
|
color: #cdbfe3;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
background-image: -webkit-linear-gradient(315deg, #271b38, #563d7c, #7952b3);
|
||||||
|
background-image: -o-linear-gradient(315deg, #271b38, #563d7c, #7952b3);
|
||||||
background-image: linear-gradient(135deg, #271b38, #563d7c, #7952b3);
|
background-image: linear-gradient(135deg, #271b38, #563d7c, #7952b3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1516,13 +1518,19 @@
|
||||||
.language-bash::before {
|
.language-bash::before {
|
||||||
color: #009;
|
color: #009;
|
||||||
content: "$ ";
|
content: "$ ";
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.language-powershell::before {
|
.language-powershell::before {
|
||||||
color: #009;
|
color: #009;
|
||||||
content: "PM> ";
|
content: "PM> ";
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.anchorjs-link {
|
.anchorjs-link {
|
||||||
|
|
@ -1537,6 +1545,8 @@
|
||||||
|
|
||||||
*:hover > .anchorjs-link {
|
*:hover > .anchorjs-link {
|
||||||
opacity: .75;
|
opacity: .75;
|
||||||
|
-webkit-transition: color .16s linear;
|
||||||
|
-o-transition: color .16s linear;
|
||||||
transition: color .16s linear;
|
transition: color .16s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1544,6 +1554,4 @@
|
||||||
.anchorjs-link:focus {
|
.anchorjs-link:focus {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=docs.min.css.map */
|
|
||||||
Binary file not shown.
44
docs/dist/css/bootstrap-flex.css
vendored
44
docs/dist/css/bootstrap-flex.css
vendored
|
|
@ -3607,6 +3607,24 @@ tbody.collapse.active {
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.input-group-addon,
|
||||||
|
.input-group-btn,
|
||||||
|
.input-group .form-control {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-webkit-flex-direction: column;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-webkit-justify-content: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
.input-group-addon:not(:first-child):not(:last-child),
|
.input-group-addon:not(:first-child):not(:last-child),
|
||||||
.input-group-btn:not(:first-child):not(:last-child),
|
.input-group-btn:not(:first-child):not(:last-child),
|
||||||
.input-group .form-control:not(:first-child):not(:last-child) {
|
.input-group .form-control:not(:first-child):not(:last-child) {
|
||||||
|
|
@ -3691,6 +3709,10 @@ tbody.collapse.active {
|
||||||
|
|
||||||
.input-group-btn > .btn {
|
.input-group-btn > .btn {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
-webkit-box-flex: 1;
|
||||||
|
-webkit-flex: 1 1 0%;
|
||||||
|
-ms-flex: 1 1 0%;
|
||||||
|
flex: 1 1 0%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-group-btn > .btn + .btn {
|
.input-group-btn > .btn + .btn {
|
||||||
|
|
@ -3722,6 +3744,7 @@ tbody.collapse.active {
|
||||||
.custom-control {
|
.custom-control {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
min-height: 1.5rem;
|
||||||
padding-left: 1.5rem;
|
padding-left: 1.5rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
@ -3763,7 +3786,7 @@ tbody.collapse.active {
|
||||||
|
|
||||||
.custom-control-indicator {
|
.custom-control-indicator {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: .25rem;
|
top: 0.25rem;
|
||||||
left: 0;
|
left: 0;
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
|
|
@ -3859,6 +3882,7 @@ tbody.collapse.active {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: 2.5rem;
|
height: 2.5rem;
|
||||||
|
margin-bottom: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -4472,12 +4496,6 @@ tbody.collapse.active {
|
||||||
padding: 1.25rem;
|
padding: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-block::after {
|
|
||||||
content: "";
|
|
||||||
display: table;
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-title {
|
.card-title {
|
||||||
margin-bottom: 0.75rem;
|
margin-bottom: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
@ -4516,12 +4534,6 @@ tbody.collapse.active {
|
||||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-header::after {
|
|
||||||
content: "";
|
|
||||||
display: table;
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-header:first-child {
|
.card-header:first-child {
|
||||||
border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
|
border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
|
||||||
}
|
}
|
||||||
|
|
@ -4532,12 +4544,6 @@ tbody.collapse.active {
|
||||||
border-top: 1px solid rgba(0, 0, 0, 0.125);
|
border-top: 1px solid rgba(0, 0, 0, 0.125);
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-footer::after {
|
|
||||||
content: "";
|
|
||||||
display: table;
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-footer:last-child {
|
.card-footer:last-child {
|
||||||
border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
|
border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
BIN
docs/dist/css/bootstrap-flex.css.map
vendored
BIN
docs/dist/css/bootstrap-flex.css.map
vendored
Binary file not shown.
2
docs/dist/css/bootstrap-flex.min.css
vendored
2
docs/dist/css/bootstrap-flex.min.css
vendored
File diff suppressed because one or more lines are too long
BIN
docs/dist/css/bootstrap-flex.min.css.map
vendored
BIN
docs/dist/css/bootstrap-flex.min.css.map
vendored
Binary file not shown.
BIN
docs/dist/css/bootstrap-grid.css.map
vendored
BIN
docs/dist/css/bootstrap-grid.css.map
vendored
Binary file not shown.
BIN
docs/dist/css/bootstrap-reboot.css.map
vendored
BIN
docs/dist/css/bootstrap-reboot.css.map
vendored
Binary file not shown.
BIN
docs/dist/css/bootstrap-reboot.min.css.map
vendored
BIN
docs/dist/css/bootstrap-reboot.min.css.map
vendored
Binary file not shown.
|
|
@ -3472,6 +3472,7 @@ tbody.collapse.active {
|
||||||
.custom-control {
|
.custom-control {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
min-height: 1.5rem;
|
||||||
padding-left: 1.5rem;
|
padding-left: 1.5rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
@ -3513,7 +3514,7 @@ tbody.collapse.active {
|
||||||
|
|
||||||
.custom-control-indicator {
|
.custom-control-indicator {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: .25rem;
|
top: 0.25rem;
|
||||||
left: 0;
|
left: 0;
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
|
|
@ -3609,6 +3610,7 @@ tbody.collapse.active {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: 2.5rem;
|
height: 2.5rem;
|
||||||
|
margin-bottom: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
BIN
docs/dist/css/bootstrap.css.map
vendored
BIN
docs/dist/css/bootstrap.css.map
vendored
Binary file not shown.
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
BIN
docs/dist/css/bootstrap.min.css.map
vendored
BIN
docs/dist/css/bootstrap.min.css.map
vendored
Binary file not shown.
Loading…
Reference in a new issue