mirror of
https://github.com/Redocly/redoc.git
synced 2025-02-01 02:24:08 +03:00
84 lines
1.7 KiB
SCSS
84 lines
1.7 KiB
SCSS
|
@import '../../shared/styles/variables';
|
||
|
|
||
|
.menu-item-header {
|
||
|
cursor: pointer;
|
||
|
color: rgba($text-color, .6);
|
||
|
-webkit-transition: all .15s ease-in-out;
|
||
|
-moz-transition: all .15s ease-in-out;
|
||
|
-ms-transition: all .15s ease-in-out;
|
||
|
-o-transition: all .15s ease-in-out;
|
||
|
transition: all .15s ease-in-out;
|
||
|
display: block;
|
||
|
padding: $side-menu-item-vpadding*2.5 $side-menu-item-hpadding;
|
||
|
|
||
|
&[hidden] {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
&.disabled, &.disabled:hover {
|
||
|
cursor: default;
|
||
|
color: lighten($text-color, 60%);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.menu-item {
|
||
|
-webkit-transition: all .15s ease-in-out;
|
||
|
-moz-transition: all .15s ease-in-out;
|
||
|
-ms-transition: all .15s ease-in-out;
|
||
|
-o-transition: all .15s ease-in-out;
|
||
|
transition: all .15s ease-in-out;
|
||
|
list-style: none inside none;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.menu-item:hover,
|
||
|
.menu-item.active {
|
||
|
background: darken($side-menu-active-bg-color, 6%);
|
||
|
}
|
||
|
|
||
|
.menu-subitems {
|
||
|
margin: 0;
|
||
|
font-size: 0.929em;
|
||
|
line-height: 1.2em;
|
||
|
font-weight: $light;
|
||
|
color: rgba($text-color, .9);
|
||
|
padding: 0;
|
||
|
overflow: hidden;
|
||
|
height: 0;
|
||
|
|
||
|
.active > & {
|
||
|
height: auto;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.menu-item-level-0 {
|
||
|
> .menu-item-header {
|
||
|
font-family: $headers-font, $headers-font-family;
|
||
|
font-weight: $light;
|
||
|
font-size: $h5;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
|
||
|
> .menu-item-header:hover,
|
||
|
&.active > .menu-item-header {
|
||
|
color: $primary-color;
|
||
|
background: $side-menu-active-bg-color;
|
||
|
}
|
||
|
&.active {
|
||
|
background: $side-menu-active-bg-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.menu-item-level-1 {
|
||
|
> .menu-item-header {
|
||
|
padding-left: 2*$side-menu-item-hpadding;
|
||
|
}
|
||
|
|
||
|
> .menu-item-header:hover,
|
||
|
&.active > .menu-item-header {
|
||
|
background: darken($side-menu-active-bg-color, 6%);
|
||
|
}
|
||
|
}
|