[fix] CSS cleanup and rebuild.

This commit is contained in:
opi 2015-09-03 09:35:56 +02:00
parent 6fcc90e076
commit 777d3e045d
2 changed files with 24 additions and 46 deletions

View file

@ -410,34 +410,28 @@ a.list-group-item-heading,
} }
} }
.btn-breadcrumb a:not(:last-child):after { .btn-breadcrumb a:not(:last-child) {
&:after,
&:before {
position: absolute;
top: 50%;
left: 100%;
z-index: 3;
content: " "; content: " ";
display: block; display: block;
width: 0; width: 0;
height: 0; height: 0;
border-top: 17px solid transparent; border-top: 17px solid transparent;
border-bottom: 17px solid transparent; border-bottom: 17px solid transparent;
border-left: 10px solid white;
position: absolute;
top: 50%;
margin-top: -17px; margin-top: -17px;
left: 100%;
z-index: 3;
} }
.btn-breadcrumb a:not(:last-child):before { &:after {
content: " "; border-left: 10px solid white;
display: block; }
width: 0; &:before {
height: 0;
border-top: 17px solid transparent;
border-bottom: 17px solid transparent;
border-left: 10px solid rgb(173, 173, 173); border-left: 10px solid rgb(173, 173, 173);
position: absolute;
top: 50%;
margin-top: -17px;
margin-left: 1px; margin-left: 1px;
left: 100%; }
z-index: 3;
} }
.btn-breadcrumb a { .btn-breadcrumb a {
@ -451,22 +445,6 @@ a.list-group-item-heading,
} }
/** Default button **/
.btn-group.btn-breadcrumb a:not(:last-child):after {
border-left: 10px solid #fff;
}
.btn-group.btn-breadcrumb a:not(:last-child):before {
border-left: 10px solid #ccc;
}
.btn-group.btn-breadcrumb a:hover:not(:last-child):after {
border-left: 10px solid #ebebeb;
}
.btn-group.btn-breadcrumb a:hover:not(:last-child):before {
border-left: 10px solid #adadad;
}
.separator { .separator {
.clearfix(); .clearfix();
margin-bottom: 25px; margin-bottom: 25px;

File diff suppressed because one or more lines are too long