blob: 036db8d94d59e3403d7ac1c74087820db930e15f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
@import '../../../../assets/styles/variables';
@import '../../../../assets/styles/mixins';
.w-sdc-catalog-main {
height: 100%;
overflow-y: scroll;
padding: 10px 50px;
.catalog-top-bar {
display: flex;
justify-content:space-between;
padding: 0px 10px;
}
.catalog-elements-list {
display: flex;
flex-wrap: wrap;
flex-direction: row;
}
}
.i-sdc-designer-left-sidebar {
margin-top: 43px;
}
.sdc-catalog-selector-item {
text-transform: none;
line-height: 40px;
font-family: OpenSans-Bold, sans-serif;
font-size: 14px;
color: #000000;
background-color: #ffffff;
padding-left: 20px;
}
.sdc-catalog-selector-wrapper {
position: absolute;
left: 0px;
top: 42px;
width: 241px;
height: auto;
cursor: pointer;
opacity: 1;
z-index: 1000;
box-shadow: 1px 2px 3px #b1b1b1;
}
.sdc-catalog-selector-item {
text-transform: none;
line-height: 40px;
font-family: OpenSans-Bold, sans-serif;
font-size: 14px;
color: @main_color_l;
background-color: @main_color_p;
padding-left: 20px;
}
.sdc-catalog-selector-item:hover {
color: @main_color_a;
background-color: @tlv_color_v;
}
.i-sdc-designer-leftbar-section-left-switch-header {
text-transform: uppercase;
.l_14_m;
line-height: 40px;
width: 243px;
font-family: OpenSans-Bold, sans-serif;
font-size: 14px;
color: @main_color_a;
background-color: @tlv_color_t;
border: solid 1px fade(@main_color_t, 40%);
cursor: pointer;
opacity: 1;
z-index: 9999;
position: relative;
}
.i-sdc-designer-leftbar-section-left-switch-header-text {
display: inline-block;
width: 180px;
margin-left: 20px;
}
.i-sdc-designer-leftbar-section-left-switch-header-icon {
display: inline-block;
vertical-align: middle;
}
.w-sdc-dashboard-catalog-items-header {
color: @main_color_m;
font-family: OpenSans-Regular, sans-serif;
font-size: 12px;
display: inline-block;
font-style: normal; size: 12px;
margin-left: 11px;
font-weight: normal;
b {
font-family: OpenSans-Bold, sans-serif;
color: @main_color_l;
font-weight: bold;
}
}
.w-sdc-dashboard-catalog-header-order1 {
font-style: normal;
font-size: 12px;
font-weight: 800;
}
|