improvement: separate and fix breadcrumbs
This commit is contained in:
parent
48447e1390
commit
96785d88e3
3 changed files with 44 additions and 43 deletions
|
@ -6,6 +6,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@import 'components/buttons';
|
@import 'components/buttons';
|
||||||
|
@import 'components/breadcrumb';
|
||||||
@import 'components/navbars';
|
@import 'components/navbars';
|
||||||
@import 'components/pagination';
|
@import 'components/pagination';
|
||||||
@import 'components/cards';
|
@import 'components/cards';
|
||||||
|
|
43
src/scss/components/_breadcrumb.scss
Normal file
43
src/scss/components/_breadcrumb.scss
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
/* ------------------ BREADCRUMB ------------------- */
|
||||||
|
|
||||||
|
ul.breadcrumb, ol.breadcrumb, .breadcrumb {
|
||||||
|
padding-top: 0em;
|
||||||
|
background-color:transparent;
|
||||||
|
margin: 0;
|
||||||
|
padding-bottom:$lineheight;
|
||||||
|
@include li-flex();
|
||||||
|
}
|
||||||
|
|
||||||
|
.breadcrumb li.breadcrumb-item {
|
||||||
|
padding:0;
|
||||||
|
margin:0!important;
|
||||||
|
&:before {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, & > span {
|
||||||
|
display:inline-block;
|
||||||
|
@include button($button-large);
|
||||||
|
@include button-fullcontrol($color-background-alt, accentuate($color-background-alt), get-color("dark2"));
|
||||||
|
margin:0 $breadcrumb_margin 0 $breadcrumb_margin;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
@include button-fullcontrol($color-primary, $color-primary, $color-font-light);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(:first-child) a, &:not(:first-child) > span {
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius:0;
|
||||||
|
&:before {
|
||||||
|
content: " "!important;
|
||||||
|
border-left:1px solid rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(:last-child) a, &:not(:last-child) > span {
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -145,49 +145,6 @@ $grouped-test: $button-large/1.5 - 0.05rem ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------ BREADCRUMB ------------------- */
|
|
||||||
|
|
||||||
ul.breadcrumb, ol.breadcrumb, .breadcrumb {
|
|
||||||
padding-top: 0em;
|
|
||||||
background-color:transparent;
|
|
||||||
margin: 0;
|
|
||||||
padding-bottom:$lineheight;
|
|
||||||
}
|
|
||||||
|
|
||||||
.breadcrumb li.breadcrumb-item {
|
|
||||||
padding:0;
|
|
||||||
margin:0!important;
|
|
||||||
&:before {
|
|
||||||
display:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, & > span {
|
|
||||||
display:inline-block;
|
|
||||||
@include button($button-large);
|
|
||||||
@include button-fullcontrol($color-background-alt, accentuate($color-background-alt), get-color("dark2"));
|
|
||||||
margin:0 $breadcrumb_margin 0 $breadcrumb_margin;
|
|
||||||
|
|
||||||
&.active {
|
|
||||||
@include button-fullcontrol($color-primary, $color-primary, $color-font-light);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&:not(:first-child) a, &:not(:first-child) > span {
|
|
||||||
border-top-left-radius: 0;
|
|
||||||
border-bottom-left-radius:0;
|
|
||||||
&:before {
|
|
||||||
content: " "!important;
|
|
||||||
border-left:1px solid rgba(0,0,0,0.2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&:not(:last-child) a, &:not(:last-child) > span {
|
|
||||||
border-top-right-radius: 0;
|
|
||||||
border-bottom-right-radius:0;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// COLORIZE BUTTONS
|
// COLORIZE BUTTONS
|
||||||
|
|
||||||
.btn, a.btn, .btn.btn, .badge, .chip, a.chip, a.badge, .label, a.label, label.label {
|
.btn, a.btn, .btn.btn, .badge, .chip, a.chip, a.badge, .label, a.label, label.label {
|
||||||
|
|
Loading…
Reference in a new issue