blob: 36c14a278581779042abbf923b72f93ba2f7ca27 [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001.software-product-navigation-side-bar {
2 width: 245px;
3 height: 100%;
4 background-color: $white;
5 border-right: 1px solid $light-gray;
AviZi280f8012017-06-09 02:39:56 +03006 @include box-shadow(1px -1px 3px 0px $tlv-light-gray);
Michael Landoefa037d2017-02-19 12:57:33 +02007 border-bottom: 0;
8
9 .navigation-side-content {
10 overflow: hidden;
11 height: 100%;
12
13 .navigation-group {
14 height: 100%;
15 display: flex;
16 flex-direction: column;
17 background-color: $tlv-gray;
18 .group-name {
AviZi280f8012017-06-09 02:39:56 +030019 @extend .heading-4-medium;
Michael Landoefa037d2017-02-19 12:57:33 +020020 @include ellipsis;
21 min-height: 56px;
22 display: block;
AviZi280f8012017-06-09 02:39:56 +030023 padding: 18px 12px 13px 40px;
Michael Landoefa037d2017-02-19 12:57:33 +020024 background-color: $white;
25 border-bottom: 1px solid $tlv-light-gray;
26 }
27 }
28
29 .navigation-group-items {
30 padding-left: 20px;
31 overflow-y: auto;
32
33 .navigation-group-item {
34 @extend .body-1;
35 cursor: pointer;
36 margin: 18px 0;
37 padding-left: 20px;
38 color: $dark-gray;
39 line-height: 17px;
40 &.selected-item {
41 padding-left: 0;
42 .collapse.in {
43 padding-left: 20px;
44 }
45 }
46 .navigation-group-item-name {
47 @include ellipsis;
48 white-space: normal;
49 &.selected {
50 @extend .body-1-medium;
51 border-left: 4px solid $blue;
52 padding-left: 18px;
53 color: $blue;
54 }
55 &.bold-name {
56 @extend .body-1-medium;
57 }
58 }
59 }
60 }
61 }
62}