scinote-web/app/assets/stylesheets/themes/menu_bar.scss

104 lines
1.6 KiB
SCSS
Raw Normal View History

2018-03-20 20:53:11 +08:00
@import "constants";
@import "mixins";
:root {
--menu-bar-width: 83px;
}
2018-03-20 20:53:11 +08:00
.menu-bar {
background-color: $color-white;
.scroll-wrapper {
height: 100%;
padding-top: 16px;
width: var(--menu-bar-width);
overflow-x: hidden;
}
2018-03-20 20:53:11 +08:00
ul.nav > li {
2018-12-10 22:42:05 +08:00
& > a,
& > span {
2019-12-04 22:51:26 +08:00
@include font-small;
color: $color-volcano;
2018-03-20 20:53:11 +08:00
display: grid;
margin-left: auto;
margin-right: auto;
padding: 10px 0;
2018-03-20 20:53:11 +08:00
text-align: center;
2018-05-28 16:42:07 +08:00
word-break: normal;
2018-03-20 20:53:11 +08:00
.fas {
font-size: 18px;
padding-bottom: 5px;
2018-03-20 20:53:11 +08:00
}
}
&.active {
2018-05-14 18:08:45 +08:00
@include box-shadow(-4px 0 0 $brand-primary);
2018-03-20 20:53:11 +08:00
background-color: $color-gainsboro;
2018-05-12 00:02:17 +08:00
margin-left: 4px;
2018-03-20 20:53:11 +08:00
& > a {
color: $color-emperor;
}
}
2018-12-10 22:42:05 +08:00
&.disabled {
box-shadow: none;
cursor: not-allowed;
opacity: .65;
}
2018-03-20 20:53:11 +08:00
}
ul.nav-bottom {
bottom: 0;
padding-bottom: 16px;
position: fixed;
width: inherit;
}
.dropup {
.dropdown-menu {
bottom: 0;
left: 99%;
margin-bottom: 0;
2020-03-17 22:44:57 +08:00
& > li > a {
2021-06-08 21:34:19 +08:00
padding: 8px 38px;
2020-03-17 22:44:57 +08:00
}
}
&.open > a {
color: $color-emperor;
}
.about-scinote {
font-size: 12px;
.core-version {
color: $color-silver-chalice;
}
}
}
2020-03-17 22:44:57 +08:00
2021-06-08 21:34:19 +08:00
#knowledge-center-link {
.fas {
margin-left: -26px;
padding: 3px;
position: absolute
}
}
2018-03-20 20:53:11 +08:00
}
@media(max-height:510px) {
2018-05-28 17:53:49 +08:00
.menu-bar .nav-bottom {
2018-03-20 20:53:11 +08:00
position: relative;
width: auto;
}
}
.all-teams-navigation-link {
2020-01-24 20:22:04 +08:00
color: $brand-primary !important;
}