iguazio.dashboard-controls 1.2.16 → 1.2.18-3.7-1.14
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/images/ic-alert-message.svg +1 -1
- package/dist/images/oops.png +0 -0
- package/dist/images/shape.svg +1 -1
- package/dist/js/iguazio.dashboard-controls.js +3385 -3377
- package/dist/less/iguazio.dashboard-controls.less +687 -687
- package/package.json +2 -2
- package/src/igz_controls/less/tooltips.less +1 -1
- package/src/igz_controls/services/validation.service.js +1 -1
- package/src/igz_controls/services/yaml.service.js +1 -1
- package/src/nuclio/functions/functions.component.js +2 -1
- package/src/nuclio/functions/version/version-code/version-code.component.js +10 -3
|
@@ -3543,7 +3543,7 @@ html input[disabled], html textarea[disabled] {
|
|
|
3543
3543
|
div.highcharts-tooltip {
|
|
3544
3544
|
|
|
3545
3545
|
> span {
|
|
3546
|
-
width: 160px;
|
|
3546
|
+
width: 160px !important;
|
|
3547
3547
|
}
|
|
3548
3548
|
}
|
|
3549
3549
|
}
|
|
@@ -3666,149 +3666,6 @@ ncl-functions {
|
|
|
3666
3666
|
}
|
|
3667
3667
|
}
|
|
3668
3668
|
|
|
3669
|
-
/**
|
|
3670
|
-
UI.Layout CSS
|
|
3671
|
-
*************************************/
|
|
3672
|
-
.stretch {
|
|
3673
|
-
position: absolute;
|
|
3674
|
-
top: 0;
|
|
3675
|
-
left: 0;
|
|
3676
|
-
right: 0;
|
|
3677
|
-
bottom: 0;
|
|
3678
|
-
/* Can be changed by hand ;)*/
|
|
3679
|
-
overflow: auto;
|
|
3680
|
-
}
|
|
3681
|
-
|
|
3682
|
-
.animate-row, .animate-column {
|
|
3683
|
-
-webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3684
|
-
-moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3685
|
-
-ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3686
|
-
-o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3687
|
-
transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3688
|
-
}
|
|
3689
|
-
|
|
3690
|
-
.ui-splitbar {
|
|
3691
|
-
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
|
|
3692
|
-
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
|
|
3693
|
-
display: -ms-flexbox; /* TWEENER - IE 10 */
|
|
3694
|
-
display: -webkit-flex; /* NEW - Chrome */
|
|
3695
|
-
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
|
|
3696
|
-
-webkit-justify-content: center;
|
|
3697
|
-
justify-content: center;
|
|
3698
|
-
|
|
3699
|
-
background-color: #ffffff;
|
|
3700
|
-
right: auto;
|
|
3701
|
-
position: absolute;
|
|
3702
|
-
z-index: 1;
|
|
3703
|
-
}
|
|
3704
|
-
|
|
3705
|
-
.ui-layout-row > .ui-splitbar {
|
|
3706
|
-
height: 8px;
|
|
3707
|
-
width: 100%;
|
|
3708
|
-
cursor: row-resize;
|
|
3709
|
-
text-align: center;
|
|
3710
|
-
justify-content: center;
|
|
3711
|
-
align-items: center;
|
|
3712
|
-
background: linear-gradient(to bottom, #fff 0%, #eee 100%);
|
|
3713
|
-
overflow-y: hidden;
|
|
3714
|
-
}
|
|
3715
|
-
|
|
3716
|
-
.ui-layout-column > .ui-splitbar {
|
|
3717
|
-
width: 8px;
|
|
3718
|
-
height: 100%;
|
|
3719
|
-
cursor: col-resize;
|
|
3720
|
-
-webkit-flex-direction: column;
|
|
3721
|
-
flex-direction: column;
|
|
3722
|
-
background: linear-gradient(to right, #fff 0%, #eee 100%);
|
|
3723
|
-
overflow-x: hidden;
|
|
3724
|
-
}
|
|
3725
|
-
|
|
3726
|
-
.ui-layout-column > .ui-splitbar > a,
|
|
3727
|
-
.ui-layout-row > .ui-splitbar > a {
|
|
3728
|
-
cursor: pointer;
|
|
3729
|
-
text-align: center;
|
|
3730
|
-
font-size: 16px;
|
|
3731
|
-
color: #aaa;
|
|
3732
|
-
}
|
|
3733
|
-
|
|
3734
|
-
.ui-layout-column > .ui-splitbar > a:nth-child(2) {
|
|
3735
|
-
margin-top: 0.35rem;
|
|
3736
|
-
}
|
|
3737
|
-
|
|
3738
|
-
.ui-layout-row > .ui-splitbar > a:nth-child(2) {
|
|
3739
|
-
margin-left: 0.35rem;
|
|
3740
|
-
}
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
/**
|
|
3744
|
-
* Icons
|
|
3745
|
-
**/
|
|
3746
|
-
|
|
3747
|
-
.ui-splitbar-icon {
|
|
3748
|
-
width: 0;
|
|
3749
|
-
height: 0;
|
|
3750
|
-
display: inline-block;
|
|
3751
|
-
}
|
|
3752
|
-
|
|
3753
|
-
.ui-splitbar-icon-up {
|
|
3754
|
-
border-left: 0.45em solid transparent;
|
|
3755
|
-
border-right: 0.45em solid transparent;
|
|
3756
|
-
border-bottom: 0.45em solid;
|
|
3757
|
-
}
|
|
3758
|
-
|
|
3759
|
-
.ui-splitbar-icon-down {
|
|
3760
|
-
border-left: 0.45em solid transparent;
|
|
3761
|
-
border-right: 0.45em solid transparent;
|
|
3762
|
-
border-top: 0.45em solid;
|
|
3763
|
-
margin-right: 0.45em;
|
|
3764
|
-
}
|
|
3765
|
-
|
|
3766
|
-
.ui-splitbar-icon-right {
|
|
3767
|
-
border-top: 0.45em solid transparent;
|
|
3768
|
-
border-bottom: 0.45em solid transparent;
|
|
3769
|
-
border-left: 0.45em solid;
|
|
3770
|
-
|
|
3771
|
-
}
|
|
3772
|
-
|
|
3773
|
-
.ui-splitbar-icon-left {
|
|
3774
|
-
border-top: 0.45em solid transparent;
|
|
3775
|
-
border-bottom: 0.45em solid transparent;
|
|
3776
|
-
border-right: 0.45em solid;
|
|
3777
|
-
margin-top: 0.45em;
|
|
3778
|
-
}
|
|
3779
|
-
|
|
3780
|
-
/* Allow disabling of icons */
|
|
3781
|
-
.no-toggle .ui-splitbar-icon {
|
|
3782
|
-
display: none;
|
|
3783
|
-
}
|
|
3784
|
-
|
|
3785
|
-
@media only screen and (max-device-width: 480px) {
|
|
3786
|
-
.no-mobile-toggle .ui-splitbar-icon {
|
|
3787
|
-
display: none;
|
|
3788
|
-
}
|
|
3789
|
-
}
|
|
3790
|
-
|
|
3791
|
-
@media print {
|
|
3792
|
-
.ui-splitbar {
|
|
3793
|
-
display: none;
|
|
3794
|
-
}
|
|
3795
|
-
|
|
3796
|
-
.stretch {
|
|
3797
|
-
position: relative;
|
|
3798
|
-
}
|
|
3799
|
-
|
|
3800
|
-
/* The last item can take up any amount of space. */
|
|
3801
|
-
.stretch.ui-layout-container:last-child {
|
|
3802
|
-
position: static;
|
|
3803
|
-
overflow: visible;
|
|
3804
|
-
}
|
|
3805
|
-
}
|
|
3806
|
-
|
|
3807
|
-
/* Make sure hidden elements are in fact not rendered. */
|
|
3808
|
-
.ui-layout-hidden {
|
|
3809
|
-
display: none;
|
|
3810
|
-
}
|
|
3811
|
-
|
|
3812
3669
|
/*
|
|
3813
3670
|
== malihu jquery custom scrollbar plugin ==
|
|
3814
3671
|
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
|
|
@@ -5531,67 +5388,210 @@ yx-axis
|
|
|
5531
5388
|
|
|
5532
5389
|
/* ---------------------------------------- */
|
|
5533
5390
|
|
|
5534
|
-
|
|
5535
|
-
|
|
5391
|
+
/**
|
|
5392
|
+
UI.Layout CSS
|
|
5393
|
+
*************************************/
|
|
5394
|
+
.stretch {
|
|
5395
|
+
position: absolute;
|
|
5396
|
+
top: 0;
|
|
5397
|
+
left: 0;
|
|
5398
|
+
right: 0;
|
|
5399
|
+
bottom: 0;
|
|
5400
|
+
/* Can be changed by hand ;)*/
|
|
5401
|
+
overflow: auto;
|
|
5402
|
+
}
|
|
5536
5403
|
|
|
5537
|
-
|
|
5538
|
-
|
|
5404
|
+
.animate-row, .animate-column {
|
|
5405
|
+
-webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5406
|
+
-moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5407
|
+
-ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5408
|
+
-o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5409
|
+
transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5410
|
+
}
|
|
5539
5411
|
|
|
5540
|
-
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5412
|
+
.ui-splitbar {
|
|
5413
|
+
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
|
|
5414
|
+
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
|
|
5415
|
+
display: -ms-flexbox; /* TWEENER - IE 10 */
|
|
5416
|
+
display: -webkit-flex; /* NEW - Chrome */
|
|
5417
|
+
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
|
|
5418
|
+
-webkit-justify-content: center;
|
|
5419
|
+
justify-content: center;
|
|
5545
5420
|
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5421
|
+
background-color: #ffffff;
|
|
5422
|
+
right: auto;
|
|
5423
|
+
position: absolute;
|
|
5424
|
+
z-index: 1;
|
|
5425
|
+
}
|
|
5549
5426
|
|
|
5550
|
-
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
|
|
5427
|
+
.ui-layout-row > .ui-splitbar {
|
|
5428
|
+
height: 8px;
|
|
5429
|
+
width: 100%;
|
|
5430
|
+
cursor: row-resize;
|
|
5431
|
+
text-align: center;
|
|
5432
|
+
justify-content: center;
|
|
5433
|
+
align-items: center;
|
|
5434
|
+
background: linear-gradient(to bottom, #fff 0%, #eee 100%);
|
|
5435
|
+
overflow-y: hidden;
|
|
5554
5436
|
}
|
|
5555
|
-
.action-checkbox-all {
|
|
5556
|
-
.action-checkbox-all-color-set();
|
|
5557
5437
|
|
|
5558
|
-
|
|
5438
|
+
.ui-layout-column > .ui-splitbar {
|
|
5439
|
+
width: 8px;
|
|
5440
|
+
height: 100%;
|
|
5441
|
+
cursor: col-resize;
|
|
5442
|
+
-webkit-flex-direction: column;
|
|
5443
|
+
flex-direction: column;
|
|
5444
|
+
background: linear-gradient(to right, #fff 0%, #eee 100%);
|
|
5445
|
+
overflow-x: hidden;
|
|
5446
|
+
}
|
|
5559
5447
|
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5448
|
+
.ui-layout-column > .ui-splitbar > a,
|
|
5449
|
+
.ui-layout-row > .ui-splitbar > a {
|
|
5450
|
+
cursor: pointer;
|
|
5451
|
+
text-align: center;
|
|
5452
|
+
font-size: 16px;
|
|
5453
|
+
color: #aaa;
|
|
5454
|
+
}
|
|
5566
5455
|
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
}
|
|
5570
|
-
}
|
|
5456
|
+
.ui-layout-column > .ui-splitbar > a:nth-child(2) {
|
|
5457
|
+
margin-top: 0.35rem;
|
|
5571
5458
|
}
|
|
5572
|
-
.igz-action-menu {
|
|
5573
|
-
.action-menu-color-set();
|
|
5574
|
-
.action-icon-color-set();
|
|
5575
5459
|
|
|
5576
|
-
|
|
5577
|
-
|
|
5460
|
+
.ui-layout-row > .ui-splitbar > a:nth-child(2) {
|
|
5461
|
+
margin-left: 0.35rem;
|
|
5462
|
+
}
|
|
5578
5463
|
|
|
5579
|
-
.menu-button {
|
|
5580
|
-
color: @menu-btn-color;
|
|
5581
|
-
cursor: pointer;
|
|
5582
|
-
font-size: 18px;
|
|
5583
|
-
height: 19px;
|
|
5584
|
-
text-align: center;
|
|
5585
|
-
transition: @igz-basic-transition-color;
|
|
5586
|
-
width: 30px;
|
|
5587
5464
|
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
}
|
|
5592
|
-
}
|
|
5465
|
+
/**
|
|
5466
|
+
* Icons
|
|
5467
|
+
**/
|
|
5593
5468
|
|
|
5594
|
-
|
|
5469
|
+
.ui-splitbar-icon {
|
|
5470
|
+
width: 0;
|
|
5471
|
+
height: 0;
|
|
5472
|
+
display: inline-block;
|
|
5473
|
+
}
|
|
5474
|
+
|
|
5475
|
+
.ui-splitbar-icon-up {
|
|
5476
|
+
border-left: 0.45em solid transparent;
|
|
5477
|
+
border-right: 0.45em solid transparent;
|
|
5478
|
+
border-bottom: 0.45em solid;
|
|
5479
|
+
}
|
|
5480
|
+
|
|
5481
|
+
.ui-splitbar-icon-down {
|
|
5482
|
+
border-left: 0.45em solid transparent;
|
|
5483
|
+
border-right: 0.45em solid transparent;
|
|
5484
|
+
border-top: 0.45em solid;
|
|
5485
|
+
margin-right: 0.45em;
|
|
5486
|
+
}
|
|
5487
|
+
|
|
5488
|
+
.ui-splitbar-icon-right {
|
|
5489
|
+
border-top: 0.45em solid transparent;
|
|
5490
|
+
border-bottom: 0.45em solid transparent;
|
|
5491
|
+
border-left: 0.45em solid;
|
|
5492
|
+
|
|
5493
|
+
}
|
|
5494
|
+
|
|
5495
|
+
.ui-splitbar-icon-left {
|
|
5496
|
+
border-top: 0.45em solid transparent;
|
|
5497
|
+
border-bottom: 0.45em solid transparent;
|
|
5498
|
+
border-right: 0.45em solid;
|
|
5499
|
+
margin-top: 0.45em;
|
|
5500
|
+
}
|
|
5501
|
+
|
|
5502
|
+
/* Allow disabling of icons */
|
|
5503
|
+
.no-toggle .ui-splitbar-icon {
|
|
5504
|
+
display: none;
|
|
5505
|
+
}
|
|
5506
|
+
|
|
5507
|
+
@media only screen and (max-device-width: 480px) {
|
|
5508
|
+
.no-mobile-toggle .ui-splitbar-icon {
|
|
5509
|
+
display: none;
|
|
5510
|
+
}
|
|
5511
|
+
}
|
|
5512
|
+
|
|
5513
|
+
@media print {
|
|
5514
|
+
.ui-splitbar {
|
|
5515
|
+
display: none;
|
|
5516
|
+
}
|
|
5517
|
+
|
|
5518
|
+
.stretch {
|
|
5519
|
+
position: relative;
|
|
5520
|
+
}
|
|
5521
|
+
|
|
5522
|
+
/* The last item can take up any amount of space. */
|
|
5523
|
+
.stretch.ui-layout-container:last-child {
|
|
5524
|
+
position: static;
|
|
5525
|
+
overflow: visible;
|
|
5526
|
+
}
|
|
5527
|
+
}
|
|
5528
|
+
|
|
5529
|
+
/* Make sure hidden elements are in fact not rendered. */
|
|
5530
|
+
.ui-layout-hidden {
|
|
5531
|
+
display: none;
|
|
5532
|
+
}
|
|
5533
|
+
|
|
5534
|
+
.action-checkbox {
|
|
5535
|
+
.action-checkbox-color-set();
|
|
5536
|
+
|
|
5537
|
+
line-height: 16px;
|
|
5538
|
+
text-align: center;
|
|
5539
|
+
|
|
5540
|
+
.check-item {
|
|
5541
|
+
font-size: 16px;
|
|
5542
|
+
cursor: pointer;
|
|
5543
|
+
line-height: 1;
|
|
5544
|
+
vertical-align: middle;
|
|
5545
|
+
|
|
5546
|
+
&.igz-icon-checkbox-unchecked {
|
|
5547
|
+
color: @icon-checkbox-unchecked;
|
|
5548
|
+
}
|
|
5549
|
+
|
|
5550
|
+
&.igz-icon-checkbox-checked {
|
|
5551
|
+
color: @icon-checkbox-checked;
|
|
5552
|
+
}
|
|
5553
|
+
}
|
|
5554
|
+
}
|
|
5555
|
+
.action-checkbox-all {
|
|
5556
|
+
.action-checkbox-all-color-set();
|
|
5557
|
+
|
|
5558
|
+
text-align: center;
|
|
5559
|
+
|
|
5560
|
+
.check-item {
|
|
5561
|
+
cursor: pointer;
|
|
5562
|
+
color: @check-item-color;
|
|
5563
|
+
font-size: 16px;
|
|
5564
|
+
line-height: 1;
|
|
5565
|
+
vertical-align: middle;
|
|
5566
|
+
|
|
5567
|
+
&.igz-icon-checkbox-checked {
|
|
5568
|
+
color: @check-item-icon-checkbox-checked-color;
|
|
5569
|
+
}
|
|
5570
|
+
}
|
|
5571
|
+
}
|
|
5572
|
+
.igz-action-menu {
|
|
5573
|
+
.action-menu-color-set();
|
|
5574
|
+
.action-icon-color-set();
|
|
5575
|
+
|
|
5576
|
+
opacity: 1;
|
|
5577
|
+
position: relative;
|
|
5578
|
+
|
|
5579
|
+
.menu-button {
|
|
5580
|
+
color: @menu-btn-color;
|
|
5581
|
+
cursor: pointer;
|
|
5582
|
+
font-size: 18px;
|
|
5583
|
+
height: 19px;
|
|
5584
|
+
text-align: center;
|
|
5585
|
+
transition: @igz-basic-transition-color;
|
|
5586
|
+
width: 30px;
|
|
5587
|
+
|
|
5588
|
+
&.active,
|
|
5589
|
+
&:hover {
|
|
5590
|
+
color: @menu-btn-active-hover-color;
|
|
5591
|
+
}
|
|
5592
|
+
}
|
|
5593
|
+
|
|
5594
|
+
.menu-dropdown {
|
|
5595
5595
|
visibility: hidden;
|
|
5596
5596
|
background-color: @menu-dropdown-bg-color;
|
|
5597
5597
|
border: @menu-dropdown-border;
|
|
@@ -6971,6 +6971,37 @@ yx-axis
|
|
|
6971
6971
|
}
|
|
6972
6972
|
}
|
|
6973
6973
|
|
|
6974
|
+
.control-panel-log-row {
|
|
6975
|
+
.control-panel-log-table-row-color-set();
|
|
6976
|
+
|
|
6977
|
+
.log-entry {
|
|
6978
|
+
.log-entry-time {
|
|
6979
|
+
color: @log-entry-time-color;
|
|
6980
|
+
}
|
|
6981
|
+
|
|
6982
|
+
.log-entry-level-debug {
|
|
6983
|
+
color: @log-entry-level-debug-color;
|
|
6984
|
+
}
|
|
6985
|
+
|
|
6986
|
+
.log-entry-level-info {
|
|
6987
|
+
color: @log-entry-level-info-color;
|
|
6988
|
+
}
|
|
6989
|
+
|
|
6990
|
+
.log-entry-level-warn, .log-entry-level-warning {
|
|
6991
|
+
color: @log-entry-level-warn-color;
|
|
6992
|
+
}
|
|
6993
|
+
|
|
6994
|
+
.log-entry-level-error {
|
|
6995
|
+
color: @log-entry-level-error-color;
|
|
6996
|
+
}
|
|
6997
|
+
|
|
6998
|
+
.log-entry-message {
|
|
6999
|
+
line-break: anywhere;
|
|
7000
|
+
font-weight: 600;
|
|
7001
|
+
}
|
|
7002
|
+
}
|
|
7003
|
+
}
|
|
7004
|
+
|
|
6974
7005
|
.more-info-wrapper {
|
|
6975
7006
|
.more-info-color-set();
|
|
6976
7007
|
|
|
@@ -7130,76 +7161,6 @@ yx-axis
|
|
|
7130
7161
|
}
|
|
7131
7162
|
}
|
|
7132
7163
|
|
|
7133
|
-
.control-panel-log-row {
|
|
7134
|
-
.control-panel-log-table-row-color-set();
|
|
7135
|
-
|
|
7136
|
-
.log-entry {
|
|
7137
|
-
.log-entry-time {
|
|
7138
|
-
color: @log-entry-time-color;
|
|
7139
|
-
}
|
|
7140
|
-
|
|
7141
|
-
.log-entry-level-debug {
|
|
7142
|
-
color: @log-entry-level-debug-color;
|
|
7143
|
-
}
|
|
7144
|
-
|
|
7145
|
-
.log-entry-level-info {
|
|
7146
|
-
color: @log-entry-level-info-color;
|
|
7147
|
-
}
|
|
7148
|
-
|
|
7149
|
-
.log-entry-level-warn, .log-entry-level-warning {
|
|
7150
|
-
color: @log-entry-level-warn-color;
|
|
7151
|
-
}
|
|
7152
|
-
|
|
7153
|
-
.log-entry-level-error {
|
|
7154
|
-
color: @log-entry-level-error-color;
|
|
7155
|
-
}
|
|
7156
|
-
|
|
7157
|
-
.log-entry-message {
|
|
7158
|
-
line-break: anywhere;
|
|
7159
|
-
font-weight: 600;
|
|
7160
|
-
}
|
|
7161
|
-
}
|
|
7162
|
-
}
|
|
7163
|
-
|
|
7164
|
-
.igz-navigation-tabs {
|
|
7165
|
-
.navigation-tabs-color-set();
|
|
7166
|
-
|
|
7167
|
-
background-color: @navigation-tabs-bg-color;
|
|
7168
|
-
height: 56px;
|
|
7169
|
-
padding-top: 7px;
|
|
7170
|
-
|
|
7171
|
-
.navigation-tab {
|
|
7172
|
-
float: left;
|
|
7173
|
-
height: 32px;
|
|
7174
|
-
padding: 15px 24px 0;
|
|
7175
|
-
font-family: @font-family-sans-serif;
|
|
7176
|
-
color: @navigation-tab-color;
|
|
7177
|
-
font-size: 14px;
|
|
7178
|
-
text-align: center;
|
|
7179
|
-
cursor: pointer;
|
|
7180
|
-
border-bottom: @navigation-tab-border-bottom;
|
|
7181
|
-
box-sizing: content-box;
|
|
7182
|
-
|
|
7183
|
-
&.active, &.active:hover {
|
|
7184
|
-
background-color: @navigation-tab-active-hover-bg-color;
|
|
7185
|
-
color: @navigation-tab-active-hover-color;
|
|
7186
|
-
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
7187
|
-
}
|
|
7188
|
-
|
|
7189
|
-
&:hover {
|
|
7190
|
-
background-color: @navigation-tab-hover-bg-color;
|
|
7191
|
-
}
|
|
7192
|
-
|
|
7193
|
-
&.active {
|
|
7194
|
-
background-color: @navigation-tab-active-bg-color;
|
|
7195
|
-
}
|
|
7196
|
-
|
|
7197
|
-
@media screen and (max-width: 940px) {
|
|
7198
|
-
padding: 15px 12px 0;
|
|
7199
|
-
}
|
|
7200
|
-
}
|
|
7201
|
-
}
|
|
7202
|
-
|
|
7203
7164
|
.igz-multiple-checkboxes {
|
|
7204
7165
|
.multiple-checkboxes-color-set();
|
|
7205
7166
|
|
|
@@ -7396,32 +7357,71 @@ yx-axis
|
|
|
7396
7357
|
}
|
|
7397
7358
|
}
|
|
7398
7359
|
|
|
7399
|
-
.igz-
|
|
7400
|
-
.
|
|
7360
|
+
.igz-navigation-tabs {
|
|
7361
|
+
.navigation-tabs-color-set();
|
|
7401
7362
|
|
|
7402
|
-
|
|
7403
|
-
|
|
7404
|
-
|
|
7405
|
-
font-weight: 400;
|
|
7406
|
-
height: 36px;
|
|
7407
|
-
position: relative;
|
|
7408
|
-
background-color: @number-input-bg-color;
|
|
7409
|
-
border: @number-input-border;
|
|
7410
|
-
border-radius: 2px;
|
|
7411
|
-
color: @number-input-color;
|
|
7412
|
-
display: flex;
|
|
7413
|
-
justify-content: flex-start;
|
|
7414
|
-
align-items: center;
|
|
7415
|
-
padding: 0 10px 0 11px;
|
|
7416
|
-
z-index: 3;
|
|
7363
|
+
background-color: @navigation-tabs-bg-color;
|
|
7364
|
+
height: 56px;
|
|
7365
|
+
padding-top: 7px;
|
|
7417
7366
|
|
|
7418
|
-
|
|
7419
|
-
|
|
7420
|
-
|
|
7421
|
-
|
|
7422
|
-
|
|
7423
|
-
|
|
7424
|
-
|
|
7367
|
+
.navigation-tab {
|
|
7368
|
+
float: left;
|
|
7369
|
+
height: 32px;
|
|
7370
|
+
padding: 15px 24px 0;
|
|
7371
|
+
font-family: @font-family-sans-serif;
|
|
7372
|
+
color: @navigation-tab-color;
|
|
7373
|
+
font-size: 14px;
|
|
7374
|
+
text-align: center;
|
|
7375
|
+
cursor: pointer;
|
|
7376
|
+
border-bottom: @navigation-tab-border-bottom;
|
|
7377
|
+
box-sizing: content-box;
|
|
7378
|
+
|
|
7379
|
+
&.active, &.active:hover {
|
|
7380
|
+
background-color: @navigation-tab-active-hover-bg-color;
|
|
7381
|
+
color: @navigation-tab-active-hover-color;
|
|
7382
|
+
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
7383
|
+
}
|
|
7384
|
+
|
|
7385
|
+
&:hover {
|
|
7386
|
+
background-color: @navigation-tab-hover-bg-color;
|
|
7387
|
+
}
|
|
7388
|
+
|
|
7389
|
+
&.active {
|
|
7390
|
+
background-color: @navigation-tab-active-bg-color;
|
|
7391
|
+
}
|
|
7392
|
+
|
|
7393
|
+
@media screen and (max-width: 940px) {
|
|
7394
|
+
padding: 15px 12px 0;
|
|
7395
|
+
}
|
|
7396
|
+
}
|
|
7397
|
+
}
|
|
7398
|
+
|
|
7399
|
+
.igz-number-input {
|
|
7400
|
+
.number-input-color-set();
|
|
7401
|
+
|
|
7402
|
+
min-width: 115px;
|
|
7403
|
+
font-family: @font-family-sans-serif;
|
|
7404
|
+
font-size: 14px;
|
|
7405
|
+
font-weight: 400;
|
|
7406
|
+
height: 36px;
|
|
7407
|
+
position: relative;
|
|
7408
|
+
background-color: @number-input-bg-color;
|
|
7409
|
+
border: @number-input-border;
|
|
7410
|
+
border-radius: 2px;
|
|
7411
|
+
color: @number-input-color;
|
|
7412
|
+
display: flex;
|
|
7413
|
+
justify-content: flex-start;
|
|
7414
|
+
align-items: center;
|
|
7415
|
+
padding: 0 10px 0 11px;
|
|
7416
|
+
z-index: 3;
|
|
7417
|
+
|
|
7418
|
+
&:not(.disabled) {
|
|
7419
|
+
&:focus.ng-invalid:not(.ng-pristine), &.ng-invalid.ng-touched {
|
|
7420
|
+
background-color: @number-input-not-disabled-focus-invalid-bg-color;
|
|
7421
|
+
border: @number-input-not-disabled-focus-invalid-border;
|
|
7422
|
+
box-shadow: none;
|
|
7423
|
+
outline: none;
|
|
7424
|
+
}
|
|
7425
7425
|
|
|
7426
7426
|
&:focus-within, &.focused {
|
|
7427
7427
|
outline: 0;
|
|
@@ -7549,154 +7549,6 @@ yx-axis
|
|
|
7549
7549
|
}
|
|
7550
7550
|
}
|
|
7551
7551
|
|
|
7552
|
-
.igz-pagination {
|
|
7553
|
-
.pagination-color-set();
|
|
7554
|
-
|
|
7555
|
-
float: right;
|
|
7556
|
-
padding: 24px 36px 5px 30px;
|
|
7557
|
-
|
|
7558
|
-
> div {
|
|
7559
|
-
vertical-align: top;
|
|
7560
|
-
}
|
|
7561
|
-
|
|
7562
|
-
.rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
|
|
7563
|
-
display: inline-block;
|
|
7564
|
-
vertical-align: baseline;
|
|
7565
|
-
}
|
|
7566
|
-
|
|
7567
|
-
.rows-title {
|
|
7568
|
-
font-size: 13px;
|
|
7569
|
-
color: @rows-title-color;
|
|
7570
|
-
font-family: @font-family-sans-serif;
|
|
7571
|
-
}
|
|
7572
|
-
|
|
7573
|
-
.per-page {
|
|
7574
|
-
width: 66px;
|
|
7575
|
-
|
|
7576
|
-
.default-dropdown-field {
|
|
7577
|
-
background: none;
|
|
7578
|
-
border: none;
|
|
7579
|
-
box-shadow: none;
|
|
7580
|
-
font-size: 14px;
|
|
7581
|
-
height: 36px;
|
|
7582
|
-
|
|
7583
|
-
.dropdown-selected-item {
|
|
7584
|
-
font-size: 14px;
|
|
7585
|
-
}
|
|
7586
|
-
|
|
7587
|
-
.dropdown-arrow {
|
|
7588
|
-
margin-top: 5px;
|
|
7589
|
-
|
|
7590
|
-
span {
|
|
7591
|
-
font-size: 12px;
|
|
7592
|
-
}
|
|
7593
|
-
}
|
|
7594
|
-
|
|
7595
|
-
.dropdown-arrow {
|
|
7596
|
-
border: none;
|
|
7597
|
-
|
|
7598
|
-
&:hover, &:active {
|
|
7599
|
-
border: none;
|
|
7600
|
-
background: none;
|
|
7601
|
-
box-shadow: none;
|
|
7602
|
-
}
|
|
7603
|
-
}
|
|
7604
|
-
|
|
7605
|
-
&:focus {
|
|
7606
|
-
.dropdown-selected-item {
|
|
7607
|
-
border: none;
|
|
7608
|
-
}
|
|
7609
|
-
}
|
|
7610
|
-
}
|
|
7611
|
-
|
|
7612
|
-
.default-dropdown-container {
|
|
7613
|
-
width: 66px;
|
|
7614
|
-
|
|
7615
|
-
.list-item {
|
|
7616
|
-
padding-left: 15px;
|
|
7617
|
-
|
|
7618
|
-
.list-item-label {
|
|
7619
|
-
margin-right: 10px;
|
|
7620
|
-
}
|
|
7621
|
-
}
|
|
7622
|
-
}
|
|
7623
|
-
}
|
|
7624
|
-
|
|
7625
|
-
.jump-to-page {
|
|
7626
|
-
margin-left: 7px;
|
|
7627
|
-
|
|
7628
|
-
& > div, .jump-to-page-input {
|
|
7629
|
-
display: inline-block;
|
|
7630
|
-
vertical-align: baseline;
|
|
7631
|
-
}
|
|
7632
|
-
|
|
7633
|
-
.to-page-prev, .to-page-next {
|
|
7634
|
-
width: 41px;
|
|
7635
|
-
line-height: 34px;
|
|
7636
|
-
height: 36px;
|
|
7637
|
-
vertical-align: top;
|
|
7638
|
-
position: relative;
|
|
7639
|
-
|
|
7640
|
-
&:not(:active) {
|
|
7641
|
-
background-color: transparent;
|
|
7642
|
-
}
|
|
7643
|
-
|
|
7644
|
-
&:not(:hover):not(:active):not(:disabled):not(.disabled) {
|
|
7645
|
-
color: @page-prev-next-color;
|
|
7646
|
-
}
|
|
7647
|
-
|
|
7648
|
-
&:before {
|
|
7649
|
-
line-height: 34px;
|
|
7650
|
-
}
|
|
7651
|
-
}
|
|
7652
|
-
|
|
7653
|
-
.to-page-prev {
|
|
7654
|
-
border-radius: 2px 0 0 2px;
|
|
7655
|
-
|
|
7656
|
-
&::before {
|
|
7657
|
-
margin-left: -2px;
|
|
7658
|
-
}
|
|
7659
|
-
}
|
|
7660
|
-
|
|
7661
|
-
.to-page-next {
|
|
7662
|
-
border-radius: 0 2px 2px 0;
|
|
7663
|
-
}
|
|
7664
|
-
|
|
7665
|
-
.title {
|
|
7666
|
-
margin: 0 0 0 14px;
|
|
7667
|
-
}
|
|
7668
|
-
|
|
7669
|
-
.page-number {
|
|
7670
|
-
min-width: 30px;
|
|
7671
|
-
height: 36px;
|
|
7672
|
-
line-height: 36px;
|
|
7673
|
-
text-align: center;
|
|
7674
|
-
}
|
|
7675
|
-
|
|
7676
|
-
.validating-input-field {
|
|
7677
|
-
background-color: @input-field-bg-color;
|
|
7678
|
-
|
|
7679
|
-
.input-field {
|
|
7680
|
-
width: 43px;
|
|
7681
|
-
height: 36px;
|
|
7682
|
-
border-radius: 0;
|
|
7683
|
-
box-shadow: @input-field-box-shadow;
|
|
7684
|
-
border: 1px solid @input-field-border-color;
|
|
7685
|
-
border-left: 0 none transparent;
|
|
7686
|
-
border-right: 0 none transparent;
|
|
7687
|
-
font-family: @font-family-sans-serif;
|
|
7688
|
-
font-size: 14px;
|
|
7689
|
-
font-weight: 500;
|
|
7690
|
-
color: @input-field-color;
|
|
7691
|
-
text-align: center;
|
|
7692
|
-
|
|
7693
|
-
&:hover {
|
|
7694
|
-
border: @input-field-hover-border;
|
|
7695
|
-
}
|
|
7696
|
-
}
|
|
7697
|
-
}
|
|
7698
|
-
}
|
|
7699
|
-
}
|
|
7700
7552
|
.search-input {
|
|
7701
7553
|
.search-input-color-set();
|
|
7702
7554
|
|
|
@@ -7958,23 +7810,171 @@ yx-axis
|
|
|
7958
7810
|
}
|
|
7959
7811
|
}
|
|
7960
7812
|
|
|
7961
|
-
.tooltip-header {
|
|
7962
|
-
padding-bottom: 6px;
|
|
7963
|
-
margin-bottom: 5px;
|
|
7964
|
-
line-height: 1.1;
|
|
7965
|
-
text-align: center;
|
|
7813
|
+
.tooltip-header {
|
|
7814
|
+
padding-bottom: 6px;
|
|
7815
|
+
margin-bottom: 5px;
|
|
7816
|
+
line-height: 1.1;
|
|
7817
|
+
text-align: center;
|
|
7818
|
+
}
|
|
7819
|
+
}
|
|
7820
|
+
}
|
|
7821
|
+
}
|
|
7822
|
+
|
|
7823
|
+
.igz-highcharts-wrapper {
|
|
7824
|
+
height: 40px;
|
|
7825
|
+
position: relative;
|
|
7826
|
+
width: 100%;
|
|
7827
|
+
}
|
|
7828
|
+
}
|
|
7829
|
+
|
|
7830
|
+
.igz-pagination {
|
|
7831
|
+
.pagination-color-set();
|
|
7832
|
+
|
|
7833
|
+
float: right;
|
|
7834
|
+
padding: 24px 36px 5px 30px;
|
|
7835
|
+
|
|
7836
|
+
> div {
|
|
7837
|
+
vertical-align: top;
|
|
7838
|
+
}
|
|
7839
|
+
|
|
7840
|
+
.rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
|
|
7841
|
+
display: inline-block;
|
|
7842
|
+
vertical-align: baseline;
|
|
7843
|
+
}
|
|
7844
|
+
|
|
7845
|
+
.rows-title {
|
|
7846
|
+
font-size: 13px;
|
|
7847
|
+
color: @rows-title-color;
|
|
7848
|
+
font-family: @font-family-sans-serif;
|
|
7849
|
+
}
|
|
7850
|
+
|
|
7851
|
+
.per-page {
|
|
7852
|
+
width: 66px;
|
|
7853
|
+
|
|
7854
|
+
.default-dropdown-field {
|
|
7855
|
+
background: none;
|
|
7856
|
+
border: none;
|
|
7857
|
+
box-shadow: none;
|
|
7858
|
+
font-size: 14px;
|
|
7859
|
+
height: 36px;
|
|
7860
|
+
|
|
7861
|
+
.dropdown-selected-item {
|
|
7862
|
+
font-size: 14px;
|
|
7863
|
+
}
|
|
7864
|
+
|
|
7865
|
+
.dropdown-arrow {
|
|
7866
|
+
margin-top: 5px;
|
|
7867
|
+
|
|
7868
|
+
span {
|
|
7869
|
+
font-size: 12px;
|
|
7870
|
+
}
|
|
7871
|
+
}
|
|
7872
|
+
|
|
7873
|
+
.dropdown-arrow {
|
|
7874
|
+
border: none;
|
|
7875
|
+
|
|
7876
|
+
&:hover, &:active {
|
|
7877
|
+
border: none;
|
|
7878
|
+
background: none;
|
|
7879
|
+
box-shadow: none;
|
|
7880
|
+
}
|
|
7881
|
+
}
|
|
7882
|
+
|
|
7883
|
+
&:focus {
|
|
7884
|
+
.dropdown-selected-item {
|
|
7885
|
+
border: none;
|
|
7886
|
+
}
|
|
7887
|
+
}
|
|
7888
|
+
}
|
|
7889
|
+
|
|
7890
|
+
.default-dropdown-container {
|
|
7891
|
+
width: 66px;
|
|
7892
|
+
|
|
7893
|
+
.list-item {
|
|
7894
|
+
padding-left: 15px;
|
|
7895
|
+
|
|
7896
|
+
.list-item-label {
|
|
7897
|
+
margin-right: 10px;
|
|
7898
|
+
}
|
|
7899
|
+
}
|
|
7900
|
+
}
|
|
7901
|
+
}
|
|
7902
|
+
|
|
7903
|
+
.jump-to-page {
|
|
7904
|
+
margin-left: 7px;
|
|
7905
|
+
|
|
7906
|
+
& > div, .jump-to-page-input {
|
|
7907
|
+
display: inline-block;
|
|
7908
|
+
vertical-align: baseline;
|
|
7909
|
+
}
|
|
7910
|
+
|
|
7911
|
+
.to-page-prev, .to-page-next {
|
|
7912
|
+
width: 41px;
|
|
7913
|
+
line-height: 34px;
|
|
7914
|
+
height: 36px;
|
|
7915
|
+
vertical-align: top;
|
|
7916
|
+
position: relative;
|
|
7917
|
+
|
|
7918
|
+
&:not(:active) {
|
|
7919
|
+
background-color: transparent;
|
|
7920
|
+
}
|
|
7921
|
+
|
|
7922
|
+
&:not(:hover):not(:active):not(:disabled):not(.disabled) {
|
|
7923
|
+
color: @page-prev-next-color;
|
|
7924
|
+
}
|
|
7925
|
+
|
|
7926
|
+
&:before {
|
|
7927
|
+
line-height: 34px;
|
|
7928
|
+
}
|
|
7929
|
+
}
|
|
7930
|
+
|
|
7931
|
+
.to-page-prev {
|
|
7932
|
+
border-radius: 2px 0 0 2px;
|
|
7933
|
+
|
|
7934
|
+
&::before {
|
|
7935
|
+
margin-left: -2px;
|
|
7936
|
+
}
|
|
7937
|
+
}
|
|
7938
|
+
|
|
7939
|
+
.to-page-next {
|
|
7940
|
+
border-radius: 0 2px 2px 0;
|
|
7941
|
+
}
|
|
7942
|
+
|
|
7943
|
+
.title {
|
|
7944
|
+
margin: 0 0 0 14px;
|
|
7945
|
+
}
|
|
7946
|
+
|
|
7947
|
+
.page-number {
|
|
7948
|
+
min-width: 30px;
|
|
7949
|
+
height: 36px;
|
|
7950
|
+
line-height: 36px;
|
|
7951
|
+
text-align: center;
|
|
7952
|
+
}
|
|
7953
|
+
|
|
7954
|
+
.validating-input-field {
|
|
7955
|
+
background-color: @input-field-bg-color;
|
|
7956
|
+
|
|
7957
|
+
.input-field {
|
|
7958
|
+
width: 43px;
|
|
7959
|
+
height: 36px;
|
|
7960
|
+
border-radius: 0;
|
|
7961
|
+
box-shadow: @input-field-box-shadow;
|
|
7962
|
+
border: 1px solid @input-field-border-color;
|
|
7963
|
+
border-left: 0 none transparent;
|
|
7964
|
+
border-right: 0 none transparent;
|
|
7965
|
+
font-family: @font-family-sans-serif;
|
|
7966
|
+
font-size: 14px;
|
|
7967
|
+
font-weight: 500;
|
|
7968
|
+
color: @input-field-color;
|
|
7969
|
+
text-align: center;
|
|
7970
|
+
|
|
7971
|
+
&:hover {
|
|
7972
|
+
border: @input-field-hover-border;
|
|
7966
7973
|
}
|
|
7967
7974
|
}
|
|
7968
7975
|
}
|
|
7969
7976
|
}
|
|
7970
|
-
|
|
7971
|
-
.igz-highcharts-wrapper {
|
|
7972
|
-
height: 40px;
|
|
7973
|
-
position: relative;
|
|
7974
|
-
width: 100%;
|
|
7975
|
-
}
|
|
7976
7977
|
}
|
|
7977
|
-
|
|
7978
7978
|
.igz-slider-input-block {
|
|
7979
7979
|
.igz-slider-input-block-color-set();
|
|
7980
7980
|
|
|
@@ -8104,83 +8104,6 @@ yx-axis
|
|
|
8104
8104
|
}
|
|
8105
8105
|
}
|
|
8106
8106
|
|
|
8107
|
-
.ngdialog.text-edit {
|
|
8108
|
-
.text-edit-color-set();
|
|
8109
|
-
|
|
8110
|
-
.ngdialog-content {
|
|
8111
|
-
padding: 0;
|
|
8112
|
-
width: 1000px;
|
|
8113
|
-
height: 678px;
|
|
8114
|
-
|
|
8115
|
-
.text-preview-directive-wrapper {
|
|
8116
|
-
.title {
|
|
8117
|
-
margin: 25px 0 0 24px;
|
|
8118
|
-
padding: 0 70px 0 0;
|
|
8119
|
-
}
|
|
8120
|
-
|
|
8121
|
-
.close-button {
|
|
8122
|
-
position: absolute;
|
|
8123
|
-
top: 24px;
|
|
8124
|
-
right: 24px;
|
|
8125
|
-
font-size: 18px;
|
|
8126
|
-
color: @close-btn-color;
|
|
8127
|
-
}
|
|
8128
|
-
|
|
8129
|
-
.buttons {
|
|
8130
|
-
margin-right: 24px;
|
|
8131
|
-
}
|
|
8132
|
-
|
|
8133
|
-
.text-preview-wrapper {
|
|
8134
|
-
background-color: @text-preview-wrapper-bg-color;
|
|
8135
|
-
border-top: @text-preview-wrapper-border-top;
|
|
8136
|
-
border-bottom: @text-preview-wrapper-border-bottom;
|
|
8137
|
-
border-radius: 2px;
|
|
8138
|
-
margin-bottom: 16px;
|
|
8139
|
-
padding: 15px 22px 17px;
|
|
8140
|
-
min-width: 690px;
|
|
8141
|
-
height: 550px;
|
|
8142
|
-
|
|
8143
|
-
.text-preview-container {
|
|
8144
|
-
width: 100%;
|
|
8145
|
-
line-height: 1.9;
|
|
8146
|
-
text-align: left;
|
|
8147
|
-
padding-right: 22px;
|
|
8148
|
-
font-size: 13px;
|
|
8149
|
-
color: @text-preview-container-color;
|
|
8150
|
-
resize: none;
|
|
8151
|
-
overflow: hidden;
|
|
8152
|
-
border-color: @text-preview-container-border-color;
|
|
8153
|
-
background-color: @text-preview-container-bg-color;
|
|
8154
|
-
cursor: text;
|
|
8155
|
-
}
|
|
8156
|
-
|
|
8157
|
-
.text-preview-container:focus {
|
|
8158
|
-
outline: 0;
|
|
8159
|
-
}
|
|
8160
|
-
|
|
8161
|
-
.word-wrap-checkbox-wrapper {
|
|
8162
|
-
width: 100%;
|
|
8163
|
-
display: flex;
|
|
8164
|
-
justify-content: flex-end;
|
|
8165
|
-
|
|
8166
|
-
.col-checkbox {
|
|
8167
|
-
line-height: normal;
|
|
8168
|
-
height: 25px;
|
|
8169
|
-
|
|
8170
|
-
label:before {
|
|
8171
|
-
font-size: 16px;
|
|
8172
|
-
}
|
|
8173
|
-
}
|
|
8174
|
-
}
|
|
8175
|
-
}
|
|
8176
|
-
}
|
|
8177
|
-
}
|
|
8178
|
-
|
|
8179
|
-
.ncl-monaco {
|
|
8180
|
-
height: 500px;
|
|
8181
|
-
}
|
|
8182
|
-
}
|
|
8183
|
-
|
|
8184
8107
|
.splash-screen {
|
|
8185
8108
|
.splash-screen-color-set();
|
|
8186
8109
|
|
|
@@ -8288,6 +8211,83 @@ yx-axis
|
|
|
8288
8211
|
}
|
|
8289
8212
|
}
|
|
8290
8213
|
}
|
|
8214
|
+
.ngdialog.text-edit {
|
|
8215
|
+
.text-edit-color-set();
|
|
8216
|
+
|
|
8217
|
+
.ngdialog-content {
|
|
8218
|
+
padding: 0;
|
|
8219
|
+
width: 1000px;
|
|
8220
|
+
height: 678px;
|
|
8221
|
+
|
|
8222
|
+
.text-preview-directive-wrapper {
|
|
8223
|
+
.title {
|
|
8224
|
+
margin: 25px 0 0 24px;
|
|
8225
|
+
padding: 0 70px 0 0;
|
|
8226
|
+
}
|
|
8227
|
+
|
|
8228
|
+
.close-button {
|
|
8229
|
+
position: absolute;
|
|
8230
|
+
top: 24px;
|
|
8231
|
+
right: 24px;
|
|
8232
|
+
font-size: 18px;
|
|
8233
|
+
color: @close-btn-color;
|
|
8234
|
+
}
|
|
8235
|
+
|
|
8236
|
+
.buttons {
|
|
8237
|
+
margin-right: 24px;
|
|
8238
|
+
}
|
|
8239
|
+
|
|
8240
|
+
.text-preview-wrapper {
|
|
8241
|
+
background-color: @text-preview-wrapper-bg-color;
|
|
8242
|
+
border-top: @text-preview-wrapper-border-top;
|
|
8243
|
+
border-bottom: @text-preview-wrapper-border-bottom;
|
|
8244
|
+
border-radius: 2px;
|
|
8245
|
+
margin-bottom: 16px;
|
|
8246
|
+
padding: 15px 22px 17px;
|
|
8247
|
+
min-width: 690px;
|
|
8248
|
+
height: 550px;
|
|
8249
|
+
|
|
8250
|
+
.text-preview-container {
|
|
8251
|
+
width: 100%;
|
|
8252
|
+
line-height: 1.9;
|
|
8253
|
+
text-align: left;
|
|
8254
|
+
padding-right: 22px;
|
|
8255
|
+
font-size: 13px;
|
|
8256
|
+
color: @text-preview-container-color;
|
|
8257
|
+
resize: none;
|
|
8258
|
+
overflow: hidden;
|
|
8259
|
+
border-color: @text-preview-container-border-color;
|
|
8260
|
+
background-color: @text-preview-container-bg-color;
|
|
8261
|
+
cursor: text;
|
|
8262
|
+
}
|
|
8263
|
+
|
|
8264
|
+
.text-preview-container:focus {
|
|
8265
|
+
outline: 0;
|
|
8266
|
+
}
|
|
8267
|
+
|
|
8268
|
+
.word-wrap-checkbox-wrapper {
|
|
8269
|
+
width: 100%;
|
|
8270
|
+
display: flex;
|
|
8271
|
+
justify-content: flex-end;
|
|
8272
|
+
|
|
8273
|
+
.col-checkbox {
|
|
8274
|
+
line-height: normal;
|
|
8275
|
+
height: 25px;
|
|
8276
|
+
|
|
8277
|
+
label:before {
|
|
8278
|
+
font-size: 16px;
|
|
8279
|
+
}
|
|
8280
|
+
}
|
|
8281
|
+
}
|
|
8282
|
+
}
|
|
8283
|
+
}
|
|
8284
|
+
}
|
|
8285
|
+
|
|
8286
|
+
.ncl-monaco {
|
|
8287
|
+
height: 500px;
|
|
8288
|
+
}
|
|
8289
|
+
}
|
|
8290
|
+
|
|
8291
8291
|
.toast-status-panel {
|
|
8292
8292
|
.toast-status-panel-color-set();
|
|
8293
8293
|
|
|
@@ -9338,6 +9338,21 @@ body {
|
|
|
9338
9338
|
}
|
|
9339
9339
|
}
|
|
9340
9340
|
|
|
9341
|
+
.override-function-dialog {
|
|
9342
|
+
.sub-title {
|
|
9343
|
+
font-size: 16px;
|
|
9344
|
+
color: @silver-chalice-two;
|
|
9345
|
+
}
|
|
9346
|
+
|
|
9347
|
+
.buttons {
|
|
9348
|
+
display: flex;
|
|
9349
|
+
|
|
9350
|
+
.function-redirect-button {
|
|
9351
|
+
margin-right: auto;
|
|
9352
|
+
}
|
|
9353
|
+
}
|
|
9354
|
+
}
|
|
9355
|
+
|
|
9341
9356
|
.ncl-function-collapsing-row {
|
|
9342
9357
|
background-color: @white;
|
|
9343
9358
|
margin-bottom: 8px;
|
|
@@ -9472,21 +9487,6 @@ body {
|
|
|
9472
9487
|
}
|
|
9473
9488
|
}
|
|
9474
9489
|
|
|
9475
|
-
.override-function-dialog {
|
|
9476
|
-
.sub-title {
|
|
9477
|
-
font-size: 16px;
|
|
9478
|
-
color: @silver-chalice-two;
|
|
9479
|
-
}
|
|
9480
|
-
|
|
9481
|
-
.buttons {
|
|
9482
|
-
display: flex;
|
|
9483
|
-
|
|
9484
|
-
.function-redirect-button {
|
|
9485
|
-
margin-right: auto;
|
|
9486
|
-
}
|
|
9487
|
-
}
|
|
9488
|
-
}
|
|
9489
|
-
|
|
9490
9490
|
.ncl-edit-version {
|
|
9491
9491
|
background: #f2f2f6;
|
|
9492
9492
|
position: relative;
|
|
@@ -10549,28 +10549,66 @@ ncl-breadcrumbs {
|
|
|
10549
10549
|
text-overflow: ellipsis;
|
|
10550
10550
|
}
|
|
10551
10551
|
|
|
10552
|
-
.actions-menu {
|
|
10553
|
-
visibility: hidden;
|
|
10554
|
-
align-items: flex-start;
|
|
10555
|
-
line-height: 51px;
|
|
10556
|
-
}
|
|
10552
|
+
.actions-menu {
|
|
10553
|
+
visibility: hidden;
|
|
10554
|
+
align-items: flex-start;
|
|
10555
|
+
line-height: 51px;
|
|
10556
|
+
}
|
|
10557
|
+
|
|
10558
|
+
.single-action {
|
|
10559
|
+
visibility: hidden;
|
|
10560
|
+
align-items: flex-start;
|
|
10561
|
+
flex: none;
|
|
10562
|
+
padding-right: 4px;
|
|
10563
|
+
|
|
10564
|
+
.igz-action-panel {
|
|
10565
|
+
transition: unset;
|
|
10566
|
+
|
|
10567
|
+
.igz-action-item {
|
|
10568
|
+
margin: 4px 0 0 0;
|
|
10569
|
+
}
|
|
10570
|
+
}
|
|
10571
|
+
}
|
|
10572
|
+
}
|
|
10573
|
+
|
|
10574
|
+
.ncl-deploy-log-wrapper {
|
|
10575
|
+
.log-panel {
|
|
10576
|
+
.logs-common();
|
|
10577
|
+
background-color: @dark-grey;
|
|
10578
|
+
color: @light-grey-three;
|
|
10579
|
+
padding: 5px;
|
|
10580
|
+
margin: 21px 0 0 4px;
|
|
10581
|
+
min-height: 280px;
|
|
10582
|
+
max-height: 280px;
|
|
10583
|
+
height: 280px;
|
|
10584
|
+
|
|
10585
|
+
.log-entry {
|
|
10586
|
+
.log-entry-time {
|
|
10587
|
+
color: @solid-grey;
|
|
10588
|
+
}
|
|
10589
|
+
|
|
10590
|
+
.log-entry-level-debug{
|
|
10591
|
+
color: @dusty-blue;
|
|
10592
|
+
}
|
|
10593
|
+
|
|
10594
|
+
.log-entry-level-info {
|
|
10595
|
+
color: @cloudy-blue;
|
|
10596
|
+
}
|
|
10557
10597
|
|
|
10558
|
-
|
|
10559
|
-
|
|
10560
|
-
|
|
10561
|
-
flex: none;
|
|
10562
|
-
padding-right: 4px;
|
|
10598
|
+
.log-entry-level-warn{
|
|
10599
|
+
color: @sunflower-yellow;
|
|
10600
|
+
}
|
|
10563
10601
|
|
|
10564
|
-
|
|
10565
|
-
|
|
10602
|
+
.log-entry-level-error {
|
|
10603
|
+
color: @darkish-pink;
|
|
10604
|
+
}
|
|
10566
10605
|
|
|
10567
|
-
.
|
|
10568
|
-
|
|
10606
|
+
.log-entry-message {
|
|
10607
|
+
font-weight: 600;
|
|
10569
10608
|
}
|
|
10570
10609
|
}
|
|
10571
10610
|
}
|
|
10572
10611
|
}
|
|
10573
|
-
|
|
10574
10612
|
.ncl-edit-item {
|
|
10575
10613
|
width: 100%;
|
|
10576
10614
|
padding: 6px 0;
|
|
@@ -10671,44 +10709,6 @@ ncl-breadcrumbs {
|
|
|
10671
10709
|
}
|
|
10672
10710
|
}
|
|
10673
10711
|
|
|
10674
|
-
.ncl-deploy-log-wrapper {
|
|
10675
|
-
.log-panel {
|
|
10676
|
-
.logs-common();
|
|
10677
|
-
background-color: @dark-grey;
|
|
10678
|
-
color: @light-grey-three;
|
|
10679
|
-
padding: 5px;
|
|
10680
|
-
margin: 21px 0 0 4px;
|
|
10681
|
-
min-height: 280px;
|
|
10682
|
-
max-height: 280px;
|
|
10683
|
-
height: 280px;
|
|
10684
|
-
|
|
10685
|
-
.log-entry {
|
|
10686
|
-
.log-entry-time {
|
|
10687
|
-
color: @solid-grey;
|
|
10688
|
-
}
|
|
10689
|
-
|
|
10690
|
-
.log-entry-level-debug{
|
|
10691
|
-
color: @dusty-blue;
|
|
10692
|
-
}
|
|
10693
|
-
|
|
10694
|
-
.log-entry-level-info {
|
|
10695
|
-
color: @cloudy-blue;
|
|
10696
|
-
}
|
|
10697
|
-
|
|
10698
|
-
.log-entry-level-warn{
|
|
10699
|
-
color: @sunflower-yellow;
|
|
10700
|
-
}
|
|
10701
|
-
|
|
10702
|
-
.log-entry-level-error {
|
|
10703
|
-
color: @darkish-pink;
|
|
10704
|
-
}
|
|
10705
|
-
|
|
10706
|
-
.log-entry-message {
|
|
10707
|
-
font-weight: 600;
|
|
10708
|
-
}
|
|
10709
|
-
}
|
|
10710
|
-
}
|
|
10711
|
-
}
|
|
10712
10712
|
.view-yaml-dialog-wrapper {
|
|
10713
10713
|
.ngdialog-content {
|
|
10714
10714
|
.view-yaml-dialog-header {
|
|
@@ -10727,32 +10727,6 @@ ncl-breadcrumbs {
|
|
|
10727
10727
|
}
|
|
10728
10728
|
}
|
|
10729
10729
|
}
|
|
10730
|
-
.ncl-monaco {
|
|
10731
|
-
.ncl-monaco-wrapper {
|
|
10732
|
-
padding-top: 20px;
|
|
10733
|
-
height: 100%;
|
|
10734
|
-
border: 1px solid @pale-grey;
|
|
10735
|
-
background-color: @white;
|
|
10736
|
-
|
|
10737
|
-
&.no-top-padding {
|
|
10738
|
-
padding-top: 0;
|
|
10739
|
-
}
|
|
10740
|
-
|
|
10741
|
-
.ncl-monaco-top-row {
|
|
10742
|
-
display: block;
|
|
10743
|
-
}
|
|
10744
|
-
|
|
10745
|
-
.ncl-monaco-editor {
|
|
10746
|
-
height: 100%;
|
|
10747
|
-
}
|
|
10748
|
-
}
|
|
10749
|
-
|
|
10750
|
-
.ncl-monaco-dark {
|
|
10751
|
-
background-color: @vs-dark;
|
|
10752
|
-
}
|
|
10753
|
-
}
|
|
10754
|
-
|
|
10755
|
-
|
|
10756
10730
|
.ncl-key-value-input {
|
|
10757
10731
|
.input-wrapper {
|
|
10758
10732
|
width: 100%;
|
|
@@ -10967,6 +10941,32 @@ ncl-breadcrumbs {
|
|
|
10967
10941
|
}
|
|
10968
10942
|
}
|
|
10969
10943
|
|
|
10944
|
+
.ncl-monaco {
|
|
10945
|
+
.ncl-monaco-wrapper {
|
|
10946
|
+
padding-top: 20px;
|
|
10947
|
+
height: 100%;
|
|
10948
|
+
border: 1px solid @pale-grey;
|
|
10949
|
+
background-color: @white;
|
|
10950
|
+
|
|
10951
|
+
&.no-top-padding {
|
|
10952
|
+
padding-top: 0;
|
|
10953
|
+
}
|
|
10954
|
+
|
|
10955
|
+
.ncl-monaco-top-row {
|
|
10956
|
+
display: block;
|
|
10957
|
+
}
|
|
10958
|
+
|
|
10959
|
+
.ncl-monaco-editor {
|
|
10960
|
+
height: 100%;
|
|
10961
|
+
}
|
|
10962
|
+
}
|
|
10963
|
+
|
|
10964
|
+
.ncl-monaco-dark {
|
|
10965
|
+
background-color: @vs-dark;
|
|
10966
|
+
}
|
|
10967
|
+
}
|
|
10968
|
+
|
|
10969
|
+
|
|
10970
10970
|
ncl-navigation-tabs {
|
|
10971
10971
|
.ncl-navigation-tabs-color-set();
|
|
10972
10972
|
|
|
@@ -12208,6 +12208,76 @@ ncl-navigation-tabs {
|
|
|
12208
12208
|
}
|
|
12209
12209
|
}
|
|
12210
12210
|
|
|
12211
|
+
.function-import-wrapper-content {
|
|
12212
|
+
font-family: @font-family-sans-serif;
|
|
12213
|
+
padding-left: 3%;
|
|
12214
|
+
width: 96%;
|
|
12215
|
+
|
|
12216
|
+
.function-import-form {
|
|
12217
|
+
display: flex;
|
|
12218
|
+
align-items: flex-end;
|
|
12219
|
+
margin-bottom: 10px;
|
|
12220
|
+
|
|
12221
|
+
.projects-drop-down {
|
|
12222
|
+
margin-right: 48px;
|
|
12223
|
+
|
|
12224
|
+
.input-label {
|
|
12225
|
+
font-size: 14px;
|
|
12226
|
+
font-weight: 600;
|
|
12227
|
+
color: @dusk-three;
|
|
12228
|
+
}
|
|
12229
|
+
|
|
12230
|
+
igz-default-dropdown {
|
|
12231
|
+
.default-dropdown {
|
|
12232
|
+
background-color: @white;
|
|
12233
|
+
|
|
12234
|
+
.default-dropdown-field {
|
|
12235
|
+
&:focus {
|
|
12236
|
+
background-color: inherit;
|
|
12237
|
+
}
|
|
12238
|
+
}
|
|
12239
|
+
}
|
|
12240
|
+
}
|
|
12241
|
+
}
|
|
12242
|
+
|
|
12243
|
+
.function-import-actions-bar {
|
|
12244
|
+
display: flex;
|
|
12245
|
+
|
|
12246
|
+
.function-import-file-picker {
|
|
12247
|
+
.file-picker-wrapper {
|
|
12248
|
+
margin: 0;
|
|
12249
|
+
line-height: 34px;
|
|
12250
|
+
|
|
12251
|
+
.igz-icon-upload {
|
|
12252
|
+
margin-right: 10px;
|
|
12253
|
+
}
|
|
12254
|
+
}
|
|
12255
|
+
|
|
12256
|
+
.function-import-input {
|
|
12257
|
+
opacity: 0;
|
|
12258
|
+
position: absolute;
|
|
12259
|
+
z-index: -1;
|
|
12260
|
+
}
|
|
12261
|
+
}
|
|
12262
|
+
}
|
|
12263
|
+
}
|
|
12264
|
+
|
|
12265
|
+
.splash-screen {
|
|
12266
|
+
top: 0;
|
|
12267
|
+
}
|
|
12268
|
+
|
|
12269
|
+
.function-import-monaco {
|
|
12270
|
+
.ncl-monaco {
|
|
12271
|
+
height: 370px;
|
|
12272
|
+
width: 100%;
|
|
12273
|
+
|
|
12274
|
+
.monaco-code-editor {
|
|
12275
|
+
height: 100%;
|
|
12276
|
+
}
|
|
12277
|
+
}
|
|
12278
|
+
}
|
|
12279
|
+
}
|
|
12280
|
+
|
|
12211
12281
|
.function-from-template-content {
|
|
12212
12282
|
.ncl-function-from-template-color-set();
|
|
12213
12283
|
|
|
@@ -12470,76 +12540,6 @@ ncl-navigation-tabs {
|
|
|
12470
12540
|
}
|
|
12471
12541
|
}
|
|
12472
12542
|
|
|
12473
|
-
.function-import-wrapper-content {
|
|
12474
|
-
font-family: @font-family-sans-serif;
|
|
12475
|
-
padding-left: 3%;
|
|
12476
|
-
width: 96%;
|
|
12477
|
-
|
|
12478
|
-
.function-import-form {
|
|
12479
|
-
display: flex;
|
|
12480
|
-
align-items: flex-end;
|
|
12481
|
-
margin-bottom: 10px;
|
|
12482
|
-
|
|
12483
|
-
.projects-drop-down {
|
|
12484
|
-
margin-right: 48px;
|
|
12485
|
-
|
|
12486
|
-
.input-label {
|
|
12487
|
-
font-size: 14px;
|
|
12488
|
-
font-weight: 600;
|
|
12489
|
-
color: @dusk-three;
|
|
12490
|
-
}
|
|
12491
|
-
|
|
12492
|
-
igz-default-dropdown {
|
|
12493
|
-
.default-dropdown {
|
|
12494
|
-
background-color: @white;
|
|
12495
|
-
|
|
12496
|
-
.default-dropdown-field {
|
|
12497
|
-
&:focus {
|
|
12498
|
-
background-color: inherit;
|
|
12499
|
-
}
|
|
12500
|
-
}
|
|
12501
|
-
}
|
|
12502
|
-
}
|
|
12503
|
-
}
|
|
12504
|
-
|
|
12505
|
-
.function-import-actions-bar {
|
|
12506
|
-
display: flex;
|
|
12507
|
-
|
|
12508
|
-
.function-import-file-picker {
|
|
12509
|
-
.file-picker-wrapper {
|
|
12510
|
-
margin: 0;
|
|
12511
|
-
line-height: 34px;
|
|
12512
|
-
|
|
12513
|
-
.igz-icon-upload {
|
|
12514
|
-
margin-right: 10px;
|
|
12515
|
-
}
|
|
12516
|
-
}
|
|
12517
|
-
|
|
12518
|
-
.function-import-input {
|
|
12519
|
-
opacity: 0;
|
|
12520
|
-
position: absolute;
|
|
12521
|
-
z-index: -1;
|
|
12522
|
-
}
|
|
12523
|
-
}
|
|
12524
|
-
}
|
|
12525
|
-
}
|
|
12526
|
-
|
|
12527
|
-
.splash-screen {
|
|
12528
|
-
top: 0;
|
|
12529
|
-
}
|
|
12530
|
-
|
|
12531
|
-
.function-import-monaco {
|
|
12532
|
-
.ncl-monaco {
|
|
12533
|
-
height: 370px;
|
|
12534
|
-
width: 100%;
|
|
12535
|
-
|
|
12536
|
-
.monaco-code-editor {
|
|
12537
|
-
height: 100%;
|
|
12538
|
-
}
|
|
12539
|
-
}
|
|
12540
|
-
}
|
|
12541
|
-
}
|
|
12542
|
-
|
|
12543
12543
|
.test-events-pane-wrapper {
|
|
12544
12544
|
position: absolute;
|
|
12545
12545
|
height: 100%;
|