grunt dist and docs

This commit is contained in:
Mark Otto 2015-03-29 00:14:02 -07:00
parent ef0b88f6b3
commit 6a2d456719
7 changed files with 61 additions and 78 deletions

View File

@ -367,6 +367,10 @@ hr {
clip: auto; clip: auto;
} }
[role="button"] {
cursor: pointer;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
margin-top: 0; margin-top: 0;
font-family: inherit; font-family: inherit;
@ -1990,13 +1994,13 @@ textarea.input-lg, .input-group-lg > textarea.form-control, .input-group-lg > te
pointer-events: none; pointer-events: none;
} }
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback { .input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, .input-group-lg + .form-control-feedback {
width: 3.316667rem; width: 3.316667rem;
height: 3.316667rem; height: 3.316667rem;
line-height: 3.316667rem; line-height: 3.316667rem;
} }
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback { .input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, .input-group-sm + .form-control-feedback {
width: 2.025rem; width: 2.025rem;
height: 2.025rem; height: 2.025rem;
line-height: 2.025rem; line-height: 2.025rem;
@ -2209,13 +2213,16 @@ textarea.input-lg, .input-group-lg > textarea.form-control, .input-group-lg > te
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
} }
.btn.disabled, .btn:disabled, fieldset[disabled] .btn { .btn.disabled, .btn:disabled, fieldset[disabled] .btn {
pointer-events: none;
cursor: false; cursor: false;
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;
opacity: .65; opacity: .65;
} }
a.btn.disaabled, fieldset[disabled] a.btn {
pointer-events: none;
}
.btn-primary { .btn-primary {
color: #fff; color: #fff;
background-color: #0275d8; background-color: #0275d8;
@ -2486,11 +2493,9 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto
.collapse { .collapse {
display: none; display: none;
visibility: hidden;
} }
.collapse.in { .collapse.in {
display: block; display: block;
visibility: visible;
} }
.collapsing { .collapsing {
@ -2503,9 +2508,9 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto
-webkit-transition-duration: .35s; -webkit-transition-duration: .35s;
-o-transition-duration: .35s; -o-transition-duration: .35s;
transition-duration: .35s; transition-duration: .35s;
-webkit-transition-property: height, visibility; -webkit-transition-property: height;
-o-transition-property: height, visibility; -o-transition-property: height;
transition-property: height, visibility; transition-property: height;
} }
.dropup, .dropdown { .dropup, .dropdown {
@ -3229,11 +3234,9 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto
.tab-content > .tab-pane { .tab-content > .tab-pane {
display: none; display: none;
visibility: hidden;
} }
.tab-content > .active { .tab-content > .active {
display: block; display: block;
visibility: visible;
} }
.nav-tabs .dropdown-menu { .nav-tabs .dropdown-menu {
@ -4462,7 +4465,7 @@ button.close {
right: 0; right: 0;
bottom: 0; bottom: 0;
left: 0; left: 0;
z-index: 1040; z-index: 1050;
display: none; display: none;
overflow: hidden; overflow: hidden;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
@ -4505,10 +4508,12 @@ button.close {
} }
.modal-backdrop { .modal-backdrop {
position: absolute; position: fixed;
top: 0; top: 0;
right: 0; right: 0;
bottom: 0;
left: 0; left: 0;
z-index: 1040;
background-color: #000; background-color: #000;
} }
.modal-backdrop.fade { .modal-backdrop.fade {
@ -4597,7 +4602,6 @@ button.close {
font-size: .85rem; font-size: .85rem;
font-weight: normal; font-weight: normal;
line-height: 1.4; line-height: 1.4;
visibility: visible;
opacity: 0; opacity: 0;
} }
.tooltip.in { .tooltip.in {
@ -5118,7 +5122,7 @@ button.close {
color: #0275d8; color: #0275d8;
} }
a.text-primary:hover { a.text-primary:focus, a.text-primary:hover {
color: #025aa5; color: #025aa5;
} }
@ -5126,7 +5130,7 @@ a.text-primary:hover {
color: #3c763d; color: #3c763d;
} }
a.text-success:hover { a.text-success:focus, a.text-success:hover {
color: #2b542c; color: #2b542c;
} }
@ -5134,7 +5138,7 @@ a.text-success:hover {
color: #31708f; color: #31708f;
} }
a.text-info:hover { a.text-info:focus, a.text-info:hover {
color: #245269; color: #245269;
} }
@ -5142,7 +5146,7 @@ a.text-info:hover {
color: #8a6d3b; color: #8a6d3b;
} }
a.text-warning:hover { a.text-warning:focus, a.text-warning:hover {
color: #66512c; color: #66512c;
} }
@ -5150,7 +5154,7 @@ a.text-warning:hover {
color: #a94442; color: #a94442;
} }
a.text-danger:hover { a.text-danger:focus, a.text-danger:hover {
color: #843534; color: #843534;
} }
@ -5162,7 +5166,7 @@ a.text-danger:hover {
background-color: #0275d8; background-color: #0275d8;
} }
a.bg-primary:hover { a.bg-primary:focus, a.bg-primary:hover {
background-color: #025aa5; background-color: #025aa5;
} }
@ -5170,7 +5174,7 @@ a.bg-primary:hover {
background-color: #dff0d8; background-color: #dff0d8;
} }
a.bg-success:hover { a.bg-success:focus, a.bg-success:hover {
background-color: #c1e2b3; background-color: #c1e2b3;
} }
@ -5178,7 +5182,7 @@ a.bg-success:hover {
background-color: #d9edf7; background-color: #d9edf7;
} }
a.bg-info:hover { a.bg-info:focus, a.bg-info:hover {
background-color: #afd9ee; background-color: #afd9ee;
} }
@ -5186,7 +5190,7 @@ a.bg-info:hover {
background-color: #fcf8e3; background-color: #fcf8e3;
} }
a.bg-warning:hover { a.bg-warning:focus, a.bg-warning:hover {
background-color: #f7ecb5; background-color: #f7ecb5;
} }
@ -5194,7 +5198,7 @@ a.bg-warning:hover {
background-color: #f2dede; background-color: #f2dede;
} }
a.bg-danger:hover { a.bg-danger:focus, a.bg-danger:hover {
background-color: #e4b9b9; background-color: #e4b9b9;
} }

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

View File

@ -314,13 +314,9 @@ a:focus {
} }
img { img {
vertical-align: middle;
}
.img-responsive, .carousel-inner > .carousel-item > img, .carousel-inner > .carousel-item > a > img {
display: block;
max-width: 100%; max-width: 100%;
height: auto; height: auto;
vertical-align: middle;
} }
.img-rounded { .img-rounded {
@ -328,16 +324,13 @@ img {
} }
.img-thumbnail { .img-thumbnail {
display: inline-block;
max-width: 100%;
height: auto;
padding: .25rem; padding: .25rem;
line-height: 1.5; line-height: 1.5;
background-color: #fff; background-color: #fff;
border: 1px solid #ddd; border: 1px solid #ddd;
border-radius: .25rem; border-radius: .25rem;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
box-shadow: 0 1px 2px rgba(0, 0, 0, .075); box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
-webkit-transition: all .2s ease-in-out; -webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out; transition: all .2s ease-in-out;
@ -374,6 +367,10 @@ hr {
clip: auto; clip: auto;
} }
[role="button"] {
cursor: pointer;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
margin-top: 0; margin-top: 0;
font-family: inherit; font-family: inherit;
@ -1997,13 +1994,13 @@ textarea.input-lg, .input-group-lg > textarea.form-control, .input-group-lg > te
pointer-events: none; pointer-events: none;
} }
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback { .input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, .input-group-lg + .form-control-feedback {
width: 3.316667rem; width: 3.316667rem;
height: 3.316667rem; height: 3.316667rem;
line-height: 3.316667rem; line-height: 3.316667rem;
} }
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback { .input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, .input-group-sm + .form-control-feedback {
width: 2.025rem; width: 2.025rem;
height: 2.025rem; height: 2.025rem;
line-height: 2.025rem; line-height: 2.025rem;
@ -2216,13 +2213,16 @@ textarea.input-lg, .input-group-lg > textarea.form-control, .input-group-lg > te
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
} }
.btn.disabled, .btn:disabled, fieldset[disabled] .btn { .btn.disabled, .btn:disabled, fieldset[disabled] .btn {
pointer-events: none;
cursor: false; cursor: false;
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;
opacity: .65; opacity: .65;
} }
a.btn.disaabled, fieldset[disabled] a.btn {
pointer-events: none;
}
.btn-primary { .btn-primary {
color: #fff; color: #fff;
background-color: #0275d8; background-color: #0275d8;
@ -2493,11 +2493,9 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto
.collapse { .collapse {
display: none; display: none;
visibility: hidden;
} }
.collapse.in { .collapse.in {
display: block; display: block;
visibility: visible;
} }
.collapsing { .collapsing {
@ -2510,9 +2508,9 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto
-webkit-transition-duration: .35s; -webkit-transition-duration: .35s;
-o-transition-duration: .35s; -o-transition-duration: .35s;
transition-duration: .35s; transition-duration: .35s;
-webkit-transition-property: height, visibility; -webkit-transition-property: height;
-o-transition-property: height, visibility; -o-transition-property: height;
transition-property: height, visibility; transition-property: height;
} }
.dropup, .dropdown { .dropup, .dropdown {
@ -2803,24 +2801,6 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto
border-top-right-radius: 0; border-top-right-radius: 0;
} }
.btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate;
}
.btn-group-justified > .btn, .btn-group-justified > .btn-group {
display: table-cell;
float: none;
width: 1%;
}
.btn-group-justified > .btn-group .btn {
width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
position: absolute; position: absolute;
clip: rect(0, 0, 0, 0); clip: rect(0, 0, 0, 0);
@ -3254,11 +3234,9 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto
.tab-content > .tab-pane { .tab-content > .tab-pane {
display: none; display: none;
visibility: hidden;
} }
.tab-content > .active { .tab-content > .active {
display: block; display: block;
visibility: visible;
} }
.nav-tabs .dropdown-menu { .nav-tabs .dropdown-menu {
@ -4487,7 +4465,7 @@ button.close {
right: 0; right: 0;
bottom: 0; bottom: 0;
left: 0; left: 0;
z-index: 1040; z-index: 1050;
display: none; display: none;
overflow: hidden; overflow: hidden;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
@ -4530,10 +4508,12 @@ button.close {
} }
.modal-backdrop { .modal-backdrop {
position: absolute; position: fixed;
top: 0; top: 0;
right: 0; right: 0;
bottom: 0;
left: 0; left: 0;
z-index: 1040;
background-color: #000; background-color: #000;
} }
.modal-backdrop.fade { .modal-backdrop.fade {
@ -4622,7 +4602,6 @@ button.close {
font-size: .85rem; font-size: .85rem;
font-weight: normal; font-weight: normal;
line-height: 1.4; line-height: 1.4;
visibility: visible;
opacity: 0; opacity: 0;
} }
.tooltip.in { .tooltip.in {
@ -5143,7 +5122,7 @@ button.close {
color: #0275d8; color: #0275d8;
} }
a.text-primary:hover { a.text-primary:focus, a.text-primary:hover {
color: #025aa5; color: #025aa5;
} }
@ -5151,7 +5130,7 @@ a.text-primary:hover {
color: #3c763d; color: #3c763d;
} }
a.text-success:hover { a.text-success:focus, a.text-success:hover {
color: #2b542c; color: #2b542c;
} }
@ -5159,7 +5138,7 @@ a.text-success:hover {
color: #31708f; color: #31708f;
} }
a.text-info:hover { a.text-info:focus, a.text-info:hover {
color: #245269; color: #245269;
} }
@ -5167,7 +5146,7 @@ a.text-info:hover {
color: #8a6d3b; color: #8a6d3b;
} }
a.text-warning:hover { a.text-warning:focus, a.text-warning:hover {
color: #66512c; color: #66512c;
} }
@ -5175,7 +5154,7 @@ a.text-warning:hover {
color: #a94442; color: #a94442;
} }
a.text-danger:hover { a.text-danger:focus, a.text-danger:hover {
color: #843534; color: #843534;
} }
@ -5187,7 +5166,7 @@ a.text-danger:hover {
background-color: #0275d8; background-color: #0275d8;
} }
a.bg-primary:hover { a.bg-primary:focus, a.bg-primary:hover {
background-color: #025aa5; background-color: #025aa5;
} }
@ -5195,7 +5174,7 @@ a.bg-primary:hover {
background-color: #dff0d8; background-color: #dff0d8;
} }
a.bg-success:hover { a.bg-success:focus, a.bg-success:hover {
background-color: #c1e2b3; background-color: #c1e2b3;
} }
@ -5203,7 +5182,7 @@ a.bg-success:hover {
background-color: #d9edf7; background-color: #d9edf7;
} }
a.bg-info:hover { a.bg-info:focus, a.bg-info:hover {
background-color: #afd9ee; background-color: #afd9ee;
} }
@ -5211,7 +5190,7 @@ a.bg-info:hover {
background-color: #fcf8e3; background-color: #fcf8e3;
} }
a.bg-warning:hover { a.bg-warning:focus, a.bg-warning:hover {
background-color: #f7ecb5; background-color: #f7ecb5;
} }
@ -5219,7 +5198,7 @@ a.bg-warning:hover {
background-color: #f2dede; background-color: #f2dede;
} }
a.bg-danger:hover { a.bg-danger:focus, a.bg-danger:hover {
background-color: #e4b9b9; background-color: #e4b9b9;
} }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long