redoc/lib/components/SideMenuCat/side-menu-cat.scss

29 lines
409 B
SCSS
Raw Normal View History

.menu-item {
2015-10-15 20:06:16 +03:00
font-weight: bold;
2015-10-18 19:46:21 +03:00
font-size: 15px;
2015-10-15 21:35:05 +03:00
cursor: pointer;
2015-10-18 19:46:21 +03:00
color: #666;
2015-10-30 13:03:13 +03:00
text-transform: capitalize;
2015-10-15 20:06:16 +03:00
}
.menu-subitems {
2015-10-15 20:06:16 +03:00
padding-left: 20px;
margin: 0;
2015-10-15 21:35:05 +03:00
height: 0;
overflow: hidden;
2015-10-15 20:06:16 +03:00
}
.menu-subitems.active {
2015-10-15 21:35:05 +03:00
height: auto;
2015-10-15 20:06:16 +03:00
}
.menu-subitems li {
2015-10-15 20:06:16 +03:00
list-style: none inside none;
padding: 5px 0;
2015-10-15 21:35:05 +03:00
cursor: pointer;
2015-10-15 20:06:16 +03:00
}
.menu-item.active, .menu-subitems li.active {
2015-10-15 20:06:16 +03:00
color: #1976D3;
}