[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 {
content: " ";
display: block;
width: 0;
height: 0;
border-top: 17px solid transparent;
border-bottom: 17px solid transparent;
border-left: 10px solid white;
position: absolute;
top: 50%;
margin-top: -17px;
left: 100%;
z-index: 3;
}
.btn-breadcrumb a:not(:last-child):before {
content: " ";
display: block;
width: 0;
height: 0;
border-top: 17px solid transparent;
border-bottom: 17px solid transparent;
border-left: 10px solid rgb(173, 173, 173);
position: absolute;
top: 50%;
margin-top: -17px;
margin-left: 1px;
left: 100%;
z-index: 3;
.btn-breadcrumb a:not(:last-child) {
&:after,
&:before {
position: absolute;
top: 50%;
left: 100%;
z-index: 3;
content: " ";
display: block;
width: 0;
height: 0;
border-top: 17px solid transparent;
border-bottom: 17px solid transparent;
margin-top: -17px;
}
&:after {
border-left: 10px solid white;
}
&:before {
border-left: 10px solid rgb(173, 173, 173);
margin-left: 1px;
}
}
.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 {
.clearfix();
margin-bottom: 25px;

File diff suppressed because one or more lines are too long