@ardimedia/angular-portal-azure 0.2.182 → 0.2.184
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.js +69 -73
- package/css/apn.css +1 -1
- package/css/apn.min.css +1 -1
- package/directives/blade/angular-portal-blade.ts +2 -3
- package/directives/grid/angular-portal-grid.ts +1 -1
- package/directives/home/angular-portal-home.ts +1 -1
- package/directives/nav/angular-portal-nav.ts +1 -1
- package/package.json +1 -1
package/apn.js
CHANGED
|
@@ -163,58 +163,58 @@ var angularportalazure;
|
|
|
163
163
|
//#endregion
|
|
164
164
|
//#region Commands
|
|
165
165
|
_this.isCommandBrowse = false;
|
|
166
|
-
_this.commandBrowse = function () {
|
|
166
|
+
_this.commandBrowse = function () { _this.onCommandBrowse(); };
|
|
167
167
|
_this.commandBrowseText = '';
|
|
168
168
|
_this.isCommandCancel = false;
|
|
169
|
-
_this.commandCancel = function () {
|
|
169
|
+
_this.commandCancel = function () { _this.onCommandCancel(); };
|
|
170
170
|
_this.commandCancelText = '';
|
|
171
171
|
_this.isCommandCopy = false;
|
|
172
|
-
_this.commandCopy = function () {
|
|
172
|
+
_this.commandCopy = function () { _this.onCommandCopy(); };
|
|
173
173
|
_this.commandCopyText = '';
|
|
174
174
|
_this.isCommandDelete = false;
|
|
175
|
-
_this.commandDelete = function () {
|
|
175
|
+
_this.commandDelete = function () { _this.onCommandDelete(); };
|
|
176
176
|
_this.commandDeleteText = '';
|
|
177
177
|
_this.isCommandDocument = false;
|
|
178
|
-
_this.commandDocument = function () {
|
|
178
|
+
_this.commandDocument = function () { _this.onCommandDocument(); };
|
|
179
179
|
_this.commandDocumentText = '';
|
|
180
180
|
_this.isCommandDocument2 = false;
|
|
181
|
-
_this.commandDocument2 = function () {
|
|
181
|
+
_this.commandDocument2 = function () { _this.onCommandDocument2(); };
|
|
182
182
|
_this.commandDocument2Text = '';
|
|
183
183
|
_this.isCommandDocument3 = false;
|
|
184
|
-
_this.commandDocument3 = function () {
|
|
184
|
+
_this.commandDocument3 = function () { _this.onCommandDocument3(); };
|
|
185
185
|
_this.commandDocument3Text = '';
|
|
186
186
|
_this.isCommandDocument4 = false;
|
|
187
|
-
_this.commandDocument4 = function () {
|
|
187
|
+
_this.commandDocument4 = function () { _this.onCommandDocument4(); };
|
|
188
188
|
_this.commandDocument4Text = '';
|
|
189
189
|
_this.isCommandDocument5 = false;
|
|
190
|
-
_this.commandDocument5 = function () {
|
|
190
|
+
_this.commandDocument5 = function () { _this.onCommandDocument5(); };
|
|
191
191
|
_this.commandDocument5Text = '';
|
|
192
192
|
_this.isCommandNew = false;
|
|
193
|
-
_this.commandNew = function () {
|
|
193
|
+
_this.commandNew = function () { _this.onCommandNew(); };
|
|
194
194
|
_this.commandNewText = '';
|
|
195
195
|
_this.isCommandOrder = false;
|
|
196
|
-
_this.commandOrder = function () {
|
|
196
|
+
_this.commandOrder = function () { _this.onCommandOrder(); };
|
|
197
197
|
_this.commandOrderText = '';
|
|
198
198
|
_this.isCommandRestart = false;
|
|
199
|
-
_this.commandRestart = function () {
|
|
199
|
+
_this.commandRestart = function () { _this.onCommandRestart(); };
|
|
200
200
|
_this.commandRestartText = '';
|
|
201
201
|
_this.isCommandSave = false;
|
|
202
|
-
_this.commandSave = function () {
|
|
202
|
+
_this.commandSave = function () { _this.onCommandSave(); };
|
|
203
203
|
_this.commandSaveText = '';
|
|
204
204
|
_this.isCommandSearch = false;
|
|
205
|
-
_this.commandSearch = function () {
|
|
205
|
+
_this.commandSearch = function () { _this.onCommandSearch(); };
|
|
206
206
|
_this.commandSearchText = '';
|
|
207
207
|
_this.isCommandStart = false;
|
|
208
|
-
_this.commandStart = function () {
|
|
208
|
+
_this.commandStart = function () { _this.onCommandStart(); };
|
|
209
209
|
_this.commandStartText = '';
|
|
210
210
|
_this.isCommandStop = false;
|
|
211
|
-
_this.commandStop = function () {
|
|
211
|
+
_this.commandStop = function () { _this.onCommandStop(); };
|
|
212
212
|
_this.commandStopText = '';
|
|
213
213
|
_this.isCommandSwap = false;
|
|
214
|
-
_this.commandSwap = function () {
|
|
214
|
+
_this.commandSwap = function () { _this.onCommandSwap(); };
|
|
215
215
|
_this.commandSwapText = '';
|
|
216
216
|
_this.isCommandExcel = false;
|
|
217
|
-
_this.commandExcel = function () {
|
|
217
|
+
_this.commandExcel = function () { _this.onCommandExcel(); };
|
|
218
218
|
_this.commandExcelText = '';
|
|
219
219
|
_this.vm = _this;
|
|
220
220
|
_this.path = path;
|
|
@@ -322,6 +322,7 @@ var angularportalazure;
|
|
|
322
322
|
this.statusBarClass = 'apa-statusbar-info';
|
|
323
323
|
};
|
|
324
324
|
Blade.prototype.setStatusBarException = function (exception) {
|
|
325
|
+
var _this = this;
|
|
325
326
|
if (exception.Message === undefined) {
|
|
326
327
|
this.statusBar = 'FEHLER: ' + exception;
|
|
327
328
|
this.statusBarClass = 'apa-statusbar-error';
|
|
@@ -332,8 +333,8 @@ var angularportalazure;
|
|
|
332
333
|
}
|
|
333
334
|
if (exception.Messages !== undefined) {
|
|
334
335
|
exception.Messages.forEach(function (item) {
|
|
335
|
-
|
|
336
|
-
|
|
336
|
+
_this.statusBar += ' - ' + item;
|
|
337
|
+
_this.statusBarClass = 'apa-statusbar-error';
|
|
337
338
|
});
|
|
338
339
|
}
|
|
339
340
|
};
|
|
@@ -425,7 +426,6 @@ var angularportalazure;
|
|
|
425
426
|
function AreaBlades($scope, portalService) {
|
|
426
427
|
var _this = _super.call(this, $scope, portalService) || this;
|
|
427
428
|
_this.blades = new Array();
|
|
428
|
-
var that = _this;
|
|
429
429
|
//this.areaBlades = this.portalService.$window.document.getElementById('apa-blade-area');
|
|
430
430
|
_this.portalScroll = _this.portalService.$window.document.getElementById('apa-portal-scroll');
|
|
431
431
|
_this.setupAddBladeListener();
|
|
@@ -456,6 +456,7 @@ var angularportalazure;
|
|
|
456
456
|
return this.addBlade(path);
|
|
457
457
|
};
|
|
458
458
|
AreaBlades.prototype.addBlade = function (path, senderPath) {
|
|
459
|
+
var _this = this;
|
|
459
460
|
if (senderPath === void 0) { senderPath = ''; }
|
|
460
461
|
if (path == null) {
|
|
461
462
|
return;
|
|
@@ -463,7 +464,6 @@ var angularportalazure;
|
|
|
463
464
|
if (senderPath == null) {
|
|
464
465
|
return;
|
|
465
466
|
}
|
|
466
|
-
var that = this;
|
|
467
467
|
var portalcontent = null;
|
|
468
468
|
this.portalService.$analytics.pageTrack(path);
|
|
469
469
|
path = path.toLowerCase();
|
|
@@ -472,11 +472,11 @@ var angularportalazure;
|
|
|
472
472
|
if (path === undefined || path === '') {
|
|
473
473
|
return;
|
|
474
474
|
}
|
|
475
|
-
if (
|
|
476
|
-
if (
|
|
475
|
+
if (this.portalService.$window !== undefined) {
|
|
476
|
+
if (this.portalService.$window.document === undefined) {
|
|
477
477
|
throw new Error('[angularportalazure.AreaBlades] \'this.$window.document\' undefined.');
|
|
478
478
|
}
|
|
479
|
-
portalcontent =
|
|
479
|
+
portalcontent = this.portalService.$window.document.getElementById('apa-portal-scroll');
|
|
480
480
|
if (portalcontent === null) {
|
|
481
481
|
throw new Error('[angularportalazure.AreaBlades] HTML element with ID [apa-portal-scroll] not found. Maybe it is to early to call function \'BladeArea.addBlade\'.');
|
|
482
482
|
}
|
|
@@ -495,14 +495,14 @@ var angularportalazure;
|
|
|
495
495
|
});
|
|
496
496
|
//#endregion
|
|
497
497
|
//#region Show the blade
|
|
498
|
-
var blade = new angularportalazure.Blade(this.$scope,
|
|
499
|
-
|
|
498
|
+
var blade = new angularportalazure.Blade(this.$scope, this.portalService, path, '');
|
|
499
|
+
this.blades.push(blade);
|
|
500
500
|
//#endregion
|
|
501
501
|
//#region Position the blade
|
|
502
|
-
if (
|
|
503
|
-
|
|
504
|
-
var azureportalblades =
|
|
505
|
-
var i =
|
|
502
|
+
if (this.portalService.$window !== undefined) {
|
|
503
|
+
this.portalService.$window.setTimeout(function () {
|
|
504
|
+
var azureportalblades = _this.portalService.$window.document.getElementsByClassName('azureportalblade');
|
|
505
|
+
var i = _this.blades.length - 1;
|
|
506
506
|
// HACK: Sometime azureportalblades[i].offsetLeft is undefined.
|
|
507
507
|
// So now if it is, the user has to scroll on its own.
|
|
508
508
|
if (azureportalblades[i] !== undefined && azureportalblades[i].offsetLeft !== undefined) {
|
|
@@ -519,12 +519,12 @@ var angularportalazure;
|
|
|
519
519
|
this.showPanoramaIfNoBlades();
|
|
520
520
|
};
|
|
521
521
|
AreaBlades.prototype.clearPath = function (path) {
|
|
522
|
-
var
|
|
522
|
+
var _this = this;
|
|
523
523
|
// we do not distinguish between lower and upper case path name
|
|
524
524
|
path = path.toLowerCase();
|
|
525
|
-
var isremoved =
|
|
525
|
+
var isremoved = this.blades.some(function (blade, index) {
|
|
526
526
|
if (blade.comparePaths(blade.path, path)) {
|
|
527
|
-
|
|
527
|
+
_this.blades.length = index;
|
|
528
528
|
return true;
|
|
529
529
|
}
|
|
530
530
|
});
|
|
@@ -548,15 +548,15 @@ var angularportalazure;
|
|
|
548
548
|
this.showPanoramaIfNoBlades();
|
|
549
549
|
};
|
|
550
550
|
AreaBlades.prototype.clearChild = function (path) {
|
|
551
|
-
var
|
|
551
|
+
var _this = this;
|
|
552
552
|
path = path.toLowerCase();
|
|
553
553
|
if (path === '') {
|
|
554
554
|
return;
|
|
555
555
|
}
|
|
556
|
-
var isremoved =
|
|
556
|
+
var isremoved = this.blades.some(function (blade, index) {
|
|
557
557
|
// we do not distinguish between lower and upper case path name
|
|
558
558
|
if (blade.comparePaths(blade.path, path)) {
|
|
559
|
-
|
|
559
|
+
_this.blades.length = index + 1;
|
|
560
560
|
return true;
|
|
561
561
|
}
|
|
562
562
|
});
|
|
@@ -599,9 +599,9 @@ var angularportalazure;
|
|
|
599
599
|
});
|
|
600
600
|
};
|
|
601
601
|
AreaBlades.prototype.setupAddBladeListener = function () {
|
|
602
|
-
var
|
|
603
|
-
|
|
604
|
-
|
|
602
|
+
var _this = this;
|
|
603
|
+
this.addBladeListener = this.portalService.$rootScope.$on('AreaBlades.AddBlade', function (event, args) {
|
|
604
|
+
_this.addBlade(args.path, args.pathSender);
|
|
605
605
|
});
|
|
606
606
|
};
|
|
607
607
|
return AreaBlades;
|
|
@@ -1004,9 +1004,9 @@ var angularportalazure;
|
|
|
1004
1004
|
(function (angularportalazure) {
|
|
1005
1005
|
AngularPortalBladeController.$inject = ['angularportalazure.portalService'];
|
|
1006
1006
|
function AngularPortalBladeController(portalService) {
|
|
1007
|
+
var _this = this;
|
|
1007
1008
|
this.$onInit = function () {
|
|
1008
|
-
|
|
1009
|
-
};
|
|
1009
|
+
_this.close = function () { };
|
|
1010
1010
|
};
|
|
1011
1011
|
}
|
|
1012
1012
|
var angularPortalBlade = {
|
|
@@ -1088,14 +1088,14 @@ var angularportalazure;
|
|
|
1088
1088
|
//#endregion
|
|
1089
1089
|
//#region Methods
|
|
1090
1090
|
BladeDetail.prototype.loadItem = function (func) {
|
|
1091
|
-
var
|
|
1092
|
-
|
|
1091
|
+
var _this = this;
|
|
1092
|
+
this.onLoadItem();
|
|
1093
1093
|
func().then(function (data) {
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1094
|
+
_this.item = data;
|
|
1095
|
+
_this.clearStatusBar();
|
|
1096
|
+
_this.onLoadedItem();
|
|
1097
1097
|
}).catch(function (exception) {
|
|
1098
|
-
|
|
1098
|
+
_this.setStatusBarException(exception);
|
|
1099
1099
|
});
|
|
1100
1100
|
};
|
|
1101
1101
|
BladeDetail.prototype.onLoadItem = function () {
|
|
@@ -1104,20 +1104,20 @@ var angularportalazure;
|
|
|
1104
1104
|
BladeDetail.prototype.onLoadedItem = function () {
|
|
1105
1105
|
};
|
|
1106
1106
|
BladeDetail.prototype.saveItem = function (func) {
|
|
1107
|
-
var
|
|
1108
|
-
|
|
1107
|
+
var _this = this;
|
|
1108
|
+
this.onSaveItem();
|
|
1109
1109
|
// Is form valid
|
|
1110
|
-
if (!
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
console.log(
|
|
1110
|
+
if (!this.formblade.$valid) {
|
|
1111
|
+
this.statusBar = 'Speichern nicht möglich!';
|
|
1112
|
+
this.statusBarClass = 'apa-statusbar-error';
|
|
1113
|
+
console.log(this.formblade);
|
|
1114
1114
|
return;
|
|
1115
1115
|
}
|
|
1116
1116
|
func().then(function (data) {
|
|
1117
|
-
|
|
1118
|
-
|
|
1117
|
+
_this.item = data;
|
|
1118
|
+
_this.onSavedItem();
|
|
1119
1119
|
}).catch(function (exception) {
|
|
1120
|
-
|
|
1120
|
+
_this.setStatusBarException(exception);
|
|
1121
1121
|
});
|
|
1122
1122
|
};
|
|
1123
1123
|
BladeDetail.prototype.onSaveItem = function () {
|
|
@@ -1330,20 +1330,19 @@ var angularportalazure;
|
|
|
1330
1330
|
}
|
|
1331
1331
|
//#endregion
|
|
1332
1332
|
Exception.prototype.processException = function (response) {
|
|
1333
|
-
var that = this;
|
|
1334
1333
|
this.convertFromWebApiException(response.data);
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1334
|
+
this.ExceptionType = response.data.ExceptionType;
|
|
1335
|
+
this.Type = response.data.Type;
|
|
1336
|
+
this.Message = response.data.Message;
|
|
1337
|
+
this.MessageDetail = response.data.MessageDetail;
|
|
1338
|
+
this.Messages = response.data.Messages;
|
|
1339
|
+
this.Url = response.config.url;
|
|
1340
|
+
this.Status = response.status;
|
|
1341
|
+
this.StatusText = response.statusText;
|
|
1343
1342
|
// Find a better way to log information, maybe to the database or to Google Analytics.
|
|
1344
1343
|
console.log('processException:');
|
|
1345
1344
|
console.log(response);
|
|
1346
|
-
console.log(
|
|
1345
|
+
console.log(this);
|
|
1347
1346
|
};
|
|
1348
1347
|
Exception.prototype.convertFromWebApiException = function (ex) {
|
|
1349
1348
|
//#region Process data to Messages
|
|
@@ -1398,12 +1397,9 @@ var angularportalazure;
|
|
|
1398
1397
|
//#endregion
|
|
1399
1398
|
//#region Methods
|
|
1400
1399
|
DataService.prototype.getData = function (url) {
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
.
|
|
1404
|
-
})
|
|
1405
|
-
.catch(function (response) {
|
|
1406
|
-
});
|
|
1400
|
+
return this.$http({ method: 'GET', url: url })
|
|
1401
|
+
.then(function (response) { })
|
|
1402
|
+
.catch(function (response) { });
|
|
1407
1403
|
};
|
|
1408
1404
|
return DataService;
|
|
1409
1405
|
}());
|
package/css/apn.css
CHANGED
package/css/apn.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";html{box-sizing:border-box;}*,*:before,*:after{box-sizing:inherit;}html,body{height:100%;width:0;margin:0;padding: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-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:"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:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;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:"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:#293644;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:auto;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;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;padding:15px 15px 15px 15px;}.fxs-part .fxs-part-title{position:relative;top:-4px;}.fxs-part .fxs-part-title h2{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:17px;color:#293644;}.fxs-part .fxs-part-title h3{font-family:"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:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;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>.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:#293644;}.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:"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:.6;-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;}.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:"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:"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:"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:"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:100%;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;}.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;}.azc-grid{position:relative;}.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:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;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 tbody:last-child tr:last-child td{border-bottom:1px solid #dcdfe2;}.azc-grid table tbody tr td{color:#3d3d3d;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;}.k-grid-content table tbody tr{padding:1px 0 1px 10px;}.k-grid td{padding:0 .6em;}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;}.apa-commandbar-icon{font-size:17px;padding-bottom:3px;}body,html{height:100%;}body{margin:0;padding:0;}.fxs-topbar{height:40px;font-size:13px;}.fxs-topbar-home{font-size:20px;line-height:40px;text-overflow:ellipsis;}.fxs-avatarmenu-tenant-container{text-align:right;}a:focus,a:hover{text-decoration:none;color:#00bcf2;}.fxs-theme-blue{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;}.fxs-theme-blue .fxs-topbar .fxs-has-hover:hover{background-color:#3d4247;}.fxs-theme-blue a.fxs-topbar-home{color:#00bcf2;}.fxs-theme-blue .fxs-topbar{background-color:#202428;background-image:none;color:#fff;border-color:#3d4247;}.fxs-theme-blue .fxs-topbar .fxs-has-hover:hover{background-color:#3d4247;}.fxs-avatarmenu-tenant-container a{color:#fff;}.apa-statusbar-info{background-color:#3bc2ff;}.apa-statusbar-error{background-color:#d86f02;}
|
|
1
|
+
@charset "UTF-8";html{box-sizing:border-box;}*,*:before,*:after{box-sizing:inherit;}html,body{height:100%;width:0;margin:0;padding: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-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:"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:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;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:"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:#293644;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:auto;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;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;padding:15px 15px 15px 15px;}.fxs-part .fxs-part-title{position:relative;top:-4px;}.fxs-part .fxs-part-title h2{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:17px;color:#293644;}.fxs-part .fxs-part-title h3{font-family:"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:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;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>.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:#293644;}.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:"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:.6;-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;}.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:"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:"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:"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:"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:100%;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;}.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;}.azc-grid{position:relative;}.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:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;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 tbody:last-child tr:last-child td{border-bottom:1px solid #dcdfe2;}.azc-grid table tbody tr td{color:#3d3d3d;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;}.k-grid-content table tbody tr{padding:1px 0 1px 10px;}.k-grid td{padding:0 .6em;}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;}.apa-commandbar-icon{font-size:17px;padding-bottom:3px;}body,html{height:100%;}body{margin:0;padding:0;}.fxs-topbar{height:40px;font-size:13px;}.fxs-topbar-home{font-size:20px;line-height:40px;text-overflow:ellipsis;}.fxs-avatarmenu-tenant-container{text-align:right;}a:focus,a:hover{text-decoration:none;color:#00bcf2;}.fxs-theme-blue{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;}.fxs-theme-blue .fxs-topbar .fxs-has-hover:hover{background-color:#3d4247;}.fxs-theme-blue a.fxs-topbar-home{color:#00bcf2;}.fxs-theme-blue .fxs-topbar{background-color:#202428;background-image:none;color:#fff;border-color:#3d4247;}.fxs-theme-blue .fxs-topbar .fxs-has-hover:hover{background-color:#3d4247;}.fxs-avatarmenu-tenant-container a{color:#fff;}.apa-statusbar-info{background-color:#16b6ff;}.apa-statusbar-error{background-color:#d86f02;}
|
|
@@ -4,9 +4,8 @@
|
|
|
4
4
|
namespace angularportalazure {
|
|
5
5
|
AngularPortalBladeController.$inject = ['angularportalazure.portalService'];
|
|
6
6
|
function AngularPortalBladeController(portalService: angularportalazure.PortalService) {
|
|
7
|
-
this.$onInit =
|
|
8
|
-
this.close =
|
|
9
|
-
};
|
|
7
|
+
this.$onInit = () => {
|
|
8
|
+
this.close = () => { };
|
|
10
9
|
};
|
|
11
10
|
}
|
|
12
11
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
namespace angularportalazure {
|
|
2
2
|
AngularPortalHomeController.$inject = ['$scope', 'angularportalazure.portalService'];
|
|
3
3
|
function AngularPortalHomeController($scope: angular.IScope, portalService: angularportalazure.PortalService) {
|
|
4
|
-
this.$onInit =
|
|
4
|
+
this.$onInit = () => {
|
|
5
5
|
portalService.areaNotification = new angularportalazure.AreaNotification($scope, portalService);
|
|
6
6
|
portalService.areaBlades = new angularportalazure.AreaBlades($scope, portalService);
|
|
7
7
|
};
|
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.184",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|