1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-24 03:40:10 +00:00
bootstrap/docs/assets/scss/_sidebar.scss

159 lines
2.4 KiB
SCSS
Raw Normal View History

2016-12-29 13:22:45 -08:00
// scss-lint:disable VendorPrefix
//
// Side navigation
//
.bd-toc {
position: sticky;
top: 4rem;
max-height: calc(100vh - 4rem);
padding-top: 1.5rem;
padding-bottom: 1.5rem;
overflow-y: auto;
font-size: .85rem;
}
.section-nav {
padding-left: 0;
border-left: 1px solid #eee;
ul {
padding-left: 1rem;
2017-05-27 22:12:18 -07:00
ul {
display: none;
}
}
}
.toc-entry {
display: block;
a {
display: block;
padding: .25rem 1.5rem;
color: #99979c;
&:hover {
color: $brand-primary;
text-decoration: none;
}
}
}
.bd-sidebar {
2017-05-27 17:36:35 -07:00
background-color: #f5f5f5;
border-right: 1px solid rgba(0,0,0,.1);
@include media-breakpoint-up(md) {
position: sticky;
2017-05-27 17:36:35 -07:00
top: 4rem;
2016-09-05 22:41:10 -07:00
max-height: calc(100vh - 4rem);
overflow-y: auto;
}
2017-05-27 18:47:45 -07:00
@include media-breakpoint-up(xl) {
max-width: 320px;
}
}
2016-10-24 16:06:32 -07:00
.bd-links {
2017-05-27 17:36:35 -07:00
margin-right: -15px;
margin-left: -15px;
2016-10-24 16:06:32 -07:00
}
.bd-search {
position: relative;
2017-05-27 18:30:58 -07:00
padding-top: 1rem;
padding-bottom: 1rem;
}
.bd-search-results {
right: 0;
display: block;
padding: 0;
overflow: hidden;
2016-10-24 16:06:32 -07:00
font-size: .85rem;
2015-04-29 11:42:50 -07:00
&:empty {
display: none;
}
2015-08-18 19:51:21 -07:00
.dropdown-item {
padding-right: .75rem;
padding-left: .75rem;
2015-08-18 19:51:21 -07:00
&:first-child { margin-top: .25rem; }
&:last-child { margin-bottom: .25rem; }
}
2015-08-18 19:51:21 -07:00
.no-results {
padding: .75rem 1rem;
color: #7a7a7a;
text-align: center;
2015-12-06 16:41:38 -08:00
white-space: normal; // Undo .dropdown-item defaults
}
}
.bd-sidenav {
display: none;
}
.bd-toc-link {
display: block;
2017-05-27 17:36:35 -07:00
padding: .75rem 1.5rem;
2017-05-27 18:30:58 -07:00
font-weight: 500;
color: $gray;
}
2017-05-27 18:30:58 -07:00
.bd-toc-link:hover {
color: $brand-primary;
text-decoration: none;
2017-05-27 18:30:58 -07:00
background-color: #fafafa;
}
2016-10-24 16:06:32 -07:00
.bd-toc-item {
2017-05-27 18:30:58 -07:00
&:first-child {
border-top: 1px solid $gray-lighter;
}
2016-10-24 16:06:32 -07:00
&:not(:last-child) {
border-bottom: 1px solid $gray-lighter;
}
2017-05-27 18:30:58 -07:00
&.active {
background-color: #fafafa;
> .bd-toc-link {
color: $gray-dark;
}
> .bd-sidenav {
display: block;
padding-bottom: .75rem;
2017-05-27 18:30:58 -07:00
}
}
2016-10-24 16:06:32 -07:00
}
// All levels of nav
.bd-sidebar .nav > li > a {
display: block;
2017-05-27 17:36:35 -07:00
padding: .25rem 1.5rem;
font-size: 90%;
color: #99979c;
}
2017-05-27 18:30:58 -07:00
.bd-sidebar .nav > li > a:hover {
color: $brand-primary;
text-decoration: none;
background-color: transparent;
}
2017-05-27 18:30:58 -07:00
.bd-sidebar .nav > .active > a,
2017-05-27 18:30:58 -07:00
.bd-sidebar .nav > .active:hover > a {
font-weight: 500;
color: $gray-dark;
background-color: transparent;
}