@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,46 +1,49 @@
|
|
|
1
1
|
@font-face {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
font-family: 'Roboto';
|
|
3
|
+
src: url('/assets/fonts/Roboto-Regular-webfont.eot');
|
|
4
|
+
src: url('/assets/fonts/Roboto-Regular-webfont.eot?#iefix')
|
|
5
|
+
format('embedded-opentype'),
|
|
6
|
+
url('/assets/fonts/Roboto-Regular-webfont.woff') format('woff'),
|
|
7
|
+
url('/assets/fonts/Roboto-Regular-webfont.ttf') format('truetype');
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
font-style: normal;
|
|
9
10
|
}
|
|
10
11
|
@font-face {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
12
|
+
font-family: 'Roboto';
|
|
13
|
+
src: url('/assets/fonts/Roboto-Bold-webfont.eot');
|
|
14
|
+
src: url('/assets/fonts/Roboto-Bold-webfont.eot?#iefix')
|
|
15
|
+
format('embedded-opentype'),
|
|
16
|
+
url('/assets/fonts/Roboto-Bold-webfont.woff') format('woff'),
|
|
17
|
+
url('/assets/fonts/Roboto-Bold-webfont.ttf') format('truetype');
|
|
18
|
+
font-weight: bold;
|
|
19
|
+
font-style: normal;
|
|
18
20
|
}
|
|
19
21
|
@font-face {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
font-family: 'Roboto';
|
|
23
|
+
src: url('/assets/fonts/Roboto-Italic-webfont.eot');
|
|
24
|
+
src: url('/assets/fonts/Roboto-Italic-webfont.eot?#iefix')
|
|
25
|
+
format('embedded-opentype'),
|
|
26
|
+
url('/assets/fonts/Roboto-Italic-webfont.woff') format('woff'),
|
|
27
|
+
url('/assets/fonts/Roboto-Italic-webfont.ttf') format('truetype');
|
|
28
|
+
font-weight: normal;
|
|
29
|
+
font-style: italic;
|
|
27
30
|
}
|
|
28
31
|
|
|
29
|
-
@md-color-primary: #
|
|
30
|
-
@md-shadow-main: 0 2px 2px 0 rgba(0, 0, 0, .14),
|
|
32
|
+
@md-color-primary: #1ab394;
|
|
33
|
+
@md-shadow-main: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
34
|
+
0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
31
35
|
|
|
32
36
|
body.md-skin {
|
|
33
|
-
font-family:
|
|
37
|
+
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
34
38
|
background-color: #ffffff;
|
|
35
39
|
}
|
|
36
40
|
|
|
37
41
|
.md-skin {
|
|
38
|
-
|
|
39
42
|
.nav-header {
|
|
40
|
-
|
|
41
43
|
}
|
|
42
44
|
|
|
43
|
-
.label,
|
|
45
|
+
.label,
|
|
46
|
+
.badge {
|
|
44
47
|
font-family: 'Roboto';
|
|
45
48
|
}
|
|
46
49
|
|
|
@@ -62,7 +65,8 @@ body.md-skin {
|
|
|
62
65
|
border-bottom: none !important;
|
|
63
66
|
border-top: 0;
|
|
64
67
|
padding: 0 10px 20px 10px;
|
|
65
|
-
box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.34),
|
|
68
|
+
box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.34),
|
|
69
|
+
0 0 6px 0 rgba(0, 0, 0, 0.14);
|
|
66
70
|
}
|
|
67
71
|
|
|
68
72
|
.full-height-layout .page-heading {
|
|
@@ -70,7 +74,6 @@ body.md-skin {
|
|
|
70
74
|
}
|
|
71
75
|
|
|
72
76
|
.ibox {
|
|
73
|
-
//clear: both;
|
|
74
77
|
margin-bottom: 25px;
|
|
75
78
|
margin-top: 0;
|
|
76
79
|
padding: 0;
|
|
@@ -81,7 +84,8 @@ body.md-skin {
|
|
|
81
84
|
border-bottom: none !important;
|
|
82
85
|
}
|
|
83
86
|
|
|
84
|
-
.ibox-title,
|
|
87
|
+
.ibox-title,
|
|
88
|
+
.ibox-content {
|
|
85
89
|
border-style: none;
|
|
86
90
|
}
|
|
87
91
|
|
|
@@ -109,7 +113,8 @@ body.md-skin {
|
|
|
109
113
|
|
|
110
114
|
#nestable-output,
|
|
111
115
|
#nestable2-output {
|
|
112
|
-
font-family: 'Roboto', lucida grande, lucida sans unicode, helvetica, arial,
|
|
116
|
+
font-family: 'Roboto', lucida grande, lucida sans unicode, helvetica, arial,
|
|
117
|
+
sans-serif;
|
|
113
118
|
}
|
|
114
119
|
|
|
115
120
|
.landing-page {
|
|
@@ -141,12 +146,15 @@ body.md-skin {
|
|
|
141
146
|
font-weight: 700;
|
|
142
147
|
}
|
|
143
148
|
|
|
144
|
-
.navbar-default .nav > li > a:hover,
|
|
149
|
+
.navbar-default .nav > li > a:hover,
|
|
150
|
+
.navbar-default .nav > li > a:focus {
|
|
145
151
|
font-weight: 700;
|
|
146
152
|
color: darken(@text-color, 5%);
|
|
147
153
|
}
|
|
148
154
|
|
|
149
|
-
.nav .open > a,
|
|
155
|
+
.nav .open > a,
|
|
156
|
+
.nav .open > a:hover,
|
|
157
|
+
.nav .open > a:focus {
|
|
150
158
|
background: @navy;
|
|
151
159
|
}
|
|
152
160
|
|
|
@@ -179,7 +187,8 @@ body.md-skin {
|
|
|
179
187
|
font-weight: 400;
|
|
180
188
|
}
|
|
181
189
|
|
|
182
|
-
.navbar-static-side .nav > li > a:focus,
|
|
190
|
+
.navbar-static-side .nav > li > a:focus,
|
|
191
|
+
.navbar-static-side .nav > li > a:hover {
|
|
183
192
|
background-color: inherit;
|
|
184
193
|
}
|
|
185
194
|
|
|
@@ -205,14 +214,18 @@ body.md-skin {
|
|
|
205
214
|
}
|
|
206
215
|
|
|
207
216
|
.mini-navbar li.active .nav-second-level {
|
|
208
|
-
left: 65px
|
|
217
|
+
left: 65px;
|
|
209
218
|
}
|
|
210
219
|
|
|
211
220
|
.canvas-menu.mini-navbar .nav-second-level {
|
|
212
221
|
background: inherit;
|
|
213
222
|
}
|
|
214
223
|
|
|
215
|
-
.navbar-static-side,
|
|
224
|
+
.navbar-static-side,
|
|
225
|
+
.nav-header,
|
|
226
|
+
li.active,
|
|
227
|
+
#page-wrapper,
|
|
228
|
+
.footer {
|
|
216
229
|
-webkit-transition: all 0.4s;
|
|
217
230
|
-moz-transition: all 0.4s;
|
|
218
231
|
-o-transition: all 0.4s;
|
|
@@ -226,7 +239,8 @@ body.md-skin {
|
|
|
226
239
|
border-bottom: none !important;
|
|
227
240
|
}
|
|
228
241
|
|
|
229
|
-
.navbar-fixed-top,
|
|
242
|
+
.navbar-fixed-top,
|
|
243
|
+
.navbar-static-top {
|
|
230
244
|
background-color: @md-color-primary !important;
|
|
231
245
|
box-shadow: @md-shadow-main;
|
|
232
246
|
}
|
|
@@ -235,7 +249,7 @@ body.md-skin {
|
|
|
235
249
|
box-shadow: @md-shadow-main;
|
|
236
250
|
}
|
|
237
251
|
|
|
238
|
-
|
|
252
|
+
/* Right sidebar */
|
|
239
253
|
|
|
240
254
|
#right-sidebar {
|
|
241
255
|
box-shadow: @md-shadow-main;
|
|
@@ -243,7 +257,8 @@ body.md-skin {
|
|
|
243
257
|
z-index: 900;
|
|
244
258
|
}
|
|
245
259
|
|
|
246
|
-
.white-bg .navbar-fixed-top,
|
|
260
|
+
.white-bg .navbar-fixed-top,
|
|
261
|
+
.white-bg .navbar-static-top {
|
|
247
262
|
background: #fff !important;
|
|
248
263
|
}
|
|
249
264
|
|
|
@@ -267,7 +282,6 @@ body.md-skin {
|
|
|
267
282
|
}
|
|
268
283
|
|
|
269
284
|
ul.notes li div {
|
|
270
|
-
|
|
271
285
|
box-shadow: @md-shadow-main;
|
|
272
286
|
}
|
|
273
287
|
|
|
@@ -312,8 +326,7 @@ body.md-skin {
|
|
|
312
326
|
}
|
|
313
327
|
|
|
314
328
|
&.landing-page .navbar-default.navbar-scroll,
|
|
315
|
-
&.landing-page.body-small .navbar-default
|
|
316
|
-
{
|
|
329
|
+
&.landing-page.body-small .navbar-default {
|
|
317
330
|
background-color: #ffffff !important;
|
|
318
331
|
}
|
|
319
332
|
|
|
@@ -343,7 +356,8 @@ body.md-skin {
|
|
|
343
356
|
color: @text-color;
|
|
344
357
|
}
|
|
345
358
|
|
|
346
|
-
.landing_link a,
|
|
359
|
+
.landing_link a,
|
|
360
|
+
.special_link a {
|
|
347
361
|
color: #ffffff !important;
|
|
348
362
|
}
|
|
349
363
|
|
|
@@ -369,7 +383,8 @@ body.md-skin {
|
|
|
369
383
|
color: @text-color;
|
|
370
384
|
}
|
|
371
385
|
|
|
372
|
-
&.top-navigation .nav > li a:hover,
|
|
386
|
+
&.top-navigation .nav > li a:hover,
|
|
387
|
+
.top-navigation .nav > li a:focus,
|
|
373
388
|
&.top-navigation .nav .open > a,
|
|
374
389
|
&.top-navigation .nav .open > a:hover,
|
|
375
390
|
&.top-navigation .nav .open > a:focus {
|
|
@@ -403,7 +418,6 @@ body.md-skin {
|
|
|
403
418
|
background-color: #ffffff;
|
|
404
419
|
}
|
|
405
420
|
|
|
406
|
-
|
|
407
421
|
&.boxed-layout #wrapper {
|
|
408
422
|
background-color: #ffffff;
|
|
409
423
|
}
|
|
@@ -415,8 +429,4 @@ body.md-skin {
|
|
|
415
429
|
position: fixed;
|
|
416
430
|
display: none;
|
|
417
431
|
}
|
|
418
|
-
|
|
419
432
|
}
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
#page-wrapper #page-wrapper {
|
|
9
9
|
margin: 0;
|
|
10
10
|
}
|
|
11
|
-
|
|
11
|
+
|
|
12
12
|
.navbar-static-side {
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
width: @sidebar-width;
|
|
14
|
+
z-index: 1001;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.navbar-top-links .dropdown-messages,
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
@media (max-width: 768px) {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
25
|
+
.body-small .navbar-static-side {
|
|
26
|
+
background-color: @nav-bg;
|
|
27
|
+
padding: 0;
|
|
28
|
+
width: 100%;
|
|
29
|
+
z-index: 2001;
|
|
30
|
+
}
|
|
31
|
+
.navbar-static-side.open {
|
|
32
|
+
transition: display 1s ease-in !important;
|
|
33
|
+
}
|
|
34
34
|
|
|
35
35
|
.body-small.mini-navbar .navbar-static-side {
|
|
36
36
|
display: block;
|
|
@@ -62,7 +62,6 @@
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
.fixed-sidebar.body-small .navbar-static-side {
|
|
65
|
-
//display: none;
|
|
66
65
|
z-index: 2001;
|
|
67
66
|
position: fixed;
|
|
68
67
|
width: @sidebar-width;
|
|
@@ -78,7 +77,9 @@
|
|
|
78
77
|
display: block;
|
|
79
78
|
}
|
|
80
79
|
|
|
81
|
-
.navbar-static-side {
|
|
80
|
+
.navbar-static-side {
|
|
81
|
+
display: none;
|
|
82
|
+
}
|
|
82
83
|
|
|
83
84
|
body:not(.mini-navbar) {
|
|
84
85
|
-webkit-transition: background-color 500ms linear;
|
|
@@ -86,13 +87,11 @@
|
|
|
86
87
|
-o-transition: background-color 500ms linear;
|
|
87
88
|
-ms-transition: background-color 500ms linear;
|
|
88
89
|
transition: background-color 500ms linear;
|
|
89
|
-
background-color: #f3f3f4
|
|
90
|
+
background-color: #f3f3f4;
|
|
90
91
|
}
|
|
91
|
-
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
@media (max-width: 350px) {
|
|
95
|
-
|
|
96
95
|
.timeline-item .date {
|
|
97
96
|
text-align: left;
|
|
98
97
|
width: 110px;
|
|
@@ -127,6 +126,4 @@
|
|
|
127
126
|
text-align: left;
|
|
128
127
|
display: inline-block;
|
|
129
128
|
}
|
|
130
|
-
|
|
131
129
|
}
|
|
132
|
-
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
/* RTL Support */
|
|
2
2
|
body.rtls {
|
|
3
|
-
|
|
4
3
|
#page-wrapper {
|
|
5
4
|
margin: 0 220px 0 0;
|
|
6
5
|
}
|
|
@@ -103,7 +102,8 @@ body.rtls {
|
|
|
103
102
|
float: right;
|
|
104
103
|
}
|
|
105
104
|
|
|
106
|
-
.chat-users,
|
|
105
|
+
.chat-users,
|
|
106
|
+
.chat-statistic {
|
|
107
107
|
margin-right: -30px;
|
|
108
108
|
margin-left: auto;
|
|
109
109
|
}
|
|
@@ -123,7 +123,7 @@ body.rtls {
|
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
.dd-item > button {
|
|
126
|
-
float: right
|
|
126
|
+
float: right;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
/* Theme config */
|
|
@@ -155,22 +155,24 @@ body.rtls {
|
|
|
155
155
|
margin-right: 220px;
|
|
156
156
|
margin-left: 0;
|
|
157
157
|
}
|
|
158
|
-
|
|
159
158
|
}
|
|
160
159
|
|
|
161
160
|
@media (max-width: 992px) {
|
|
162
161
|
body.rtls {
|
|
163
|
-
.chat-users,
|
|
162
|
+
.chat-users,
|
|
163
|
+
.chat-statistic {
|
|
164
164
|
margin-right: 0;
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
body.rtls.mini-navbar .footer.fixed,
|
|
169
|
+
body.rtls.mini-navbar .footer.fixed,
|
|
170
|
+
body.body-small.mini-navbar .footer.fixed {
|
|
170
171
|
margin: 0 70px 0 0;
|
|
171
172
|
}
|
|
172
173
|
|
|
173
|
-
body.rtls.mini-navbar.fixed-sidebar .footer.fixed,
|
|
174
|
+
body.rtls.mini-navbar.fixed-sidebar .footer.fixed,
|
|
175
|
+
body.body-small.mini-navbar .footer.fixed {
|
|
174
176
|
margin: 0 0 0 0;
|
|
175
177
|
}
|
|
176
178
|
|
|
@@ -216,16 +218,18 @@ body.rtls .navbar-top-links li:last-child {
|
|
|
216
218
|
margin-left: 20px;
|
|
217
219
|
}
|
|
218
220
|
|
|
219
|
-
body.rtls .top-navigation #page-wrapper,
|
|
221
|
+
body.rtls .top-navigation #page-wrapper,
|
|
222
|
+
body.rtls.mini-navbar .top-navigation #page-wrapper,
|
|
223
|
+
body.rtls.mini-navbar.top-navigation #page-wrapper {
|
|
220
224
|
margin: 0;
|
|
221
225
|
}
|
|
222
226
|
|
|
223
|
-
body.rtls .top-navigation .footer.fixed,
|
|
227
|
+
body.rtls .top-navigation .footer.fixed,
|
|
228
|
+
body.rtls.top-navigation .footer.fixed {
|
|
224
229
|
margin: 0;
|
|
225
230
|
}
|
|
226
231
|
|
|
227
232
|
@media (max-width: 768px) {
|
|
228
|
-
|
|
229
233
|
body.rtls .navbar-top-links li:last-child {
|
|
230
234
|
margin-left: 20px;
|
|
231
235
|
}
|
|
@@ -257,15 +261,15 @@ body.rtls .top-navigation .footer.fixed, body.rtls.top-navigation .footer.fixed
|
|
|
257
261
|
.rtls.fixed-sidebar.body-small.mini-navbar .navbar-static-side {
|
|
258
262
|
display: block;
|
|
259
263
|
}
|
|
260
|
-
|
|
261
264
|
}
|
|
262
265
|
|
|
263
|
-
|
|
266
|
+
/* For special ltr supporting plugin */
|
|
264
267
|
.rtls .ltr-support {
|
|
265
268
|
direction: ltr;
|
|
266
269
|
}
|
|
267
270
|
|
|
268
|
-
.rtls.mini-navbar .nav-second-level,
|
|
271
|
+
.rtls.mini-navbar .nav-second-level,
|
|
272
|
+
.rtls.mini-navbar li.active .nav-second-level {
|
|
269
273
|
left: auto;
|
|
270
274
|
right: 70px;
|
|
271
275
|
}
|
|
@@ -11,7 +11,9 @@
|
|
|
11
11
|
height: 32px;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
.sidebard-panel .feed-element,
|
|
14
|
+
.sidebard-panel .feed-element,
|
|
15
|
+
.media-body,
|
|
16
|
+
.sidebard-panel p {
|
|
15
17
|
font-size: 12px;
|
|
16
18
|
}
|
|
17
19
|
|
|
@@ -30,44 +32,43 @@
|
|
|
30
32
|
border: 0;
|
|
31
33
|
}
|
|
32
34
|
|
|
33
|
-
.sidebar-content .wrapper,
|
|
35
|
+
.sidebar-content .wrapper,
|
|
36
|
+
.wrapper.sidebar-content {
|
|
34
37
|
padding-right: 230px !important;
|
|
35
38
|
}
|
|
36
39
|
|
|
37
|
-
.body-small .sidebar-content .wrapper,
|
|
40
|
+
.body-small .sidebar-content .wrapper,
|
|
41
|
+
.body-small .wrapper.sidebar-content {
|
|
38
42
|
padding-right: 20px !important;
|
|
39
43
|
}
|
|
40
44
|
|
|
41
|
-
|
|
45
|
+
/* Right sidebar */
|
|
42
46
|
|
|
43
47
|
#right-sidebar {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
-webkit-transition: right ease-in 0.5s;
|
|
57
|
-
transition: right ease-in 0.5s;
|
|
48
|
+
background-color: #fff;
|
|
49
|
+
border-left: 1px solid #e7eaec;
|
|
50
|
+
border-top: 1px solid #e7eaec;
|
|
51
|
+
bottom: 0;
|
|
52
|
+
overflow: hidden;
|
|
53
|
+
position: absolute;
|
|
54
|
+
right: -260px;
|
|
55
|
+
top: 0;
|
|
56
|
+
width: 260px !important;
|
|
57
|
+
z-index: 100;
|
|
58
|
+
-webkit-transition: right ease-in 0.5s;
|
|
59
|
+
transition: right ease-in 0.5s;
|
|
58
60
|
}
|
|
59
61
|
|
|
60
62
|
#right-sidebar.sidebar-open {
|
|
61
|
-
|
|
63
|
+
right: 0;
|
|
62
64
|
}
|
|
63
65
|
|
|
64
66
|
#right-sidebar.sidebar-open.sidebar-top {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
+
border-top: none;
|
|
68
|
+
top: 0;
|
|
67
69
|
}
|
|
68
70
|
|
|
69
71
|
.sidebar-container {
|
|
70
|
-
|
|
71
72
|
ul.nav-tabs {
|
|
72
73
|
border: none;
|
|
73
74
|
}
|
|
@@ -90,9 +91,9 @@
|
|
|
90
91
|
border: none;
|
|
91
92
|
border-radius: 0;
|
|
92
93
|
background: @nav-bg;
|
|
93
|
-
color: #fff;
|
|
94
|
+
color: #fff;
|
|
94
95
|
margin: 0;
|
|
95
|
-
|
|
96
|
+
padding: 12px 10px;
|
|
96
97
|
text-align: center;
|
|
97
98
|
|
|
98
99
|
border-right: 1px solid lighten(@nav-bg, 2%);
|
|
@@ -103,12 +104,12 @@
|
|
|
103
104
|
background: #f9f9f9;
|
|
104
105
|
color: @text-color;
|
|
105
106
|
font-weight: bold;
|
|
106
|
-
}
|
|
107
|
-
|
|
107
|
+
}
|
|
108
|
+
|
|
108
109
|
ul.nav-tabs li.tab-1.active a {
|
|
109
110
|
box-shadow: inset 6px 0 10px -10px #333;
|
|
110
|
-
|
|
111
|
-
|
|
111
|
+
-moz-box-shadow: inset 6px 0 10px -10px #333;
|
|
112
|
+
-webkit-box-shadow: inset 6px 0 10px -10px #333;
|
|
112
113
|
}
|
|
113
114
|
|
|
114
115
|
.nav-tabs > li.active > a:hover,
|
|
@@ -129,10 +130,6 @@
|
|
|
129
130
|
font-size: 12px;
|
|
130
131
|
}
|
|
131
132
|
|
|
132
|
-
ul.sidebar-list li:nth-child(2n+2) {
|
|
133
|
-
// background: #f9f9f9;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
133
|
ul.sidebar-list li a {
|
|
137
134
|
text-decoration: none;
|
|
138
135
|
color: inherit;
|
|
@@ -144,12 +141,12 @@
|
|
|
144
141
|
}
|
|
145
142
|
|
|
146
143
|
.sidebar-title {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
144
|
+
background: #f9f9f9;
|
|
145
|
+
border-bottom: 1px solid @border-color;
|
|
146
|
+
box-shadow: inset 6px 0 10px -10px #333;
|
|
147
|
+
-moz-box-shadow: inset 6px 0 10px -10px #333;
|
|
148
|
+
-webkit-box-shadow: inset 6px 0 10px -10px #333;
|
|
149
|
+
padding: 20px;
|
|
153
150
|
|
|
154
151
|
h3 {
|
|
155
152
|
margin-bottom: 3px;
|
|
@@ -158,11 +155,9 @@
|
|
|
158
155
|
}
|
|
159
156
|
|
|
160
157
|
.tab-content {
|
|
161
|
-
|
|
162
158
|
h4 {
|
|
163
159
|
margin-bottom: 5px;
|
|
164
160
|
}
|
|
165
|
-
|
|
166
161
|
}
|
|
167
162
|
|
|
168
163
|
.sidebar-message > a > .pull-left {
|
|
@@ -172,20 +167,20 @@
|
|
|
172
167
|
.sidebar-message > a {
|
|
173
168
|
text-decoration: none;
|
|
174
169
|
color: inherit;
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
170
|
+
&:hover {
|
|
171
|
+
color: #000000;
|
|
172
|
+
}
|
|
178
173
|
}
|
|
179
174
|
|
|
180
175
|
.sidebar-message {
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
176
|
+
background: #ffffff;
|
|
177
|
+
box-shadow: inset 6px 0 10px -10px #333;
|
|
178
|
+
-moz-box-shadow: inset 6px 0 10px -10px #333;
|
|
179
|
+
-webkit-box-shadow: inset 6px 0 10px -10px #333;
|
|
180
|
+
padding: 15px 20px;
|
|
186
181
|
}
|
|
187
182
|
|
|
188
|
-
.sidebar-message:nth-child(2n+2) {
|
|
183
|
+
.sidebar-message:nth-child(2n + 2) {
|
|
189
184
|
background: #f9f9f9;
|
|
190
185
|
}
|
|
191
186
|
|
|
@@ -199,6 +194,4 @@
|
|
|
199
194
|
padding: 15px 20px;
|
|
200
195
|
border-bottom: 1px solid @border-color;
|
|
201
196
|
}
|
|
202
|
-
|
|
203
197
|
}
|
|
204
|
-
|