webpack-bootstrap-ui-kit/src/scss/elements/sidebar.scss

57 lines
888 B
SCSS
Raw Normal View History

2021-08-09 18:04:09 +02:00
// remove containers for child elements
.sidebar__col {
2021-08-18 20:38:12 +02:00
margin-bottom: $element-reduced-spacer-y;
margin-top: $element-reduced-spacer-y;
position: relative;
2021-08-09 18:04:09 +02:00
}
.content-holder__sidebar {
2021-08-18 20:38:12 +02:00
.row {
.container,
.container-fluid {
padding: 0;
width: auto;
2021-08-09 18:04:09 +02:00
}
2021-08-18 20:38:12 +02:00
}
2021-08-09 18:04:09 +02:00
}
.page-content-sidebar {
2021-08-18 20:38:12 +02:00
// Sidebar elements
.element {
padding-bottom: ($element-reduced-spacer-y);
padding-top: ($element-reduced-spacer-y);
2021-08-09 18:04:09 +02:00
2021-08-18 20:38:12 +02:00
&:first-child {
padding-top: 0;
}
2021-08-09 18:04:09 +02:00
2021-08-18 20:38:12 +02:00
&:last-child {
padding-bottom: 0;
2021-08-09 18:04:09 +02:00
}
2021-08-18 20:38:12 +02:00
}
2021-08-09 18:04:09 +02:00
}
2021-08-18 20:38:12 +02:00
.element__widget {
}
2021-08-09 18:04:09 +02:00
.widget__Site_Widgets_SubmenuWidget {
2021-08-18 20:38:12 +02:00
.nav-link {
width: 100%;
&:hover,
&:focus,
&:active,
&.active {
color: $sidebar-nav-link-hover-color;
font-weight: bold;
2021-08-09 18:04:09 +02:00
}
2021-08-18 20:38:12 +02:00
}
2021-08-09 18:04:09 +02:00
2021-08-18 20:38:12 +02:00
.active {
.nav-link {
color: $sidebar-nav-link-hover-color;
font-weight: bold;
2021-08-09 18:04:09 +02:00
}
2021-08-18 20:38:12 +02:00
}
2021-08-09 18:04:09 +02:00
}