blob: ab4d15fd907f12ec5ea793be918e5bec20172cc4 [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 {
Avi Zivb8e2faf2017-07-18 19:45:38 +030019 @extend .heading-4-semibold;
Michael Landoefa037d2017-02-19 12:57:33 +020020 @include ellipsis;
talig8e9c0652017-12-20 14:30:43 +020021 min-height: 70px;
Michael Landoefa037d2017-02-19 12:57:33 +020022 display: block;
talig8e9c0652017-12-20 14:30:43 +020023 height: 70px;
24 padding: 24px 12px 13px 40px;
Michael Landoefa037d2017-02-19 12:57:33 +020025 background-color: $white;
26 border-bottom: 1px solid $tlv-light-gray;
27 }
28 }
29
30 .navigation-group-items {
31 padding-left: 20px;
32 overflow-y: auto;
33
34 .navigation-group-item {
35 @extend .body-1;
36 cursor: pointer;
37 margin: 18px 0;
38 padding-left: 20px;
39 color: $dark-gray;
40 line-height: 17px;
41 &.selected-item {
42 padding-left: 0;
43 .collapse.in {
44 padding-left: 20px;
45 }
46 }
47 .navigation-group-item-name {
48 @include ellipsis;
49 white-space: normal;
50 &.selected {
Avi Zivb8e2faf2017-07-18 19:45:38 +030051 @extend .body-1-semibold;
Michael Landoefa037d2017-02-19 12:57:33 +020052 border-left: 4px solid $blue;
53 padding-left: 18px;
54 color: $blue;
55 }
56 &.bold-name {
Avi Zivb8e2faf2017-07-18 19:45:38 +030057 @extend .body-1-semibold;
Michael Landoefa037d2017-02-19 12:57:33 +020058 }
59 }
60 }
61 }
62 }
63}