@indigina/kendo 1.0.155-beta → 1.0.172-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/styles/kendoGrids.less +42 -37
- package/assets/styles/less/inspiria/base.less +141 -116
- package/assets/styles/less/inspiria/custom-hub.less +392 -386
- package/assets/styles/less/inspiria/custom.less +366 -368
- package/assets/styles/less/inspiria/md-skin.less +59 -49
- package/assets/styles/less/inspiria/media.less +16 -19
- package/assets/styles/less/inspiria/navigation.less +0 -1
- package/assets/styles/less/inspiria/rtl.less +18 -14
- package/assets/styles/less/inspiria/sidebar.less +44 -51
- package/assets/styles/less/inspiria/skins.less +51 -25
- package/assets/styles/less/inspiria/variables.less +26 -29
- package/bundles/indigina-kendo.umd.js +56 -73
- package/bundles/indigina-kendo.umd.js.map +1 -1
- package/esm2015/lib/angular/indigina.module.js +1 -4
- package/esm2015/lib/angular/services/http.service.js +10 -2
- package/esm2015/lib/angular/widgets/live-updates-control/live-updates-control.component.js +1 -1
- package/esm2015/lib/angular/widgets/side-menu/menu-item-group/menu-item-group.component.js +6 -5
- package/esm2015/lib/angular/widgets/side-menu/side-menu.component.js +1 -1
- package/esm2015/lib/angular/widgets/tree-view/tree-view-node-prop/tree-view-node-prop.component.js +1 -1
- package/esm2015/lib/angular/widgets/tree-view/tree-view.component.js +1 -1
- package/esm2015/lib/components/account-menu/account-menu.component.js +1 -1
- package/esm2015/lib/components/azure-login-callback/azure-login-callback.component.js +7 -4
- package/esm2015/lib/components/language-selector/language-selector.component.js +1 -1
- package/esm2015/lib/kendo.module.js +1 -4
- package/esm2015/lib/services/account.service.js +1 -1
- package/esm2015/lib/services/activity.filter.service.js +1 -1
- package/esm2015/lib/services/auth.providers/azureb2c.provider.js +2 -1
- package/esm2015/lib/services/signalr/signalr.service.js +1 -1
- package/esm2015/lib/widgets/activity-filter/FilterConverter.js +1 -1
- package/esm2015/lib/widgets/activity-filter/activity-filter.component.js +2 -2
- package/esm2015/lib/widgets/entity-list/entity-list.component.js +1 -1
- package/esm2015/lib/widgets/modal-window/modal-window.component.js +2 -2
- package/esm2015/lib/widgets/multicheck-filter/multicheck-filter.component.js +1 -1
- package/fesm2015/indigina-kendo.js +29 -22
- package/fesm2015/indigina-kendo.js.map +1 -1
- package/indigina-kendo.metadata.json +1 -1
- package/package.json +2 -2
- package/bundles/indigina-kendo.umd.min.js +0 -17
- package/bundles/indigina-kendo.umd.min.js.map +0 -1
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
@import (reference)
|
|
1
|
+
@import (reference) '../sprite-merged.less';
|
|
2
2
|
.sprites(@spritesheet-sprites);
|
|
3
3
|
.sprites(@spritesheet-cleanlarge-sprites);
|
|
4
4
|
//.sprites(@spritesheet-large-sprites);
|
|
5
5
|
|
|
6
|
-
#layoutContainer,
|
|
7
|
-
|
|
6
|
+
#layoutContainer,
|
|
7
|
+
#LayoutContainer,
|
|
8
|
+
#aspnetForm {
|
|
9
|
+
height: 100%;
|
|
8
10
|
}
|
|
9
11
|
|
|
10
12
|
@media (max-width: 1000px) {
|
|
@@ -14,493 +16,489 @@
|
|
|
14
16
|
}
|
|
15
17
|
|
|
16
18
|
body {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
background-image: none !important;
|
|
20
|
+
background-color: #2f4050 !important;
|
|
21
|
+
box-shadow: inset 10px 0px 10px -10px #333333;
|
|
22
|
+
-moz-box-shadow: inset 10px 0px 10px -10px #333333;
|
|
23
|
+
-webkit-box-shadow: inset 10px 0px 10px -10px #333333;
|
|
22
24
|
}
|
|
23
25
|
|
|
24
26
|
body.gridpage {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
+
background-color: transparent !important;
|
|
28
|
+
overflow-y: auto;
|
|
27
29
|
}
|
|
28
30
|
|
|
29
31
|
#SSGridContainer {
|
|
30
|
-
|
|
32
|
+
padding: 35px 15px;
|
|
31
33
|
}
|
|
32
34
|
|
|
33
|
-
.clear,
|
|
34
|
-
|
|
35
|
+
.clear,
|
|
36
|
+
.clr {
|
|
37
|
+
clear: both;
|
|
35
38
|
}
|
|
36
39
|
.left {
|
|
37
|
-
|
|
38
|
-
|
|
40
|
+
display: block;
|
|
41
|
+
float: left;
|
|
39
42
|
}
|
|
40
43
|
.right {
|
|
41
|
-
|
|
42
|
-
|
|
44
|
+
display: block;
|
|
45
|
+
float: right;
|
|
43
46
|
}
|
|
44
47
|
|
|
45
48
|
.dropdown-toggle {
|
|
46
|
-
|
|
49
|
+
cursor: pointer;
|
|
47
50
|
}
|
|
48
51
|
|
|
49
52
|
.img-supply,
|
|
50
53
|
.img-360 {
|
|
51
|
-
|
|
54
|
+
display: none;
|
|
52
55
|
}
|
|
53
56
|
.supplytheme {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
.img-supply {
|
|
58
|
+
display: block;
|
|
59
|
+
}
|
|
60
|
+
.img-360 {
|
|
61
|
+
display: none;
|
|
62
|
+
}
|
|
60
63
|
}
|
|
61
64
|
.seko360theme {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
}
|
|
65
|
+
.nav-header {
|
|
66
|
+
padding: 16px 52px;
|
|
67
|
+
}
|
|
68
|
+
.img-supply {
|
|
69
|
+
display: none;
|
|
70
|
+
}
|
|
71
|
+
.img-360 {
|
|
72
|
+
display: block;
|
|
73
|
+
}
|
|
72
74
|
}
|
|
73
75
|
.img-radius {
|
|
74
|
-
|
|
76
|
+
border-radius: 5px;
|
|
75
77
|
}
|
|
76
78
|
|
|
77
|
-
|
|
79
|
+
/* Menu */
|
|
78
80
|
#menu-left {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
81
|
+
.menu-disabled {
|
|
82
|
+
display: none;
|
|
83
|
+
}
|
|
82
84
|
}
|
|
83
85
|
|
|
84
86
|
#MyWindows {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
color: #DFE4ED!important;
|
|
102
|
-
}
|
|
87
|
+
background: none !important;
|
|
88
|
+
box-shadow: none !important;
|
|
89
|
+
height: 100% !important;
|
|
90
|
+
left: -220px !important;
|
|
91
|
+
margin-left: 0 !important;
|
|
92
|
+
min-height: 100% !important;
|
|
93
|
+
opacity: 1 !important;
|
|
94
|
+
top: 0 !important;
|
|
95
|
+
z-index: 10001 !important;
|
|
96
|
+
|
|
97
|
+
a {
|
|
98
|
+
color: #a7b1c2 !important;
|
|
99
|
+
}
|
|
100
|
+
#MyWindowsTitle {
|
|
101
|
+
color: #dfe4ed !important;
|
|
102
|
+
}
|
|
103
103
|
}
|
|
104
104
|
#MyWindows.open {
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
105
|
+
left: 0 !important;
|
|
106
|
+
-webkit-transition: left ease-in 0.5s;
|
|
107
|
+
transition: left ease-in 0.5s;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
.contextMenu,
|
|
111
111
|
.contextMenu LI {
|
|
112
|
-
|
|
112
|
+
width: 125px !important;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
.navbar-static-side {
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
116
|
+
margin-left: -440px;
|
|
117
|
+
position: fixed;
|
|
118
|
+
top: 0;
|
|
119
119
|
}
|
|
120
120
|
.navbar-static-side.open {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
121
|
+
margin-left: -220px;
|
|
122
|
+
-webkit-transition: left ease-in 0.5s;
|
|
123
|
+
transition: left ease-in 0.5s;
|
|
124
124
|
}
|
|
125
125
|
body.mini-navbar .navbar-static-side {
|
|
126
|
-
|
|
126
|
+
margin-left: -140px;
|
|
127
127
|
}
|
|
128
128
|
body.mini-navbar .navbar-static-side.open {
|
|
129
|
-
|
|
129
|
+
margin-left: -70px;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
.menu-icon-minimized {
|
|
133
|
-
|
|
133
|
+
display: none;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
.logo-element .fa {
|
|
137
|
-
|
|
137
|
+
cursor: pointer;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
.icon-sourcing-active,
|
|
141
141
|
.icon-sourcing-hover,
|
|
142
142
|
.icon-sourcing-idle {
|
|
143
|
-
|
|
143
|
+
margin-top: 3px;
|
|
144
144
|
}
|
|
145
145
|
.icon-purchasing-active,
|
|
146
146
|
.icon-purchasing-hover,
|
|
147
147
|
.icon-purchasing-idle {
|
|
148
|
-
|
|
148
|
+
margin-top: 2px;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
-
|
|
152
|
-
// iFrame overrides
|
|
151
|
+
/* iFrame overrides */
|
|
153
152
|
.SSWindow {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
|
|
153
|
+
box-shadow: inset 10px 0px 10px -10px #333333 !important;
|
|
154
|
+
-moz-box-shadow: inset 10px 0px 10px -10px #333333 !important;
|
|
155
|
+
-webkit-box-shadow: inset 10px 0px 10px -10px #333333 !important;
|
|
156
|
+
border: none;
|
|
157
|
+
border-radius: 0;
|
|
158
|
+
height: auto !important;
|
|
159
|
+
left: 0 !important;
|
|
160
|
+
max-width: 100% !important;
|
|
161
|
+
min-height: 100%;
|
|
162
|
+
top: 0 !important;
|
|
163
|
+
width: 100% !important;
|
|
164
|
+
|
|
165
|
+
.bodyIframe,
|
|
166
|
+
iframe {
|
|
167
|
+
left: 0% !important;
|
|
168
|
+
max-width: 100% !important;
|
|
169
|
+
width: 100% !important;
|
|
170
|
+
}
|
|
171
|
+
iframe {
|
|
172
|
+
background-color: transparent;
|
|
173
|
+
body {
|
|
174
|
+
background-color: transparent;
|
|
175
|
+
box-shadow: none;
|
|
176
|
+
-moz-box-shadow: none;
|
|
177
|
+
-webkit-box-shadow: none;
|
|
178
|
+
}
|
|
179
|
+
#aspnetForm {
|
|
180
|
+
padding: 10px 15px;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
.header,
|
|
184
|
+
.body,
|
|
185
|
+
.footer,
|
|
186
|
+
.header .content,
|
|
187
|
+
.body .content,
|
|
188
|
+
.footer .content {
|
|
189
|
+
background-image: none !important;
|
|
190
|
+
margin-right: 0 !important;
|
|
191
|
+
}
|
|
192
|
+
.header {
|
|
193
|
+
height: 36px;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.body .content .bodyIframe {
|
|
197
|
+
background-color: #ffffff !important;
|
|
198
|
+
box-shadow: inset 10px 0px 10px -10px #333333;
|
|
199
|
+
-moz-box-shadow: inset 10px 0px 10px -10px #333333;
|
|
200
|
+
-webkit-box-shadow: inset 10px 0px 10px -10px #333333;
|
|
201
|
+
margin: 0 !important;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.footer {
|
|
205
|
+
background-color: transparent !important;
|
|
206
|
+
border-top: none;
|
|
207
|
+
bottom: -12px;
|
|
208
|
+
padding: 0 !important;
|
|
209
|
+
|
|
210
|
+
.content {
|
|
211
|
+
height: 0 !important;
|
|
212
|
+
}
|
|
213
|
+
.dragCorner {
|
|
214
|
+
bottom: 2px !important;
|
|
215
|
+
height: 11px !important;
|
|
216
|
+
right: 20px !important;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* Top Bar */
|
|
223
222
|
#supply-top-navbar {
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
223
|
+
.navbar {
|
|
224
|
+
box-shadow: 0px 2px 12px #333333;
|
|
225
|
+
margin-bottom: 0;
|
|
226
|
+
background: #ffffff;
|
|
227
|
+
}
|
|
228
|
+
.navbar-logo {
|
|
229
|
+
margin-top: 9px;
|
|
230
|
+
position: absolute;
|
|
231
|
+
text-align: center;
|
|
232
|
+
width: 100%;
|
|
233
|
+
z-index: -1;
|
|
234
|
+
img {
|
|
235
|
+
height: 40px;
|
|
236
|
+
width: auto;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
.badge {
|
|
240
|
+
border: 1px solid #cccccc;
|
|
241
|
+
border-radius: 8px;
|
|
242
|
+
color: #444444;
|
|
243
|
+
padding: 0 4px 2px 4px;
|
|
244
|
+
position: absolute;
|
|
245
|
+
top: 4px;
|
|
246
|
+
}
|
|
248
247
|
}
|
|
249
248
|
#topBarIcons {
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
249
|
+
height: 100% !important;
|
|
250
|
+
padding: 8px 20px 6px 0;
|
|
251
|
+
width: auto !important;
|
|
252
|
+
|
|
253
|
+
#ssTopBar_Btn_Support,
|
|
254
|
+
#ctl00_csPageContent_ucTopBar_ssTopBar_Btn_Personalisation,
|
|
255
|
+
#ssTopBar_Btn_Search,
|
|
256
|
+
#ssTopBar_Btn_Dashboard,
|
|
257
|
+
#ctl00_csPageContent_ucTopBar_ssTopBar_Btn_Dashboard {
|
|
258
|
+
background: none;
|
|
259
|
+
margin-left: 0;
|
|
260
|
+
}
|
|
261
|
+
.ssTopBarBtnInt {
|
|
262
|
+
display: block;
|
|
263
|
+
float: right;
|
|
264
|
+
}
|
|
265
|
+
.fa-stack {
|
|
266
|
+
cursor: pointer;
|
|
267
|
+
margin: 4px 4px 0 0;
|
|
268
|
+
}
|
|
269
|
+
.dropdown {
|
|
270
|
+
position: relative;
|
|
271
|
+
}
|
|
272
|
+
#ctl00_csPageContent_ucTopBar_lblFullName {
|
|
273
|
+
cursor: pointer;
|
|
274
|
+
font-weight: bold;
|
|
275
|
+
}
|
|
276
|
+
.top-bar-dropdown {
|
|
277
|
+
.media-left {
|
|
278
|
+
padding: 0 12px 0 8px;
|
|
279
|
+
}
|
|
280
|
+
.media-body {
|
|
281
|
+
display: table-cell;
|
|
282
|
+
padding-top: 6px;
|
|
283
|
+
span {
|
|
284
|
+
display: block;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
}
|
|
289
288
|
}
|
|
290
289
|
#topBarDetails {
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
290
|
+
float: right;
|
|
291
|
+
margin-right: 0 !important;
|
|
292
|
+
padding: 14px 12px 6px 12px;
|
|
293
|
+
position: relative !important;
|
|
295
294
|
}
|
|
296
295
|
|
|
297
296
|
.profile-element img {
|
|
298
|
-
|
|
299
|
-
|
|
297
|
+
height: auto;
|
|
298
|
+
width: 100%;
|
|
300
299
|
}
|
|
301
300
|
.profile-img {
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
}
|
|
301
|
+
margin-left: 7px;
|
|
302
|
+
|
|
303
|
+
a {
|
|
304
|
+
color: #676a6c;
|
|
305
|
+
}
|
|
306
|
+
a:hover {
|
|
307
|
+
color: #444444;
|
|
308
|
+
}
|
|
309
|
+
.dropdown-menu {
|
|
310
|
+
left: auto;
|
|
311
|
+
padding-top: 10px;
|
|
312
|
+
padding-bottom: 6px;
|
|
313
|
+
right: 12px;
|
|
314
|
+
top: 45px;
|
|
315
|
+
width: auto;
|
|
316
|
+
min-width: 200px;
|
|
317
|
+
max-width: 300px;
|
|
318
|
+
}
|
|
319
|
+
img {
|
|
320
|
+
height: auto;
|
|
321
|
+
margin-top: 1px;
|
|
322
|
+
max-height: 40px;
|
|
323
|
+
width: 40px;
|
|
324
|
+
}
|
|
325
|
+
.dropdown-arrow {
|
|
326
|
+
font-weight: bold;
|
|
327
|
+
padding: 14px 0 0 10px;
|
|
328
|
+
}
|
|
331
329
|
}
|
|
332
330
|
.profile-img .dropdown-toggle img:hover {
|
|
333
|
-
|
|
331
|
+
box-shadow: 2px 2px 6px #444444;
|
|
334
332
|
}
|
|
335
333
|
|
|
336
334
|
.language-select {
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
335
|
+
min-height: 30px;
|
|
336
|
+
min-width: 45px;
|
|
337
|
+
padding: 2px 4px 5px;
|
|
340
338
|
}
|
|
341
339
|
.goog-te-menu-frame {
|
|
342
|
-
|
|
343
|
-
|
|
340
|
+
height: 288px !important;
|
|
341
|
+
top: 50px !important;
|
|
344
342
|
}
|
|
345
343
|
.goog-te-menu2 {
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
344
|
+
height: 288px;
|
|
345
|
+
max-width: 100%;
|
|
346
|
+
overflow: scroll;
|
|
347
|
+
width: 100% !important;
|
|
350
348
|
}
|
|
351
349
|
.goog-te-gadget-simple {
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
350
|
+
background-color: transparent !important;
|
|
351
|
+
border: none !important;
|
|
352
|
+
margin: 0 !important;
|
|
353
|
+
padding: 0 !important;
|
|
356
354
|
}
|
|
357
355
|
.goog-te-gadget-icon {
|
|
358
|
-
|
|
356
|
+
display: none !important;
|
|
359
357
|
}
|
|
360
358
|
.goog-te-gadget-simple .goog-te-menu-value {
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
359
|
+
color: #ffffff !important;
|
|
360
|
+
.fa {
|
|
361
|
+
font-size: 16px;
|
|
362
|
+
margin-right: 6px;
|
|
363
|
+
vertical-align: middle;
|
|
364
|
+
}
|
|
367
365
|
}
|
|
368
366
|
|
|
369
367
|
.translate-button {
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
368
|
+
color: #ffffff !important;
|
|
369
|
+
.fa.fa-globe {
|
|
370
|
+
font-size: 16px;
|
|
371
|
+
margin: 1px 3px;
|
|
372
|
+
vertical-align: middle;
|
|
373
|
+
}
|
|
374
|
+
.fa.fa-refresh {
|
|
375
|
+
font-size: 14px;
|
|
376
|
+
margin: 0 4px;
|
|
377
|
+
vertical-align: middle;
|
|
378
|
+
}
|
|
381
379
|
}
|
|
382
380
|
.translate-button:not(:hover) .fa.fa-spin-hover {
|
|
383
|
-
|
|
381
|
+
animation: none;
|
|
384
382
|
}
|
|
385
383
|
|
|
386
384
|
.top-bar-name {
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
385
|
+
font-weight: bold;
|
|
386
|
+
margin-left: 14px;
|
|
387
|
+
padding-top: 6px;
|
|
390
388
|
}
|
|
391
389
|
|
|
392
|
-
|
|
390
|
+
/* Right Sidebar */
|
|
393
391
|
#right-sidebar {
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
.btn.btn-inverse.focus, .btn.btn-inverse:focus, .btn.btn-inverse:hover {
|
|
433
|
-
color: #dedede;
|
|
434
|
-
text-decoration: none;
|
|
392
|
+
.nav-tabs {
|
|
393
|
+
margin: 0;
|
|
394
|
+
}
|
|
395
|
+
.nav-tabs > li {
|
|
396
|
+
margin-top: 0;
|
|
397
|
+
}
|
|
398
|
+
.nav-tabs > li > a {
|
|
399
|
+
line-height: normal;
|
|
400
|
+
min-width: 100%;
|
|
401
|
+
}
|
|
402
|
+
.sidebar-container {
|
|
403
|
+
background: #f9f9f9;
|
|
404
|
+
|
|
405
|
+
.sidebar-message > a > .pull-left {
|
|
406
|
+
margin-left: 6px;
|
|
407
|
+
.fa {
|
|
408
|
+
margin-right: 4px;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
.sidebar-title .fa {
|
|
413
|
+
margin-right: 8px;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
#dvUserManager .sidebar-message {
|
|
417
|
+
padding: 5px 10px;
|
|
418
|
+
> a {
|
|
419
|
+
display: block;
|
|
420
|
+
padding: 10px;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
#dvUserManager #page-wrapper {
|
|
424
|
+
box-shadow: none !important;
|
|
425
|
+
-moz-box-shadow: none !important;
|
|
426
|
+
-webkit-box-shadow: none !important;
|
|
427
|
+
}
|
|
435
428
|
}
|
|
436
429
|
|
|
437
|
-
.
|
|
438
|
-
|
|
430
|
+
.btn.btn-inverse.focus,
|
|
431
|
+
.btn.btn-inverse:focus,
|
|
432
|
+
.btn.btn-inverse:hover {
|
|
433
|
+
color: #dedede;
|
|
434
|
+
text-decoration: none;
|
|
439
435
|
}
|
|
440
436
|
|
|
437
|
+
.tour-open .nav-header {
|
|
438
|
+
background-image: none;
|
|
439
|
+
}
|
|
441
440
|
|
|
442
|
-
|
|
441
|
+
/* Responsive Queries */
|
|
443
442
|
@media (max-width: 960px) {
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
443
|
+
#topBarDetails {
|
|
444
|
+
clear: right;
|
|
445
|
+
padding: 2px 12px 6px;
|
|
446
|
+
}
|
|
448
447
|
}
|
|
449
448
|
|
|
450
449
|
@media (min-width: 769px) {
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
450
|
+
#MyWindows {
|
|
451
|
+
position: fixed !important;
|
|
452
|
+
}
|
|
453
|
+
#MyWindowsContextMenu {
|
|
454
|
+
left: -20px;
|
|
455
|
+
}
|
|
458
456
|
}
|
|
459
457
|
|
|
460
458
|
@media (max-width: 768px) {
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
459
|
+
#MyWindows {
|
|
460
|
+
background: #2f4050 !important;
|
|
461
|
+
left: -290px !important;
|
|
462
|
+
margin-left: 0 !important;
|
|
463
|
+
padding-top: 0;
|
|
464
|
+
z-index: 101 !important;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
#topBarIcons .message-icons {
|
|
468
|
+
bottom: 0;
|
|
469
|
+
position: fixed;
|
|
470
|
+
right: 12px;
|
|
471
|
+
}
|
|
472
|
+
.translate-dropdown .dropdown-menu {
|
|
473
|
+
bottom: 42px;
|
|
474
|
+
top: auto;
|
|
475
|
+
}
|
|
478
476
|
}
|
|
479
477
|
|
|
480
478
|
@media (min-width: 641px) {
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
479
|
+
.navbar-right {
|
|
480
|
+
margin-right: 0;
|
|
481
|
+
padding-right: 12px;
|
|
482
|
+
}
|
|
485
483
|
}
|
|
486
484
|
|
|
487
485
|
@media (max-width: 640px) {
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
486
|
+
.navbar-right {
|
|
487
|
+
float: left;
|
|
488
|
+
}
|
|
491
489
|
}
|
|
492
490
|
|
|
493
491
|
@media (max-width: 479px) {
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
492
|
+
#supply-top-navbar .navbar-logo {
|
|
493
|
+
padding-left: 30px;
|
|
494
|
+
}
|
|
497
495
|
}
|
|
498
496
|
|
|
499
497
|
@media (max-width: 360px) {
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
498
|
+
#topBarDetails_loginname {
|
|
499
|
+
.sstopBar_Dot:nth-child(2),
|
|
500
|
+
#ctl00_csPageContent_ucTopBar_lblCompanyName {
|
|
501
|
+
display: none;
|
|
502
|
+
}
|
|
503
|
+
}
|
|
506
504
|
}
|