iguazio.dashboard-controls 0.38.8 → 0.38.10-patch2
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/dist/i18n/en/common.json +1 -0
- package/dist/i18n/en/functions.json +2 -1
- package/dist/js/iguazio.dashboard-controls.js +2702 -2694
- package/dist/less/iguazio.dashboard-controls.less +495 -495
- package/package.json +87 -87
- package/src/i18n/en/common.json +1 -0
- package/src/i18n/en/functions.json +2 -1
- package/src/igz_controls/components/default-dropdown/default-dropdown.component.js +32 -23
- package/src/igz_controls/components/default-dropdown/default-dropdown.tpl.html +1 -2
- package/src/nuclio/common/screens/create-function/function-from-template/function-from-template.component.js +6 -10
- package/src/nuclio/common/screens/create-function/function-from-template/function-from-template.less +2 -2
- package/src/nuclio/common/screens/create-function/function-from-template/function-from-template.tpl.html +1 -1
- package/src/nuclio/functions/functions.component.js +4 -3
- package/src/nuclio/functions/functions.service.js +2 -2
- package/src/nuclio/functions/version/version.component.js +2 -1
|
@@ -3636,6 +3636,149 @@ ncl-functions {
|
|
|
3636
3636
|
}
|
|
3637
3637
|
}
|
|
3638
3638
|
|
|
3639
|
+
/**
|
|
3640
|
+
UI.Layout CSS
|
|
3641
|
+
*************************************/
|
|
3642
|
+
.stretch {
|
|
3643
|
+
position: absolute;
|
|
3644
|
+
top: 0;
|
|
3645
|
+
left: 0;
|
|
3646
|
+
right: 0;
|
|
3647
|
+
bottom: 0;
|
|
3648
|
+
/* Can be changed by hand ;)*/
|
|
3649
|
+
overflow: auto;
|
|
3650
|
+
}
|
|
3651
|
+
|
|
3652
|
+
.animate-row, .animate-column {
|
|
3653
|
+
-webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3654
|
+
-moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3655
|
+
-ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3656
|
+
-o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3657
|
+
transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3658
|
+
}
|
|
3659
|
+
|
|
3660
|
+
.ui-splitbar {
|
|
3661
|
+
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
|
|
3662
|
+
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
|
|
3663
|
+
display: -ms-flexbox; /* TWEENER - IE 10 */
|
|
3664
|
+
display: -webkit-flex; /* NEW - Chrome */
|
|
3665
|
+
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
|
|
3666
|
+
-webkit-justify-content: center;
|
|
3667
|
+
justify-content: center;
|
|
3668
|
+
|
|
3669
|
+
background-color: #ffffff;
|
|
3670
|
+
right: auto;
|
|
3671
|
+
position: absolute;
|
|
3672
|
+
z-index: 1;
|
|
3673
|
+
}
|
|
3674
|
+
|
|
3675
|
+
.ui-layout-row > .ui-splitbar {
|
|
3676
|
+
height: 8px;
|
|
3677
|
+
width: 100%;
|
|
3678
|
+
cursor: row-resize;
|
|
3679
|
+
text-align: center;
|
|
3680
|
+
justify-content: center;
|
|
3681
|
+
align-items: center;
|
|
3682
|
+
background: linear-gradient(to bottom, #fff 0%, #eee 100%);
|
|
3683
|
+
overflow-y: hidden;
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3686
|
+
.ui-layout-column > .ui-splitbar {
|
|
3687
|
+
width: 8px;
|
|
3688
|
+
height: 100%;
|
|
3689
|
+
cursor: col-resize;
|
|
3690
|
+
-webkit-flex-direction: column;
|
|
3691
|
+
flex-direction: column;
|
|
3692
|
+
background: linear-gradient(to right, #fff 0%, #eee 100%);
|
|
3693
|
+
overflow-x: hidden;
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3696
|
+
.ui-layout-column > .ui-splitbar > a,
|
|
3697
|
+
.ui-layout-row > .ui-splitbar > a {
|
|
3698
|
+
cursor: pointer;
|
|
3699
|
+
text-align: center;
|
|
3700
|
+
font-size: 16px;
|
|
3701
|
+
color: #aaa;
|
|
3702
|
+
}
|
|
3703
|
+
|
|
3704
|
+
.ui-layout-column > .ui-splitbar > a:nth-child(2) {
|
|
3705
|
+
margin-top: 0.35rem;
|
|
3706
|
+
}
|
|
3707
|
+
|
|
3708
|
+
.ui-layout-row > .ui-splitbar > a:nth-child(2) {
|
|
3709
|
+
margin-left: 0.35rem;
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3712
|
+
|
|
3713
|
+
/**
|
|
3714
|
+
* Icons
|
|
3715
|
+
**/
|
|
3716
|
+
|
|
3717
|
+
.ui-splitbar-icon {
|
|
3718
|
+
width: 0;
|
|
3719
|
+
height: 0;
|
|
3720
|
+
display: inline-block;
|
|
3721
|
+
}
|
|
3722
|
+
|
|
3723
|
+
.ui-splitbar-icon-up {
|
|
3724
|
+
border-left: 0.45em solid transparent;
|
|
3725
|
+
border-right: 0.45em solid transparent;
|
|
3726
|
+
border-bottom: 0.45em solid;
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3729
|
+
.ui-splitbar-icon-down {
|
|
3730
|
+
border-left: 0.45em solid transparent;
|
|
3731
|
+
border-right: 0.45em solid transparent;
|
|
3732
|
+
border-top: 0.45em solid;
|
|
3733
|
+
margin-right: 0.45em;
|
|
3734
|
+
}
|
|
3735
|
+
|
|
3736
|
+
.ui-splitbar-icon-right {
|
|
3737
|
+
border-top: 0.45em solid transparent;
|
|
3738
|
+
border-bottom: 0.45em solid transparent;
|
|
3739
|
+
border-left: 0.45em solid;
|
|
3740
|
+
|
|
3741
|
+
}
|
|
3742
|
+
|
|
3743
|
+
.ui-splitbar-icon-left {
|
|
3744
|
+
border-top: 0.45em solid transparent;
|
|
3745
|
+
border-bottom: 0.45em solid transparent;
|
|
3746
|
+
border-right: 0.45em solid;
|
|
3747
|
+
margin-top: 0.45em;
|
|
3748
|
+
}
|
|
3749
|
+
|
|
3750
|
+
/* Allow disabling of icons */
|
|
3751
|
+
.no-toggle .ui-splitbar-icon {
|
|
3752
|
+
display: none;
|
|
3753
|
+
}
|
|
3754
|
+
|
|
3755
|
+
@media only screen and (max-device-width: 480px) {
|
|
3756
|
+
.no-mobile-toggle .ui-splitbar-icon {
|
|
3757
|
+
display: none;
|
|
3758
|
+
}
|
|
3759
|
+
}
|
|
3760
|
+
|
|
3761
|
+
@media print {
|
|
3762
|
+
.ui-splitbar {
|
|
3763
|
+
display: none;
|
|
3764
|
+
}
|
|
3765
|
+
|
|
3766
|
+
.stretch {
|
|
3767
|
+
position: relative;
|
|
3768
|
+
}
|
|
3769
|
+
|
|
3770
|
+
/* The last item can take up any amount of space. */
|
|
3771
|
+
.stretch.ui-layout-container:last-child {
|
|
3772
|
+
position: static;
|
|
3773
|
+
overflow: visible;
|
|
3774
|
+
}
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
/* Make sure hidden elements are in fact not rendered. */
|
|
3778
|
+
.ui-layout-hidden {
|
|
3779
|
+
display: none;
|
|
3780
|
+
}
|
|
3781
|
+
|
|
3639
3782
|
/*
|
|
3640
3783
|
== malihu jquery custom scrollbar plugin ==
|
|
3641
3784
|
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
|
|
@@ -5358,191 +5501,65 @@ yx-axis
|
|
|
5358
5501
|
|
|
5359
5502
|
/* ---------------------------------------- */
|
|
5360
5503
|
|
|
5361
|
-
|
|
5362
|
-
|
|
5363
|
-
*************************************/
|
|
5364
|
-
.stretch {
|
|
5365
|
-
position: absolute;
|
|
5366
|
-
top: 0;
|
|
5367
|
-
left: 0;
|
|
5368
|
-
right: 0;
|
|
5369
|
-
bottom: 0;
|
|
5370
|
-
/* Can be changed by hand ;)*/
|
|
5371
|
-
overflow: auto;
|
|
5372
|
-
}
|
|
5504
|
+
.action-checkbox {
|
|
5505
|
+
.action-checkbox-color-set();
|
|
5373
5506
|
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
-moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5377
|
-
-ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5378
|
-
-o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5379
|
-
transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5380
|
-
}
|
|
5507
|
+
line-height: 16px;
|
|
5508
|
+
text-align: center;
|
|
5381
5509
|
|
|
5382
|
-
.
|
|
5383
|
-
|
|
5384
|
-
|
|
5385
|
-
|
|
5386
|
-
|
|
5387
|
-
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
|
|
5388
|
-
-webkit-justify-content: center;
|
|
5389
|
-
justify-content: center;
|
|
5510
|
+
.check-item {
|
|
5511
|
+
font-size: 16px;
|
|
5512
|
+
cursor: pointer;
|
|
5513
|
+
line-height: 1;
|
|
5514
|
+
vertical-align: middle;
|
|
5390
5515
|
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
z-index: 1;
|
|
5395
|
-
}
|
|
5516
|
+
&.igz-icon-checkbox-unchecked {
|
|
5517
|
+
color: @icon-checkbox-unchecked;
|
|
5518
|
+
}
|
|
5396
5519
|
|
|
5397
|
-
|
|
5398
|
-
|
|
5399
|
-
|
|
5400
|
-
|
|
5401
|
-
text-align: center;
|
|
5402
|
-
justify-content: center;
|
|
5403
|
-
align-items: center;
|
|
5404
|
-
background: linear-gradient(to bottom, #fff 0%, #eee 100%);
|
|
5405
|
-
overflow-y: hidden;
|
|
5520
|
+
&.igz-icon-checkbox-checked {
|
|
5521
|
+
color: @icon-checkbox-checked;
|
|
5522
|
+
}
|
|
5523
|
+
}
|
|
5406
5524
|
}
|
|
5525
|
+
.action-checkbox-all {
|
|
5526
|
+
.action-checkbox-all-color-set();
|
|
5407
5527
|
|
|
5408
|
-
|
|
5409
|
-
width: 8px;
|
|
5410
|
-
height: 100%;
|
|
5411
|
-
cursor: col-resize;
|
|
5412
|
-
-webkit-flex-direction: column;
|
|
5413
|
-
flex-direction: column;
|
|
5414
|
-
background: linear-gradient(to right, #fff 0%, #eee 100%);
|
|
5415
|
-
overflow-x: hidden;
|
|
5416
|
-
}
|
|
5528
|
+
text-align: center;
|
|
5417
5529
|
|
|
5418
|
-
.
|
|
5419
|
-
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5423
|
-
|
|
5424
|
-
}
|
|
5530
|
+
.check-item {
|
|
5531
|
+
cursor: pointer;
|
|
5532
|
+
color: @check-item-color;
|
|
5533
|
+
font-size: 16px;
|
|
5534
|
+
line-height: 1;
|
|
5535
|
+
vertical-align: middle;
|
|
5425
5536
|
|
|
5426
|
-
|
|
5427
|
-
|
|
5537
|
+
&.igz-icon-checkbox-checked {
|
|
5538
|
+
color: @check-item-icon-checkbox-checked-color;
|
|
5539
|
+
}
|
|
5540
|
+
}
|
|
5428
5541
|
}
|
|
5542
|
+
.igz-action-menu {
|
|
5543
|
+
.action-menu-color-set();
|
|
5544
|
+
.action-icon-color-set();
|
|
5429
5545
|
|
|
5430
|
-
|
|
5431
|
-
|
|
5432
|
-
}
|
|
5546
|
+
opacity: 1;
|
|
5547
|
+
position: relative;
|
|
5433
5548
|
|
|
5549
|
+
.menu-button {
|
|
5550
|
+
color: @menu-btn-color;
|
|
5551
|
+
cursor: pointer;
|
|
5552
|
+
font-size: 18px;
|
|
5553
|
+
height: 19px;
|
|
5554
|
+
text-align: center;
|
|
5555
|
+
transition: @igz-basic-transition-color;
|
|
5556
|
+
width: 30px;
|
|
5434
5557
|
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
5439
|
-
|
|
5440
|
-
width: 0;
|
|
5441
|
-
height: 0;
|
|
5442
|
-
display: inline-block;
|
|
5443
|
-
}
|
|
5444
|
-
|
|
5445
|
-
.ui-splitbar-icon-up {
|
|
5446
|
-
border-left: 0.45em solid transparent;
|
|
5447
|
-
border-right: 0.45em solid transparent;
|
|
5448
|
-
border-bottom: 0.45em solid;
|
|
5449
|
-
}
|
|
5450
|
-
|
|
5451
|
-
.ui-splitbar-icon-down {
|
|
5452
|
-
border-left: 0.45em solid transparent;
|
|
5453
|
-
border-right: 0.45em solid transparent;
|
|
5454
|
-
border-top: 0.45em solid;
|
|
5455
|
-
margin-right: 0.45em;
|
|
5456
|
-
}
|
|
5457
|
-
|
|
5458
|
-
.ui-splitbar-icon-right {
|
|
5459
|
-
border-top: 0.45em solid transparent;
|
|
5460
|
-
border-bottom: 0.45em solid transparent;
|
|
5461
|
-
border-left: 0.45em solid;
|
|
5462
|
-
|
|
5463
|
-
}
|
|
5464
|
-
|
|
5465
|
-
.ui-splitbar-icon-left {
|
|
5466
|
-
border-top: 0.45em solid transparent;
|
|
5467
|
-
border-bottom: 0.45em solid transparent;
|
|
5468
|
-
border-right: 0.45em solid;
|
|
5469
|
-
margin-top: 0.45em;
|
|
5470
|
-
}
|
|
5471
|
-
|
|
5472
|
-
/* Allow disabling of icons */
|
|
5473
|
-
.no-toggle .ui-splitbar-icon {
|
|
5474
|
-
display: none;
|
|
5475
|
-
}
|
|
5476
|
-
|
|
5477
|
-
@media only screen and (max-device-width: 480px) {
|
|
5478
|
-
.no-mobile-toggle .ui-splitbar-icon {
|
|
5479
|
-
display: none;
|
|
5480
|
-
}
|
|
5481
|
-
}
|
|
5482
|
-
|
|
5483
|
-
@media print {
|
|
5484
|
-
.ui-splitbar {
|
|
5485
|
-
display: none;
|
|
5486
|
-
}
|
|
5487
|
-
|
|
5488
|
-
.stretch {
|
|
5489
|
-
position: relative;
|
|
5490
|
-
}
|
|
5491
|
-
|
|
5492
|
-
/* The last item can take up any amount of space. */
|
|
5493
|
-
.stretch.ui-layout-container:last-child {
|
|
5494
|
-
position: static;
|
|
5495
|
-
overflow: visible;
|
|
5496
|
-
}
|
|
5497
|
-
}
|
|
5498
|
-
|
|
5499
|
-
/* Make sure hidden elements are in fact not rendered. */
|
|
5500
|
-
.ui-layout-hidden {
|
|
5501
|
-
display: none;
|
|
5502
|
-
}
|
|
5503
|
-
|
|
5504
|
-
.action-checkbox {
|
|
5505
|
-
.action-checkbox-color-set();
|
|
5506
|
-
|
|
5507
|
-
line-height: 16px;
|
|
5508
|
-
text-align: center;
|
|
5509
|
-
|
|
5510
|
-
.check-item {
|
|
5511
|
-
font-size: 16px;
|
|
5512
|
-
cursor: pointer;
|
|
5513
|
-
line-height: 1;
|
|
5514
|
-
vertical-align: middle;
|
|
5515
|
-
|
|
5516
|
-
&.igz-icon-checkbox-unchecked {
|
|
5517
|
-
color: @icon-checkbox-unchecked;
|
|
5518
|
-
}
|
|
5519
|
-
|
|
5520
|
-
&.igz-icon-checkbox-checked {
|
|
5521
|
-
color: @icon-checkbox-checked;
|
|
5522
|
-
}
|
|
5523
|
-
}
|
|
5524
|
-
}
|
|
5525
|
-
.igz-action-menu {
|
|
5526
|
-
.action-menu-color-set();
|
|
5527
|
-
.action-icon-color-set();
|
|
5528
|
-
|
|
5529
|
-
opacity: 1;
|
|
5530
|
-
position: relative;
|
|
5531
|
-
|
|
5532
|
-
.menu-button {
|
|
5533
|
-
color: @menu-btn-color;
|
|
5534
|
-
cursor: pointer;
|
|
5535
|
-
font-size: 18px;
|
|
5536
|
-
height: 19px;
|
|
5537
|
-
text-align: center;
|
|
5538
|
-
transition: @igz-basic-transition-color;
|
|
5539
|
-
width: 30px;
|
|
5540
|
-
|
|
5541
|
-
&.active,
|
|
5542
|
-
&:hover {
|
|
5543
|
-
color: @menu-btn-active-hover-color;
|
|
5544
|
-
}
|
|
5545
|
-
}
|
|
5558
|
+
&.active,
|
|
5559
|
+
&:hover {
|
|
5560
|
+
color: @menu-btn-active-hover-color;
|
|
5561
|
+
}
|
|
5562
|
+
}
|
|
5546
5563
|
|
|
5547
5564
|
.menu-dropdown {
|
|
5548
5565
|
visibility: hidden;
|
|
@@ -5890,23 +5907,6 @@ yx-axis
|
|
|
5890
5907
|
}
|
|
5891
5908
|
}
|
|
5892
5909
|
|
|
5893
|
-
.action-checkbox-all {
|
|
5894
|
-
.action-checkbox-all-color-set();
|
|
5895
|
-
|
|
5896
|
-
text-align: center;
|
|
5897
|
-
|
|
5898
|
-
.check-item {
|
|
5899
|
-
cursor: pointer;
|
|
5900
|
-
color: @check-item-color;
|
|
5901
|
-
font-size: 16px;
|
|
5902
|
-
line-height: 1;
|
|
5903
|
-
vertical-align: middle;
|
|
5904
|
-
|
|
5905
|
-
&.igz-icon-checkbox-checked {
|
|
5906
|
-
color: @check-item-icon-checkbox-checked-color;
|
|
5907
|
-
}
|
|
5908
|
-
}
|
|
5909
|
-
}
|
|
5910
5910
|
.auto-complete-wrapper {
|
|
5911
5911
|
.auto-complete-color-set();
|
|
5912
5912
|
|
|
@@ -6872,45 +6872,6 @@ yx-axis
|
|
|
6872
6872
|
}
|
|
6873
6873
|
}
|
|
6874
6874
|
|
|
6875
|
-
.igz-navigation-tabs {
|
|
6876
|
-
.navigation-tabs-color-set();
|
|
6877
|
-
|
|
6878
|
-
background-color: @navigation-tabs-bg-color;
|
|
6879
|
-
height: 56px;
|
|
6880
|
-
padding-top: 7px;
|
|
6881
|
-
|
|
6882
|
-
.navigation-tab {
|
|
6883
|
-
float: left;
|
|
6884
|
-
height: 32px;
|
|
6885
|
-
padding: 15px 24px 0;
|
|
6886
|
-
font-family: @font-family-sans-serif;
|
|
6887
|
-
color: @navigation-tab-color;
|
|
6888
|
-
font-size: 14px;
|
|
6889
|
-
text-align: center;
|
|
6890
|
-
cursor: pointer;
|
|
6891
|
-
border-bottom: @navigation-tab-border-bottom;
|
|
6892
|
-
box-sizing: content-box;
|
|
6893
|
-
|
|
6894
|
-
&.active, &.active:hover {
|
|
6895
|
-
background-color: @navigation-tab-active-hover-bg-color;
|
|
6896
|
-
color: @navigation-tab-active-hover-color;
|
|
6897
|
-
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
6898
|
-
}
|
|
6899
|
-
|
|
6900
|
-
&:hover {
|
|
6901
|
-
background-color: @navigation-tab-hover-bg-color;
|
|
6902
|
-
}
|
|
6903
|
-
|
|
6904
|
-
&.active {
|
|
6905
|
-
background-color: @navigation-tab-active-bg-color;
|
|
6906
|
-
}
|
|
6907
|
-
|
|
6908
|
-
@media screen and (max-width: 940px) {
|
|
6909
|
-
padding: 15px 12px 0;
|
|
6910
|
-
}
|
|
6911
|
-
}
|
|
6912
|
-
}
|
|
6913
|
-
|
|
6914
6875
|
.igz-number-input {
|
|
6915
6876
|
.number-input-color-set();
|
|
6916
6877
|
|
|
@@ -7064,6 +7025,45 @@ yx-axis
|
|
|
7064
7025
|
}
|
|
7065
7026
|
}
|
|
7066
7027
|
|
|
7028
|
+
.igz-navigation-tabs {
|
|
7029
|
+
.navigation-tabs-color-set();
|
|
7030
|
+
|
|
7031
|
+
background-color: @navigation-tabs-bg-color;
|
|
7032
|
+
height: 56px;
|
|
7033
|
+
padding-top: 7px;
|
|
7034
|
+
|
|
7035
|
+
.navigation-tab {
|
|
7036
|
+
float: left;
|
|
7037
|
+
height: 32px;
|
|
7038
|
+
padding: 15px 24px 0;
|
|
7039
|
+
font-family: @font-family-sans-serif;
|
|
7040
|
+
color: @navigation-tab-color;
|
|
7041
|
+
font-size: 14px;
|
|
7042
|
+
text-align: center;
|
|
7043
|
+
cursor: pointer;
|
|
7044
|
+
border-bottom: @navigation-tab-border-bottom;
|
|
7045
|
+
box-sizing: content-box;
|
|
7046
|
+
|
|
7047
|
+
&.active, &.active:hover {
|
|
7048
|
+
background-color: @navigation-tab-active-hover-bg-color;
|
|
7049
|
+
color: @navigation-tab-active-hover-color;
|
|
7050
|
+
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
7051
|
+
}
|
|
7052
|
+
|
|
7053
|
+
&:hover {
|
|
7054
|
+
background-color: @navigation-tab-hover-bg-color;
|
|
7055
|
+
}
|
|
7056
|
+
|
|
7057
|
+
&.active {
|
|
7058
|
+
background-color: @navigation-tab-active-bg-color;
|
|
7059
|
+
}
|
|
7060
|
+
|
|
7061
|
+
@media screen and (max-width: 940px) {
|
|
7062
|
+
padding: 15px 12px 0;
|
|
7063
|
+
}
|
|
7064
|
+
}
|
|
7065
|
+
}
|
|
7066
|
+
|
|
7067
7067
|
.igz-pagination {
|
|
7068
7068
|
.pagination-color-set();
|
|
7069
7069
|
|
|
@@ -8963,21 +8963,6 @@ body {
|
|
|
8963
8963
|
}
|
|
8964
8964
|
}
|
|
8965
8965
|
|
|
8966
|
-
.override-function-dialog {
|
|
8967
|
-
.sub-title {
|
|
8968
|
-
font-size: 16px;
|
|
8969
|
-
color: @silver-chalice-two;
|
|
8970
|
-
}
|
|
8971
|
-
|
|
8972
|
-
.buttons {
|
|
8973
|
-
display: flex;
|
|
8974
|
-
|
|
8975
|
-
.function-redirect-button {
|
|
8976
|
-
margin-right: auto;
|
|
8977
|
-
}
|
|
8978
|
-
}
|
|
8979
|
-
}
|
|
8980
|
-
|
|
8981
8966
|
.ncl-edit-version {
|
|
8982
8967
|
background: #f2f2f6;
|
|
8983
8968
|
position: relative;
|
|
@@ -9236,96 +9221,39 @@ body {
|
|
|
9236
9221
|
}
|
|
9237
9222
|
}
|
|
9238
9223
|
|
|
9239
|
-
|
|
9240
|
-
.
|
|
9241
|
-
|
|
9224
|
+
.override-function-dialog {
|
|
9225
|
+
.sub-title {
|
|
9226
|
+
font-size: 16px;
|
|
9227
|
+
color: @silver-chalice-two;
|
|
9228
|
+
}
|
|
9242
9229
|
|
|
9243
|
-
|
|
9230
|
+
.buttons {
|
|
9231
|
+
display: flex;
|
|
9232
|
+
|
|
9233
|
+
.function-redirect-button {
|
|
9234
|
+
margin-right: auto;
|
|
9235
|
+
}
|
|
9236
|
+
}
|
|
9244
9237
|
}
|
|
9245
9238
|
|
|
9246
|
-
.igz-info-page-
|
|
9247
|
-
.info-page-
|
|
9239
|
+
.igz-info-page-content-wrapper {
|
|
9240
|
+
.info-page-content-color-set();
|
|
9248
9241
|
|
|
9249
|
-
background-color: @info-page-actions-bar-bg-color;
|
|
9250
9242
|
position: absolute;
|
|
9251
|
-
top:
|
|
9243
|
+
top: 56px;
|
|
9252
9244
|
right: 0;
|
|
9245
|
+
bottom: 0;
|
|
9253
9246
|
left: 0;
|
|
9254
|
-
|
|
9255
|
-
padding: 8px 20px 8px 16px;
|
|
9256
|
-
border-bottom: @info-page-actions-bar-border-bottom;
|
|
9247
|
+
padding-top: 0;
|
|
9257
9248
|
transition: @igz-basic-transition;
|
|
9249
|
+
background-color: @page-content-bg-color;
|
|
9258
9250
|
|
|
9259
9251
|
&.upper-pane-opened {
|
|
9260
|
-
top:
|
|
9252
|
+
top: 216px;
|
|
9261
9253
|
}
|
|
9262
9254
|
|
|
9263
9255
|
&.filters-opened {
|
|
9264
|
-
right:
|
|
9265
|
-
padding-right: 8px;
|
|
9266
|
-
}
|
|
9267
|
-
|
|
9268
|
-
&.info-pane-opened {
|
|
9269
|
-
right: 379px;
|
|
9270
|
-
padding-right: 8px;
|
|
9271
|
-
}
|
|
9272
|
-
|
|
9273
|
-
.actions-bar-left {
|
|
9274
|
-
float: left;
|
|
9275
|
-
height: 100%;
|
|
9276
|
-
}
|
|
9277
|
-
|
|
9278
|
-
.actions-bar-right {
|
|
9279
|
-
float: right;
|
|
9280
|
-
height: 100%;
|
|
9281
|
-
text-align: right;
|
|
9282
|
-
}
|
|
9283
|
-
|
|
9284
|
-
&:before, &:after {
|
|
9285
|
-
content: " ";
|
|
9286
|
-
display: table;
|
|
9287
|
-
}
|
|
9288
|
-
&:after {
|
|
9289
|
-
clear: both;
|
|
9290
|
-
}
|
|
9291
|
-
|
|
9292
|
-
.actions-panes-block {
|
|
9293
|
-
padding-left: 16px;
|
|
9294
|
-
border-left: @actions-panes-block-border-left;
|
|
9295
|
-
}
|
|
9296
|
-
|
|
9297
|
-
.actions-content-block {
|
|
9298
|
-
margin: 0 8px 0 32px;
|
|
9299
|
-
}
|
|
9300
|
-
|
|
9301
|
-
.actions-buttons-block {
|
|
9302
|
-
margin-left: 16px;
|
|
9303
|
-
margin-top: 1px;
|
|
9304
|
-
|
|
9305
|
-
[class^="igz-button"]:not(:first-child), [class*="igz-button"]:not(:first-child) {
|
|
9306
|
-
margin-left: 8px;
|
|
9307
|
-
}
|
|
9308
|
-
}
|
|
9309
|
-
}
|
|
9310
|
-
|
|
9311
|
-
.igz-info-page-content-wrapper {
|
|
9312
|
-
.info-page-content-color-set();
|
|
9313
|
-
|
|
9314
|
-
position: absolute;
|
|
9315
|
-
top: 56px;
|
|
9316
|
-
right: 0;
|
|
9317
|
-
bottom: 0;
|
|
9318
|
-
left: 0;
|
|
9319
|
-
padding-top: 0;
|
|
9320
|
-
transition: @igz-basic-transition;
|
|
9321
|
-
background-color: @page-content-bg-color;
|
|
9322
|
-
|
|
9323
|
-
&.upper-pane-opened {
|
|
9324
|
-
top: 216px;
|
|
9325
|
-
}
|
|
9326
|
-
|
|
9327
|
-
&.filters-opened {
|
|
9328
|
-
right: 377px;
|
|
9256
|
+
right: 377px;
|
|
9329
9257
|
}
|
|
9330
9258
|
|
|
9331
9259
|
&.info-pane-opened {
|
|
@@ -9430,6 +9358,78 @@ igz-info-page-content {
|
|
|
9430
9358
|
}
|
|
9431
9359
|
|
|
9432
9360
|
|
|
9361
|
+
// Style rules for actions bar
|
|
9362
|
+
.border-top > .igz-info-page-actions-bar {
|
|
9363
|
+
.info-page-actions-bar-color-set();
|
|
9364
|
+
|
|
9365
|
+
border-top: @info-page-actions-bar-border-top;
|
|
9366
|
+
}
|
|
9367
|
+
|
|
9368
|
+
.igz-info-page-actions-bar {
|
|
9369
|
+
.info-page-actions-bar-color-set();
|
|
9370
|
+
|
|
9371
|
+
background-color: @info-page-actions-bar-bg-color;
|
|
9372
|
+
position: absolute;
|
|
9373
|
+
top: 0;
|
|
9374
|
+
right: 0;
|
|
9375
|
+
left: 0;
|
|
9376
|
+
height: 56px;
|
|
9377
|
+
padding: 8px 20px 8px 16px;
|
|
9378
|
+
border-bottom: @info-page-actions-bar-border-bottom;
|
|
9379
|
+
transition: @igz-basic-transition;
|
|
9380
|
+
|
|
9381
|
+
&.upper-pane-opened {
|
|
9382
|
+
top: 150px;
|
|
9383
|
+
}
|
|
9384
|
+
|
|
9385
|
+
&.filters-opened {
|
|
9386
|
+
right: 376px;
|
|
9387
|
+
padding-right: 8px;
|
|
9388
|
+
}
|
|
9389
|
+
|
|
9390
|
+
&.info-pane-opened {
|
|
9391
|
+
right: 379px;
|
|
9392
|
+
padding-right: 8px;
|
|
9393
|
+
}
|
|
9394
|
+
|
|
9395
|
+
.actions-bar-left {
|
|
9396
|
+
float: left;
|
|
9397
|
+
height: 100%;
|
|
9398
|
+
}
|
|
9399
|
+
|
|
9400
|
+
.actions-bar-right {
|
|
9401
|
+
float: right;
|
|
9402
|
+
height: 100%;
|
|
9403
|
+
text-align: right;
|
|
9404
|
+
}
|
|
9405
|
+
|
|
9406
|
+
&:before, &:after {
|
|
9407
|
+
content: " ";
|
|
9408
|
+
display: table;
|
|
9409
|
+
}
|
|
9410
|
+
&:after {
|
|
9411
|
+
clear: both;
|
|
9412
|
+
}
|
|
9413
|
+
|
|
9414
|
+
.actions-panes-block {
|
|
9415
|
+
padding-left: 16px;
|
|
9416
|
+
border-left: @actions-panes-block-border-left;
|
|
9417
|
+
}
|
|
9418
|
+
|
|
9419
|
+
.actions-content-block {
|
|
9420
|
+
margin: 0 8px 0 32px;
|
|
9421
|
+
}
|
|
9422
|
+
|
|
9423
|
+
.actions-buttons-block {
|
|
9424
|
+
margin-left: 16px;
|
|
9425
|
+
margin-top: 1px;
|
|
9426
|
+
|
|
9427
|
+
[class^="igz-button"]:not(:first-child), [class*="igz-button"]:not(:first-child) {
|
|
9428
|
+
margin-left: 8px;
|
|
9429
|
+
}
|
|
9430
|
+
}
|
|
9431
|
+
}
|
|
9432
|
+
|
|
9433
9433
|
.info-page-filters-bookmark {
|
|
9434
9434
|
.info-page-filters-color-set();
|
|
9435
9435
|
|
|
@@ -10100,24 +10100,106 @@ ncl-breadcrumbs {
|
|
|
10100
10100
|
}
|
|
10101
10101
|
}
|
|
10102
10102
|
}
|
|
10103
|
-
.
|
|
10104
|
-
|
|
10105
|
-
|
|
10106
|
-
|
|
10107
|
-
|
|
10103
|
+
.ncl-edit-item {
|
|
10104
|
+
width: 100%;
|
|
10105
|
+
padding: 6px 0;
|
|
10106
|
+
|
|
10107
|
+
.title-field-row {
|
|
10108
|
+
display: flex;
|
|
10109
|
+
|
|
10110
|
+
.name-field {
|
|
10111
|
+
margin-right: 14px;
|
|
10112
|
+
width: 178px;
|
|
10113
|
+
|
|
10114
|
+
.error {
|
|
10115
|
+
color: @darkish-pink;
|
|
10116
|
+
font-size: 12px;
|
|
10117
|
+
white-space: nowrap;
|
|
10108
10118
|
}
|
|
10119
|
+
}
|
|
10109
10120
|
|
|
10110
|
-
|
|
10111
|
-
|
|
10121
|
+
.class-field {
|
|
10122
|
+
margin-right: 14px;
|
|
10123
|
+
width: 154px;
|
|
10124
|
+
|
|
10125
|
+
.default-dropdown {
|
|
10126
|
+
.default-dropdown-container {
|
|
10127
|
+
position: relative;
|
|
10128
|
+
}
|
|
10129
|
+
}
|
|
10130
|
+
|
|
10131
|
+
.error {
|
|
10132
|
+
color: @darkish-pink;
|
|
10133
|
+
font-size: 12px;
|
|
10134
|
+
white-space: nowrap;
|
|
10112
10135
|
}
|
|
10113
10136
|
}
|
|
10114
10137
|
|
|
10115
|
-
|
|
10116
|
-
|
|
10117
|
-
|
|
10138
|
+
&:last-child {
|
|
10139
|
+
padding-bottom: 0;
|
|
10140
|
+
}
|
|
10141
|
+
|
|
10142
|
+
.tooltip-wrapper {
|
|
10143
|
+
.more-info-wrapper {
|
|
10144
|
+
padding-left: 0;
|
|
10145
|
+
}
|
|
10146
|
+
}
|
|
10147
|
+
}
|
|
10148
|
+
|
|
10149
|
+
.attribute-field {
|
|
10150
|
+
margin-right: 1%;
|
|
10151
|
+
padding: 8px 0 6px;
|
|
10152
|
+
|
|
10153
|
+
.field-label {
|
|
10154
|
+
height: 22px;
|
|
10155
|
+
}
|
|
10156
|
+
|
|
10157
|
+
&.attribute-field-checkbox {
|
|
10158
|
+
padding: 35px 0 19px;
|
|
10159
|
+
}
|
|
10160
|
+
|
|
10161
|
+
.more-info-wrapper {
|
|
10162
|
+
height: auto;
|
|
10163
|
+
}
|
|
10164
|
+
}
|
|
10165
|
+
|
|
10166
|
+
.no-class-selected {
|
|
10167
|
+
line-height: 48px;
|
|
10168
|
+
.duskThree(0.64);
|
|
10169
|
+
color: @color;
|
|
10170
|
+
}
|
|
10171
|
+
|
|
10172
|
+
.ingresses-wrapper {
|
|
10173
|
+
.ingresses-table-headers {
|
|
10174
|
+
width: calc(100% - 30px);
|
|
10175
|
+
|
|
10176
|
+
.host-header {
|
|
10177
|
+
width: 38%;
|
|
10178
|
+
padding-left: 16px;
|
|
10179
|
+
}
|
|
10180
|
+
|
|
10181
|
+
.paths-header, .secret-header{
|
|
10182
|
+
width: 31%;
|
|
10183
|
+
padding-left: 16px;
|
|
10184
|
+
}
|
|
10185
|
+
}
|
|
10186
|
+
}
|
|
10187
|
+
|
|
10188
|
+
.advanced-section {
|
|
10189
|
+
.collapsed-block-title {
|
|
10190
|
+
font-size: 15px;
|
|
10191
|
+
font-weight: bold;
|
|
10192
|
+
margin: 15px 0;
|
|
10193
|
+
|
|
10194
|
+
.icon-collapsed {
|
|
10195
|
+
color: .duskThree(0.64)[@color];
|
|
10196
|
+
font-size: 12px;
|
|
10197
|
+
margin: 0 11px 0 4px;
|
|
10198
|
+
}
|
|
10118
10199
|
}
|
|
10119
10200
|
}
|
|
10120
10201
|
}
|
|
10202
|
+
|
|
10121
10203
|
.ncl-key-value-input {
|
|
10122
10204
|
.input-wrapper {
|
|
10123
10205
|
width: 100%;
|
|
@@ -10321,106 +10403,24 @@ ncl-breadcrumbs {
|
|
|
10321
10403
|
}
|
|
10322
10404
|
}
|
|
10323
10405
|
|
|
10324
|
-
.
|
|
10325
|
-
|
|
10326
|
-
|
|
10327
|
-
|
|
10328
|
-
|
|
10329
|
-
display: flex;
|
|
10330
|
-
|
|
10331
|
-
.name-field {
|
|
10332
|
-
margin-right: 14px;
|
|
10333
|
-
width: 178px;
|
|
10334
|
-
|
|
10335
|
-
.error {
|
|
10336
|
-
color: @darkish-pink;
|
|
10337
|
-
font-size: 12px;
|
|
10338
|
-
white-space: nowrap;
|
|
10339
|
-
}
|
|
10340
|
-
}
|
|
10341
|
-
|
|
10342
|
-
.class-field {
|
|
10343
|
-
margin-right: 14px;
|
|
10344
|
-
width: 154px;
|
|
10345
|
-
|
|
10346
|
-
.default-dropdown {
|
|
10347
|
-
.default-dropdown-container {
|
|
10348
|
-
position: relative;
|
|
10349
|
-
}
|
|
10350
|
-
}
|
|
10351
|
-
|
|
10352
|
-
.error {
|
|
10353
|
-
color: @darkish-pink;
|
|
10354
|
-
font-size: 12px;
|
|
10355
|
-
white-space: nowrap;
|
|
10356
|
-
}
|
|
10357
|
-
}
|
|
10358
|
-
|
|
10359
|
-
&:last-child {
|
|
10360
|
-
padding-bottom: 0;
|
|
10361
|
-
}
|
|
10362
|
-
|
|
10363
|
-
.tooltip-wrapper {
|
|
10364
|
-
.more-info-wrapper {
|
|
10365
|
-
padding-left: 0;
|
|
10366
|
-
}
|
|
10367
|
-
}
|
|
10368
|
-
}
|
|
10369
|
-
|
|
10370
|
-
.attribute-field {
|
|
10371
|
-
margin-right: 1%;
|
|
10372
|
-
padding: 8px 0 6px;
|
|
10373
|
-
|
|
10374
|
-
.field-label {
|
|
10375
|
-
height: 22px;
|
|
10376
|
-
}
|
|
10377
|
-
|
|
10378
|
-
&.attribute-field-checkbox {
|
|
10379
|
-
padding: 35px 0 19px;
|
|
10380
|
-
}
|
|
10381
|
-
|
|
10382
|
-
.more-info-wrapper {
|
|
10383
|
-
height: auto;
|
|
10384
|
-
}
|
|
10385
|
-
}
|
|
10386
|
-
|
|
10387
|
-
.no-class-selected {
|
|
10388
|
-
line-height: 48px;
|
|
10389
|
-
.duskThree(0.64);
|
|
10390
|
-
color: @color;
|
|
10391
|
-
}
|
|
10392
|
-
|
|
10393
|
-
.ingresses-wrapper {
|
|
10394
|
-
.ingresses-table-headers {
|
|
10395
|
-
width: calc(100% - 30px);
|
|
10396
|
-
|
|
10397
|
-
.host-header {
|
|
10398
|
-
width: 38%;
|
|
10399
|
-
padding-left: 16px;
|
|
10406
|
+
.view-yaml-dialog-wrapper {
|
|
10407
|
+
.ngdialog-content {
|
|
10408
|
+
.view-yaml-dialog-header {
|
|
10409
|
+
.title {
|
|
10410
|
+
margin-bottom: 10px;
|
|
10400
10411
|
}
|
|
10401
10412
|
|
|
10402
|
-
.
|
|
10403
|
-
width:
|
|
10404
|
-
padding-left: 16px;
|
|
10413
|
+
.copy-to-clipboard {
|
|
10414
|
+
width: 20px;
|
|
10405
10415
|
}
|
|
10406
10416
|
}
|
|
10407
|
-
}
|
|
10408
10417
|
|
|
10409
|
-
|
|
10410
|
-
|
|
10411
|
-
|
|
10412
|
-
font-weight: bold;
|
|
10413
|
-
margin: 15px 0;
|
|
10414
|
-
|
|
10415
|
-
.icon-collapsed {
|
|
10416
|
-
color: .duskThree(0.64)[@color];
|
|
10417
|
-
font-size: 12px;
|
|
10418
|
-
margin: 0 11px 0 4px;
|
|
10419
|
-
}
|
|
10418
|
+
.monaco-editor {
|
|
10419
|
+
min-width: 700px;
|
|
10420
|
+
min-height: 450px;
|
|
10420
10421
|
}
|
|
10421
10422
|
}
|
|
10422
10423
|
}
|
|
10423
|
-
|
|
10424
10424
|
.ncl-monaco {
|
|
10425
10425
|
.ncl-monaco-wrapper {
|
|
10426
10426
|
padding-top: 20px;
|
|
@@ -11554,6 +11554,76 @@ ncl-navigation-tabs {
|
|
|
11554
11554
|
}
|
|
11555
11555
|
}
|
|
11556
11556
|
|
|
11557
|
+
.function-import-wrapper-content {
|
|
11558
|
+
font-family: @font-family-sans-serif;
|
|
11559
|
+
padding-left: 3%;
|
|
11560
|
+
width: 96%;
|
|
11561
|
+
|
|
11562
|
+
.function-import-form {
|
|
11563
|
+
display: flex;
|
|
11564
|
+
align-items: flex-end;
|
|
11565
|
+
margin-bottom: 10px;
|
|
11566
|
+
|
|
11567
|
+
.projects-drop-down {
|
|
11568
|
+
margin-right: 48px;
|
|
11569
|
+
|
|
11570
|
+
.input-label {
|
|
11571
|
+
font-size: 14px;
|
|
11572
|
+
font-weight: 600;
|
|
11573
|
+
color: @dusk-three;
|
|
11574
|
+
}
|
|
11575
|
+
|
|
11576
|
+
igz-default-dropdown {
|
|
11577
|
+
.default-dropdown {
|
|
11578
|
+
background-color: @white;
|
|
11579
|
+
|
|
11580
|
+
.default-dropdown-field {
|
|
11581
|
+
&:focus {
|
|
11582
|
+
background-color: inherit;
|
|
11583
|
+
}
|
|
11584
|
+
}
|
|
11585
|
+
}
|
|
11586
|
+
}
|
|
11587
|
+
}
|
|
11588
|
+
|
|
11589
|
+
.function-import-actions-bar {
|
|
11590
|
+
display: flex;
|
|
11591
|
+
|
|
11592
|
+
.function-import-file-picker {
|
|
11593
|
+
.file-picker-wrapper {
|
|
11594
|
+
margin: 0;
|
|
11595
|
+
line-height: 34px;
|
|
11596
|
+
|
|
11597
|
+
.igz-icon-upload {
|
|
11598
|
+
margin-right: 10px;
|
|
11599
|
+
}
|
|
11600
|
+
}
|
|
11601
|
+
|
|
11602
|
+
.function-import-input {
|
|
11603
|
+
opacity: 0;
|
|
11604
|
+
position: absolute;
|
|
11605
|
+
z-index: -1;
|
|
11606
|
+
}
|
|
11607
|
+
}
|
|
11608
|
+
}
|
|
11609
|
+
}
|
|
11610
|
+
|
|
11611
|
+
.splash-screen {
|
|
11612
|
+
top: 0;
|
|
11613
|
+
}
|
|
11614
|
+
|
|
11615
|
+
.function-import-monaco {
|
|
11616
|
+
.ncl-monaco {
|
|
11617
|
+
height: 370px;
|
|
11618
|
+
width: 100%;
|
|
11619
|
+
|
|
11620
|
+
.monaco-code-editor {
|
|
11621
|
+
height: 100%;
|
|
11622
|
+
}
|
|
11623
|
+
}
|
|
11624
|
+
}
|
|
11625
|
+
}
|
|
11626
|
+
|
|
11557
11627
|
.function-from-template-content {
|
|
11558
11628
|
.ncl-function-from-template-color-set();
|
|
11559
11629
|
|
|
@@ -11653,7 +11723,7 @@ ncl-navigation-tabs {
|
|
|
11653
11723
|
}
|
|
11654
11724
|
|
|
11655
11725
|
.templates-runtime-drop-down {
|
|
11656
|
-
width:
|
|
11726
|
+
width: 25%;
|
|
11657
11727
|
|
|
11658
11728
|
.input-label {
|
|
11659
11729
|
font-size: 14px;
|
|
@@ -11675,7 +11745,7 @@ ncl-navigation-tabs {
|
|
|
11675
11745
|
}
|
|
11676
11746
|
|
|
11677
11747
|
.templates-pagination {
|
|
11678
|
-
min-width:
|
|
11748
|
+
min-width: 255px;
|
|
11679
11749
|
display: flex;
|
|
11680
11750
|
align-items: flex-end;
|
|
11681
11751
|
justify-content: flex-end;
|
|
@@ -11816,76 +11886,6 @@ ncl-navigation-tabs {
|
|
|
11816
11886
|
}
|
|
11817
11887
|
}
|
|
11818
11888
|
|
|
11819
|
-
.function-import-wrapper-content {
|
|
11820
|
-
font-family: @font-family-sans-serif;
|
|
11821
|
-
padding-left: 3%;
|
|
11822
|
-
width: 96%;
|
|
11823
|
-
|
|
11824
|
-
.function-import-form {
|
|
11825
|
-
display: flex;
|
|
11826
|
-
align-items: flex-end;
|
|
11827
|
-
margin-bottom: 10px;
|
|
11828
|
-
|
|
11829
|
-
.projects-drop-down {
|
|
11830
|
-
margin-right: 48px;
|
|
11831
|
-
|
|
11832
|
-
.input-label {
|
|
11833
|
-
font-size: 14px;
|
|
11834
|
-
font-weight: 600;
|
|
11835
|
-
color: @dusk-three;
|
|
11836
|
-
}
|
|
11837
|
-
|
|
11838
|
-
igz-default-dropdown {
|
|
11839
|
-
.default-dropdown {
|
|
11840
|
-
background-color: @white;
|
|
11841
|
-
|
|
11842
|
-
.default-dropdown-field {
|
|
11843
|
-
&:focus {
|
|
11844
|
-
background-color: inherit;
|
|
11845
|
-
}
|
|
11846
|
-
}
|
|
11847
|
-
}
|
|
11848
|
-
}
|
|
11849
|
-
}
|
|
11850
|
-
|
|
11851
|
-
.function-import-actions-bar {
|
|
11852
|
-
display: flex;
|
|
11853
|
-
|
|
11854
|
-
.function-import-file-picker {
|
|
11855
|
-
.file-picker-wrapper {
|
|
11856
|
-
margin: 0;
|
|
11857
|
-
line-height: 34px;
|
|
11858
|
-
|
|
11859
|
-
.igz-icon-upload {
|
|
11860
|
-
margin-right: 10px;
|
|
11861
|
-
}
|
|
11862
|
-
}
|
|
11863
|
-
|
|
11864
|
-
.function-import-input {
|
|
11865
|
-
opacity: 0;
|
|
11866
|
-
position: absolute;
|
|
11867
|
-
z-index: -1;
|
|
11868
|
-
}
|
|
11869
|
-
}
|
|
11870
|
-
}
|
|
11871
|
-
}
|
|
11872
|
-
|
|
11873
|
-
.splash-screen {
|
|
11874
|
-
top: 0;
|
|
11875
|
-
}
|
|
11876
|
-
|
|
11877
|
-
.function-import-monaco {
|
|
11878
|
-
.ncl-monaco {
|
|
11879
|
-
height: 370px;
|
|
11880
|
-
width: 100%;
|
|
11881
|
-
|
|
11882
|
-
.monaco-code-editor {
|
|
11883
|
-
height: 100%;
|
|
11884
|
-
}
|
|
11885
|
-
}
|
|
11886
|
-
}
|
|
11887
|
-
}
|
|
11888
|
-
|
|
11889
11889
|
.test-events-pane-wrapper {
|
|
11890
11890
|
position: absolute;
|
|
11891
11891
|
height: 100%;
|