@ardimedia/angular-portal-azure 0.2.2-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/css/apn.css ADDED
@@ -0,0 +1,1154 @@
1
+ @charset "UTF-8";
2
+ /* This libraries contains some mixin*/
3
+ /*#region LAYOUT*/
4
+ @-webkit-keyframes ngdialog-fadeout {
5
+ 0% {
6
+ opacity: 1; }
7
+ 100% {
8
+ opacity: 0; } }
9
+
10
+ @keyframes ngdialog-fadeout {
11
+ 0% {
12
+ opacity: 1; }
13
+ 100% {
14
+ opacity: 0; } }
15
+
16
+ @-webkit-keyframes ngdialog-fadein {
17
+ 0% {
18
+ opacity: 0; }
19
+ 100% {
20
+ opacity: 1; } }
21
+
22
+ @keyframes ngdialog-fadein {
23
+ 0% {
24
+ opacity: 0; }
25
+ 100% {
26
+ opacity: 1; } }
27
+
28
+ .ngdialog,
29
+ .ngdialog *,
30
+ .ngdialog *:before,
31
+ .ngdialog *:after {
32
+ -webkit-box-sizing: border-box;
33
+ -moz-box-sizing: border-box;
34
+ box-sizing: border-box; }
35
+
36
+ .ngdialog {
37
+ position: fixed;
38
+ overflow: auto;
39
+ -webkit-overflow-scrolling: touch;
40
+ z-index: 10000;
41
+ top: 0;
42
+ right: 0;
43
+ bottom: 0;
44
+ left: 0; }
45
+
46
+ .ngdialog-overlay {
47
+ position: fixed;
48
+ background: rgba(0, 0, 0, 0.4);
49
+ top: 0;
50
+ right: 0;
51
+ bottom: 0;
52
+ left: 0;
53
+ -webkit-backface-visibility: hidden;
54
+ -webkit-animation: ngdialog-fadein 0.5s;
55
+ animation: ngdialog-fadein 0.5s; }
56
+
57
+ .ngdialog.ngdialog-closing .ngdialog-overlay {
58
+ -webkit-backface-visibility: hidden;
59
+ -webkit-animation: ngdialog-fadeout 0.5s;
60
+ animation: ngdialog-fadeout 0.5s; }
61
+
62
+ .ngdialog-content {
63
+ background: white;
64
+ -webkit-backface-visibility: hidden;
65
+ -webkit-animation: ngdialog-fadein 0.5s;
66
+ animation: ngdialog-fadein 0.5s; }
67
+
68
+ .ngdialog.ngdialog-closing .ngdialog-content {
69
+ -webkit-backface-visibility: hidden;
70
+ -webkit-animation: ngdialog-fadeout 0.5s;
71
+ animation: ngdialog-fadeout 0.5s; }
72
+
73
+ .ngdialog-close:before {
74
+ font-family: 'Helvetica', Arial, sans-serif;
75
+ content: '\00D7';
76
+ cursor: pointer; }
77
+
78
+ body.ngdialog-open {
79
+ overflow: hidden; }
80
+
81
+ /*#endregion*/
82
+ /*#region LAYOUT DEFAULT*/
83
+ @-webkit-keyframes ngdialog-flyin {
84
+ 0% {
85
+ opacity: 0;
86
+ -webkit-transform: translateY(-40px);
87
+ transform: translateY(-40px); }
88
+ 100% {
89
+ opacity: 1;
90
+ -webkit-transform: translateY(0);
91
+ transform: translateY(0); } }
92
+
93
+ @keyframes ngdialog-flyin {
94
+ 0% {
95
+ opacity: 0;
96
+ -webkit-transform: translateY(-40px);
97
+ -ms-transform: translateY(-40px);
98
+ transform: translateY(-40px); }
99
+ 100% {
100
+ opacity: 1;
101
+ -webkit-transform: translateY(0);
102
+ -ms-transform: translateY(0);
103
+ transform: translateY(0); } }
104
+
105
+ @-webkit-keyframes ngdialog-flyout {
106
+ 0% {
107
+ opacity: 1;
108
+ -webkit-transform: translateY(0);
109
+ transform: translateY(0); }
110
+ 100% {
111
+ opacity: 0;
112
+ -webkit-transform: translateY(-40px);
113
+ transform: translateY(-40px); } }
114
+
115
+ @keyframes ngdialog-flyout {
116
+ 0% {
117
+ opacity: 1;
118
+ -webkit-transform: translateY(0);
119
+ -ms-transform: translateY(0);
120
+ transform: translateY(0); }
121
+ 100% {
122
+ opacity: 0;
123
+ -webkit-transform: translateY(-40px);
124
+ -ms-transform: translateY(-40px);
125
+ transform: translateY(-40px); } }
126
+
127
+ .ngdialog.ngdialog-theme-default {
128
+ padding-bottom: 160px;
129
+ padding-top: 160px; }
130
+
131
+ .ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
132
+ -webkit-animation: ngdialog-flyout .5s;
133
+ animation: ngdialog-flyout .5s; }
134
+
135
+ .ngdialog.ngdialog-theme-default .ngdialog-content {
136
+ -webkit-animation: ngdialog-flyin .5s;
137
+ animation: ngdialog-flyin .5s;
138
+ background: #f0f0f0;
139
+ border-radius: 5px;
140
+ color: #444;
141
+ font-family: 'Helvetica',sans-serif;
142
+ font-size: 1.1em;
143
+ line-height: 1.5em;
144
+ margin: 0 auto;
145
+ max-width: 100%;
146
+ padding: 1em;
147
+ position: relative;
148
+ width: 450px; }
149
+
150
+ .ngdialog.ngdialog-theme-default .ngdialog-close {
151
+ border-radius: 5px;
152
+ cursor: pointer;
153
+ position: absolute;
154
+ right: 0;
155
+ top: 0; }
156
+
157
+ .ngdialog.ngdialog-theme-default .ngdialog-close:before {
158
+ background: transparent;
159
+ border-radius: 3px;
160
+ color: #bbb;
161
+ content: '\00D7';
162
+ font-size: 26px;
163
+ font-weight: 400;
164
+ height: 30px;
165
+ line-height: 26px;
166
+ position: absolute;
167
+ right: 3px;
168
+ text-align: center;
169
+ top: 3px;
170
+ width: 30px; }
171
+
172
+ .ngdialog.ngdialog-theme-default .ngdialog-close:hover:before,
173
+ .ngdialog.ngdialog-theme-default .ngdialog-close:active:before {
174
+ color: #777; }
175
+
176
+ .ngdialog.ngdialog-theme-default .ngdialog-message {
177
+ margin-bottom: .5em; }
178
+
179
+ .ngdialog.ngdialog-theme-default .ngdialog-input {
180
+ margin-bottom: 1em; }
181
+
182
+ .ngdialog.ngdialog-theme-default .ngdialog-input textarea,
183
+ .ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"],
184
+ .ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"],
185
+ .ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"],
186
+ .ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"] {
187
+ background: #fff;
188
+ border: 0;
189
+ border-radius: 3px;
190
+ font-family: inherit;
191
+ font-size: inherit;
192
+ font-weight: inherit;
193
+ margin: 0 0 .25em;
194
+ min-height: 2.5em;
195
+ padding: .25em .67em;
196
+ width: 100%; }
197
+
198
+ .ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus,
199
+ .ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"]:focus,
200
+ .ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"]:focus,
201
+ .ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"]:focus,
202
+ .ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]:focus {
203
+ -webkit-box-shadow: inset 0 0 0 2px #8dbdf1;
204
+ box-shadow: inset 0 0 0 2px #8dbdf1;
205
+ outline: none; }
206
+
207
+ .ngdialog.ngdialog-theme-default .ngdialog-buttons {
208
+ *zoom: 1; }
209
+
210
+ .ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
211
+ content: '';
212
+ display: table;
213
+ clear: both; }
214
+
215
+ .ngdialog.ngdialog-theme-default .ngdialog-button {
216
+ border: 0;
217
+ border-radius: 3px;
218
+ cursor: pointer;
219
+ float: right;
220
+ font-family: inherit;
221
+ font-size: .8em;
222
+ letter-spacing: .1em;
223
+ line-height: 1em;
224
+ margin: 0 0 0 .5em;
225
+ padding: .75em 2em;
226
+ text-transform: uppercase; }
227
+
228
+ .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
229
+ -webkit-animation: ngdialog-pulse 1.1s infinite;
230
+ animation: ngdialog-pulse 1.1s infinite;
231
+ outline: none; }
232
+
233
+ @media (max-width: 568px) {
234
+ .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
235
+ -webkit-animation: none;
236
+ animation: none; } }
237
+
238
+ .ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
239
+ background: #3288e6;
240
+ color: #fff; }
241
+
242
+ .ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
243
+ background: #e0e0e0;
244
+ color: #777; }
245
+
246
+ /*#endregion*/
247
+ /*#region LAYOUT PLAIN*/
248
+ .ngdialog.ngdialog-theme-plain {
249
+ padding-bottom: 160px;
250
+ padding-top: 160px; }
251
+
252
+ .ngdialog.ngdialog-theme-plain .ngdialog-content {
253
+ background: #fff;
254
+ color: #444;
255
+ font-family: 'Helvetica Neue',sans-serif;
256
+ font-size: 1.1em;
257
+ line-height: 1.5em;
258
+ margin: 0 auto;
259
+ max-width: 100%;
260
+ padding: 1em;
261
+ position: relative;
262
+ width: 450px; }
263
+
264
+ .ngdialog.ngdialog-theme-plain .ngdialog-content h1,
265
+ .ngdialog.ngdialog-theme-plain .ngdialog-content h2,
266
+ .ngdialog.ngdialog-theme-plain .ngdialog-content h3,
267
+ .ngdialog.ngdialog-theme-plain .ngdialog-content h4,
268
+ .ngdialog.ngdialog-theme-plain .ngdialog-content h5,
269
+ .ngdialog.ngdialog-theme-plain .ngdialog-content h6,
270
+ .ngdialog.ngdialog-theme-plain .ngdialog-content p,
271
+ .ngdialog.ngdialog-theme-plain .ngdialog-content ul,
272
+ .ngdialog.ngdialog-theme-plain .ngdialog-content li {
273
+ color: inherit; }
274
+
275
+ .ngdialog.ngdialog-theme-plain .ngdialog-close {
276
+ cursor: pointer;
277
+ position: absolute;
278
+ right: 0;
279
+ top: 0; }
280
+
281
+ .ngdialog.ngdialog-theme-plain .ngdialog-close:before {
282
+ background: transparent;
283
+ color: #bbb;
284
+ content: "\00D7";
285
+ font-size: 26px;
286
+ font-weight: 400;
287
+ height: 30px;
288
+ line-height: 26px;
289
+ position: absolute;
290
+ right: 3px;
291
+ text-align: center;
292
+ top: 3px;
293
+ width: 30px; }
294
+
295
+ .ngdialog.ngdialog-theme-plain .ngdialog-close:hover:before,
296
+ .ngdialog.ngdialog-theme-plain .ngdialog-close:active:before {
297
+ color: #777; }
298
+
299
+ .ngdialog.ngdialog-theme-plain .ngdialog-message {
300
+ margin-bottom: .5em; }
301
+
302
+ .ngdialog.ngdialog-theme-plain .ngdialog-input {
303
+ margin-bottom: 1em; }
304
+
305
+ .ngdialog.ngdialog-theme-plain .ngdialog-input textarea,
306
+ .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"],
307
+ .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"],
308
+ .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"],
309
+ .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"] {
310
+ background: #f0f0f0;
311
+ border: 0;
312
+ font-family: inherit;
313
+ font-size: inherit;
314
+ font-weight: inherit;
315
+ margin: 0 0 .25em;
316
+ min-height: 2.5em;
317
+ padding: .25em .67em;
318
+ width: 100%; }
319
+
320
+ .ngdialog.ngdialog-theme-plain .ngdialog-input textarea:focus,
321
+ .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"]:focus,
322
+ .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"]:focus,
323
+ .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"]:focus,
324
+ .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"]:focus {
325
+ -webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
326
+ box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
327
+ outline: none; }
328
+
329
+ .ngdialog.ngdialog-theme-plain .ngdialog-buttons:after {
330
+ clear: both;
331
+ content: '';
332
+ display: table; }
333
+
334
+ .ngdialog.ngdialog-theme-plain .ngdialog-button {
335
+ border: 0;
336
+ cursor: pointer;
337
+ float: right;
338
+ font-family: inherit;
339
+ font-size: .8em;
340
+ letter-spacing: .1em;
341
+ line-height: 1em;
342
+ margin: 0 0 0 .5em;
343
+ padding: .75em 2em;
344
+ text-transform: uppercase; }
345
+
346
+ .ngdialog.ngdialog-theme-plain .ngdialog-button:focus {
347
+ -webkit-animation: ngdialog-pulse 1.1s infinite;
348
+ animation: ngdialog-pulse 1.1s infinite;
349
+ outline: none; }
350
+
351
+ @media (max-width: 568px) {
352
+ .ngdialog.ngdialog-theme-plain .ngdialog-button:focus {
353
+ -webkit-animation: none;
354
+ animation: none; } }
355
+
356
+ .ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-primary {
357
+ background: #3288e6;
358
+ color: #fff; }
359
+
360
+ .ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-secondary {
361
+ background: #e0e0e0;
362
+ color: #777; }
363
+
364
+ /*#endregion*/
365
+ html, body {
366
+ -moz-box-sizing: border-box;
367
+ -webkit-box-sizing: border-box;
368
+ box-sizing: border-box;
369
+ margin: 0;
370
+ padding: 0;
371
+ height: 100%;
372
+ width: 0; }
373
+
374
+ /*
375
+ PORTAL SHELL:
376
+ fxs-portal: contains everything
377
+ fxs-portal-content: contains the content. eg. no navbar
378
+ fxs-panorama: contains homearea and journey
379
+ fxs-panorama-homearea: contains the "desktop"
380
+ fxs-panorama-journey: contains the on/off "views"
381
+ fxs-portal-appbar: top application bar (not yet implemented)
382
+
383
+ PORTAL CHILD:
384
+ fxs-stacklayout-child: is exactly one view
385
+ */
386
+ /*#region PORTAL SHELL*/
387
+ a {
388
+ color: #00bcf2;
389
+ text-decoration: none; }
390
+
391
+ .ng-scope {
392
+ height: 100%; }
393
+
394
+ .fxs-portal {
395
+ /*height: 100%;*/
396
+ overflow: hidden;
397
+ position: fixed;
398
+ top: 0;
399
+ left: 0;
400
+ right: 0;
401
+ bottom: 0;
402
+ /*-ms-scroll-chaining: none;*/ }
403
+
404
+ .fxs-portal .fxs-portal-content {
405
+ height: 100%;
406
+ color: #464f59;
407
+ overflow-x: auto;
408
+ overflow-y: hidden;
409
+ white-space: nowrap;
410
+ -webkit-transition: margin .2s ease;
411
+ -moz-transition: margin .2s ease;
412
+ -o-transition: margin .2s ease;
413
+ transition: margin .2s ease; }
414
+
415
+ .fxs-portal .fxs-portal-content > * {
416
+ white-space: normal; }
417
+
418
+ .fxs-panorama {
419
+ -ms-scroll-chaining: none; }
420
+
421
+ .fxs-panorama-homearea {
422
+ min-width: 600px; }
423
+
424
+ .fxs-panorama .fxs-panorama-homearea {
425
+ position: relative;
426
+ padding: 0 25px;
427
+ margin: 0 15px 0 25px; }
428
+
429
+ .fxs-panorama .fxs-journey-target {
430
+ margin-right: 85px; }
431
+
432
+ .fxs-panorama .fxs-panorama-homearea, .fxs-panorama .fxs-journey-target {
433
+ display: inline-block;
434
+ vertical-align: top;
435
+ height: 100%; }
436
+
437
+ .fxs-panorama .fxs-panorama-homearea > header {
438
+ margin: 20px 0 4px;
439
+ height: 76px;
440
+ min-width: 450px; }
441
+
442
+ .fxs-panorama .fxs-panorama-homearea .fxs-panorama-title {
443
+ font-family: wf_segoe-ui_light,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
444
+ font-weight: 400;
445
+ font-size: 40px;
446
+ line-height: 54px;
447
+ color: #fff;
448
+ /*color: #32383f;*/
449
+ padding-top: 6px;
450
+ margin: 0; }
451
+
452
+ .fxs-panorama .fxs-panorama-homearea .fxs-avatarmenu-target {
453
+ position: absolute;
454
+ top: 18px;
455
+ right: 5px;
456
+ max-width: 220px;
457
+ min-width: 190px; }
458
+
459
+ .fxs-avatarmenu {
460
+ position: relative;
461
+ padding: 12px;
462
+ text-align: right;
463
+ -moz-box-sizing: border-box;
464
+ -webkit-box-sizing: border-box;
465
+ box-sizing: border-box; }
466
+
467
+ .fxs-avatarmenu .fxs-avatarmenu-header {
468
+ position: relative;
469
+ font-family: wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
470
+ font-weight: 400;
471
+ height: 35px;
472
+ color: #fff;
473
+ /*color: #32383f;*/ }
474
+
475
+ .fxs-avatarmenu > a {
476
+ display: block;
477
+ white-space: nowrap;
478
+ overflow: hidden;
479
+ -ms-text-overflow: ellipsis;
480
+ -o-text-overflow: ellipsis;
481
+ text-overflow: ellipsis;
482
+ text-decoration: none;
483
+ padding: 10px;
484
+ padding-right: 54px; }
485
+
486
+ .fxs-avatarmenu > a img {
487
+ position: absolute;
488
+ top: 10px;
489
+ right: 10px;
490
+ height: 35px;
491
+ width: 32px;
492
+ border: 0;
493
+ border-left: 3px solid #7fba00; }
494
+
495
+ .fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-username {
496
+ white-space: nowrap;
497
+ overflow: hidden;
498
+ -ms-text-overflow: ellipsis;
499
+ -o-text-overflow: ellipsis;
500
+ text-overflow: ellipsis;
501
+ font-size: 14px; }
502
+
503
+ .fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-emailaddress {
504
+ white-space: nowrap;
505
+ overflow: hidden;
506
+ -ms-text-overflow: ellipsis;
507
+ -o-text-overflow: ellipsis;
508
+ text-overflow: ellipsis;
509
+ font-family: wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
510
+ font-weight: 400;
511
+ font-size: 10px;
512
+ text-transform: uppercase;
513
+ opacity: 0.9;
514
+ margin-top: 4px; }
515
+
516
+ .fxs-avatarmenu .fxs-avatarmenu-dropdown {
517
+ display: none;
518
+ width: 100%;
519
+ background-color: #32383f;
520
+ border-top: 1px solid #3c454f;
521
+ text-align: left; }
522
+
523
+ .fxs-avatarmenu .fxs-avatarmenu-dropdown ul {
524
+ padding: 0;
525
+ margin: 0;
526
+ list-style-type: none;
527
+ border-bottom: 1px solid #3c454f; }
528
+
529
+ .fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-feedback, .fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-switchportal, .fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-signout {
530
+ padding-right: 35px;
531
+ position: relative; }
532
+
533
+ .fxs-avatarmenu .fxs-avatarmenu-dropdown ul li a {
534
+ display: block;
535
+ font-size: 14px;
536
+ padding: 10px 18px 11px;
537
+ line-height: 18px;
538
+ color: #fff;
539
+ text-decoration: none;
540
+ white-space: nowrap;
541
+ overflow: hidden;
542
+ -ms-text-overflow: ellipsis;
543
+ -o-text-overflow: ellipsis;
544
+ text-overflow: ellipsis; }
545
+
546
+ .fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-icon {
547
+ width: 15px;
548
+ height: 15px;
549
+ display: inline-block;
550
+ position: absolute;
551
+ right: 18px;
552
+ margin-top: 2px; }
553
+
554
+ .fxs-panorama .fxs-panorama-homearea .fxs-startboard-target {
555
+ height: -webkit-calc(100% - 100px);
556
+ height: calc(100% - 100px); }
557
+
558
+ .fxs-startboard .fxs-startboard-layout {
559
+ height: 100%;
560
+ overflow-y: hidden;
561
+ overflow-x: hidden;
562
+ margin: 0 -25px;
563
+ padding: 0 25px; }
564
+
565
+ .fxs-flowlayout > .fxs-flowlayout-childcontainer {
566
+ position: relative;
567
+ -webkit-transition: height .25s linear, width .25s linear 0s;
568
+ -moz-transition: height .25s linear, width .25s linear 0s;
569
+ -o-transition: height .25s linear, width .25s linear 0s;
570
+ transition: height .25s linear, width .25s linear 0s; }
571
+
572
+ .fxs-flowlayout > .fxs-flowlayout-childcontainer > .fxs-flowlayout-element {
573
+ position: absolute; }
574
+
575
+ .fxs-tilesize-herowide.fxs-tile {
576
+ height: 355px;
577
+ width: 535px; }
578
+
579
+ .fxs-tilesize-normal.fxs-tile {
580
+ height: 175px;
581
+ width: 175px; }
582
+
583
+ .fxs-tilesize-mini.fxs-tile {
584
+ height: 85px;
585
+ width: 85px; }
586
+
587
+ .fxs-tile {
588
+ height: 175px;
589
+ width: 175px;
590
+ -webkit-transition: height .125s linear .125s, width .125s linear 0s;
591
+ -moz-transition: height .125s linear .125s, width .125s linear 0s;
592
+ -o-transition: height .125s linear .125s, width .125s linear 0s;
593
+ transition: height .125s linear .125s, width .125s linear 0s;
594
+ background-color: #fff;
595
+ position: relative; }
596
+
597
+ .fxs-part {
598
+ width: 100%;
599
+ height: 100%;
600
+ position: relative;
601
+ box-shadow: inset 1px 0 #dcdfe2;
602
+ -moz-box-sizing: border-box;
603
+ -webkit-box-sizing: border-box;
604
+ box-sizing: border-box;
605
+ overflow: hidden;
606
+ padding: 15px 15px 15px 15px;
607
+ box-shadow: inset 1px 0 #dcdfe2; }
608
+
609
+ .fxs-part .fxs-part-title {
610
+ /*display: none;*/
611
+ height: 49px;
612
+ position: relative;
613
+ top: -4px; }
614
+
615
+ .fxs-part .fxs-part-title h2 {
616
+ font-family: wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
617
+ font-weight: 400;
618
+ font-size: 14px;
619
+ line-height: 17px;
620
+ color: #32383f; }
621
+
622
+ .fxs-part .fxs-part-title h3 {
623
+ font-family: wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
624
+ font-weight: 400;
625
+ font-size: 10px;
626
+ line-height: 10px;
627
+ color: #8f9ca8;
628
+ text-transform: uppercase;
629
+ margin-top: 3px; }
630
+
631
+ .fxs-part .fxs-part-title h2, .fxs-part .fxs-part-title h3 {
632
+ margin: 0;
633
+ white-space: nowrap;
634
+ overflow: hidden;
635
+ -ms-text-overflow: ellipsis;
636
+ -o-text-overflow: ellipsis;
637
+ text-overflow: ellipsis; }
638
+
639
+ .fxs-part .fxs-part-content {
640
+ font-family: wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
641
+ font-weight: 400;
642
+ font-size: 12px;
643
+ line-height: 18px;
644
+ color: #464f59;
645
+ /*line-height: normal;*/
646
+ position: relative;
647
+ width: 100%;
648
+ height: 100%;
649
+ -moz-box-sizing: border-box;
650
+ box-sizing: border-box; }
651
+
652
+ .fxs-tile div.fxs-tile-overlay {
653
+ display: none;
654
+ position: absolute;
655
+ width: 100%;
656
+ top: 0px;
657
+ bottom: 0px;
658
+ cursor: pointer; }
659
+
660
+ .fxs-journey {
661
+ height: 100%; }
662
+
663
+ .fxs-journey > .fxs-journey-layout {
664
+ height: 100%; }
665
+
666
+ /*#endregion*/
667
+ /*#region PORTAL CHILD */
668
+ .fxs-journey > .fxs-journey-layout > :first-child.fxs-stacklayout-child {
669
+ padding-left: 5px; }
670
+
671
+ .fxs-journey > .fxs-journey-layout > .fxs-stacklayout-child {
672
+ -webkit-transition: padding-top .2s ease, opacity .2s ease;
673
+ transition: padding-top .2s ease, opacity .2s ease; }
674
+
675
+ .fxs-stacklayout-horizontal.fxs-stacklayout {
676
+ overflow: hidden;
677
+ white-space: nowrap;
678
+ height: 100%; }
679
+
680
+ .fxs-stacklayout-horizontal.fxs-stacklayout > .fxs-stacklayout-child {
681
+ display: inline-block;
682
+ vertical-align: top;
683
+ overflow-y: auto;
684
+ height: 100%;
685
+ white-space: normal; }
686
+
687
+ .fxs-journey > .fxs-journey-layout > :last-child.fxs-stacklayout-child {
688
+ padding-right: 5px; }
689
+
690
+ .fxs-journey > .fxs-journey-layout > .fxs-stacklayout-child > .fxs-blade {
691
+ box-shadow: -5px 0 0 rgba(31, 35, 39, 0.2), 5px 0 0 rgba(31, 35, 39, 0.2); }
692
+
693
+ .fxs-journey-layout :first-child.fxs-stacklayout-child .fxs-blade {
694
+ border-left-color: transparent;
695
+ border-left-width: 0; }
696
+
697
+ .fxs-blade-locked.fxs-blade {
698
+ background-color: #fff; }
699
+
700
+ .fxs-bladesize-small.fxs-blade {
701
+ width: 315px; }
702
+
703
+ .fxs-blade {
704
+ border-left-color: rgba(143, 156, 168, 0.8);
705
+ width: 585px;
706
+ position: relative;
707
+ height: 100%;
708
+ background-color: #f1f2f3;
709
+ overflow: hidden;
710
+ -webkit-transition: width .2s ease-out;
711
+ -moz-transition: width .2s ease-out;
712
+ -o-transition: width .2s ease-out;
713
+ transition: width .2s ease-out;
714
+ border-left-style: solid;
715
+ border-left-width: 2px; }
716
+
717
+ .fxs-blade .fxs-blade-header {
718
+ padding-bottom: 8px;
719
+ background-color: #3e4045;
720
+ /*background-color: #e9e9f3;*/
721
+ min-height: 117px; }
722
+
723
+ .fxs-blade .fxs-blade-statusbar-wrapper {
724
+ background-color: #32383f;
725
+ /*background-color: #c5cbd1;*/ }
726
+
727
+ .fxs-blade .fxs-blade-statusbar::after {
728
+ content: " "; }
729
+
730
+ .fxs-blade .fxs-blade-statusbar {
731
+ -webkit-transition: all .5s, color .5s;
732
+ -moz-transition: all .5s, color .5s;
733
+ -o-transition: all .5s, color .5s;
734
+ transition: all .5s, color .5s; }
735
+
736
+ .fxs-blade .fxs-blade-statusbar, .fxs-blade .fxs-blade-loading-status {
737
+ padding: 5px 0 5px 25px;
738
+ font-family: wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
739
+ font-weight: 400;
740
+ font-size: 10px;
741
+ line-height: 10px;
742
+ color: #fff;
743
+ text-transform: uppercase;
744
+ white-space: nowrap;
745
+ overflow: hidden;
746
+ -ms-text-overflow: ellipsis;
747
+ -o-text-overflow: ellipsis;
748
+ text-overflow: ellipsis; }
749
+
750
+ .fxs-blade .fxs-blade-header .fxs-blade-actions {
751
+ -webkit-transition: all .2s ease-out;
752
+ -moz-transition: all .2s ease-out;
753
+ -o-transition: all .2s ease-out;
754
+ transition: all .2s ease-out;
755
+ float: right;
756
+ margin-right: 22px;
757
+ height: 40px; }
758
+
759
+ .fxs-blade .fxs-blade-header .fxs-blade-actions button {
760
+ cursor: pointer;
761
+ border: 0;
762
+ height: 21px;
763
+ width: 21px;
764
+ background-color: transparent;
765
+ margin-top: 4px;
766
+ margin-left: 6px;
767
+ padding: 0;
768
+ opacity: 0.3;
769
+ -webkit-transition: opacity .2s ease-out;
770
+ -moz-transition: opacity .2s ease-out;
771
+ -o-transition: opacity .2s ease-out;
772
+ transition: opacity .2s ease-out; }
773
+
774
+ .fxs-blade .fxs-blade-header .fxs-blade-actions button img, .fxs-blade .fxs-blade-header .fxs-blade-actions button svg {
775
+ height: 21px;
776
+ width: 21px; }
777
+
778
+ .msportal-fx-svg-placeholder {
779
+ fill: #fff; }
780
+
781
+ .fxs-blade .fxs-blade-header .fxs-blade-actions button > svg * {
782
+ fill: #8f9ca8; }
783
+
784
+ .fxs-blade .fxs-blade-header .fxs-blade-actions button svg * {
785
+ fill: #63707e; }
786
+
787
+ .msportalfx-svg-c01 {
788
+ fill: #fff; }
789
+
790
+ .fxs-blade .fxs-blade-header .fxs-blade-title {
791
+ padding: 0 25px 2px 7px;
792
+ margin-left: 18px; }
793
+
794
+ .fxs-blade .fxs-blade-header .fxs-blade-title h2::after, .fxs-blade .fxs-blade-header .fxs-blade-title h3::after {
795
+ content: " "; }
796
+
797
+ .fxs-blade .fxs-blade-header .fxs-blade-title h2 {
798
+ margin: 0;
799
+ font-family: wf_segoe-ui_semilight,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
800
+ font-weight: 400;
801
+ font-size: 20px;
802
+ line-height: 28px;
803
+ color: #fff;
804
+ /*color: #32383f;*/
805
+ white-space: nowrap;
806
+ overflow: hidden;
807
+ -ms-text-overflow: ellipsis;
808
+ -o-text-overflow: ellipsis;
809
+ text-overflow: ellipsis; }
810
+
811
+ .fxs-blade .fxs-blade-header .fxs-blade-title h3 {
812
+ margin: 3px 0 2px 0;
813
+ font-family: wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
814
+ font-weight: 400;
815
+ font-size: 10px;
816
+ line-height: 10px;
817
+ color: #758393;
818
+ /*color: #8f9ca8;*/
819
+ text-transform: uppercase;
820
+ white-space: nowrap;
821
+ overflow: hidden;
822
+ -ms-text-overflow: ellipsis;
823
+ -o-text-overflow: ellipsis;
824
+ text-overflow: ellipsis; }
825
+
826
+ .fxs-blade .fxs-blade-header .fxs-blade-commandBarContainer {
827
+ margin: 0 20px 0 15px; }
828
+
829
+ .fxs-commandBar {
830
+ display: none; }
831
+
832
+ .fxs-commandBar-active.fxs-commandBar {
833
+ display: block; }
834
+
835
+ .fxs-commandBar > ul.fxs-commandBar-itemList {
836
+ display: block;
837
+ margin: 4px 0 0;
838
+ padding: 0;
839
+ list-style-type: none;
840
+ overflow: hidden;
841
+ height: 48px;
842
+ -webkit-transition: height .175s ease-in;
843
+ -moz-transition: height .175s ease-in;
844
+ -o-transition: height .175s ease-in;
845
+ transition: height .175s ease-in; }
846
+
847
+ .fxs-commandBar > ul.fxs-commandBar-itemList > li {
848
+ border-right-color: #6c737a;
849
+ float: left;
850
+ margin-bottom: 5px;
851
+ border-right: 1px solid transparent; }
852
+
853
+ .fxs-commandBar .fxs-commandBar-form {
854
+ display: block;
855
+ position: absolute;
856
+ z-index: 200;
857
+ width: 100%;
858
+ left: 0; }
859
+
860
+ .fxs-commandBar .fxs-commandBar-item {
861
+ font-family: wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
862
+ font-weight: 400;
863
+ font-size: 10px;
864
+ line-height: 10px;
865
+ color: #fff;
866
+ /*color: #32383f;*/
867
+ text-transform: uppercase;
868
+ display: block;
869
+ position: relative;
870
+ padding: 3px 10px 0;
871
+ width: 90px;
872
+ height: 48px;
873
+ -moz-box-sizing: border-box;
874
+ box-sizing: border-box;
875
+ -webkit-transition: background-color .07s ease-in;
876
+ transition: background-color .07s ease-in; }
877
+
878
+ .fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-text {
879
+ height: 22px;
880
+ -webkit-transition: opacity .07s ease-in;
881
+ transition: opacity .07s ease-in; }
882
+
883
+ .fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon {
884
+ position: absolute;
885
+ bottom: 2px; }
886
+
887
+ .fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon > svg, .fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon > img {
888
+ height: 18px;
889
+ width: 18px; }
890
+
891
+ .fxs-commandBar .fxs-commandBar-item-expandList.fxs-commandBar-item::after {
892
+ content: "…";
893
+ position: absolute;
894
+ bottom: 9px;
895
+ left: 40px;
896
+ font-size: 23px;
897
+ line-height: 23px; }
898
+
899
+ .fxs-commandBar .fxs-commandBar-item:hover {
900
+ background-color: #1f2327; }
901
+
902
+ .fxs-blade .fxs-blade-content {
903
+ padding: 25px;
904
+ overflow-x: hidden;
905
+ overflow-y: auto;
906
+ -ms-overflow-style: -ms-autohiding-scrollbar;
907
+ -ms-scrollbar-track-color: #d8d8ea;
908
+ -ms-scrollbar-arrow-color: #758393;
909
+ -ms-scrollbar-face-color: #63707e; }
910
+
911
+ .fxs-bladesize-small.fxs-blade .fxs-blade-stacklayout {
912
+ width: 265px; }
913
+
914
+ .fxs-blade .fxs-blade-content > div {
915
+ height: 100%; }
916
+
917
+ .fxs-bladesize-medium.fxs-blade {
918
+ width: 585px; }
919
+
920
+ .fxs-bladesize-medium.fxs-blade .fxs-blade-stacklayout {
921
+ width: 535px; }
922
+
923
+ .fxs-blade .fxs-blade-stacklayout {
924
+ width: 535px; }
925
+
926
+ .fxs-blade .fxs-blade-maximized-content {
927
+ display: none; }
928
+
929
+ .fxs-stacklayout-vertical.fxs-stacklayout > .fxs-stacklayout-child {
930
+ display: block; }
931
+
932
+ .fxs-lens {
933
+ position: relative;
934
+ height: 100%;
935
+ padding-bottom: 25px;
936
+ -moz-box-sizing: border-box;
937
+ box-sizing: border-box; }
938
+
939
+ .fxs-lens .fxs-lens-title {
940
+ color: #3d4045; }
941
+
942
+ .fxs-lens > .fxs-lens-title {
943
+ white-space: nowrap;
944
+ overflow: hidden;
945
+ text-overflow: ellipsis;
946
+ margin: 0;
947
+ font-family: wf_segoe-ui_light,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
948
+ font-weight: 400;
949
+ font-size: 14px;
950
+ line-height: 32px;
951
+ color: #3d4045; }
952
+
953
+ .fxs-lens > .fxs-lens-layout {
954
+ height: 100%; }
955
+
956
+ :last-child.fxs-tilesize-herowidefitheight.fxs-tile, :last-child.fxs-tilesize-fullwidthfitheight.fxs-tile {
957
+ margin-bottom: 0px; }
958
+
959
+ .fxs-tilesize-herowidefitheight.fxs-tile, .fxs-tilesize-fullwidthfitheight.fxs-tile {
960
+ margin-bottom: 5px; }
961
+
962
+ .fxs-tilesize-fullwidthfitheight.fxs-tile {
963
+ height: auto;
964
+ width: 100%; }
965
+
966
+ .fxs-blade-locked.fxs-blade .fxs-part, .fxs-bladestyle-context.fxs-blade .fxs-part, .fxs-bladestyle-contextaction.fxs-blade .fxs-part, .fxs-bladestyle-help.fxs-blade .fxs-part {
967
+ box-shadow: none; }
968
+
969
+ .fxs-blade-locked.fxs-blade .fxs-part {
970
+ padding: 0 0 15px 0; }
971
+
972
+ /*#endregion*/
973
+ .fxs-blade .fxs-blade-content {
974
+ padding: 25px;
975
+ overflow-x: hidden;
976
+ overflow-y: auto;
977
+ -ms-overflow-style: -ms-autohiding-scrollbar;
978
+ -ms-scrollbar-track-color: #d8d8ea;
979
+ -ms-scrollbar-arrow-color: #758393;
980
+ -ms-scrollbar-face-color: #63707e; }
981
+
982
+ .fxs-lens > .fxs-lens-drag-handle {
983
+ position: absolute;
984
+ z-index: 52;
985
+ top: -12px;
986
+ left: -25px;
987
+ bottom: 12px;
988
+ width: 25px;
989
+ background-color: #e9e9f3;
990
+ opacity: 0;
991
+ -webkit-transition: opacity .25s ease-out;
992
+ transition: opacity .25s ease-out; }
993
+
994
+ .fxs-blade-locked.fxs-blade .fxs-part .fxs-part-title {
995
+ height: 29px; }
996
+
997
+ .fxs-part .fxs-part-title h3 {
998
+ font-family: wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
999
+ font-weight: 400;
1000
+ font-size: 10px;
1001
+ line-height: 10px;
1002
+ color: #8f9ca8;
1003
+ text-transform: uppercase;
1004
+ margin-top: 3px; }
1005
+
1006
+ .azc-grid {
1007
+ position: relative;
1008
+ font-size: 12px; }
1009
+
1010
+ .azc-grid:focus {
1011
+ outline: none !important; }
1012
+
1013
+ .azc-grid table {
1014
+ width: 100%;
1015
+ border: 0;
1016
+ background-color: transparent;
1017
+ table-layout: fixed;
1018
+ border-spacing: 0;
1019
+ border-collapse: collapse; }
1020
+
1021
+ .azc-grid .azc-grid-container {
1022
+ overflow-x: auto;
1023
+ overflow-y: visible; }
1024
+
1025
+ .fxs-part .fxs-part-content {
1026
+ font-family: wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
1027
+ font-weight: 400;
1028
+ font-size: 12px;
1029
+ line-height: 18px;
1030
+ color: #464f59;
1031
+ line-height: normal;
1032
+ position: relative;
1033
+ width: 100%;
1034
+ height: 100%;
1035
+ -moz-box-sizing: border-box;
1036
+ box-sizing: border-box; }
1037
+
1038
+ .azc-control table {
1039
+ border-collapse: collapse;
1040
+ table-layout: fixed; }
1041
+
1042
+ .azc-grid table caption {
1043
+ display: none; }
1044
+
1045
+ .azc-grid-headerHidden .azc-grid table thead {
1046
+ display: none; }
1047
+
1048
+ .azc-grid table thead tr th.azc-grid-unsortablecolumnheader {
1049
+ cursor: default; }
1050
+
1051
+ .azc-grid table th:first-child {
1052
+ padding-left: 0px; }
1053
+
1054
+ .azc-grid table thead tr th {
1055
+ font-family: wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
1056
+ text-transform: uppercase;
1057
+ text-align: left;
1058
+ font-size: 10px;
1059
+ padding: 0;
1060
+ height: 40px;
1061
+ font-family: wf_segoe-ui_bold,"Segoe UI Bold","Segoe WP Bold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
1062
+ font-weight: 800;
1063
+ /* IW CHANGED FROM 400 to 800, since Segoe Bold not working!? */ }
1064
+
1065
+ .azc-grid table thead tr th > a {
1066
+ padding: 1px 0 1px 10px; }
1067
+
1068
+ .azc-grid table thead tr th a {
1069
+ line-height: 38px;
1070
+ display: block;
1071
+ text-decoration: none;
1072
+ color: inherit;
1073
+ position: relative; }
1074
+
1075
+ a {
1076
+ color: #00bcf2;
1077
+ text-decoration: none; }
1078
+
1079
+ .azc-grid table thead tr th a span {
1080
+ white-space: nowrap;
1081
+ overflow: hidden;
1082
+ text-overflow: ellipsis; }
1083
+
1084
+ .azc-grid table thead tr th > a .azc-grid-headerlabel {
1085
+ display: block; }
1086
+
1087
+ .azc-grid-activateableRow table tbody tr[data-grid-row-activated='true'][aria-selected='true'] {
1088
+ background-color: #c6edfa !important; }
1089
+
1090
+ .azc-grid-selectableRow table tbody tr[aria-selected='true'] {
1091
+ background-color: #d2f1fc !important; }
1092
+
1093
+ .azc-grid-selectableRow table tbody tr[aria-selected='true'] td {
1094
+ color: inherit !important; }
1095
+
1096
+ .azc-grid table th:first-child a, .azc-grid table td:first-of-type {
1097
+ padding-left: 7px; }
1098
+
1099
+ .azc-grid table tbody:last-child tr:last-child td {
1100
+ border-bottom: 1px solid #dcdfe2; }
1101
+
1102
+ .azc-grid table tbody tr td {
1103
+ color: #3d3d3d;
1104
+ padding: 1px 0 1px 10px;
1105
+ height: 33px;
1106
+ border-top: 1px solid #dcdfe2;
1107
+ border-bottom: 1px solid #dcdfe2;
1108
+ white-space: nowrap;
1109
+ overflow: hidden;
1110
+ text-overflow: ellipsis; }
1111
+
1112
+ .azc-control svg {
1113
+ overflow: hidden; }
1114
+
1115
+ .msportalfx-gridcolumn-asseticon img, .msportalfx-gridcolumn-asseticon svg {
1116
+ margin-top: 4px;
1117
+ height: 21px;
1118
+ width: 21px; }
1119
+
1120
+ .msportalfx-svg-c04 {
1121
+ fill: #7a7a7a; }
1122
+
1123
+ .msportalfx-svg-c20 {
1124
+ fill: #68217a; }
1125
+
1126
+ .msportalfx-svg-c01 {
1127
+ fill: #fff; }
1128
+
1129
+ body {
1130
+ background-color: #2e80ab;
1131
+ background-image: linear-gradient(to bottom, #2e80ab 0%, #61b7da 100%);
1132
+ background-repeat: no-repeat;
1133
+ font-family: wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
1134
+ font-weight: 400;
1135
+ font-size: small;
1136
+ -ms-scrollbar-arrow-color: #758393;
1137
+ -ms-scrollbar-face-color: #63707e;
1138
+ -ms-scrollbar-track-color: #dcdfe2; }
1139
+
1140
+ a {
1141
+ color: #00bcf2;
1142
+ text-decoration: none; }
1143
+
1144
+ img, a img, :link img, :visited img {
1145
+ border: 0; }
1146
+
1147
+ input.ng-invalid {
1148
+ border: 1px solid red; }
1149
+
1150
+ .collapsed {
1151
+ visibility: collapse;
1152
+ width: 0;
1153
+ min-width: 0; }
1154
+