@use "sass:math"; .navbar { z-index: 2; .navbar-dropdown { box-shadow: $navbar-dropdown-boxed-shadow; top: 101%; } .navbar-brand { display: flex; align-items: center; } } .navbar.main-theme { background: $light-background; z-index: 5 !important; justify-content: space-between; align-items: center; .title { margin: 0; font-size: 1.75rem; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .navbar-end { margin-left: 0; align-items: center; display: flex; } @media screen and (max-width: $desktop) { display: flex; justify-content: space-between; @media screen and (max-width: $tablet) { .navbar-brand { display: none; } .user { width: $user-dropdown-width-mobile; display: flex; align-items: center; .dropdown-trigger { line-height: 1; .button { padding: 0 0.25rem; height: 1rem; .icon { width: .5rem; } } } .username { display: none; } } } } } .navbar-menu .navbar-item .icon { margin: 0 0.5rem; } .navbar { z-index: 4 !important; } .app-container { .namespace-container { background: $vikunja-nav-background; z-index: 6; color: $vikunja-nav-color; padding: 0; transition: all $transition; position: fixed; bottom: 0; top: $navbar-height; overflow-x: auto; width: $navbar-width; padding: 0 0 1rem; left: -147vw; bottom: 0; @media screen and (max-width: $tablet) { top: 0; width: 70vw; } &.is-active { left: 0; } .menu { .menu-label { font-size: 1rem; font-weight: 700; font-weight: bold; font-family: $vikunja-font; color: $vikunja-nav-color; font-weight: 500; min-height: 2.5rem; padding-top: 0; padding-left: $navbar-padding; overflow: hidden; } .menu-label, .menu-list span.list-menu-link, .menu-list a { display: flex; align-items: center; justify-content: space-between; cursor: pointer; .list-menu-title { overflow: hidden; text-overflow: ellipsis; width: 100%; } .color-bubble { height: 12px; flex: 0 0 12px; } .favorite { margin-left: .25rem; transition: opacity $transition, color $transition; opacity: 0; &:hover { color: $orange; } &.is-favorite { opacity: 1; color: $orange; } } &:hover .favorite { opacity: 1; } } .menu-label { .color-bubble { width: 14px !important; height: 14px !important; } .is-archived { min-width: 85px; } } .namespace-title { display: flex; align-items: center; justify-content: space-between; .menu-label { margin-bottom: 0; flex: 1 1 auto; .name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } } a:not(.dropdown-item) { color: $vikunja-nav-color; padding: 0 .25rem; } .dropdown-trigger { padding: .5rem; cursor: pointer; } .toggle-lists-icon { svg { transition: all $transition; transform: rotate(90deg); opacity: 1; } &.active svg { transform: rotate(0deg); opacity: 0; } } &:hover .toggle-lists-icon svg { opacity: 1; } &:not(.has-menu) .toggle-lists-icon { padding-right: 1rem; } } .menu-label, .nsettings, .menu-list span.list-menu-link, .menu-list a { color: $vikunja-nav-color; } .menu-list { li { height: 44px; display: flex; align-items: center; .dropdown-trigger { opacity: 0; padding: .5rem; cursor: pointer; transition: $transition; } &:hover { background: $white; .dropdown-trigger { opacity: 1; } } } a:hover { background: transparent; } span.list-menu-link, li > a { padding: 0.75rem .5rem 0.75rem $navbar-padding * 1.5; transition: all 0.2s ease; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; width: 100%; border-left: $vikunja-nav-selected-width solid transparent; .icon { height: 1rem; vertical-align: middle; padding-bottom: 4px; padding-right: 0.5rem; } &.router-link-exact-active { color: $primary; border-left: $vikunja-nav-selected-width solid $primary; .icon { color: $primary; } } &:hover { border-left: $vikunja-nav-selected-width solid $primary; } } } .logo { display: none; @media screen and (max-width: $tablet) { display: block; } } &.namespaces-lists { padding-top: math.div($navbar-padding, 2); } &.loader-container.is-loading:after { width: 1.5rem; height: 1.5rem; top: calc(50% - .75rem); left: calc(50% - .75rem); border-width: 2px; } .icon { color: $grey-400 !important; } } .top-menu { margin-top: math.div($navbar-padding, 2); .menu-list { li { font-weight: 500; font-family: $vikunja-font; } span.list-menu-link, li > a { padding-left: 2rem; display: inline-block; } } } } } .navbar .user { span { font-family: $vikunja-font; } .avatar { -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; vertical-align: middle; height: 40px; } .logout-icon { color: $grey-900; .icon { vertical-align: middle; } } .dropdown-trigger .button { background: none; &:focus:not(:active), &:active { outline: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } } } .menu-hide-button, .menu-show-button { display: none; z-index: 31; font-weight: bold; font-size: 2rem; color: $text; line-height: 1; &:hover, &:focus { color: $grey-900; } } .menu-hide-button { position: fixed; &:hover, &:focus { color: $text; } } .navbar-brand .menu-show-button { display: block; } .mobile-overlay { display: none; position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: rgba(250, 250, 250, 0.8); z-index: 5; opacity: 0; transition: all $transition; } @media screen and (max-width: $tablet) { .menu-hide-button { display: block; top: $hamburger-menu-icon-spacing; right: $hamburger-menu-icon-spacing; } .menu-show-button { display: block; margin-left: $hamburger-menu-icon-spacing; } .mobile-overlay { display: block; opacity: 1; } .navbar.is-dark .navbar-brand > .navbar-item { margin: 0 auto; } } .logout-icon { margin-right: 0.85rem !important; } .menu-bottom-link { width: 100%; color: $grey-300; text-align: center; display: block; margin: 1rem 0; font-size: .8rem; }