@ardimedia/angular-portal-azure 0.2.133 → 0.2.135
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 +9 -9
- package/apn.js +31 -0
- package/css/apn.css +18 -18
- 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/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -123,7 +123,7 @@ declare namespace angularportalazure {
|
|
|
123
123
|
isNavGrid: boolean;
|
|
124
124
|
/** Obsolete */
|
|
125
125
|
navGrid: {
|
|
126
|
-
portalService:
|
|
126
|
+
portalService: PortalService;
|
|
127
127
|
items: any[];
|
|
128
128
|
navigateTo: (path: string) => void;
|
|
129
129
|
};
|
|
@@ -168,8 +168,8 @@ declare namespace angularportalazure {
|
|
|
168
168
|
private listener1;
|
|
169
169
|
blades: Array<angularportalazure.Blade>;
|
|
170
170
|
raiseAddBladeEvent(args: angularportalazure.IAddBladeEventArgs): void;
|
|
171
|
-
setFirstBlade(path: string): angularportalazure.Blade;
|
|
172
|
-
addBlade(path: string, senderPath?: string): angularportalazure.Blade;
|
|
171
|
+
setFirstBlade(path: string): angularportalazure.Blade | void;
|
|
172
|
+
addBlade(path: string, senderPath?: string): angularportalazure.Blade | void;
|
|
173
173
|
clearAll(): void;
|
|
174
174
|
clearPath(path: string): void;
|
|
175
175
|
clearLevel(level: number): void;
|
|
@@ -193,7 +193,7 @@ declare namespace angularportalazure {
|
|
|
193
193
|
declare namespace angularportalazure {
|
|
194
194
|
class AvatarMenu extends angularportalazure.UserControlBase {
|
|
195
195
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
|
|
196
|
-
userAccount: angularportalazure.UserAccount;
|
|
196
|
+
userAccount: angularportalazure.UserAccount | null;
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
declare namespace angularportalazure {
|
|
@@ -333,7 +333,7 @@ declare namespace angularportalazure {
|
|
|
333
333
|
}
|
|
334
334
|
declare namespace angularportalazure {
|
|
335
335
|
class BladeDetail<T> extends angularportalazure.BladeData {
|
|
336
|
-
item: T;
|
|
336
|
+
item: T | null;
|
|
337
337
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
338
338
|
loadItem(func: () => any): void;
|
|
339
339
|
onLoadItem(): void;
|
|
@@ -363,8 +363,8 @@ declare namespace angularportalazure {
|
|
|
363
363
|
roles: string;
|
|
364
364
|
isVisible: boolean;
|
|
365
365
|
callback: () => any;
|
|
366
|
-
bladeNav: angularportalazure.BladeNav;
|
|
367
|
-
constructor(title?: string, cssClass?: string, bladePath?: string, hrefPath?: string, roles?: string, isVisible?: boolean, callback?: () => any, bladeNav?: angularportalazure.BladeNav);
|
|
366
|
+
bladeNav: angularportalazure.BladeNav | null;
|
|
367
|
+
constructor(title?: string, cssClass?: string, bladePath?: string, hrefPath?: string, roles?: string, isVisible?: boolean, callback?: () => any, bladeNav?: angularportalazure.BladeNav | null);
|
|
368
368
|
onNavItemClick(): void;
|
|
369
369
|
}
|
|
370
370
|
}
|
|
@@ -385,8 +385,8 @@ declare namespace angularportalazure {
|
|
|
385
385
|
Messages: string[];
|
|
386
386
|
Message: string;
|
|
387
387
|
MessageDetail: string;
|
|
388
|
-
Status: number;
|
|
389
|
-
StatusText: string;
|
|
388
|
+
Status: number | undefined;
|
|
389
|
+
StatusText: string | undefined;
|
|
390
390
|
Url: string;
|
|
391
391
|
processException(response: angular.IHttpPromiseCallbackArg<any>): void;
|
|
392
392
|
convertFromWebApiException(ex: angularportalazure.IExceptionDotNet): void;
|
package/apn.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="angular" />
|
|
2
|
+
"use strict";
|
|
2
3
|
var angularportalazure;
|
|
3
4
|
(function (angularportalazure) {
|
|
4
5
|
/** Define Angular module and its dependencies */
|
|
@@ -18,6 +19,7 @@ var angularportalazure;
|
|
|
18
19
|
});
|
|
19
20
|
})(angularportalazure || (angularportalazure = {}));
|
|
20
21
|
//#region Make sure console.log is working in any case, even IE9
|
|
22
|
+
"use strict";
|
|
21
23
|
//if ($('html').hasClass('k-ie9')) {
|
|
22
24
|
// if (typeof console !== 'object') window.console = <any>{};
|
|
23
25
|
// if (typeof console.log !== 'object') window.console.log = function () { };
|
|
@@ -90,6 +92,7 @@ var angularportalazure;
|
|
|
90
92
|
angularportalazure.Debug = Debug;
|
|
91
93
|
})(angularportalazure || (angularportalazure = {}));
|
|
92
94
|
/// <reference path="debug.ts" />
|
|
95
|
+
"use strict";
|
|
93
96
|
var angularportalazure;
|
|
94
97
|
(function (angularportalazure) {
|
|
95
98
|
var UserAccount = (function () {
|
|
@@ -140,6 +143,7 @@ var angularportalazure;
|
|
|
140
143
|
})(angularportalazure || (angularportalazure = {}));
|
|
141
144
|
/// <reference path="debug.ts" />
|
|
142
145
|
/// <reference path="portalservice.ts" />
|
|
146
|
+
"use strict";
|
|
143
147
|
var angularportalazure;
|
|
144
148
|
(function (angularportalazure) {
|
|
145
149
|
var UserControlBase = (function () {
|
|
@@ -152,6 +156,8 @@ var angularportalazure;
|
|
|
152
156
|
}());
|
|
153
157
|
angularportalazure.UserControlBase = UserControlBase;
|
|
154
158
|
})(angularportalazure || (angularportalazure = {}));
|
|
159
|
+
"use strict";
|
|
160
|
+
"use strict";
|
|
155
161
|
var __extends = (this && this.__extends) || function (d, b) {
|
|
156
162
|
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
|
157
163
|
function __() { this.constructor = d; }
|
|
@@ -467,6 +473,7 @@ var angularportalazure;
|
|
|
467
473
|
/// <reference path="usercontrolbase.ts" />
|
|
468
474
|
/// <reference path="portalservice.ts" />
|
|
469
475
|
/// <reference path="iaddbladeeventargs.ts" />
|
|
476
|
+
"use strict";
|
|
470
477
|
var angularportalazure;
|
|
471
478
|
(function (angularportalazure) {
|
|
472
479
|
var BladeArea = (function (_super) {
|
|
@@ -679,10 +686,12 @@ var angularportalazure;
|
|
|
679
686
|
})();
|
|
680
687
|
//#endregion
|
|
681
688
|
})(angularportalazure || (angularportalazure = {}));
|
|
689
|
+
"use strict";
|
|
682
690
|
/// <reference path="debug.ts" />
|
|
683
691
|
/// <reference path="portalservice.ts" />
|
|
684
692
|
/// <reference path="useraccount.ts" />
|
|
685
693
|
/// <reference path="usercontrolbase.ts" />
|
|
694
|
+
"use strict";
|
|
686
695
|
var angularportalazure;
|
|
687
696
|
(function (angularportalazure) {
|
|
688
697
|
var AvatarMenu = (function (_super) {
|
|
@@ -695,6 +704,7 @@ var angularportalazure;
|
|
|
695
704
|
}(angularportalazure.UserControlBase));
|
|
696
705
|
angularportalazure.AvatarMenu = AvatarMenu;
|
|
697
706
|
})(angularportalazure || (angularportalazure = {}));
|
|
707
|
+
"use strict";
|
|
698
708
|
var angularportalazure;
|
|
699
709
|
(function (angularportalazure) {
|
|
700
710
|
/** The names are used in CSS for layouting, e.g. style='mini' */
|
|
@@ -708,6 +718,7 @@ var angularportalazure;
|
|
|
708
718
|
})(angularportalazure || (angularportalazure = {}));
|
|
709
719
|
/// <reference path="debug.ts" />
|
|
710
720
|
/// <reference path="tilesizes.ts" />
|
|
721
|
+
"use strict";
|
|
711
722
|
var angularportalazure;
|
|
712
723
|
(function (angularportalazure) {
|
|
713
724
|
var TileSize = (function () {
|
|
@@ -735,6 +746,7 @@ var angularportalazure;
|
|
|
735
746
|
/// <reference path="debug.ts" />
|
|
736
747
|
/// <reference path="portalservice.ts" />
|
|
737
748
|
/// <reference path="tilesize.ts" />
|
|
749
|
+
"use strict";
|
|
738
750
|
var angularportalazure;
|
|
739
751
|
(function (angularportalazure) {
|
|
740
752
|
var Tile = (function () {
|
|
@@ -770,6 +782,7 @@ var angularportalazure;
|
|
|
770
782
|
/// <reference path="tile.ts" />
|
|
771
783
|
/// <reference path="tilesize.ts" />
|
|
772
784
|
/// <reference path="tilesizes.ts" />
|
|
785
|
+
"use strict";
|
|
773
786
|
var angularportalazure;
|
|
774
787
|
(function (angularportalazure) {
|
|
775
788
|
var Tiles = (function () {
|
|
@@ -811,6 +824,7 @@ var angularportalazure;
|
|
|
811
824
|
/// <reference path="portalservice.ts" />
|
|
812
825
|
/// <reference path="tiles.ts" />
|
|
813
826
|
/// <reference path="usercontrolbase.ts" />
|
|
827
|
+
"use strict";
|
|
814
828
|
var angularportalazure;
|
|
815
829
|
(function (angularportalazure) {
|
|
816
830
|
var Startboard = (function (_super) {
|
|
@@ -830,6 +844,7 @@ var angularportalazure;
|
|
|
830
844
|
/// <reference path="startboard.ts" />
|
|
831
845
|
/// <reference path="portalservice.ts" />
|
|
832
846
|
/// <reference path="usercontrolbase.ts" />
|
|
847
|
+
"use strict";
|
|
833
848
|
var angularportalazure;
|
|
834
849
|
(function (angularportalazure) {
|
|
835
850
|
var Panorama = (function (_super) {
|
|
@@ -855,6 +870,7 @@ var angularportalazure;
|
|
|
855
870
|
/// <reference path="panorama.ts" />
|
|
856
871
|
/// <reference path="portalservice.ts" />
|
|
857
872
|
/// <reference path="tiles.ts" />
|
|
873
|
+
"use strict";
|
|
858
874
|
var angularportalazure;
|
|
859
875
|
(function (angularportalazure) {
|
|
860
876
|
var PortalShell = (function (_super) {
|
|
@@ -905,6 +921,7 @@ var angularportalazure;
|
|
|
905
921
|
/// <reference path="bladeparameter.ts" />
|
|
906
922
|
/// <reference path="panorama.ts" />
|
|
907
923
|
/// <reference path="portalshell.ts" />
|
|
924
|
+
"use strict";
|
|
908
925
|
var angularportalazure;
|
|
909
926
|
(function (angularportalazure) {
|
|
910
927
|
var PortalService = (function () {
|
|
@@ -933,6 +950,7 @@ var angularportalazure;
|
|
|
933
950
|
/// <reference types="angular" />
|
|
934
951
|
/// <reference path="../../domain/debug.ts" />
|
|
935
952
|
/// <reference path="../../domain/portalservice.ts" />
|
|
953
|
+
"use strict";
|
|
936
954
|
var angularportalazure;
|
|
937
955
|
(function (angularportalazure) {
|
|
938
956
|
angularPortalBladeGrid.$inject = ['angularportalazure.portalService'];
|
|
@@ -959,6 +977,7 @@ var angularportalazure;
|
|
|
959
977
|
/// <reference types="angular" />
|
|
960
978
|
/// <reference path="../../domain/debug.ts" />
|
|
961
979
|
/// <reference path="../../domain/portalservice.ts" />
|
|
980
|
+
"use strict";
|
|
962
981
|
var angularportalazure;
|
|
963
982
|
(function (angularportalazure) {
|
|
964
983
|
angularPortalBladeNav.$inject = ['angularportalazure.portalService'];
|
|
@@ -985,6 +1004,7 @@ var angularportalazure;
|
|
|
985
1004
|
/// <reference types="angular" />
|
|
986
1005
|
/// <reference path="../../domain/debug.ts" />
|
|
987
1006
|
/// <reference path="../../domain/portalservice.ts" />
|
|
1007
|
+
"use strict";
|
|
988
1008
|
var angularportalazure;
|
|
989
1009
|
(function (angularportalazure) {
|
|
990
1010
|
//angularPortalBlade.$inject = ['angularportalazure.portalService'];
|
|
@@ -1029,6 +1049,7 @@ var angularportalazure;
|
|
|
1029
1049
|
};
|
|
1030
1050
|
angular.module('angularportalazure').component('angularPortalBlade', angularPortalBlade);
|
|
1031
1051
|
})(angularportalazure || (angularportalazure = {}));
|
|
1052
|
+
"use strict";
|
|
1032
1053
|
var angularportalazure;
|
|
1033
1054
|
(function (angularportalazure) {
|
|
1034
1055
|
//grid.$inject = ['angularportalazure.portalService'];
|
|
@@ -1061,6 +1082,7 @@ var angularportalazure;
|
|
|
1061
1082
|
};
|
|
1062
1083
|
angular.module('angularportalazure').component('grid', grid);
|
|
1063
1084
|
})(angularportalazure || (angularportalazure = {}));
|
|
1085
|
+
"use strict";
|
|
1064
1086
|
var angularportalazure;
|
|
1065
1087
|
(function (angularportalazure) {
|
|
1066
1088
|
//function angularPortalHome() {
|
|
@@ -1084,6 +1106,7 @@ var angularportalazure;
|
|
|
1084
1106
|
};
|
|
1085
1107
|
angular.module('angularportalazure').component('angularPortalHome', angularPortalHome);
|
|
1086
1108
|
})(angularportalazure || (angularportalazure = {}));
|
|
1109
|
+
"use strict";
|
|
1087
1110
|
var angularportalazure;
|
|
1088
1111
|
(function (angularportalazure) {
|
|
1089
1112
|
//nav.$inject = ['angularportalazure.portalService'];
|
|
@@ -1126,6 +1149,7 @@ var angularportalazure;
|
|
|
1126
1149
|
/// <reference path="bladearea.ts" />
|
|
1127
1150
|
/// <reference path="debug.ts" />
|
|
1128
1151
|
/// <reference path="portalservice.ts" />
|
|
1152
|
+
"use strict";
|
|
1129
1153
|
var angularportalazure;
|
|
1130
1154
|
(function (angularportalazure) {
|
|
1131
1155
|
var BladeData = (function (_super) {
|
|
@@ -1143,6 +1167,7 @@ var angularportalazure;
|
|
|
1143
1167
|
/// <reference path="bladedata.ts" />
|
|
1144
1168
|
/// <reference path="debug.ts" />
|
|
1145
1169
|
/// <reference path="portalservice.ts" />
|
|
1170
|
+
"use strict";
|
|
1146
1171
|
var angularportalazure;
|
|
1147
1172
|
(function (angularportalazure) {
|
|
1148
1173
|
var BladeDetail = (function (_super) {
|
|
@@ -1216,6 +1241,7 @@ var angularportalazure;
|
|
|
1216
1241
|
/// <reference path="bladedata.ts" />
|
|
1217
1242
|
/// <reference path="debug.ts" />
|
|
1218
1243
|
/// <reference path="portalservice.ts" />
|
|
1244
|
+
"use strict";
|
|
1219
1245
|
var angularportalazure;
|
|
1220
1246
|
(function (angularportalazure) {
|
|
1221
1247
|
var BladeGrid = (function (_super) {
|
|
@@ -1339,6 +1365,7 @@ var angularportalazure;
|
|
|
1339
1365
|
})(angularportalazure || (angularportalazure = {}));
|
|
1340
1366
|
/// <reference path="debug.ts" />
|
|
1341
1367
|
/// <reference path="bladenav.ts" />
|
|
1368
|
+
"use strict";
|
|
1342
1369
|
var angularportalazure;
|
|
1343
1370
|
(function (angularportalazure) {
|
|
1344
1371
|
var BladeNavItem = (function () {
|
|
@@ -1376,6 +1403,7 @@ var angularportalazure;
|
|
|
1376
1403
|
/// <reference path="debug.ts" />
|
|
1377
1404
|
/// <reference path="bladenavitem.ts" />
|
|
1378
1405
|
/// <reference path="portalservice.ts" />
|
|
1406
|
+
"use strict";
|
|
1379
1407
|
var angularportalazure;
|
|
1380
1408
|
(function (angularportalazure) {
|
|
1381
1409
|
var BladeNav = (function (_super) {
|
|
@@ -1406,6 +1434,7 @@ var angularportalazure;
|
|
|
1406
1434
|
angularportalazure.BladeNav = BladeNav;
|
|
1407
1435
|
})(angularportalazure || (angularportalazure = {}));
|
|
1408
1436
|
/// <reference path="debug.ts" />
|
|
1437
|
+
"use strict";
|
|
1409
1438
|
var angularportalazure;
|
|
1410
1439
|
(function (angularportalazure) {
|
|
1411
1440
|
var Exception = (function () {
|
|
@@ -1459,6 +1488,7 @@ var angularportalazure;
|
|
|
1459
1488
|
angularportalazure.Exception = Exception;
|
|
1460
1489
|
})(angularportalazure || (angularportalazure = {}));
|
|
1461
1490
|
/// <reference path="debug.ts" />
|
|
1491
|
+
"use strict";
|
|
1462
1492
|
var angularportalazure;
|
|
1463
1493
|
(function (angularportalazure) {
|
|
1464
1494
|
var IExceptionDotNet = (function () {
|
|
@@ -1469,6 +1499,7 @@ var angularportalazure;
|
|
|
1469
1499
|
angularportalazure.IExceptionDotNet = IExceptionDotNet;
|
|
1470
1500
|
})(angularportalazure || (angularportalazure = {}));
|
|
1471
1501
|
/// <reference types="angular" />
|
|
1502
|
+
"use strict";
|
|
1472
1503
|
var angularportalazure;
|
|
1473
1504
|
(function (angularportalazure) {
|
|
1474
1505
|
var DataService = (function () {
|
package/css/apn.css
CHANGED
|
@@ -78,7 +78,7 @@ a {
|
|
|
78
78
|
min-width: 450px; }
|
|
79
79
|
|
|
80
80
|
.fxs-panorama .fxs-panorama-homearea .fxs-panorama-title {
|
|
81
|
-
font-family:
|
|
81
|
+
font-family: "Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
82
82
|
font-weight: 400;
|
|
83
83
|
font-size: 40px;
|
|
84
84
|
line-height: 54px;
|
|
@@ -104,7 +104,7 @@ a {
|
|
|
104
104
|
|
|
105
105
|
.fxs-avatarmenu .fxs-avatarmenu-header {
|
|
106
106
|
position: relative;
|
|
107
|
-
font-family:
|
|
107
|
+
font-family: "Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
108
108
|
font-weight: 400;
|
|
109
109
|
height: 35px;
|
|
110
110
|
color: #fff;
|
|
@@ -144,7 +144,7 @@ a {
|
|
|
144
144
|
-ms-text-overflow: ellipsis;
|
|
145
145
|
-o-text-overflow: ellipsis;
|
|
146
146
|
text-overflow: ellipsis;
|
|
147
|
-
font-family:
|
|
147
|
+
font-family: "Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
148
148
|
font-weight: 400;
|
|
149
149
|
font-size: 10px;
|
|
150
150
|
text-transform: uppercase;
|
|
@@ -254,14 +254,14 @@ a {
|
|
|
254
254
|
top: -4px; }
|
|
255
255
|
|
|
256
256
|
.fxs-part .fxs-part-title h2 {
|
|
257
|
-
font-family:
|
|
257
|
+
font-family: "Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
258
258
|
font-weight: 400;
|
|
259
259
|
font-size: 14px;
|
|
260
260
|
line-height: 17px;
|
|
261
261
|
color: #32383f; }
|
|
262
262
|
|
|
263
263
|
.fxs-part .fxs-part-title h3 {
|
|
264
|
-
font-family:
|
|
264
|
+
font-family: "Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
265
265
|
font-weight: 400;
|
|
266
266
|
font-size: 10px;
|
|
267
267
|
line-height: 10px;
|
|
@@ -278,9 +278,9 @@ a {
|
|
|
278
278
|
text-overflow: ellipsis; }
|
|
279
279
|
|
|
280
280
|
.fxs-part .fxs-part-content {
|
|
281
|
-
font-family:
|
|
281
|
+
font-family: "Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
282
282
|
font-weight: 400;
|
|
283
|
-
font-size: 12px
|
|
283
|
+
/*font-size: 12px;*/
|
|
284
284
|
line-height: 18px;
|
|
285
285
|
color: #464f59;
|
|
286
286
|
/*line-height: normal;*/
|
|
@@ -376,7 +376,7 @@ a {
|
|
|
376
376
|
|
|
377
377
|
.fxs-blade .fxs-blade-statusbar, .fxs-blade .fxs-blade-loading-status {
|
|
378
378
|
padding: 5px 0 5px 25px;
|
|
379
|
-
font-family:
|
|
379
|
+
font-family: "Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
380
380
|
font-weight: 400;
|
|
381
381
|
font-size: 10px;
|
|
382
382
|
line-height: 10px;
|
|
@@ -437,7 +437,7 @@ a {
|
|
|
437
437
|
|
|
438
438
|
.fxs-blade .fxs-blade-header .fxs-blade-title h2 {
|
|
439
439
|
margin: 0;
|
|
440
|
-
font-family:
|
|
440
|
+
font-family: "Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
441
441
|
font-weight: 400;
|
|
442
442
|
font-size: 20px;
|
|
443
443
|
line-height: 28px;
|
|
@@ -451,7 +451,7 @@ a {
|
|
|
451
451
|
|
|
452
452
|
.fxs-blade .fxs-blade-header .fxs-blade-title h3 {
|
|
453
453
|
margin: 3px 0 2px 0;
|
|
454
|
-
font-family:
|
|
454
|
+
font-family: "Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
455
455
|
font-weight: 400;
|
|
456
456
|
font-size: 10px;
|
|
457
457
|
line-height: 10px;
|
|
@@ -499,7 +499,7 @@ a {
|
|
|
499
499
|
left: 0; }
|
|
500
500
|
|
|
501
501
|
.fxs-commandBar .fxs-commandBar-item {
|
|
502
|
-
font-family:
|
|
502
|
+
font-family: "Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
503
503
|
font-weight: 400;
|
|
504
504
|
font-size: 10px;
|
|
505
505
|
line-height: 10px;
|
|
@@ -585,7 +585,7 @@ a {
|
|
|
585
585
|
overflow: hidden;
|
|
586
586
|
text-overflow: ellipsis;
|
|
587
587
|
margin: 0;
|
|
588
|
-
font-family:
|
|
588
|
+
font-family: "Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
589
589
|
font-weight: 400;
|
|
590
590
|
font-size: 14px;
|
|
591
591
|
line-height: 32px;
|
|
@@ -636,7 +636,7 @@ a {
|
|
|
636
636
|
height: 29px; }
|
|
637
637
|
|
|
638
638
|
.fxs-part .fxs-part-title h3 {
|
|
639
|
-
font-family:
|
|
639
|
+
font-family: "Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
640
640
|
font-weight: 400;
|
|
641
641
|
font-size: 10px;
|
|
642
642
|
line-height: 10px;
|
|
@@ -646,7 +646,7 @@ a {
|
|
|
646
646
|
|
|
647
647
|
.azc-grid {
|
|
648
648
|
position: relative;
|
|
649
|
-
font-size: 12px
|
|
649
|
+
/*font-size: 12px;*/ }
|
|
650
650
|
|
|
651
651
|
.azc-grid:focus {
|
|
652
652
|
outline: none !important; }
|
|
@@ -664,9 +664,9 @@ a {
|
|
|
664
664
|
overflow-y: visible; }
|
|
665
665
|
|
|
666
666
|
.fxs-part .fxs-part-content {
|
|
667
|
-
font-family:
|
|
667
|
+
font-family: "Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;
|
|
668
668
|
font-weight: 400;
|
|
669
|
-
font-size: 12px
|
|
669
|
+
/*font-size: 12px;*/
|
|
670
670
|
line-height: 18px;
|
|
671
671
|
color: #464f59;
|
|
672
672
|
line-height: normal;
|
|
@@ -693,13 +693,13 @@ a {
|
|
|
693
693
|
padding-left: 0px; }
|
|
694
694
|
|
|
695
695
|
.azc-grid table thead tr th {
|
|
696
|
-
/*font-family:
|
|
696
|
+
/*font-family: "Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;*/
|
|
697
697
|
text-transform: uppercase;
|
|
698
698
|
/*text-align: left;*/
|
|
699
699
|
/*font-size: 10px;*/
|
|
700
700
|
/*padding: 0;*/
|
|
701
701
|
/*height: 40px;*/
|
|
702
|
-
/*font-family:
|
|
702
|
+
/*font-family: "Segoe UI Bold","Segoe WP Bold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;*/
|
|
703
703
|
/*font-weight: 800;*/
|
|
704
704
|
/* IW CHANGED FROM 400 to 800, since Segoe Bold not working!? */ }
|
|
705
705
|
|
package/css/apn.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";html,body{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;height:100%;width:0;}a{color:#00bcf2;text-decoration:none;}.ng-scope{height:100%;}.fxs-portal{overflow:hidden;position:fixed;top:0;left:0;right:0;bottom:0;}.fxs-portal .fxs-portal-content{height:100%;color:#464f59;overflow-x:auto;overflow-y:hidden;white-space:nowrap;-webkit-transition:margin .2s ease;-moz-transition:margin .2s ease;-o-transition:margin .2s ease;transition:margin .2s ease;}.fxs-portal .fxs-portal-content>*{white-space:normal;}.fxs-panorama{-ms-scroll-chaining:none;}.fxs-panorama-homearea{min-width:600px;}.fxs-panorama .fxs-panorama-homearea{position:relative;padding:0 25px;margin:0 15px 0 25px;}.fxs-panorama .fxs-journey-target{margin-right:85px;}.fxs-panorama .fxs-panorama-homearea,.fxs-panorama .fxs-journey-target{display:inline-block;vertical-align:top;height:100%;}.fxs-panorama .fxs-panorama-homearea>header{margin:20px 0 4px;height:76px;min-width:450px;}.fxs-panorama .fxs-panorama-homearea .fxs-panorama-title{font-family:wf_segoe-ui_light,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:40px;line-height:54px;color:#fff;padding-top:6px;margin:0;}.fxs-panorama .fxs-panorama-homearea .fxs-avatarmenu-target{position:absolute;top:18px;right:5px;max-width:220px;min-width:190px;}.fxs-avatarmenu{position:relative;padding:12px;text-align:right;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}.fxs-avatarmenu .fxs-avatarmenu-header{position:relative;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;height:35px;color:#fff;}.fxs-avatarmenu>a{display:block;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;text-decoration:none;padding:10px;padding-right:54px;}.fxs-avatarmenu>a img{position:absolute;top:10px;right:10px;height:35px;width:32px;border:0;border-left:3px solid #7fba00;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-username{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-size:14px;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-emailaddress{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;text-transform:uppercase;opacity:.9;margin-top:4px;}.fxs-avatarmenu .fxs-avatarmenu-dropdown{display:none;width:100%;background-color:#32383f;border-top:1px solid #3c454f;text-align:left;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul{padding:0;margin:0;list-style-type:none;border-bottom:1px solid #3c454f;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-feedback,.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-switchportal,.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-signout{padding-right:35px;position:relative;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul li a{display:block;font-size:14px;padding:10px 18px 11px;line-height:18px;color:#fff;text-decoration:none;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-icon{width:15px;height:15px;display:inline-block;position:absolute;right:18px;margin-top:2px;}.fxs-panorama .fxs-panorama-homearea .fxs-startboard-target{height:-webkit-calc(100% - 100px);height:calc(100% - 100px);}.fxs-startboard .fxs-startboard-layout{height:100%;overflow-y:hidden;overflow-x:hidden;margin:0 -25px;padding:0 25px;}.fxs-stacklayout-child{height:100%;}.fxs-flowlayout>.fxs-flowlayout-childcontainer{position:relative;-webkit-transition:height .25s linear,width .25s linear 0s;-moz-transition:height .25s linear,width .25s linear 0s;-o-transition:height .25s linear,width .25s linear 0s;transition:height .25s linear,width .25s linear 0s;}.fxs-flowlayout>.fxs-flowlayout-childcontainer>.fxs-flowlayout-element{position:absolute;}.fxs-tilesize-herowide.fxs-tile{height:355px;width:535px;}.fxs-tilesize-normal.fxs-tile{height:175px;width:175px;}.fxs-tilesize-mini.fxs-tile{height:85px;width:85px;}.fxs-tile{height:175px;width:175px;-webkit-transition:height .125s linear .125s,width .125s linear 0s;-moz-transition:height .125s linear .125s,width .125s linear 0s;-o-transition:height .125s linear .125s,width .125s linear 0s;transition:height .125s linear .125s,width .125s linear 0s;background-color:#fff;position:relative;}.fxs-part{width:100%;height:100%;position:relative;box-shadow:inset 1px 0 #dcdfe2;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;padding:15px 15px 15px 15px;box-shadow:inset 1px 0 #dcdfe2;}.fxs-part .fxs-part-title{height:49px;position:relative;top:-4px;}.fxs-part .fxs-part-title h2{font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:17px;color:#32383f;}.fxs-part .fxs-part-title h3{font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.fxs-part .fxs-part-title h2,.fxs-part .fxs-part-title h3{margin:0;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-part .fxs-part-content{font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:12px;line-height:18px;color:#464f59;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-tile div.fxs-tile-overlay{display:none;position:absolute;width:100%;top:0;bottom:0;cursor:pointer;}.fxs-journey{height:100%;}.fxs-journey>.fxs-journey-layout{height:100%;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child{-webkit-transition:padding-top .2s ease,opacity .2s ease;transition:padding-top .2s ease,opacity .2s ease;}.fxs-stacklayout-horizontal.fxs-stacklayout{overflow:hidden;white-space:nowrap;height:100%;}.fxs-stacklayout-horizontal.fxs-stacklayout>.fxs-stacklayout-child{display:inline-block;vertical-align:top;overflow-y:auto;height:100%;white-space:normal;}.fxs-journey>.fxs-journey-layout>:last-child.fxs-stacklayout-child{padding-right:5px;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child>.fxs-blade{box-shadow:-5px 0 0 rgba(31,35,39,.2),5px 0 0 rgba(31,35,39,.2);}.fxs-journey-layout :first-child.fxs-stacklayout-child .fxs-blade{border-left-color:transparent;border-left-width:0;}.fxs-blade-locked.fxs-blade{background-color:#fff;}.fxs-bladesize-small.fxs-blade{width:315px;}.fxs-blade{border-left-color:rgba(143,156,168,.8);width:585px;position:relative;height:100%;background-color:#f1f2f3;overflow:hidden;-webkit-transition:width .2s ease-out;-moz-transition:width .2s ease-out;-o-transition:width .2s ease-out;transition:width .2s ease-out;border-left-style:solid;border-left-width:2px;}.fxs-blade .fxs-blade-header{padding-bottom:8px;background-color:#3e4045;min-height:117px;}.fxs-blade .fxs-blade-statusbar-wrapper{background-color:#32383f;}.fxs-blade .fxs-blade-statusbar::after{content:" ";}.fxs-blade .fxs-blade-statusbar{-webkit-transition:all .5s,color .5s;-moz-transition:all .5s,color .5s;-o-transition:all .5s,color .5s;transition:all .5s,color .5s;}.fxs-blade .fxs-blade-statusbar,.fxs-blade .fxs-blade-loading-status{padding:5px 0 5px 25px;font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-actions{-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out;float:right;margin-right:22px;height:40px;}.fxs-blade .fxs-blade-header .fxs-blade-actions button{cursor:pointer;border:0;height:21px;width:21px;background-color:transparent;margin-top:4px;margin-left:6px;padding:0;opacity:.3;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out;}.fxs-blade .fxs-blade-header .fxs-blade-actions button img,.fxs-blade .fxs-blade-header .fxs-blade-actions button svg{height:21px;width:21px;}.msportal-fx-svg-placeholder{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-actions button>svg *{fill:#8f9ca8;}.fxs-blade .fxs-blade-header .fxs-blade-actions button svg *{fill:#63707e;}.msportalfx-svg-c01{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-title{padding:0 25px 2px 7px;margin-left:18px;}.fxs-blade .fxs-blade-header .fxs-blade-title h2::after,.fxs-blade .fxs-blade-header .fxs-blade-title h3::after{content:" ";}.fxs-blade .fxs-blade-header .fxs-blade-title h2{margin:0;font-family:wf_segoe-ui_semilight,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:20px;line-height:28px;color:#fff;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-title h3{margin:3px 0 2px 0;font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#758393;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-commandBarContainer{margin:0 20px 0 15px;}.fxs-commandBar{display:none;}.fxs-commandBar-active.fxs-commandBar{display:block;}.fxs-commandBar>ul.fxs-commandBar-itemList{display:block;margin:4px 0 0;padding:0;list-style-type:none;overflow:hidden;height:48px;-webkit-transition:height .175s ease-in;-moz-transition:height .175s ease-in;-o-transition:height .175s ease-in;transition:height .175s ease-in;}.fxs-commandBar>ul.fxs-commandBar-itemList>li{border-right-color:#6c737a;float:left;margin-bottom:5px;border-right:1px solid transparent;}.fxs-commandBar .fxs-commandBar-form{display:block;position:absolute;z-index:200;width:100%;left:0;}.fxs-commandBar .fxs-commandBar-item{font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;display:block;position:relative;padding:3px 10px 0;width:90px;height:48px;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .07s ease-in;transition:background-color .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-text{height:22px;-webkit-transition:opacity .07s ease-in;transition:opacity .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon{position:absolute;bottom:2px;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>svg,.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>img{height:18px;width:18px;}.fxs-commandBar .fxs-commandBar-item-expandList.fxs-commandBar-item::after{content:"…";position:absolute;bottom:9px;left:40px;font-size:23px;line-height:23px;}.fxs-commandBar .fxs-commandBar-item:hover{background-color:#1f2327;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-bladesize-small.fxs-blade .fxs-blade-stacklayout{width:265px;}.fxs-blade .fxs-blade-content>div{height:100%;}.fxs-bladesize-medium.fxs-blade{width:585px;}.fxs-bladesize-medium.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-maximized-content{display:none;}.fxs-stacklayout-vertical.fxs-stacklayout>.fxs-stacklayout-child{display:block;}.fxs-lens{position:relative;height:100%;padding-bottom:25px;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-lens .fxs-lens-title{color:#3d4045;}.fxs-lens>.fxs-lens-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;font-family:wf_segoe-ui_light,"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:32px;color:#3d4045;}.fxs-lens>.fxs-lens-layout{height:100%;}:last-child.fxs-tilesize-herowidefitheight.fxs-tile,:last-child.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:0;}.fxs-tilesize-herowidefitheight.fxs-tile,.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:5px;}.fxs-tilesize-fullwidthfitheight.fxs-tile{height:auto;width:100%;}.fxs-blade-locked.fxs-blade .fxs-part,.fxs-bladestyle-context.fxs-blade .fxs-part,.fxs-bladestyle-contextaction.fxs-blade .fxs-part,.fxs-bladestyle-help.fxs-blade .fxs-part{box-shadow:none;}.fxs-blade-locked.fxs-blade .fxs-part{padding:0 0 15px 0;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-lens>.fxs-lens-drag-handle{position:absolute;z-index:52;top:-12px;left:-25px;bottom:12px;width:25px;background-color:#e9e9f3;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;}.fxs-blade-locked.fxs-blade .fxs-part .fxs-part-title{height:29px;}.fxs-part .fxs-part-title h3{font-family:wf_segoe-ui_semibold,"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.azc-grid{position:relative;font-size:12px;}.azc-grid:focus{outline:none !important;}.azc-grid table{width:100%;border:0;background-color:transparent;table-layout:fixed;border-spacing:0;border-collapse:collapse;}.azc-grid .azc-grid-container{overflow-x:auto;overflow-y:visible;}.fxs-part .fxs-part-content{font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:12px;line-height:18px;color:#464f59;line-height:normal;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.azc-control table{border-collapse:collapse;table-layout:fixed;}.azc-grid table caption{display:none;}.azc-grid-headerHidden .azc-grid table thead{display:none;}.azc-grid table thead tr th.azc-grid-unsortablecolumnheader{cursor:default;}.azc-grid table th:first-child{padding-left:0;}.azc-grid table thead tr th{text-transform:uppercase;}.azc-grid table thead tr th>a{padding:1px 0 1px 10px;}.azc-grid table thead tr th a{line-height:38px;display:block;text-decoration:none;color:inherit;position:relative;}a{color:#00bcf2;text-decoration:none;}.azc-grid table thead tr th a span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-grid table thead tr th>a .azc-grid-headerlabel{display:block;}.azc-grid-activateableRow table tbody tr[data-grid-row-activated='true'][aria-selected='true']{background-color:#c6edfa !important;}.azc-grid-selectableRow table tbody tr[aria-selected='true'] td{color:inherit !important;}.azc-grid table th:first-child a,.azc-grid table td:first-of-type{padding-left:7px;}.azc-grid table tbody:last-child tr:last-child td{border-bottom:1px solid #dcdfe2;}.azc-grid table tbody tr td{color:#3d3d3d;padding:1px 0 1px 10px;height:33px;border-top:1px solid #dcdfe2;border-bottom:1px solid #dcdfe2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-control svg{overflow:hidden;}.msportalfx-gridcolumn-asseticon img,.msportalfx-gridcolumn-asseticon svg{margin-top:4px;height:21px;width:21px;}.msportalfx-svg-c04{fill:#7a7a7a;}.msportalfx-svg-c20{fill:#68217a;}.msportalfx-svg-c01{fill:#fff;}body{background-color:#2e80ab;background-image:linear-gradient(to bottom,#2e80ab 0%,#61b7da 100%);background-repeat:no-repeat;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:small;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;-ms-scrollbar-track-color:#dcdfe2;}a{color:#00bcf2;text-decoration:none;}img,a img,:link img,:visited img{border:0;}input.ng-invalid{border:1px solid #f00;}.collapsed{visibility:collapse;width:0;min-width:0;}
|
|
1
|
+
@charset "UTF-8";html,body{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;height:100%;width:0;}a{color:#00bcf2;text-decoration:none;}.ng-scope{height:100%;}.fxs-portal{overflow:hidden;position:fixed;top:0;left:0;right:0;bottom:0;}.fxs-portal .fxs-portal-content{height:100%;color:#464f59;overflow-x:auto;overflow-y:hidden;white-space:nowrap;-webkit-transition:margin .2s ease;-moz-transition:margin .2s ease;-o-transition:margin .2s ease;transition:margin .2s ease;}.fxs-portal .fxs-portal-content>*{white-space:normal;}.fxs-panorama{-ms-scroll-chaining:none;}.fxs-panorama-homearea{min-width:600px;}.fxs-panorama .fxs-panorama-homearea{position:relative;padding:0 25px;margin:0 15px 0 25px;}.fxs-panorama .fxs-journey-target{margin-right:85px;}.fxs-panorama .fxs-panorama-homearea,.fxs-panorama .fxs-journey-target{display:inline-block;vertical-align:top;height:100%;}.fxs-panorama .fxs-panorama-homearea>header{margin:20px 0 4px;height:76px;min-width:450px;}.fxs-panorama .fxs-panorama-homearea .fxs-panorama-title{font-family:"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{height:49px;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>:last-child.fxs-stacklayout-child{padding-right:5px;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child>.fxs-blade{box-shadow:-5px 0 0 rgba(31,35,39,.2),5px 0 0 rgba(31,35,39,.2);}.fxs-journey-layout :first-child.fxs-stacklayout-child .fxs-blade{border-left-color:transparent;border-left-width:0;}.fxs-blade-locked.fxs-blade{background-color:#fff;}.fxs-bladesize-small.fxs-blade{width:315px;}.fxs-blade{border-left-color:rgba(143,156,168,.8);width:585px;position:relative;height:100%;background-color:#f1f2f3;overflow:hidden;-webkit-transition:width .2s ease-out;-moz-transition:width .2s ease-out;-o-transition:width .2s ease-out;transition:width .2s ease-out;border-left-style:solid;border-left-width:2px;}.fxs-blade .fxs-blade-header{padding-bottom:8px;background-color:#3e4045;min-height:117px;}.fxs-blade .fxs-blade-statusbar-wrapper{background-color:#32383f;}.fxs-blade .fxs-blade-statusbar::after{content:" ";}.fxs-blade .fxs-blade-statusbar{-webkit-transition:all .5s,color .5s;-moz-transition:all .5s,color .5s;-o-transition:all .5s,color .5s;transition:all .5s,color .5s;}.fxs-blade .fxs-blade-statusbar,.fxs-blade .fxs-blade-loading-status{padding:5px 0 5px 25px;font-family:"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%;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:auto;width:100%;}.fxs-blade-locked.fxs-blade .fxs-part,.fxs-bladestyle-context.fxs-blade .fxs-part,.fxs-bladestyle-contextaction.fxs-blade .fxs-part,.fxs-bladestyle-help.fxs-blade .fxs-part{box-shadow:none;}.fxs-blade-locked.fxs-blade .fxs-part{padding:0 0 15px 0;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-lens>.fxs-lens-drag-handle{position:absolute;z-index:52;top:-12px;left:-25px;bottom:12px;width:25px;background-color:#e9e9f3;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;}.fxs-blade-locked.fxs-blade .fxs-part .fxs-part-title{height:29px;}.fxs-part .fxs-part-title h3{font-family:"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 th:first-child a,.azc-grid table td:first-of-type{padding-left:7px;}.azc-grid table tbody:last-child tr:last-child td{border-bottom:1px solid #dcdfe2;}.azc-grid table tbody tr td{color:#3d3d3d;padding:1px 0 1px 10px;height:33px;border-top:1px solid #dcdfe2;border-bottom:1px solid #dcdfe2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-control svg{overflow:hidden;}.msportalfx-gridcolumn-asseticon img,.msportalfx-gridcolumn-asseticon svg{margin-top:4px;height:21px;width:21px;}.msportalfx-svg-c04{fill:#7a7a7a;}.msportalfx-svg-c20{fill:#68217a;}.msportalfx-svg-c01{fill:#fff;}body{background-color:#2e80ab;background-image:linear-gradient(to bottom,#2e80ab 0%,#61b7da 100%);background-repeat:no-repeat;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:small;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;-ms-scrollbar-track-color:#dcdfe2;}a{color:#00bcf2;text-decoration:none;}img,a img,:link img,:visited img{border:0;}input.ng-invalid{border:1px solid #f00;}.collapsed{visibility:collapse;width:0;min-width:0;}
|
|
@@ -11,7 +11,7 @@ namespace angularportalazure {
|
|
|
11
11
|
scope: {},
|
|
12
12
|
bindToController: { vm: '=' },
|
|
13
13
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
14
|
-
link: function (scope, element, attrs, controller) { },
|
|
14
|
+
link: function (scope: angular.IScope, element, attrs, controller) { },
|
|
15
15
|
controller: function () {
|
|
16
16
|
this.$onInit = function () {
|
|
17
17
|
this.close = function () {
|
|
@@ -11,7 +11,7 @@ namespace angularportalazure {
|
|
|
11
11
|
scope: {},
|
|
12
12
|
bindToController: { vm: '=' },
|
|
13
13
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
14
|
-
link: function (scope, element, attrs, controller) { },
|
|
14
|
+
link: function (scope:angular.IScope, element, attrs, controller) { },
|
|
15
15
|
controller: function () {
|
|
16
16
|
this.$onInit = function () {
|
|
17
17
|
this.close = function () {
|
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.135",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|