@ardimedia/angular-portal-azure 0.2.142 → 0.2.143
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 +13 -8
- package/apn.js +150 -140
- package/css/apn.css +3 -3
- package/css/apn.min.css +1 -1
- package/directives/blade/angular-portal-blade-grid.ts +1 -1
- package/directives/blade/angular-portal-blade-nav.ts +1 -1
- package/directives/blade/angular-portal-blade.ts +3 -3
- package/directives/blade/blade.html +1 -1
- package/directives/grid/grid.ts +1 -1
- package/directives/home/home.html +2 -2
- package/directives/home/home.ts +1 -2
- package/directives/nav/nav.ts +1 -1
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ declare namespace angularportalazure {
|
|
|
38
38
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
|
|
39
39
|
$scope: angular.IScope;
|
|
40
40
|
portalService: angularportalazure.PortalService;
|
|
41
|
+
setupWindowResizeListener(callback: () => void): void;
|
|
41
42
|
}
|
|
42
43
|
}
|
|
43
44
|
declare namespace angularportalazure {
|
|
@@ -156,12 +157,14 @@ declare namespace angularportalazure {
|
|
|
156
157
|
}
|
|
157
158
|
}
|
|
158
159
|
declare namespace angularportalazure {
|
|
159
|
-
class
|
|
160
|
+
class AreaBlades extends angularportalazure.UserControlBase {
|
|
160
161
|
static $inject: string[];
|
|
161
162
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
|
|
162
163
|
private areaBlades;
|
|
163
164
|
private portalScroll;
|
|
164
|
-
private
|
|
165
|
+
private addBladeListener;
|
|
166
|
+
private areaNotificationShowListener;
|
|
167
|
+
private areaNotificationHideListener;
|
|
165
168
|
blades: Array<angularportalazure.Blade>;
|
|
166
169
|
raiseAddBladeEvent(args: angularportalazure.IAddBladeEventArgs): void;
|
|
167
170
|
setFirstBlade(path: string): angularportalazure.Blade | void;
|
|
@@ -173,9 +176,11 @@ declare namespace angularportalazure {
|
|
|
173
176
|
clearChild(path: string): void;
|
|
174
177
|
showPanoramaIfNoBlades(): void;
|
|
175
178
|
hidePanorama(): void;
|
|
176
|
-
/** We need to call this when
|
|
179
|
+
/** We need to call this when AreaBlades is no longer used, otherwise the listener does not get removed. */
|
|
177
180
|
close(): void;
|
|
178
|
-
private
|
|
181
|
+
private setPortalScrollCss();
|
|
182
|
+
private setupShowHideNotificationAreaListener();
|
|
183
|
+
private setupAddBladeListener();
|
|
179
184
|
}
|
|
180
185
|
}
|
|
181
186
|
declare namespace angularportalazure {
|
|
@@ -208,15 +213,15 @@ declare namespace angularportalazure {
|
|
|
208
213
|
declare namespace angularportalazure {
|
|
209
214
|
class AreaNotification extends angularportalazure.UserControlBase {
|
|
210
215
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
|
|
211
|
-
private portalWidth;
|
|
212
|
-
private portalHeight;
|
|
213
216
|
private areaNotification;
|
|
214
217
|
widthAreaUsed: number;
|
|
218
|
+
private _width;
|
|
215
219
|
width: number;
|
|
220
|
+
private _backgroundColor;
|
|
216
221
|
backgroundColor: string;
|
|
217
222
|
hide(): void;
|
|
218
223
|
show(): void;
|
|
219
|
-
private
|
|
224
|
+
private calcualteCssStyles();
|
|
220
225
|
}
|
|
221
226
|
}
|
|
222
227
|
declare namespace angularportalazure {
|
|
@@ -323,7 +328,7 @@ declare namespace angularportalazure {
|
|
|
323
328
|
requires: any;
|
|
324
329
|
portalShell: angularportalazure.PortalShell;
|
|
325
330
|
panorama: angularportalazure.Panorama;
|
|
326
|
-
|
|
331
|
+
areaBlades: angularportalazure.AreaBlades;
|
|
327
332
|
areaNotification: angularportalazure.AreaNotification;
|
|
328
333
|
ngDialog: any;
|
|
329
334
|
/** obsolete - $scope is different in any view. do have one instance in a shared service is not the right approach. */
|
package/apn.js
CHANGED
|
@@ -178,6 +178,18 @@ var angularportalazure;
|
|
|
178
178
|
this.$scope = $scope;
|
|
179
179
|
this.portalService = portalService;
|
|
180
180
|
}
|
|
181
|
+
//#endregion
|
|
182
|
+
//#region Methods
|
|
183
|
+
UserControlBase.prototype.setupWindowResizeListener = function (callback) {
|
|
184
|
+
// http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
|
|
185
|
+
var id;
|
|
186
|
+
this.portalService.$window.addEventListener('resize', function () {
|
|
187
|
+
clearTimeout(id);
|
|
188
|
+
id = setTimeout(function () {
|
|
189
|
+
callback();
|
|
190
|
+
}, 50);
|
|
191
|
+
});
|
|
192
|
+
};
|
|
181
193
|
return UserControlBase;
|
|
182
194
|
}());
|
|
183
195
|
angularportalazure.UserControlBase = UserControlBase;
|
|
@@ -289,7 +301,7 @@ var angularportalazure;
|
|
|
289
301
|
if (width < 50) {
|
|
290
302
|
throw new Error('[angularportalazure.Blade] constructor parameter \'width\' must be at least 50.');
|
|
291
303
|
}
|
|
292
|
-
//#region Add
|
|
304
|
+
//#region Add AreaBlades.AddBlade event listener
|
|
293
305
|
/** OBSOLETE: remove when all OBSOLETE code has been removed */
|
|
294
306
|
//if (portalService instanceof angularportalazure.PortalService == false) {
|
|
295
307
|
// console.log('Blade.constructor: This code cannot be removed yet.')
|
|
@@ -297,22 +309,23 @@ var angularportalazure;
|
|
|
297
309
|
//}
|
|
298
310
|
/** OBSOLETE: end */
|
|
299
311
|
//// Register listener1
|
|
300
|
-
//this.listener1 = that.portalService.$rootScope.$on('
|
|
312
|
+
//this.listener1 = that.portalService.$rootScope.$on('AreaBlades.AddBlade', function (event, args: angularportalazure.IAddBladeEventArgs) {
|
|
301
313
|
// if (that.comparePaths(args.path, that.path)) {
|
|
302
|
-
// console.log('listener1-
|
|
314
|
+
// console.log('listener1-AreaBlades.AddBlade - function call: that.activate() will probably not work since this/that is not pointing to the right object. - deactivated');
|
|
303
315
|
// //that.activate();
|
|
304
316
|
// }
|
|
305
317
|
//});
|
|
306
318
|
//#endregion
|
|
307
|
-
// Set 'this.portalService.
|
|
308
|
-
// 'this.portalService.
|
|
309
|
-
_this.portalService.
|
|
319
|
+
// Set 'this.portalService.areaBlades.blades[index]' to 'this'
|
|
320
|
+
// 'this.portalService.areaBlades.blades[index]' was generated during AddBlade
|
|
321
|
+
_this.portalService.areaBlades.blades.forEach(function (blade, index) {
|
|
310
322
|
if (blade.path === _this.path) {
|
|
311
|
-
_this.portalService.
|
|
323
|
+
_this.portalService.areaBlades.blades[index] = _this;
|
|
312
324
|
}
|
|
313
325
|
});
|
|
314
|
-
_this.setBladeHeights();
|
|
315
326
|
return _this;
|
|
327
|
+
//this.setBladeHeights();
|
|
328
|
+
//this.setupWindowResizeListener(() => { this.setBladeHeights(); });
|
|
316
329
|
}
|
|
317
330
|
Object.defineProperty(Blade.prototype, "path", {
|
|
318
331
|
get: function () {
|
|
@@ -377,11 +390,11 @@ var angularportalazure;
|
|
|
377
390
|
/** close blade. */
|
|
378
391
|
Blade.prototype.close = function () {
|
|
379
392
|
//this.listener1(); // Unregister listener1
|
|
380
|
-
if (this.portalService.
|
|
381
|
-
this.portalService.
|
|
393
|
+
if (this.portalService.areaBlades !== undefined) {
|
|
394
|
+
this.portalService.areaBlades.clearPath(this.path);
|
|
382
395
|
}
|
|
383
396
|
else {
|
|
384
|
-
throw new Error('[angularportalazure.Blade] path: \'' + this.path + '\' could not be removed, since no \'this.portalService.
|
|
397
|
+
throw new Error('[angularportalazure.Blade] path: \'' + this.path + '\' could not be removed, since no \'this.portalService.areaBlades\' available.');
|
|
385
398
|
}
|
|
386
399
|
};
|
|
387
400
|
//#region Set StatusBar
|
|
@@ -482,18 +495,19 @@ var angularportalazure;
|
|
|
482
495
|
}
|
|
483
496
|
};
|
|
484
497
|
Blade.prototype.setBladeHeights = function () {
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
});
|
|
498
|
+
console.log(this.portalService.$window.document.getElementById('apa-blade-content'));
|
|
499
|
+
console.log(this.portalService.$window.document.getElementById('apa-blade-content').style.height);
|
|
500
|
+
this.bladeContentHeight = Number(this.portalService.$window.document.getElementById('apa-blade-content').style.height.replace('px', ''));
|
|
501
|
+
this.bladeContentInnerHeight = this.bladeContentHeight - 20;
|
|
502
|
+
//// http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
|
|
503
|
+
//var id: NodeJS.Timer;
|
|
504
|
+
//$(window).resize(function () {
|
|
505
|
+
// clearTimeout(id);
|
|
506
|
+
// id = setTimeout(() => {
|
|
507
|
+
// that.bladeContentHeight = $('.fxs-blade-content').height();
|
|
508
|
+
// that.bladeContentInnerHeight = that.bladeContentHeight - 20;
|
|
509
|
+
// }, 500);
|
|
510
|
+
//});
|
|
497
511
|
};
|
|
498
512
|
return Blade;
|
|
499
513
|
}(angularportalazure.UserControlBase));
|
|
@@ -508,35 +522,33 @@ var angularportalazure;
|
|
|
508
522
|
"use strict";
|
|
509
523
|
var angularportalazure;
|
|
510
524
|
(function (angularportalazure) {
|
|
511
|
-
var
|
|
512
|
-
__extends(
|
|
513
|
-
function
|
|
525
|
+
var AreaBlades = (function (_super) {
|
|
526
|
+
__extends(AreaBlades, _super);
|
|
527
|
+
function AreaBlades($scope, portalService) {
|
|
514
528
|
var _this = _super.call(this, $scope, portalService) || this;
|
|
515
529
|
_this.blades = new Array();
|
|
516
530
|
var that = _this;
|
|
517
|
-
_this.areaBlades =
|
|
518
|
-
_this.portalScroll =
|
|
531
|
+
_this.areaBlades = _this.portalService.$window.document.getElementById('apa-blade-area');
|
|
532
|
+
_this.portalScroll = _this.portalService.$window.document.getElementById('apa-portal-scroll');
|
|
519
533
|
// Set dependencies
|
|
520
534
|
_this.portalService = portalService;
|
|
521
|
-
//this.portalService.
|
|
522
|
-
//#region Add
|
|
535
|
+
//this.portalService.areaBlades = this;
|
|
536
|
+
//#region Add AreaBlades.AddBlade event listener
|
|
523
537
|
/** OBSOLETE: remove when all OBSOLETE code has been removed */
|
|
524
|
-
if (portalService instanceof angularportalazure.PortalService == false) {
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
}
|
|
538
|
+
//if (portalService instanceof angularportalazure.PortalService == false) {
|
|
539
|
+
// console.log('AreaBlades.constructor: This code cannot be removed yet.')
|
|
540
|
+
// return;
|
|
541
|
+
//}
|
|
528
542
|
/** OBSOLETE: end */
|
|
529
|
-
// Register listener1
|
|
530
|
-
_this.listener1 = that.portalService.$rootScope.$on('BladeArea.AddBlade', function (event, args) {
|
|
531
|
-
that.addBlade(args.path, args.pathSender);
|
|
532
|
-
});
|
|
533
543
|
//#endregion
|
|
534
|
-
_this.
|
|
544
|
+
_this.setupAddBladeListener();
|
|
545
|
+
_this.setupShowHideNotificationAreaListener();
|
|
546
|
+
_this.setupWindowResizeListener(function () { _this.setPortalScrollCss(); });
|
|
535
547
|
return _this;
|
|
536
548
|
}
|
|
537
549
|
//#endregion
|
|
538
550
|
//#region Methods
|
|
539
|
-
|
|
551
|
+
AreaBlades.prototype.raiseAddBladeEvent = function (args) {
|
|
540
552
|
var isBladeAlreadyShown = false;
|
|
541
553
|
this.blades.forEach(function (blade) {
|
|
542
554
|
if (blade.path === args.path) {
|
|
@@ -548,15 +560,15 @@ var angularportalazure;
|
|
|
548
560
|
});
|
|
549
561
|
if (!isBladeAlreadyShown) {
|
|
550
562
|
// Add the blade, since it is not yet shown
|
|
551
|
-
this.portalService.$rootScope.$broadcast('
|
|
563
|
+
this.portalService.$rootScope.$broadcast('AreaBlades.AddBlade', args);
|
|
552
564
|
}
|
|
553
565
|
};
|
|
554
|
-
|
|
566
|
+
AreaBlades.prototype.setFirstBlade = function (path) {
|
|
555
567
|
this.clearAll();
|
|
556
568
|
this.hidePanorama();
|
|
557
569
|
return this.addBlade(path);
|
|
558
570
|
};
|
|
559
|
-
|
|
571
|
+
AreaBlades.prototype.addBlade = function (path, senderPath) {
|
|
560
572
|
if (senderPath === void 0) { senderPath = ''; }
|
|
561
573
|
if (path == null) {
|
|
562
574
|
return;
|
|
@@ -574,11 +586,11 @@ var angularportalazure;
|
|
|
574
586
|
}
|
|
575
587
|
if (that.portalService.$window !== undefined) {
|
|
576
588
|
if (that.portalService.$window.document === undefined) {
|
|
577
|
-
throw new Error('[angularportalazure.
|
|
589
|
+
throw new Error('[angularportalazure.AreaBlades] \'this.$window.document\' undefined.');
|
|
578
590
|
}
|
|
579
591
|
var portalcontent = that.portalService.$window.document.getElementById('apa-portal-scroll');
|
|
580
592
|
if (portalcontent === null) {
|
|
581
|
-
throw new Error('[angularportalazure.
|
|
593
|
+
throw new Error('[angularportalazure.AreaBlades] HTML element with ID [apa-portal-scroll] not found. Maybe it is to early to call function \'BladeArea.addBlade\'.');
|
|
582
594
|
}
|
|
583
595
|
}
|
|
584
596
|
//#endregion
|
|
@@ -589,7 +601,7 @@ var angularportalazure;
|
|
|
589
601
|
this.blades.forEach(function (blade) {
|
|
590
602
|
// we do not distinguish between lower and upper case path name
|
|
591
603
|
if (blade.comparePaths(blade.path, path)) {
|
|
592
|
-
throw new Error('[angularportalazure.
|
|
604
|
+
throw new Error('[angularportalazure.AreaBlades] path: \'' + path + '\' will not be added. It is already added.');
|
|
593
605
|
}
|
|
594
606
|
;
|
|
595
607
|
});
|
|
@@ -614,11 +626,11 @@ var angularportalazure;
|
|
|
614
626
|
//#endregion
|
|
615
627
|
return blade;
|
|
616
628
|
};
|
|
617
|
-
|
|
629
|
+
AreaBlades.prototype.clearAll = function () {
|
|
618
630
|
this.blades.length = 0;
|
|
619
631
|
this.showPanoramaIfNoBlades();
|
|
620
632
|
};
|
|
621
|
-
|
|
633
|
+
AreaBlades.prototype.clearPath = function (path) {
|
|
622
634
|
var that = this;
|
|
623
635
|
// we do not distinguish between lower and upper case path name
|
|
624
636
|
path = path.toLowerCase();
|
|
@@ -629,11 +641,11 @@ var angularportalazure;
|
|
|
629
641
|
}
|
|
630
642
|
});
|
|
631
643
|
if (!isremoved) {
|
|
632
|
-
throw new Error('[angularportalazure.
|
|
644
|
+
throw new Error('[angularportalazure.AreaBlades.clearPath] path: \'' + path + '\' could not be removed, since path not found in bladeUrls.');
|
|
633
645
|
}
|
|
634
646
|
this.showPanoramaIfNoBlades();
|
|
635
647
|
};
|
|
636
|
-
|
|
648
|
+
AreaBlades.prototype.clearLevel = function (level) {
|
|
637
649
|
if (this.blades.length < level) {
|
|
638
650
|
}
|
|
639
651
|
if (level == 0) {
|
|
@@ -642,11 +654,11 @@ var angularportalazure;
|
|
|
642
654
|
this.blades.length = level - 1;
|
|
643
655
|
this.showPanoramaIfNoBlades();
|
|
644
656
|
};
|
|
645
|
-
|
|
657
|
+
AreaBlades.prototype.clearLastLevel = function () {
|
|
646
658
|
this.clearLevel(this.blades.length);
|
|
647
659
|
this.showPanoramaIfNoBlades();
|
|
648
660
|
};
|
|
649
|
-
|
|
661
|
+
AreaBlades.prototype.clearChild = function (path) {
|
|
650
662
|
var that = this;
|
|
651
663
|
path = path.toLowerCase();
|
|
652
664
|
if (path === '') {
|
|
@@ -660,10 +672,10 @@ var angularportalazure;
|
|
|
660
672
|
}
|
|
661
673
|
});
|
|
662
674
|
if (!isremoved) {
|
|
663
|
-
throw new Error('[angularportalazure.
|
|
675
|
+
throw new Error('[angularportalazure.AreaBlades.clearChild] path: \'' + path + '\' could not be removed, since path not found in bladeUrls.');
|
|
664
676
|
}
|
|
665
677
|
};
|
|
666
|
-
|
|
678
|
+
AreaBlades.prototype.showPanoramaIfNoBlades = function () {
|
|
667
679
|
if (this.blades.length === 0) {
|
|
668
680
|
if (this.portalService.panorama !== undefined) {
|
|
669
681
|
{
|
|
@@ -672,65 +684,45 @@ var angularportalazure;
|
|
|
672
684
|
}
|
|
673
685
|
}
|
|
674
686
|
};
|
|
675
|
-
|
|
687
|
+
AreaBlades.prototype.hidePanorama = function () {
|
|
676
688
|
if (this.portalService.panorama !== undefined) {
|
|
677
689
|
this.portalService.panorama.isVisible = false;
|
|
678
690
|
}
|
|
679
691
|
};
|
|
680
|
-
/** We need to call this when
|
|
681
|
-
|
|
682
|
-
|
|
692
|
+
/** We need to call this when AreaBlades is no longer used, otherwise the listener does not get removed. */
|
|
693
|
+
AreaBlades.prototype.close = function () {
|
|
694
|
+
// Unregister Listeners
|
|
695
|
+
this.addBladeListener();
|
|
696
|
+
this.areaNotificationShowListener();
|
|
697
|
+
this.areaNotificationHideListener();
|
|
683
698
|
};
|
|
684
699
|
//#endregion
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
// that.blades.push(blade);
|
|
699
|
-
// var portalcontent = that.portalService.$window.document.getElementById('apa-portal-scroll');
|
|
700
|
-
// that.portalService.$window.setTimeout(function () {
|
|
701
|
-
// var azureportalblades = that.portalService.$window.document.getElementsByClassName('azureportalblade');
|
|
702
|
-
// var i = that.blades.length - 1;
|
|
703
|
-
// // HACK: Sometime azureportalblades[i].offsetLeft is undefined.
|
|
704
|
-
// // So now if it is, the user has to scroll on its own.
|
|
705
|
-
// if (azureportalblades[i] !== undefined && (<any>azureportalblades[i]).offsetLeft !== undefined) {
|
|
706
|
-
// var sl = (<any>azureportalblades[i]).offsetLeft - 30;
|
|
707
|
-
// portalcontent.scrollLeft = sl;
|
|
708
|
-
// }
|
|
709
|
-
// }, 250);
|
|
710
|
-
//}
|
|
711
|
-
//#endregion
|
|
712
|
-
BladeArea.prototype.setupResizerListener = function () {
|
|
700
|
+
AreaBlades.prototype.setPortalScrollCss = function () {
|
|
701
|
+
this.portalScroll.style.marginRight = this.portalService.areaNotification.widthAreaUsed + 'px';
|
|
702
|
+
};
|
|
703
|
+
AreaBlades.prototype.setupShowHideNotificationAreaListener = function () {
|
|
704
|
+
var _this = this;
|
|
705
|
+
this.areaNotificationShowListener = this.portalService.$rootScope.$on('AreaNotification.Show', function (event, args) {
|
|
706
|
+
_this.setPortalScrollCss();
|
|
707
|
+
});
|
|
708
|
+
this.areaNotificationHideListener = this.portalService.$rootScope.$on('AreaNotification.Hide', function (event, args) {
|
|
709
|
+
_this.setPortalScrollCss();
|
|
710
|
+
});
|
|
711
|
+
};
|
|
712
|
+
AreaBlades.prototype.setupAddBladeListener = function () {
|
|
713
713
|
var that = this;
|
|
714
|
-
that.
|
|
715
|
-
|
|
716
|
-
// http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
|
|
717
|
-
var id;
|
|
718
|
-
$(window).resize(function () {
|
|
719
|
-
clearTimeout(id);
|
|
720
|
-
id = setTimeout(function () {
|
|
721
|
-
that.portalScroll.css('margin-right', that.portalService.areaNotification.widthAreaUsed + 'px');
|
|
722
|
-
console.log(that.portalScroll.css('margin-right'));
|
|
723
|
-
}, 50);
|
|
714
|
+
that.addBladeListener = that.portalService.$rootScope.$on('AreaBlades.AddBlade', function (event, args) {
|
|
715
|
+
that.addBlade(args.path, args.pathSender);
|
|
724
716
|
});
|
|
725
717
|
};
|
|
726
|
-
return
|
|
718
|
+
return AreaBlades;
|
|
727
719
|
}(angularportalazure.UserControlBase));
|
|
728
720
|
//#region Constructor
|
|
729
|
-
|
|
730
|
-
angularportalazure.
|
|
731
|
-
angular.module('angularportalazure').service('angularportalazure.
|
|
721
|
+
AreaBlades.$inject = ['$scope', 'angularportalazure.portalService'];
|
|
722
|
+
angularportalazure.AreaBlades = AreaBlades;
|
|
723
|
+
angular.module('angularportalazure').service('angularportalazure.areaBlades', AreaBlades);
|
|
732
724
|
})(angularportalazure || (angularportalazure = {}));
|
|
733
|
-
/// <reference path="
|
|
725
|
+
/// <reference path="areablades.ts" />
|
|
734
726
|
/// <reference path="debug.ts" />
|
|
735
727
|
/// <reference path="portalservice.ts" />
|
|
736
728
|
"use strict";
|
|
@@ -776,7 +768,7 @@ var angularportalazure;
|
|
|
776
768
|
if (path === '') {
|
|
777
769
|
return;
|
|
778
770
|
}
|
|
779
|
-
this.portalService.
|
|
771
|
+
this.portalService.areaBlades.raiseAddBladeEvent({ path: path, pathSender: this.path });
|
|
780
772
|
};
|
|
781
773
|
return BladeNav;
|
|
782
774
|
}(angularportalazure.BladeData));
|
|
@@ -831,40 +823,59 @@ var angularportalazure;
|
|
|
831
823
|
function AreaNotification($scope, portalService) {
|
|
832
824
|
var _this = _super.call(this, $scope, portalService) || this;
|
|
833
825
|
_this.widthAreaUsed = 0;
|
|
834
|
-
_this.
|
|
835
|
-
_this.
|
|
836
|
-
_this.areaNotification =
|
|
826
|
+
_this._width = 250;
|
|
827
|
+
_this._backgroundColor = '#32383f';
|
|
828
|
+
_this.areaNotification = _this.portalService.$window.document.getElementById('apa-notification-area');
|
|
837
829
|
_this.hide();
|
|
838
|
-
_this.
|
|
830
|
+
_this.setupWindowResizeListener(function () { _this.calcualteCssStyles(); });
|
|
839
831
|
return _this;
|
|
840
832
|
}
|
|
833
|
+
Object.defineProperty(AreaNotification.prototype, "width", {
|
|
834
|
+
get: function () {
|
|
835
|
+
return this._width;
|
|
836
|
+
},
|
|
837
|
+
set: function (value) {
|
|
838
|
+
this._width = value;
|
|
839
|
+
this.calcualteCssStyles();
|
|
840
|
+
},
|
|
841
|
+
enumerable: true,
|
|
842
|
+
configurable: true
|
|
843
|
+
});
|
|
844
|
+
Object.defineProperty(AreaNotification.prototype, "backgroundColor", {
|
|
845
|
+
get: function () {
|
|
846
|
+
return this._backgroundColor;
|
|
847
|
+
},
|
|
848
|
+
set: function (value) {
|
|
849
|
+
this._backgroundColor = value;
|
|
850
|
+
this.calcualteCssStyles();
|
|
851
|
+
},
|
|
852
|
+
enumerable: true,
|
|
853
|
+
configurable: true
|
|
854
|
+
});
|
|
841
855
|
//#endregion
|
|
842
856
|
//#region Methods
|
|
843
857
|
AreaNotification.prototype.hide = function () {
|
|
844
858
|
this.widthAreaUsed = 0;
|
|
845
|
-
this.areaNotification.
|
|
859
|
+
this.areaNotification.style.display = 'none';
|
|
860
|
+
this.portalService.$rootScope.$broadcast('AreaNotification.Hide');
|
|
846
861
|
};
|
|
847
862
|
AreaNotification.prototype.show = function () {
|
|
848
|
-
this.
|
|
849
|
-
this.
|
|
850
|
-
this.areaNotification.
|
|
851
|
-
this.
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
this.areaNotification.
|
|
855
|
-
this.
|
|
856
|
-
this.areaNotification.
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
id = setTimeout(function () {
|
|
865
|
-
that.show();
|
|
866
|
-
}, 50);
|
|
867
|
-
});
|
|
863
|
+
this.widthAreaUsed = 1; // Indicate to the calcualteCssStyles function, that we need to set this value
|
|
864
|
+
this.calcualteCssStyles();
|
|
865
|
+
this.areaNotification.style.display = 'inline-block';
|
|
866
|
+
this.portalService.$rootScope.$broadcast('AreaNotification.Show');
|
|
867
|
+
};
|
|
868
|
+
AreaNotification.prototype.calcualteCssStyles = function () {
|
|
869
|
+
this.areaNotification.style.position = 'absolute';
|
|
870
|
+
this.areaNotification.style.top = '0';
|
|
871
|
+
this.areaNotification.style.height = '100%';
|
|
872
|
+
this.areaNotification.style.backgroundColor = this.backgroundColor;
|
|
873
|
+
this.areaNotification.style.borderLeft = '2px solid gray';
|
|
874
|
+
this.areaNotification.style.width = this.width + 'px';
|
|
875
|
+
this.areaNotification.style.left = this.portalService.$window.innerWidth - this.width + 'px';
|
|
876
|
+
if (this.widthAreaUsed != 0) {
|
|
877
|
+
this.widthAreaUsed = this.width;
|
|
878
|
+
}
|
|
868
879
|
};
|
|
869
880
|
return AreaNotification;
|
|
870
881
|
}(angularportalazure.UserControlBase));
|
|
@@ -956,7 +967,7 @@ var angularportalazure;
|
|
|
956
967
|
//#endregion
|
|
957
968
|
//#region Methods
|
|
958
969
|
Tile.prototype.clicked = function () {
|
|
959
|
-
this.portalService.
|
|
970
|
+
this.portalService.areaBlades.setFirstBlade(this.bladePath);
|
|
960
971
|
};
|
|
961
972
|
return Tile;
|
|
962
973
|
}());
|
|
@@ -1048,7 +1059,7 @@ var angularportalazure;
|
|
|
1048
1059
|
}(angularportalazure.UserControlBase));
|
|
1049
1060
|
angularportalazure.Panorama = Panorama;
|
|
1050
1061
|
})(angularportalazure || (angularportalazure = {}));
|
|
1051
|
-
/// <reference path="
|
|
1062
|
+
/// <reference path="areablades.ts" />
|
|
1052
1063
|
/// <reference path="usercontrolbase.ts" />
|
|
1053
1064
|
/// <reference path="debug.ts" />
|
|
1054
1065
|
/// <reference path="panorama.ts" />
|
|
@@ -1065,7 +1076,7 @@ var angularportalazure;
|
|
|
1065
1076
|
_this.portalService = portalService;
|
|
1066
1077
|
_this.portalService.portalShell = _this;
|
|
1067
1078
|
_this.portalService.panorama = new angularportalazure.Panorama(_this.$scope, title, _this.portalService);
|
|
1068
|
-
//this.portalService.
|
|
1079
|
+
//this.portalService.areaBlades = new angularportalazure.BladeArea(this.$scope, portalService);
|
|
1069
1080
|
_this.portalService.panorama.title = title;
|
|
1070
1081
|
return _this;
|
|
1071
1082
|
//this.initialize();
|
|
@@ -1077,7 +1088,7 @@ var angularportalazure;
|
|
|
1077
1088
|
/// <reference types="angular" />
|
|
1078
1089
|
/// <reference types="angulartics" />
|
|
1079
1090
|
/// <reference path="areanotification.ts" />
|
|
1080
|
-
/// <reference path="
|
|
1091
|
+
/// <reference path="areablades.ts" />
|
|
1081
1092
|
/// <reference path="debug.ts" />
|
|
1082
1093
|
/// <reference path="bladeparameter.ts" />
|
|
1083
1094
|
/// <reference path="panorama.ts" />
|
|
@@ -1126,7 +1137,7 @@ var angularportalazure;
|
|
|
1126
1137
|
controller: function () {
|
|
1127
1138
|
this.$onInit = function () {
|
|
1128
1139
|
this.close = function () {
|
|
1129
|
-
//portalService.
|
|
1140
|
+
//portalService.areaBlades.clearLastLevel();
|
|
1130
1141
|
};
|
|
1131
1142
|
};
|
|
1132
1143
|
},
|
|
@@ -1153,7 +1164,7 @@ var angularportalazure;
|
|
|
1153
1164
|
controller: function () {
|
|
1154
1165
|
this.$onInit = function () {
|
|
1155
1166
|
this.close = function () {
|
|
1156
|
-
//portalService.
|
|
1167
|
+
//portalService.areaBlades.clearLastLevel();
|
|
1157
1168
|
};
|
|
1158
1169
|
};
|
|
1159
1170
|
},
|
|
@@ -1178,13 +1189,13 @@ var angularportalazure;
|
|
|
1178
1189
|
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
1179
1190
|
// link: function (scope, element, attrs, controller) {
|
|
1180
1191
|
// //controller.close = function () {
|
|
1181
|
-
// // portalService.
|
|
1192
|
+
// // portalService.areaBlades.clearLastLevel();
|
|
1182
1193
|
// //};
|
|
1183
1194
|
// },
|
|
1184
1195
|
// controller: function () {
|
|
1185
1196
|
// this.$onInit = function () {
|
|
1186
1197
|
// this.close = function () {
|
|
1187
|
-
// portalService.
|
|
1198
|
+
// portalService.areaBlades.clearLastLevel();
|
|
1188
1199
|
// };
|
|
1189
1200
|
// };
|
|
1190
1201
|
// },
|
|
@@ -1197,7 +1208,7 @@ var angularportalazure;
|
|
|
1197
1208
|
this.$onInit = function () {
|
|
1198
1209
|
portalService.areaNotification.show();
|
|
1199
1210
|
this.close = function () {
|
|
1200
|
-
//portalService.
|
|
1211
|
+
//portalService.areaBlades.clearLastLevel();
|
|
1201
1212
|
portalService.areaNotification.hide();
|
|
1202
1213
|
};
|
|
1203
1214
|
};
|
|
@@ -1227,7 +1238,7 @@ var angularportalazure;
|
|
|
1227
1238
|
// controller: function () {
|
|
1228
1239
|
// //this.$onInit = function () {
|
|
1229
1240
|
// // this.close = function () {
|
|
1230
|
-
// // portalService.
|
|
1241
|
+
// // portalService.areaBlades.clearLastLevel();
|
|
1231
1242
|
// // };
|
|
1232
1243
|
// //};
|
|
1233
1244
|
// },
|
|
@@ -1263,9 +1274,8 @@ var angularportalazure;
|
|
|
1263
1274
|
AngularPortalHomeController.$inject = ['$scope', 'angularportalazure.portalService'];
|
|
1264
1275
|
function AngularPortalHomeController($scope, portalService) {
|
|
1265
1276
|
this.$onInit = function () {
|
|
1266
|
-
console.log('initializse');
|
|
1267
1277
|
portalService.areaNotification = new angularportalazure.AreaNotification($scope, portalService);
|
|
1268
|
-
portalService.
|
|
1278
|
+
portalService.areaBlades = new angularportalazure.AreaBlades($scope, portalService);
|
|
1269
1279
|
};
|
|
1270
1280
|
}
|
|
1271
1281
|
var angularPortalHome = {
|
|
@@ -1299,7 +1309,7 @@ var angularportalazure;
|
|
|
1299
1309
|
// controller: function () {
|
|
1300
1310
|
// //this.$onInit = function () {
|
|
1301
1311
|
// // this.close = function () {
|
|
1302
|
-
// // portalService.
|
|
1312
|
+
// // portalService.areaBlades.clearLastLevel();
|
|
1303
1313
|
// // };
|
|
1304
1314
|
// //};
|
|
1305
1315
|
// },
|
package/css/apn.css
CHANGED
|
@@ -407,7 +407,7 @@ a {
|
|
|
407
407
|
margin-top: 4px;
|
|
408
408
|
margin-left: 6px;
|
|
409
409
|
padding: 0;
|
|
410
|
-
opacity: 0.
|
|
410
|
+
opacity: 0.6;
|
|
411
411
|
-webkit-transition: opacity .2s ease-out;
|
|
412
412
|
-moz-transition: opacity .2s ease-out;
|
|
413
413
|
-o-transition: opacity .2s ease-out;
|
|
@@ -421,10 +421,10 @@ a {
|
|
|
421
421
|
fill: #fff; }
|
|
422
422
|
|
|
423
423
|
.fxs-blade .fxs-blade-header .fxs-blade-actions button > svg * {
|
|
424
|
-
fill: #8f9ca8
|
|
424
|
+
/*fill: #8f9ca8;*/ }
|
|
425
425
|
|
|
426
426
|
.fxs-blade .fxs-blade-header .fxs-blade-actions button svg * {
|
|
427
|
-
fill: #63707e
|
|
427
|
+
/*fill: #63707e;*/ }
|
|
428
428
|
|
|
429
429
|
.msportalfx-svg-c01 {
|
|
430
430
|
fill: #fff; }
|
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-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;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:"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{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:#32383f;}.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:#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:"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:"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%;-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;}.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;}.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;}
|
|
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-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;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:"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{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:#32383f;}.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:#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:"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%;-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;}.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;}.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;}
|
|
@@ -13,13 +13,13 @@ namespace angularportalazure {
|
|
|
13
13
|
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
14
14
|
// link: function (scope, element, attrs, controller) {
|
|
15
15
|
// //controller.close = function () {
|
|
16
|
-
// // portalService.
|
|
16
|
+
// // portalService.areaBlades.clearLastLevel();
|
|
17
17
|
// //};
|
|
18
18
|
// },
|
|
19
19
|
// controller: function () {
|
|
20
20
|
// this.$onInit = function () {
|
|
21
21
|
// this.close = function () {
|
|
22
|
-
// portalService.
|
|
22
|
+
// portalService.areaBlades.clearLastLevel();
|
|
23
23
|
// };
|
|
24
24
|
// };
|
|
25
25
|
// },
|
|
@@ -34,7 +34,7 @@ namespace angularportalazure {
|
|
|
34
34
|
this.$onInit = function () {
|
|
35
35
|
portalService.areaNotification.show();
|
|
36
36
|
this.close = function () {
|
|
37
|
-
//portalService.
|
|
37
|
+
//portalService.areaBlades.clearLastLevel();
|
|
38
38
|
portalService.areaNotification.hide();
|
|
39
39
|
};
|
|
40
40
|
};
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
</div>
|
|
223
223
|
</div>
|
|
224
224
|
</header>
|
|
225
|
-
<div class="fxs-blade-content fxs-pannable" style="height:calc(100% - 125px);">
|
|
225
|
+
<div id="apa-blade-content" class="fxs-blade-content fxs-pannable" style="height:calc(100% - 125px);">
|
|
226
226
|
<div class="fxs-blade-stacklayout fxs-stacklayout fxs-stacklayout-vertical" ng-style="$ctrl.vm.widthStackLayout">
|
|
227
227
|
<div class="fxs-stacklayout-child">
|
|
228
228
|
<div class="fxs-lens">
|
package/directives/grid/grid.ts
CHANGED
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
</div>
|
|
32
32
|
<div id="apa-blade-area" class="fxs-journey-target fxs-journey">
|
|
33
33
|
<div class="fxs-journey-layout fxs-stacklayout fxs-stacklayout-horizontal">
|
|
34
|
-
<div data-ng-repeat="blade in $ctrl.vm.portalService.
|
|
34
|
+
<div data-ng-repeat="blade in $ctrl.vm.portalService.areaBlades.blades track by $index" class="azureportalblade fxs-stacklayout-child" ng-include="blade.path"></div>
|
|
35
35
|
</div>
|
|
36
36
|
</div>
|
|
37
37
|
<div id="apa-notification-area" style="display: none;">
|
|
38
|
-
|
|
38
|
+
<button ng-click="$ctrl.vm.portalService.areaNotification.hide();">CLOSE</button>
|
|
39
39
|
</div>
|
|
40
40
|
</div>
|
|
41
41
|
</div>
|
package/directives/home/home.ts
CHANGED
|
@@ -16,9 +16,8 @@
|
|
|
16
16
|
AngularPortalHomeController.$inject = ['$scope', 'angularportalazure.portalService'];
|
|
17
17
|
function AngularPortalHomeController($scope: angular.IScope, portalService: angularportalazure.PortalService) {
|
|
18
18
|
this.$onInit = function () {
|
|
19
|
-
console.log('initializse');
|
|
20
19
|
portalService.areaNotification = new angularportalazure.AreaNotification($scope, portalService);
|
|
21
|
-
portalService.
|
|
20
|
+
portalService.areaBlades = new angularportalazure.AreaBlades($scope, portalService);
|
|
22
21
|
};
|
|
23
22
|
}
|
|
24
23
|
|
package/directives/nav/nav.ts
CHANGED
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.143",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|