fd54c01f by bootflat

modify breadcrumb bug

1 parent 70266a35
......@@ -468,8 +468,8 @@ blockquote {
}
.breadcrumb-arrow li a, .breadcrumb-arrow li:not(:first-child) span {
padding: 0 10px 0 25px;
height: 35px;
line-height: 35px;
height: 36px;
line-height: 36px;
}
.breadcrumb-arrow li:first-child a {
padding: 0 10px;
......@@ -486,23 +486,23 @@ blockquote {
}
.breadcrumb-arrow li a:before, .breadcrumb-arrow li a:after {
position: absolute;
top: 0;
top: -1px;
content: '';
width: 0;
height: 0;
border-top: 17px solid transparent;
border-bottom: 17px solid transparent;
border-top: 18px solid transparent;
border-bottom: 18px solid transparent;
}
.breadcrumb-arrow li a:before {
right: -10px;
border-left-width: 10px;
border-left-width: 11px;
border-left-style: solid;
border-left-color: #3bafda;
z-index: 3;
}
.breadcrumb-arrow li a:after {
right: -11px;
border-left: 10px solid #2494be;
border-left: 11px solid #2494be;
z-index: 2;
}
.breadcrumb-arrow li a:hover, .breadcrumb-arrow li a:focus {
......
......@@ -57,8 +57,8 @@ $breadcrumb-arrow-background-color-hover: $aqua-light !default;
& li a,
& li:not(:first-child) span {
padding: 0 10px 0 25px;
height: 35px;
line-height: 35px;
height: 36px;
line-height: 36px;
}
& li:first-child a {
padding: 0 10px;
......@@ -76,23 +76,23 @@ $breadcrumb-arrow-background-color-hover: $aqua-light !default;
& li a:before,
& li a:after {
position: absolute;
top: 0;
top: -1px;
content: '';
width: 0;
height: 0;
border-top: 17px solid transparent;
border-bottom: 17px solid transparent;
border-top: 18px solid transparent;
border-bottom: 18px solid transparent;
}
& li a:before {
right: -10px;
border-left-width: 10px;
border-left-width: 11px;
border-left-style: solid;
border-left-color: $breadcrumb-arrow-background-color;
z-index: 3;
}
& li a:after{
right: -11px;
border-left: 10px solid darken($breadcrumb-arrow-background-color, 10%);
border-left: 11px solid darken($breadcrumb-arrow-background-color, 10%);
z-index: 2;
}
& li a:hover,
......
......@@ -22,6 +22,7 @@ $image-radius: 4px !default;
body {
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
// font-family: 'Lato', sans-serif;
color: $body-font-color;
background-color: $body-background-color;
}
......
body {
position: relative; /* For scrollyspy */
/*font-family: 'Lato', sans-serif !important;*/
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
/*font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; */
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
/*font-family: 'Lato', sans-serif !important;*/
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}
/* ----------------------------------
......
This diff could not be displayed because it is too large.
......@@ -10,6 +10,7 @@
<!-- site css -->
<link rel="stylesheet" href="css/site.min.css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,800,700,400italic,600italic,700italic,800italic,300italic" rel="stylesheet" type="text/css">
<!-- <link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'> -->
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
......