This commit is contained in:
Mark Otto 2016-02-03 20:53:00 -08:00
parent b75a0ca979
commit f31575ad63
10 changed files with 81 additions and 27 deletions

View file

@ -3793,8 +3793,9 @@ input[type="button"].btn-block {
display: block;
margin-bottom: .75rem;
background-color: #fff;
border: 1px solid #e5e5e5;
border-radius: .25rem;
-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
}
.card-block {
@ -3839,7 +3840,8 @@ input[type="button"].btn-block {
.card-header {
padding: .75rem 1.25rem;
background-color: #f5f5f5;
border-bottom: 1px solid #e5e5e5;
-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
}
.card-header::after {
@ -3855,7 +3857,8 @@ input[type="button"].btn-block {
.card-footer {
padding: .75rem 1.25rem;
background-color: #f5f5f5;
border-top: 1px solid #e5e5e5;
-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
}
.card-footer::after {
@ -3868,6 +3871,30 @@ input[type="button"].btn-block {
border-radius: 0 0 .25rem .25rem;
}
.card-header-tabs {
margin-right: -.625rem;
margin-bottom: -.75rem;
margin-left: -.625rem;
border-bottom: 0;
}
.card-header-tabs .nav-item {
margin-bottom: 0;
}
.card-header-pills {
margin-right: -.625rem;
margin-left: -.625rem;
}
.card-nav .nav-item {
float: left;
}
.card-nav .nav-item + .nav-item {
margin-left: .2rem;
}
.card-primary {
background-color: #0275d8;
border-color: #0275d8;
@ -4066,12 +4093,21 @@ input[type="button"].btn-block {
}
.breadcrumb-item + .breadcrumb-item::before {
display: inline-block;
padding-right: .5rem;
padding-left: .5rem;
color: #818a91;
content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
text-decoration: none;
}
.breadcrumb-item.active {
color: #818a91;
}
@ -4662,18 +4698,9 @@ base::-moz-progress-bar,
}
.list-group-flush .list-group-item {
border-width: 1px 0;
border-radius: 0;
}
.list-group-flush:first-child .list-group-item:first-child {
border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
border-bottom: 0;
}
a.list-group-item,
button.list-group-item {
width: 100%;

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View file

@ -3793,8 +3793,9 @@ input[type="button"].btn-block {
display: block;
margin-bottom: .75rem;
background-color: #fff;
border: 1px solid #e5e5e5;
border-radius: .25rem;
-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
}
.card-block {
@ -3839,7 +3840,8 @@ input[type="button"].btn-block {
.card-header {
padding: .75rem 1.25rem;
background-color: #f5f5f5;
border-bottom: 1px solid #e5e5e5;
-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
}
.card-header::after {
@ -3855,7 +3857,8 @@ input[type="button"].btn-block {
.card-footer {
padding: .75rem 1.25rem;
background-color: #f5f5f5;
border-top: 1px solid #e5e5e5;
-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .125);
}
.card-footer::after {
@ -3868,6 +3871,30 @@ input[type="button"].btn-block {
border-radius: 0 0 .25rem .25rem;
}
.card-header-tabs {
margin-right: -.625rem;
margin-bottom: -.75rem;
margin-left: -.625rem;
border-bottom: 0;
}
.card-header-tabs .nav-item {
margin-bottom: 0;
}
.card-header-pills {
margin-right: -.625rem;
margin-left: -.625rem;
}
.card-nav .nav-item {
float: left;
}
.card-nav .nav-item + .nav-item {
margin-left: .2rem;
}
.card-primary {
background-color: #0275d8;
border-color: #0275d8;
@ -4066,12 +4093,21 @@ input[type="button"].btn-block {
}
.breadcrumb-item + .breadcrumb-item::before {
display: inline-block;
padding-right: .5rem;
padding-left: .5rem;
color: #818a91;
content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
text-decoration: none;
}
.breadcrumb-item.active {
color: #818a91;
}
@ -4662,18 +4698,9 @@ base::-moz-progress-bar,
}
.list-group-flush .list-group-item {
border-width: 1px 0;
border-radius: 0;
}
.list-group-flush:first-child .list-group-item:first-child {
border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
border-bottom: 0;
}
a.list-group-item,
button.list-group-item {
width: 100%;

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.