blob: adb3688e5fed61dcd61e2bf638b72c8058eb083b [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001.software-product-navigation-side-bar {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +03002 width: 245px;
Michael Landoefa037d2017-02-19 12:57:33 +02003 height: 100%;
Einav Weiss Keidar1801b242018-08-13 16:19:46 +03004 background-color: $white;
5 border-right: 1px solid $light-gray;
6 @include box-shadow(1px -1px 3px 0px $tlv-light-gray);
7 border-bottom: 0;
Michael Landoefa037d2017-02-19 12:57:33 +02008
Einav Weiss Keidar1801b242018-08-13 16:19:46 +03009 .navigation-side-content {
10 overflow: hidden;
11 height: 100%;
Michael Landoefa037d2017-02-19 12:57:33 +020012
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030013 .navigation-group {
14 height: 100%;
15 display: flex;
16 flex-direction: column;
17 background-color: $tlv-gray;
18 .group-name {
19 @extend .heading-4-semibold;
20 @include ellipsis;
21 min-height: 70px;
22 display: block;
23 height: 70px;
24 padding: 24px 12px 13px 40px;
25 background-color: $white;
26 border-bottom: 1px solid $tlv-light-gray;
27 }
28 }
Michael Landoefa037d2017-02-19 12:57:33 +020029
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030030 .navigation-group-items {
Michael Landoefa037d2017-02-19 12:57:33 +020031 padding-left: 20px;
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030032 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 {
51 @extend .body-1-semibold;
52 border-left: 4px solid $blue;
53 padding-left: 18px;
54 color: $blue;
55 }
56 &.bold-name {
57 @extend .body-1-semibold;
58 }
59 }
60 }
Michael Landoefa037d2017-02-19 12:57:33 +020061 }
Michael Landoefa037d2017-02-19 12:57:33 +020062 }
Michael Landoefa037d2017-02-19 12:57:33 +020063}