@ardimedia/angular-portal-azure 0.2.126 → 0.2.128
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/apn.d.ts +15 -12
- package/apn.js +37 -30
- package/css/apn.css +3 -0
- package/css/apn.min.css +1 -1
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/// <reference types="jquery" />
|
|
2
1
|
/// <reference types="angular" />
|
|
2
|
+
/// <reference types="jquery" />
|
|
3
3
|
/// <reference types="angular-resource" />
|
|
4
4
|
/// <reference types="angulartics" />
|
|
5
5
|
/// <reference types="angular-translate" />
|
|
@@ -35,7 +35,8 @@ declare namespace angularportalazure {
|
|
|
35
35
|
}
|
|
36
36
|
declare namespace angularportalazure {
|
|
37
37
|
class UserControlBase {
|
|
38
|
-
constructor(portalService: angularportalazure.PortalService);
|
|
38
|
+
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
|
|
39
|
+
$scope: angular.IScope;
|
|
39
40
|
portalService: angularportalazure.PortalService;
|
|
40
41
|
}
|
|
41
42
|
}
|
|
@@ -48,7 +49,8 @@ declare namespace angularportalazure {
|
|
|
48
49
|
declare var $: JQueryStatic;
|
|
49
50
|
declare namespace angularportalazure {
|
|
50
51
|
class Blade extends angularportalazure.UserControlBase {
|
|
51
|
-
constructor(portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
52
|
+
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
53
|
+
private watcherTitle;
|
|
52
54
|
bladeContentHeight: number;
|
|
53
55
|
bladeContentInnerHeight: number;
|
|
54
56
|
path: string;
|
|
@@ -156,12 +158,13 @@ declare namespace angularportalazure {
|
|
|
156
158
|
onCommandSwap(): void;
|
|
157
159
|
/** Obsolete */
|
|
158
160
|
bladeClose(): void;
|
|
161
|
+
setTitle(text: string): void;
|
|
159
162
|
private setBladeHeights();
|
|
160
163
|
}
|
|
161
164
|
}
|
|
162
165
|
declare namespace angularportalazure {
|
|
163
166
|
class BladeArea extends angularportalazure.UserControlBase {
|
|
164
|
-
constructor(portalService: angularportalazure.PortalService);
|
|
167
|
+
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
|
|
165
168
|
private listener1;
|
|
166
169
|
blades: Array<angularportalazure.Blade>;
|
|
167
170
|
raiseAddBladeEvent(args: angularportalazure.IAddBladeEventArgs): void;
|
|
@@ -189,7 +192,7 @@ declare namespace angularportalazure {
|
|
|
189
192
|
}
|
|
190
193
|
declare namespace angularportalazure {
|
|
191
194
|
class AvatarMenu extends angularportalazure.UserControlBase {
|
|
192
|
-
constructor(portalService: angularportalazure.PortalService);
|
|
195
|
+
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
|
|
193
196
|
userAccount: angularportalazure.UserAccount;
|
|
194
197
|
}
|
|
195
198
|
}
|
|
@@ -242,8 +245,8 @@ declare namespace angularportalazure {
|
|
|
242
245
|
}
|
|
243
246
|
declare namespace angularportalazure {
|
|
244
247
|
class Startboard extends angularportalazure.UserControlBase {
|
|
248
|
+
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
|
|
245
249
|
tiles: angularportalazure.Tiles;
|
|
246
|
-
constructor(portalService: angularportalazure.PortalService);
|
|
247
250
|
}
|
|
248
251
|
}
|
|
249
252
|
declare namespace angularportalazure {
|
|
@@ -252,7 +255,7 @@ declare namespace angularportalazure {
|
|
|
252
255
|
isVisible: boolean;
|
|
253
256
|
avatarMenu: angularportalazure.AvatarMenu;
|
|
254
257
|
startboard: angularportalazure.Startboard;
|
|
255
|
-
constructor(title: string, portalService: angularportalazure.PortalService);
|
|
258
|
+
constructor($scope: angular.IScope, title: string, portalService: angularportalazure.PortalService);
|
|
256
259
|
}
|
|
257
260
|
}
|
|
258
261
|
declare namespace angularportalazure {
|
|
@@ -269,7 +272,7 @@ declare namespace angularportalazure {
|
|
|
269
272
|
/** Obsolete
|
|
270
273
|
* start using this.bladesNew.blades. */
|
|
271
274
|
blades: any[];
|
|
272
|
-
constructor(title: string, portalService: angularportalazure.PortalService);
|
|
275
|
+
constructor($scope: angular.IScope, title: string, portalService: angularportalazure.PortalService);
|
|
273
276
|
initialize(): void;
|
|
274
277
|
setObsoleteLayoutProperites(): void;
|
|
275
278
|
}
|
|
@@ -325,13 +328,13 @@ declare namespace angularportalazure {
|
|
|
325
328
|
}
|
|
326
329
|
declare namespace angularportalazure {
|
|
327
330
|
class BladeData extends angularportalazure.Blade {
|
|
328
|
-
constructor(portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
331
|
+
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
329
332
|
}
|
|
330
333
|
}
|
|
331
334
|
declare namespace angularportalazure {
|
|
332
335
|
class BladeDetail<T> extends angularportalazure.BladeData {
|
|
333
336
|
item: T;
|
|
334
|
-
constructor(portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
337
|
+
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
335
338
|
loadItem(func: () => any): void;
|
|
336
339
|
onLoadItem(): void;
|
|
337
340
|
onLoadedItem(): void;
|
|
@@ -343,7 +346,7 @@ declare namespace angularportalazure {
|
|
|
343
346
|
}
|
|
344
347
|
declare namespace angularportalazure {
|
|
345
348
|
class BladeGrid extends angularportalazure.BladeData {
|
|
346
|
-
constructor(portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
349
|
+
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
347
350
|
items: any[];
|
|
348
351
|
loadItems(func: () => angular.IPromise<any>): void;
|
|
349
352
|
onLoadItems(): void;
|
|
@@ -367,7 +370,7 @@ declare namespace angularportalazure {
|
|
|
367
370
|
}
|
|
368
371
|
declare namespace angularportalazure {
|
|
369
372
|
class BladeNav extends angularportalazure.BladeData {
|
|
370
|
-
constructor(portalService: angularportalazure.PortalService, path: string, title?: string, subtitle?: string, width?: number);
|
|
373
|
+
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title?: string, subtitle?: string, width?: number);
|
|
371
374
|
items: Array<angularportalazure.BladeNavItem>;
|
|
372
375
|
isNav: boolean;
|
|
373
376
|
onNavigateTo(path: string): void;
|
package/apn.js
CHANGED
|
@@ -144,7 +144,8 @@ var angularportalazure;
|
|
|
144
144
|
(function (angularportalazure) {
|
|
145
145
|
var UserControlBase = (function () {
|
|
146
146
|
//#region Constructor
|
|
147
|
-
function UserControlBase(portalService) {
|
|
147
|
+
function UserControlBase($scope, portalService) {
|
|
148
|
+
this.$scope = $scope;
|
|
148
149
|
this.portalService = portalService;
|
|
149
150
|
}
|
|
150
151
|
return UserControlBase;
|
|
@@ -166,10 +167,10 @@ var angularportalazure;
|
|
|
166
167
|
var Blade = (function (_super) {
|
|
167
168
|
__extends(Blade, _super);
|
|
168
169
|
//#region Constructor
|
|
169
|
-
function Blade(portalService, path, title, subtitle, width) {
|
|
170
|
+
function Blade($scope, portalService, path, title, subtitle, width) {
|
|
170
171
|
if (subtitle === void 0) { subtitle = ''; }
|
|
171
172
|
if (width === void 0) { width = 200; }
|
|
172
|
-
var _this = _super.call(this, portalService) || this;
|
|
173
|
+
var _this = _super.call(this, $scope, portalService) || this;
|
|
173
174
|
//#endregion
|
|
174
175
|
_this.title = '';
|
|
175
176
|
_this.subTitle = '';
|
|
@@ -435,17 +436,24 @@ var angularportalazure;
|
|
|
435
436
|
};
|
|
436
437
|
//#endregion
|
|
437
438
|
//#endregion
|
|
439
|
+
Blade.prototype.setTitle = function (text) {
|
|
440
|
+
var _this = this;
|
|
441
|
+
if (this.watcherTitle === undefined) {
|
|
442
|
+
this.watcherTitle = this.$scope.$watch('vm.item.Name', function () { _this.title = (text || ''); });
|
|
443
|
+
this.$scope.$on('$destroy', function () { _this.watcherTitle(); });
|
|
444
|
+
}
|
|
445
|
+
};
|
|
438
446
|
Blade.prototype.setBladeHeights = function () {
|
|
439
447
|
var that = this;
|
|
440
448
|
that.bladeContentHeight = $('.fxs-blade-content').height();
|
|
441
|
-
that.bladeContentInnerHeight =
|
|
449
|
+
that.bladeContentInnerHeight = that.bladeContentHeight - 60;
|
|
442
450
|
// http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
|
|
443
451
|
var id;
|
|
444
452
|
$(window).resize(function () {
|
|
445
453
|
clearTimeout(id);
|
|
446
454
|
id = setTimeout(function () {
|
|
447
455
|
that.bladeContentHeight = $('.fxs-blade-content').height();
|
|
448
|
-
that.bladeContentInnerHeight =
|
|
456
|
+
that.bladeContentInnerHeight = that.bladeContentHeight - 60;
|
|
449
457
|
}, 500);
|
|
450
458
|
});
|
|
451
459
|
};
|
|
@@ -464,8 +472,8 @@ var angularportalazure;
|
|
|
464
472
|
var BladeArea = (function (_super) {
|
|
465
473
|
__extends(BladeArea, _super);
|
|
466
474
|
//#region Constructor
|
|
467
|
-
function BladeArea(portalService) {
|
|
468
|
-
var _this = _super.call(this, portalService) || this;
|
|
475
|
+
function BladeArea($scope, portalService) {
|
|
476
|
+
var _this = _super.call(this, $scope, portalService) || this;
|
|
469
477
|
_this.blades = new Array();
|
|
470
478
|
var that = _this;
|
|
471
479
|
// Set dependencies
|
|
@@ -546,7 +554,7 @@ var angularportalazure;
|
|
|
546
554
|
});
|
|
547
555
|
//#endregion
|
|
548
556
|
//#region Show the blade
|
|
549
|
-
var blade = new angularportalazure.Blade(that.portalService, path, '');
|
|
557
|
+
var blade = new angularportalazure.Blade(that.$scope, that.portalService, path, '');
|
|
550
558
|
that.blades.push(blade);
|
|
551
559
|
//#endregion
|
|
552
560
|
//#region Position the blade
|
|
@@ -647,7 +655,7 @@ var angularportalazure;
|
|
|
647
655
|
if (path === undefined || path == '') {
|
|
648
656
|
return;
|
|
649
657
|
}
|
|
650
|
-
var blade = new angularportalazure.Blade(that.portalService, path, '');
|
|
658
|
+
var blade = new angularportalazure.Blade(that.$scope, that.portalService, path, '');
|
|
651
659
|
that.blades.push(blade);
|
|
652
660
|
var portalcontent = that.portalService.$window.document.getElementById('azureportalscroll');
|
|
653
661
|
that.portalService.$window.setTimeout(function () {
|
|
@@ -680,8 +688,8 @@ var angularportalazure;
|
|
|
680
688
|
var AvatarMenu = (function (_super) {
|
|
681
689
|
__extends(AvatarMenu, _super);
|
|
682
690
|
//#region Constructor
|
|
683
|
-
function AvatarMenu(portalService) {
|
|
684
|
-
return _super.call(this, portalService) || this;
|
|
691
|
+
function AvatarMenu($scope, portalService) {
|
|
692
|
+
return _super.call(this, $scope, portalService) || this;
|
|
685
693
|
}
|
|
686
694
|
return AvatarMenu;
|
|
687
695
|
}(angularportalazure.UserControlBase));
|
|
@@ -807,10 +815,9 @@ var angularportalazure;
|
|
|
807
815
|
(function (angularportalazure) {
|
|
808
816
|
var Startboard = (function (_super) {
|
|
809
817
|
__extends(Startboard, _super);
|
|
810
|
-
//#endregion
|
|
811
818
|
//#region Constructor
|
|
812
|
-
function Startboard(portalService) {
|
|
813
|
-
var _this = _super.call(this, portalService) || this;
|
|
819
|
+
function Startboard($scope, portalService) {
|
|
820
|
+
var _this = _super.call(this, $scope, portalService) || this;
|
|
814
821
|
_this.tiles = new angularportalazure.Tiles();
|
|
815
822
|
return _this;
|
|
816
823
|
}
|
|
@@ -829,13 +836,13 @@ var angularportalazure;
|
|
|
829
836
|
__extends(Panorama, _super);
|
|
830
837
|
//#endregion
|
|
831
838
|
//#region Constructor
|
|
832
|
-
function Panorama(title, portalService) {
|
|
833
|
-
var _this = _super.call(this, portalService) || this;
|
|
839
|
+
function Panorama($scope, title, portalService) {
|
|
840
|
+
var _this = _super.call(this, $scope, portalService) || this;
|
|
834
841
|
_this.isVisible = true;
|
|
835
842
|
_this.title = title;
|
|
836
843
|
_this.portalService.panorama = _this;
|
|
837
|
-
_this.avatarMenu = new angularportalazure.AvatarMenu(_this.portalService);
|
|
838
|
-
_this.startboard = new angularportalazure.Startboard(_this.portalService);
|
|
844
|
+
_this.avatarMenu = new angularportalazure.AvatarMenu(_this.$scope, _this.portalService);
|
|
845
|
+
_this.startboard = new angularportalazure.Startboard(_this.$scope, _this.portalService);
|
|
839
846
|
return _this;
|
|
840
847
|
}
|
|
841
848
|
return Panorama;
|
|
@@ -855,12 +862,12 @@ var angularportalazure;
|
|
|
855
862
|
//#endregion
|
|
856
863
|
//#endregion
|
|
857
864
|
//#region Constructor
|
|
858
|
-
function PortalShell(title, portalService) {
|
|
859
|
-
var _this = _super.call(this, portalService) || this;
|
|
865
|
+
function PortalShell($scope, title, portalService) {
|
|
866
|
+
var _this = _super.call(this, $scope, portalService) || this;
|
|
860
867
|
_this.portalService = portalService;
|
|
861
868
|
_this.portalService.portalShell = _this;
|
|
862
|
-
_this.portalService.panorama = new angularportalazure.Panorama(title, _this.portalService);
|
|
863
|
-
_this.portalService.bladeArea = new angularportalazure.BladeArea(portalService);
|
|
869
|
+
_this.portalService.panorama = new angularportalazure.Panorama(_this.$scope, title, _this.portalService);
|
|
870
|
+
_this.portalService.bladeArea = new angularportalazure.BladeArea(_this.$scope, portalService);
|
|
864
871
|
_this.initialize();
|
|
865
872
|
return _this;
|
|
866
873
|
}
|
|
@@ -1124,10 +1131,10 @@ var angularportalazure;
|
|
|
1124
1131
|
var BladeData = (function (_super) {
|
|
1125
1132
|
__extends(BladeData, _super);
|
|
1126
1133
|
//#region Constructor
|
|
1127
|
-
function BladeData(portalService, path, title, subtitle, width) {
|
|
1134
|
+
function BladeData($scope, portalService, path, title, subtitle, width) {
|
|
1128
1135
|
if (subtitle === void 0) { subtitle = ''; }
|
|
1129
1136
|
if (width === void 0) { width = 300; }
|
|
1130
|
-
return _super.call(this, portalService, path, title, subtitle, width) || this;
|
|
1137
|
+
return _super.call(this, $scope, portalService, path, title, subtitle, width) || this;
|
|
1131
1138
|
}
|
|
1132
1139
|
return BladeData;
|
|
1133
1140
|
}(angularportalazure.Blade));
|
|
@@ -1142,10 +1149,10 @@ var angularportalazure;
|
|
|
1142
1149
|
__extends(BladeDetail, _super);
|
|
1143
1150
|
//#endregion
|
|
1144
1151
|
//#region Constructor
|
|
1145
|
-
function BladeDetail(portalService, path, title, subtitle, width) {
|
|
1152
|
+
function BladeDetail($scope, portalService, path, title, subtitle, width) {
|
|
1146
1153
|
if (subtitle === void 0) { subtitle = ''; }
|
|
1147
1154
|
if (width === void 0) { width = 200; }
|
|
1148
|
-
var _this = _super.call(this, portalService, path, title, subtitle, width) || this;
|
|
1155
|
+
var _this = _super.call(this, $scope, portalService, path, title, subtitle, width) || this;
|
|
1149
1156
|
//#region Properties
|
|
1150
1157
|
_this.item = null;
|
|
1151
1158
|
//this.isCommandNew = true;
|
|
@@ -1214,10 +1221,10 @@ var angularportalazure;
|
|
|
1214
1221
|
var BladeGrid = (function (_super) {
|
|
1215
1222
|
__extends(BladeGrid, _super);
|
|
1216
1223
|
//#region Constructor
|
|
1217
|
-
function BladeGrid(portalService, path, title, subtitle, width) {
|
|
1224
|
+
function BladeGrid($scope, portalService, path, title, subtitle, width) {
|
|
1218
1225
|
if (subtitle === void 0) { subtitle = ''; }
|
|
1219
1226
|
if (width === void 0) { width = 200; }
|
|
1220
|
-
var _this = _super.call(this, portalService, path, title, subtitle, width) || this;
|
|
1227
|
+
var _this = _super.call(this, $scope, portalService, path, title, subtitle, width) || this;
|
|
1221
1228
|
//#endregion
|
|
1222
1229
|
//#region Properties
|
|
1223
1230
|
_this.items = [];
|
|
@@ -1374,11 +1381,11 @@ var angularportalazure;
|
|
|
1374
1381
|
var BladeNav = (function (_super) {
|
|
1375
1382
|
__extends(BladeNav, _super);
|
|
1376
1383
|
//#region Constructor
|
|
1377
|
-
function BladeNav(portalService, path, title, subtitle, width) {
|
|
1384
|
+
function BladeNav($scope, portalService, path, title, subtitle, width) {
|
|
1378
1385
|
if (title === void 0) { title = ''; }
|
|
1379
1386
|
if (subtitle === void 0) { subtitle = ''; }
|
|
1380
1387
|
if (width === void 0) { width = 315; }
|
|
1381
|
-
var _this = _super.call(this, portalService, path, title, subtitle, width) || this;
|
|
1388
|
+
var _this = _super.call(this, $scope, portalService, path, title, subtitle, width) || this;
|
|
1382
1389
|
//#endregion
|
|
1383
1390
|
//#region Properties
|
|
1384
1391
|
_this.items = new Array();
|
package/css/apn.css
CHANGED
package/css/apn.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";html,body{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;height:100%;width:0;}a{color:#00bcf2;text-decoration:none;}.ng-scope{height:100%;}.fxs-portal{overflow:hidden;position:fixed;top:0;left:0;right:0;bottom:0;}.fxs-portal .fxs-portal-content{height:100%;color:#464f59;overflow-x:auto;overflow-y:hidden;white-space:nowrap;-webkit-transition:margin .2s ease;-moz-transition:margin .2s ease;-o-transition:margin .2s ease;transition:margin .2s ease;}.fxs-portal .fxs-portal-content>*{white-space:normal;}.fxs-panorama{-ms-scroll-chaining:none;}.fxs-panorama-homearea{min-width:600px;}.fxs-panorama .fxs-panorama-homearea{position:relative;padding:0 25px;margin:0 15px 0 25px;}.fxs-panorama .fxs-journey-target{margin-right:85px;}.fxs-panorama .fxs-panorama-homearea,.fxs-panorama .fxs-journey-target{display:inline-block;vertical-align:top;height:100%;}.fxs-panorama .fxs-panorama-homearea>header{margin:20px 0 4px;height:76px;min-width:450px;}.fxs-panorama .fxs-panorama-homearea .fxs-panorama-title{font-family:wf_segoe-ui_light,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:40px;line-height:54px;color:#fff;padding-top:6px;margin:0;}.fxs-panorama .fxs-panorama-homearea .fxs-avatarmenu-target{position:absolute;top:18px;right:5px;max-width:220px;min-width:190px;}.fxs-avatarmenu{position:relative;padding:12px;text-align:right;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}.fxs-avatarmenu .fxs-avatarmenu-header{position:relative;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;height:35px;color:#fff;}.fxs-avatarmenu>a{display:block;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;text-decoration:none;padding:10px;padding-right:54px;}.fxs-avatarmenu>a img{position:absolute;top:10px;right:10px;height:35px;width:32px;border:0;border-left:3px solid #7fba00;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-username{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-size:14px;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-emailaddress{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;text-transform:uppercase;opacity:.9;margin-top:4px;}.fxs-avatarmenu .fxs-avatarmenu-dropdown{display:none;width:100%;background-color:#32383f;border-top:1px solid #3c454f;text-align:left;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul{padding:0;margin:0;list-style-type:none;border-bottom:1px solid #3c454f;}.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{padding-right:35px;position:relative;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul li a{display:block;font-size:14px;padding:10px 18px 11px;line-height:18px;color:#fff;text-decoration:none;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-icon{width:15px;height:15px;display:inline-block;position:absolute;right:18px;margin-top:2px;}.fxs-panorama .fxs-panorama-homearea .fxs-startboard-target{height:-webkit-calc(100% - 100px);height:calc(100% - 100px);}.fxs-startboard .fxs-startboard-layout{height:100%;overflow-y:hidden;overflow-x:hidden;margin:0 -25px;padding:0 25px;}.fxs-flowlayout>.fxs-flowlayout-childcontainer{position:relative;-webkit-transition:height .25s linear,width .25s linear 0s;-moz-transition:height .25s linear,width .25s linear 0s;-o-transition:height .25s linear,width .25s linear 0s;transition:height .25s linear,width .25s linear 0s;}.fxs-flowlayout>.fxs-flowlayout-childcontainer>.fxs-flowlayout-element{position:absolute;}.fxs-tilesize-herowide.fxs-tile{height:355px;width:535px;}.fxs-tilesize-normal.fxs-tile{height:175px;width:175px;}.fxs-tilesize-mini.fxs-tile{height:85px;width:85px;}.fxs-tile{height:175px;width:175px;-webkit-transition:height .125s linear .125s,width .125s linear 0s;-moz-transition:height .125s linear .125s,width .125s linear 0s;-o-transition:height .125s linear .125s,width .125s linear 0s;transition:height .125s linear .125s,width .125s linear 0s;background-color:#fff;position:relative;}.fxs-part{width:100%;height:100%;position:relative;box-shadow:inset 1px 0 #dcdfe2;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;padding:15px 15px 15px 15px;box-shadow:inset 1px 0 #dcdfe2;}.fxs-part .fxs-part-title{height:49px;position:relative;top:-4px;}.fxs-part .fxs-part-title h2{font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:17px;color:#32383f;}.fxs-part .fxs-part-title h3{font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.fxs-part .fxs-part-title h2,.fxs-part .fxs-part-title h3{margin:0;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-part .fxs-part-content{font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:12px;line-height:18px;color:#464f59;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-tile div.fxs-tile-overlay{display:none;position:absolute;width:100%;top:0;bottom:0;cursor:pointer;}.fxs-journey{height:100%;}.fxs-journey>.fxs-journey-layout{height:100%;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child{-webkit-transition:padding-top .2s ease,opacity .2s ease;transition:padding-top .2s ease,opacity .2s ease;}.fxs-stacklayout-horizontal.fxs-stacklayout{overflow:hidden;white-space:nowrap;height:100%;}.fxs-stacklayout-horizontal.fxs-stacklayout>.fxs-stacklayout-child{display:inline-block;vertical-align:top;overflow-y:auto;height:100%;white-space:normal;}.fxs-journey>.fxs-journey-layout>:last-child.fxs-stacklayout-child{padding-right:5px;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child>.fxs-blade{box-shadow:-5px 0 0 rgba(31,35,39,.2),5px 0 0 rgba(31,35,39,.2);}.fxs-journey-layout :first-child.fxs-stacklayout-child .fxs-blade{border-left-color:transparent;border-left-width:0;}.fxs-blade-locked.fxs-blade{background-color:#fff;}.fxs-bladesize-small.fxs-blade{width:315px;}.fxs-blade{border-left-color:rgba(143,156,168,.8);width:585px;position:relative;height:100%;background-color:#f1f2f3;overflow:hidden;-webkit-transition:width .2s ease-out;-moz-transition:width .2s ease-out;-o-transition:width .2s ease-out;transition:width .2s ease-out;border-left-style:solid;border-left-width:2px;}.fxs-blade .fxs-blade-header{padding-bottom:8px;background-color:#3e4045;min-height:117px;}.fxs-blade .fxs-blade-statusbar-wrapper{background-color:#32383f;}.fxs-blade .fxs-blade-statusbar::after{content:" ";}.fxs-blade .fxs-blade-statusbar{-webkit-transition:all .5s,color .5s;-moz-transition:all .5s,color .5s;-o-transition:all .5s,color .5s;transition:all .5s,color .5s;}.fxs-blade .fxs-blade-statusbar,.fxs-blade .fxs-blade-loading-status{padding:5px 0 5px 25px;font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-actions{-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out;float:right;margin-right:22px;height:40px;}.fxs-blade .fxs-blade-header .fxs-blade-actions button{cursor:pointer;border:0;height:21px;width:21px;background-color:transparent;margin-top:4px;margin-left:6px;padding:0;opacity:.3;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out;}.fxs-blade .fxs-blade-header .fxs-blade-actions button img,.fxs-blade .fxs-blade-header .fxs-blade-actions button svg{height:21px;width:21px;}.msportal-fx-svg-placeholder{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-actions button>svg *{fill:#8f9ca8;}.fxs-blade .fxs-blade-header .fxs-blade-actions button svg *{fill:#63707e;}.msportalfx-svg-c01{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-title{padding:0 25px 2px 7px;margin-left:18px;}.fxs-blade .fxs-blade-header .fxs-blade-title h2::after,.fxs-blade .fxs-blade-header .fxs-blade-title h3::after{content:" ";}.fxs-blade .fxs-blade-header .fxs-blade-title h2{margin:0;font-family:wf_segoe-ui_semilight,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:20px;line-height:28px;color:#fff;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-title h3{margin:3px 0 2px 0;font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#758393;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-commandBarContainer{margin:0 20px 0 15px;}.fxs-commandBar{display:none;}.fxs-commandBar-active.fxs-commandBar{display:block;}.fxs-commandBar>ul.fxs-commandBar-itemList{display:block;margin:4px 0 0;padding:0;list-style-type:none;overflow:hidden;height:48px;-webkit-transition:height .175s ease-in;-moz-transition:height .175s ease-in;-o-transition:height .175s ease-in;transition:height .175s ease-in;}.fxs-commandBar>ul.fxs-commandBar-itemList>li{border-right-color:#6c737a;float:left;margin-bottom:5px;border-right:1px solid transparent;}.fxs-commandBar .fxs-commandBar-form{display:block;position:absolute;z-index:200;width:100%;left:0;}.fxs-commandBar .fxs-commandBar-item{font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;display:block;position:relative;padding:3px 10px 0;width:90px;height:48px;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .07s ease-in;transition:background-color .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-text{height:22px;-webkit-transition:opacity .07s ease-in;transition:opacity .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon{position:absolute;bottom:2px;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>svg,.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>img{height:18px;width:18px;}.fxs-commandBar .fxs-commandBar-item-expandList.fxs-commandBar-item::after{content:"…";position:absolute;bottom:9px;left:40px;font-size:23px;line-height:23px;}.fxs-commandBar .fxs-commandBar-item:hover{background-color:#1f2327;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-bladesize-small.fxs-blade .fxs-blade-stacklayout{width:265px;}.fxs-blade .fxs-blade-content>div{height:100%;}.fxs-bladesize-medium.fxs-blade{width:585px;}.fxs-bladesize-medium.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-maximized-content{display:none;}.fxs-stacklayout-vertical.fxs-stacklayout>.fxs-stacklayout-child{display:block;}.fxs-lens{position:relative;height:100%;padding-bottom:25px;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-lens .fxs-lens-title{color:#3d4045;}.fxs-lens>.fxs-lens-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;font-family:wf_segoe-ui_light,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:32px;color:#3d4045;}.fxs-lens>.fxs-lens-layout{height:100%;}:last-child.fxs-tilesize-herowidefitheight.fxs-tile,:last-child.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:0;}.fxs-tilesize-herowidefitheight.fxs-tile,.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:5px;}.fxs-tilesize-fullwidthfitheight.fxs-tile{height:auto;width:100%;}.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{box-shadow:none;}.fxs-blade-locked.fxs-blade .fxs-part{padding:0 0 15px 0;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-lens>.fxs-lens-drag-handle{position:absolute;z-index:52;top:-12px;left:-25px;bottom:12px;width:25px;background-color:#e9e9f3;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;}.fxs-blade-locked.fxs-blade .fxs-part .fxs-part-title{height:29px;}.fxs-part .fxs-part-title h3{font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.azc-grid{position:relative;font-size:12px;}.azc-grid:focus{outline:none !important;}.azc-grid table{width:100%;border:0;background-color:transparent;table-layout:fixed;border-spacing:0;border-collapse:collapse;}.azc-grid .azc-grid-container{overflow-x:auto;overflow-y:visible;}.fxs-part .fxs-part-content{font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:12px;line-height:18px;color:#464f59;line-height:normal;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.azc-control table{border-collapse:collapse;table-layout:fixed;}.azc-grid table caption{display:none;}.azc-grid-headerHidden .azc-grid table thead{display:none;}.azc-grid table thead tr th.azc-grid-unsortablecolumnheader{cursor:default;}.azc-grid table th:first-child{padding-left:0;}.azc-grid table thead tr th{text-transform:uppercase;}.azc-grid table thead tr th>a{padding:1px 0 1px 10px;}.azc-grid table thead tr th a{line-height:38px;display:block;text-decoration:none;color:inherit;position:relative;}a{color:#00bcf2;text-decoration:none;}.azc-grid table thead tr th a span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-grid table thead tr th>a .azc-grid-headerlabel{display:block;}.azc-grid-activateableRow table tbody tr[data-grid-row-activated='true'][aria-selected='true']{background-color:#c6edfa !important;}.azc-grid-selectableRow table tbody tr[aria-selected='true'] td{color:inherit !important;}.azc-grid table th:first-child a,.azc-grid table td:first-of-type{padding-left:7px;}.azc-grid table tbody:last-child tr:last-child td{border-bottom:1px solid #dcdfe2;}.azc-grid table tbody tr td{color:#3d3d3d;padding:1px 0 1px 10px;height:33px;border-top:1px solid #dcdfe2;border-bottom:1px solid #dcdfe2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-control svg{overflow:hidden;}.msportalfx-gridcolumn-asseticon img,.msportalfx-gridcolumn-asseticon svg{margin-top:4px;height:21px;width:21px;}.msportalfx-svg-c04{fill:#7a7a7a;}.msportalfx-svg-c20{fill:#68217a;}.msportalfx-svg-c01{fill:#fff;}body{background-color:#2e80ab;background-image:linear-gradient(to bottom,#2e80ab 0%,#61b7da 100%);background-repeat:no-repeat;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:small;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;-ms-scrollbar-track-color:#dcdfe2;}a{color:#00bcf2;text-decoration:none;}img,a img,:link img,:visited img{border:0;}input.ng-invalid{border:1px solid #f00;}.collapsed{visibility:collapse;width:0;min-width:0;}
|
|
1
|
+
@charset "UTF-8";html,body{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;height:100%;width:0;}a{color:#00bcf2;text-decoration:none;}.ng-scope{height:100%;}.fxs-portal{overflow:hidden;position:fixed;top:0;left:0;right:0;bottom:0;}.fxs-portal .fxs-portal-content{height:100%;color:#464f59;overflow-x:auto;overflow-y:hidden;white-space:nowrap;-webkit-transition:margin .2s ease;-moz-transition:margin .2s ease;-o-transition:margin .2s ease;transition:margin .2s ease;}.fxs-portal .fxs-portal-content>*{white-space:normal;}.fxs-panorama{-ms-scroll-chaining:none;}.fxs-panorama-homearea{min-width:600px;}.fxs-panorama .fxs-panorama-homearea{position:relative;padding:0 25px;margin:0 15px 0 25px;}.fxs-panorama .fxs-journey-target{margin-right:85px;}.fxs-panorama .fxs-panorama-homearea,.fxs-panorama .fxs-journey-target{display:inline-block;vertical-align:top;height:100%;}.fxs-panorama .fxs-panorama-homearea>header{margin:20px 0 4px;height:76px;min-width:450px;}.fxs-panorama .fxs-panorama-homearea .fxs-panorama-title{font-family:wf_segoe-ui_light,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:40px;line-height:54px;color:#fff;padding-top:6px;margin:0;}.fxs-panorama .fxs-panorama-homearea .fxs-avatarmenu-target{position:absolute;top:18px;right:5px;max-width:220px;min-width:190px;}.fxs-avatarmenu{position:relative;padding:12px;text-align:right;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}.fxs-avatarmenu .fxs-avatarmenu-header{position:relative;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;height:35px;color:#fff;}.fxs-avatarmenu>a{display:block;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;text-decoration:none;padding:10px;padding-right:54px;}.fxs-avatarmenu>a img{position:absolute;top:10px;right:10px;height:35px;width:32px;border:0;border-left:3px solid #7fba00;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-username{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-size:14px;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-emailaddress{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;text-transform:uppercase;opacity:.9;margin-top:4px;}.fxs-avatarmenu .fxs-avatarmenu-dropdown{display:none;width:100%;background-color:#32383f;border-top:1px solid #3c454f;text-align:left;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul{padding:0;margin:0;list-style-type:none;border-bottom:1px solid #3c454f;}.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{padding-right:35px;position:relative;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul li a{display:block;font-size:14px;padding:10px 18px 11px;line-height:18px;color:#fff;text-decoration:none;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-icon{width:15px;height:15px;display:inline-block;position:absolute;right:18px;margin-top:2px;}.fxs-panorama .fxs-panorama-homearea .fxs-startboard-target{height:-webkit-calc(100% - 100px);height:calc(100% - 100px);}.fxs-startboard .fxs-startboard-layout{height:100%;overflow-y:hidden;overflow-x:hidden;margin:0 -25px;padding:0 25px;}.fxs-stacklayout-child{height:100%;}.fxs-flowlayout>.fxs-flowlayout-childcontainer{position:relative;-webkit-transition:height .25s linear,width .25s linear 0s;-moz-transition:height .25s linear,width .25s linear 0s;-o-transition:height .25s linear,width .25s linear 0s;transition:height .25s linear,width .25s linear 0s;}.fxs-flowlayout>.fxs-flowlayout-childcontainer>.fxs-flowlayout-element{position:absolute;}.fxs-tilesize-herowide.fxs-tile{height:355px;width:535px;}.fxs-tilesize-normal.fxs-tile{height:175px;width:175px;}.fxs-tilesize-mini.fxs-tile{height:85px;width:85px;}.fxs-tile{height:175px;width:175px;-webkit-transition:height .125s linear .125s,width .125s linear 0s;-moz-transition:height .125s linear .125s,width .125s linear 0s;-o-transition:height .125s linear .125s,width .125s linear 0s;transition:height .125s linear .125s,width .125s linear 0s;background-color:#fff;position:relative;}.fxs-part{width:100%;height:100%;position:relative;box-shadow:inset 1px 0 #dcdfe2;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;padding:15px 15px 15px 15px;box-shadow:inset 1px 0 #dcdfe2;}.fxs-part .fxs-part-title{height:49px;position:relative;top:-4px;}.fxs-part .fxs-part-title h2{font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:17px;color:#32383f;}.fxs-part .fxs-part-title h3{font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.fxs-part .fxs-part-title h2,.fxs-part .fxs-part-title h3{margin:0;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-part .fxs-part-content{font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:12px;line-height:18px;color:#464f59;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-tile div.fxs-tile-overlay{display:none;position:absolute;width:100%;top:0;bottom:0;cursor:pointer;}.fxs-journey{height:100%;}.fxs-journey>.fxs-journey-layout{height:100%;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child{-webkit-transition:padding-top .2s ease,opacity .2s ease;transition:padding-top .2s ease,opacity .2s ease;}.fxs-stacklayout-horizontal.fxs-stacklayout{overflow:hidden;white-space:nowrap;height:100%;}.fxs-stacklayout-horizontal.fxs-stacklayout>.fxs-stacklayout-child{display:inline-block;vertical-align:top;overflow-y:auto;height:100%;white-space:normal;}.fxs-journey>.fxs-journey-layout>:last-child.fxs-stacklayout-child{padding-right:5px;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child>.fxs-blade{box-shadow:-5px 0 0 rgba(31,35,39,.2),5px 0 0 rgba(31,35,39,.2);}.fxs-journey-layout :first-child.fxs-stacklayout-child .fxs-blade{border-left-color:transparent;border-left-width:0;}.fxs-blade-locked.fxs-blade{background-color:#fff;}.fxs-bladesize-small.fxs-blade{width:315px;}.fxs-blade{border-left-color:rgba(143,156,168,.8);width:585px;position:relative;height:100%;background-color:#f1f2f3;overflow:hidden;-webkit-transition:width .2s ease-out;-moz-transition:width .2s ease-out;-o-transition:width .2s ease-out;transition:width .2s ease-out;border-left-style:solid;border-left-width:2px;}.fxs-blade .fxs-blade-header{padding-bottom:8px;background-color:#3e4045;min-height:117px;}.fxs-blade .fxs-blade-statusbar-wrapper{background-color:#32383f;}.fxs-blade .fxs-blade-statusbar::after{content:" ";}.fxs-blade .fxs-blade-statusbar{-webkit-transition:all .5s,color .5s;-moz-transition:all .5s,color .5s;-o-transition:all .5s,color .5s;transition:all .5s,color .5s;}.fxs-blade .fxs-blade-statusbar,.fxs-blade .fxs-blade-loading-status{padding:5px 0 5px 25px;font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-actions{-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out;float:right;margin-right:22px;height:40px;}.fxs-blade .fxs-blade-header .fxs-blade-actions button{cursor:pointer;border:0;height:21px;width:21px;background-color:transparent;margin-top:4px;margin-left:6px;padding:0;opacity:.3;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out;}.fxs-blade .fxs-blade-header .fxs-blade-actions button img,.fxs-blade .fxs-blade-header .fxs-blade-actions button svg{height:21px;width:21px;}.msportal-fx-svg-placeholder{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-actions button>svg *{fill:#8f9ca8;}.fxs-blade .fxs-blade-header .fxs-blade-actions button svg *{fill:#63707e;}.msportalfx-svg-c01{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-title{padding:0 25px 2px 7px;margin-left:18px;}.fxs-blade .fxs-blade-header .fxs-blade-title h2::after,.fxs-blade .fxs-blade-header .fxs-blade-title h3::after{content:" ";}.fxs-blade .fxs-blade-header .fxs-blade-title h2{margin:0;font-family:wf_segoe-ui_semilight,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:20px;line-height:28px;color:#fff;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-title h3{margin:3px 0 2px 0;font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#758393;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-commandBarContainer{margin:0 20px 0 15px;}.fxs-commandBar{display:none;}.fxs-commandBar-active.fxs-commandBar{display:block;}.fxs-commandBar>ul.fxs-commandBar-itemList{display:block;margin:4px 0 0;padding:0;list-style-type:none;overflow:hidden;height:48px;-webkit-transition:height .175s ease-in;-moz-transition:height .175s ease-in;-o-transition:height .175s ease-in;transition:height .175s ease-in;}.fxs-commandBar>ul.fxs-commandBar-itemList>li{border-right-color:#6c737a;float:left;margin-bottom:5px;border-right:1px solid transparent;}.fxs-commandBar .fxs-commandBar-form{display:block;position:absolute;z-index:200;width:100%;left:0;}.fxs-commandBar .fxs-commandBar-item{font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;display:block;position:relative;padding:3px 10px 0;width:90px;height:48px;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .07s ease-in;transition:background-color .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-text{height:22px;-webkit-transition:opacity .07s ease-in;transition:opacity .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon{position:absolute;bottom:2px;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>svg,.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>img{height:18px;width:18px;}.fxs-commandBar .fxs-commandBar-item-expandList.fxs-commandBar-item::after{content:"…";position:absolute;bottom:9px;left:40px;font-size:23px;line-height:23px;}.fxs-commandBar .fxs-commandBar-item:hover{background-color:#1f2327;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-bladesize-small.fxs-blade .fxs-blade-stacklayout{width:265px;}.fxs-blade .fxs-blade-content>div{height:100%;}.fxs-bladesize-medium.fxs-blade{width:585px;}.fxs-bladesize-medium.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-maximized-content{display:none;}.fxs-stacklayout-vertical.fxs-stacklayout>.fxs-stacklayout-child{display:block;}.fxs-lens{position:relative;height:100%;padding-bottom:25px;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-lens .fxs-lens-title{color:#3d4045;}.fxs-lens>.fxs-lens-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;font-family:wf_segoe-ui_light,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:32px;color:#3d4045;}.fxs-lens>.fxs-lens-layout{height:100%;}:last-child.fxs-tilesize-herowidefitheight.fxs-tile,:last-child.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:0;}.fxs-tilesize-herowidefitheight.fxs-tile,.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:5px;}.fxs-tilesize-fullwidthfitheight.fxs-tile{height:auto;width:100%;}.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{box-shadow:none;}.fxs-blade-locked.fxs-blade .fxs-part{padding:0 0 15px 0;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-lens>.fxs-lens-drag-handle{position:absolute;z-index:52;top:-12px;left:-25px;bottom:12px;width:25px;background-color:#e9e9f3;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;}.fxs-blade-locked.fxs-blade .fxs-part .fxs-part-title{height:29px;}.fxs-part .fxs-part-title h3{font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.azc-grid{position:relative;font-size:12px;}.azc-grid:focus{outline:none !important;}.azc-grid table{width:100%;border:0;background-color:transparent;table-layout:fixed;border-spacing:0;border-collapse:collapse;}.azc-grid .azc-grid-container{overflow-x:auto;overflow-y:visible;}.fxs-part .fxs-part-content{font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:12px;line-height:18px;color:#464f59;line-height:normal;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.azc-control table{border-collapse:collapse;table-layout:fixed;}.azc-grid table caption{display:none;}.azc-grid-headerHidden .azc-grid table thead{display:none;}.azc-grid table thead tr th.azc-grid-unsortablecolumnheader{cursor:default;}.azc-grid table th:first-child{padding-left:0;}.azc-grid table thead tr th{text-transform:uppercase;}.azc-grid table thead tr th>a{padding:1px 0 1px 10px;}.azc-grid table thead tr th a{line-height:38px;display:block;text-decoration:none;color:inherit;position:relative;}a{color:#00bcf2;text-decoration:none;}.azc-grid table thead tr th a span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-grid table thead tr th>a .azc-grid-headerlabel{display:block;}.azc-grid-activateableRow table tbody tr[data-grid-row-activated='true'][aria-selected='true']{background-color:#c6edfa !important;}.azc-grid-selectableRow table tbody tr[aria-selected='true'] td{color:inherit !important;}.azc-grid table th:first-child a,.azc-grid table td:first-of-type{padding-left:7px;}.azc-grid table tbody:last-child tr:last-child td{border-bottom:1px solid #dcdfe2;}.azc-grid table tbody tr td{color:#3d3d3d;padding:1px 0 1px 10px;height:33px;border-top:1px solid #dcdfe2;border-bottom:1px solid #dcdfe2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-control svg{overflow:hidden;}.msportalfx-gridcolumn-asseticon img,.msportalfx-gridcolumn-asseticon svg{margin-top:4px;height:21px;width:21px;}.msportalfx-svg-c04{fill:#7a7a7a;}.msportalfx-svg-c20{fill:#68217a;}.msportalfx-svg-c01{fill:#fff;}body{background-color:#2e80ab;background-image:linear-gradient(to bottom,#2e80ab 0%,#61b7da 100%);background-repeat:no-repeat;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:small;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;-ms-scrollbar-track-color:#dcdfe2;}a{color:#00bcf2;text-decoration:none;}img,a img,:link img,:visited img{border:0;}input.ng-invalid{border:1px solid #f00;}.collapsed{visibility:collapse;width:0;min-width:0;}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@ardimedia/angular-portal-azure",
|
|
3
3
|
"description": "Angular Portal Azure - GUI Framework.",
|
|
4
4
|
"author": "Ardimedia Anstalt <info@ardimedia.com> (http://www.ardimedia.com)",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.128",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|