iguazio.dashboard-controls 0.37.9 → 0.37.12-patch1
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/functions.json +2 -1
- package/dist/js/iguazio.dashboard-controls.js +7177 -7143
- package/dist/less/iguazio.dashboard-controls.less +1393 -1393
- package/package.json +1 -1
- package/src/i18n/en/functions.json +2 -1
- package/src/igz_controls/components/element-loading-status/element-loading-status.component.js +48 -16
- package/src/igz_controls/components/size/size.component.js +1 -1
- package/src/igz_controls/directives/resizable-table-column.directive.js +6 -2
- package/src/igz_controls/services/validation.service.js +19 -10
- package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-annotations/version-configuration-annotations.component.js +1 -10
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
.common-table-cell {
|
|
2
|
+
&.status {
|
|
3
|
+
min-width: 95px;
|
|
4
|
+
}
|
|
5
|
+
}
|
|
6
|
+
|
|
1
7
|
//
|
|
2
8
|
// Common styles for buttons
|
|
3
9
|
//
|
|
@@ -3577,12 +3583,6 @@ html input[disabled], html textarea[disabled] {
|
|
|
3577
3583
|
|
|
3578
3584
|
// Media Query
|
|
3579
3585
|
@retina-display: ~"only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx)";
|
|
3580
|
-
.common-table-cell {
|
|
3581
|
-
&.status {
|
|
3582
|
-
min-width: 95px;
|
|
3583
|
-
}
|
|
3584
|
-
}
|
|
3585
|
-
|
|
3586
3586
|
ncl-functions {
|
|
3587
3587
|
igz-info-page-actions-bar {
|
|
3588
3588
|
.igz-info-page-actions-bar {
|
|
@@ -5493,23 +5493,6 @@ yx-axis
|
|
|
5493
5493
|
display: none;
|
|
5494
5494
|
}
|
|
5495
5495
|
|
|
5496
|
-
.action-checkbox-all {
|
|
5497
|
-
.action-checkbox-all-color-set();
|
|
5498
|
-
|
|
5499
|
-
text-align: center;
|
|
5500
|
-
|
|
5501
|
-
.check-item {
|
|
5502
|
-
cursor: pointer;
|
|
5503
|
-
color: @check-item-color;
|
|
5504
|
-
font-size: 16px;
|
|
5505
|
-
line-height: 1;
|
|
5506
|
-
vertical-align: middle;
|
|
5507
|
-
|
|
5508
|
-
&.igz-icon-checkbox-checked {
|
|
5509
|
-
color: @check-item-icon-checkbox-checked-color;
|
|
5510
|
-
}
|
|
5511
|
-
}
|
|
5512
|
-
}
|
|
5513
5496
|
.action-checkbox {
|
|
5514
5497
|
.action-checkbox-color-set();
|
|
5515
5498
|
|
|
@@ -5689,6 +5672,23 @@ yx-axis
|
|
|
5689
5672
|
}
|
|
5690
5673
|
}
|
|
5691
5674
|
|
|
5675
|
+
.action-checkbox-all {
|
|
5676
|
+
.action-checkbox-all-color-set();
|
|
5677
|
+
|
|
5678
|
+
text-align: center;
|
|
5679
|
+
|
|
5680
|
+
.check-item {
|
|
5681
|
+
cursor: pointer;
|
|
5682
|
+
color: @check-item-color;
|
|
5683
|
+
font-size: 16px;
|
|
5684
|
+
line-height: 1;
|
|
5685
|
+
vertical-align: middle;
|
|
5686
|
+
|
|
5687
|
+
&.igz-icon-checkbox-checked {
|
|
5688
|
+
color: @check-item-icon-checkbox-checked-color;
|
|
5689
|
+
}
|
|
5690
|
+
}
|
|
5691
|
+
}
|
|
5692
5692
|
.igz-action-panel {
|
|
5693
5693
|
.action-panel-color-set();
|
|
5694
5694
|
.action-icon-color-set();
|
|
@@ -6514,6 +6514,164 @@ yx-axis
|
|
|
6514
6514
|
}
|
|
6515
6515
|
}
|
|
6516
6516
|
|
|
6517
|
+
.more-info-wrapper {
|
|
6518
|
+
.more-info-color-set();
|
|
6519
|
+
|
|
6520
|
+
position: relative;
|
|
6521
|
+
display: inline-flex;
|
|
6522
|
+
align-items: center;
|
|
6523
|
+
height: 36px;
|
|
6524
|
+
margin-left: 8px;
|
|
6525
|
+
|
|
6526
|
+
.question-mark {
|
|
6527
|
+
cursor: default;
|
|
6528
|
+
|
|
6529
|
+
&::before {
|
|
6530
|
+
color: @icon-help-round-before-color;
|
|
6531
|
+
background-color: @icon-help-round-before-bg-color;
|
|
6532
|
+
}
|
|
6533
|
+
|
|
6534
|
+
&:hover {
|
|
6535
|
+
&::before {
|
|
6536
|
+
color: @icon-help-round-hover-before-color;
|
|
6537
|
+
}
|
|
6538
|
+
|
|
6539
|
+
+ .row-description-wrapper.row-description {
|
|
6540
|
+
color: @icon-help-description-hover-color;
|
|
6541
|
+
}
|
|
6542
|
+
}
|
|
6543
|
+
|
|
6544
|
+
&.igz-icon-alert-message {
|
|
6545
|
+
&::before {
|
|
6546
|
+
color: @icon-warn-hover-before-color;
|
|
6547
|
+
background-color: @icon-warn-before-bg-color;
|
|
6548
|
+
}
|
|
6549
|
+
|
|
6550
|
+
&:hover {
|
|
6551
|
+
&::before {
|
|
6552
|
+
color: @icon-warn-before-color;
|
|
6553
|
+
}
|
|
6554
|
+
}
|
|
6555
|
+
}
|
|
6556
|
+
|
|
6557
|
+
&.click-trigger {
|
|
6558
|
+
cursor: pointer;
|
|
6559
|
+
}
|
|
6560
|
+
|
|
6561
|
+
&+ .row-description-wrapper {
|
|
6562
|
+
display: none;
|
|
6563
|
+
}
|
|
6564
|
+
|
|
6565
|
+
&:not(.click-trigger):hover + .row-description-wrapper,
|
|
6566
|
+
&.open + .row-description-wrapper {
|
|
6567
|
+
display: block;
|
|
6568
|
+
}
|
|
6569
|
+
}
|
|
6570
|
+
|
|
6571
|
+
.row-description-wrapper {
|
|
6572
|
+
position: fixed;
|
|
6573
|
+
z-index: 4;
|
|
6574
|
+
}
|
|
6575
|
+
|
|
6576
|
+
.row-description {
|
|
6577
|
+
width: 240px;
|
|
6578
|
+
padding: 16px 19px;
|
|
6579
|
+
position: absolute;
|
|
6580
|
+
border-radius: 2px;
|
|
6581
|
+
box-shadow: @row-description-box-shadow;
|
|
6582
|
+
background-color: @row-description-bg-color;
|
|
6583
|
+
color: @row-description-color;
|
|
6584
|
+
font-family: @font-family-sans-serif;
|
|
6585
|
+
font-size: 12px;
|
|
6586
|
+
font-weight: 400;
|
|
6587
|
+
white-space: pre-line;
|
|
6588
|
+
line-height: normal;
|
|
6589
|
+
|
|
6590
|
+
&::before {
|
|
6591
|
+
position: absolute;
|
|
6592
|
+
content: '';
|
|
6593
|
+
}
|
|
6594
|
+
|
|
6595
|
+
&.top,
|
|
6596
|
+
&.bottom {
|
|
6597
|
+
left: -114px;
|
|
6598
|
+
|
|
6599
|
+
&::before {
|
|
6600
|
+
right: calc(50% - 9px);
|
|
6601
|
+
}
|
|
6602
|
+
|
|
6603
|
+
&-left {
|
|
6604
|
+
left: -220px;
|
|
6605
|
+
|
|
6606
|
+
&::before {
|
|
6607
|
+
right: 4px;
|
|
6608
|
+
}
|
|
6609
|
+
}
|
|
6610
|
+
|
|
6611
|
+
&-right {
|
|
6612
|
+
left: -6px;
|
|
6613
|
+
|
|
6614
|
+
&::before {
|
|
6615
|
+
right: calc(100% - 22px);
|
|
6616
|
+
}
|
|
6617
|
+
}
|
|
6618
|
+
}
|
|
6619
|
+
|
|
6620
|
+
&.top,
|
|
6621
|
+
&.top-left,
|
|
6622
|
+
&.top-right {
|
|
6623
|
+
bottom: 35px;
|
|
6624
|
+
|
|
6625
|
+
&::before {
|
|
6626
|
+
.triangle-arrow(down; @row-description-triangle-color; 8px; 10px);
|
|
6627
|
+
|
|
6628
|
+
bottom: -10px;
|
|
6629
|
+
}
|
|
6630
|
+
}
|
|
6631
|
+
|
|
6632
|
+
&.bottom,
|
|
6633
|
+
&.bottom-left,
|
|
6634
|
+
&.bottom-right {
|
|
6635
|
+
top: 8px;
|
|
6636
|
+
|
|
6637
|
+
&::before {
|
|
6638
|
+
.triangle-arrow(up; @row-description-triangle-color; 8px; 10px);
|
|
6639
|
+
|
|
6640
|
+
top: -10px;
|
|
6641
|
+
}
|
|
6642
|
+
}
|
|
6643
|
+
|
|
6644
|
+
&.right,
|
|
6645
|
+
&.left {
|
|
6646
|
+
top: -30px;
|
|
6647
|
+
|
|
6648
|
+
&::before {
|
|
6649
|
+
top: 7px;
|
|
6650
|
+
}
|
|
6651
|
+
}
|
|
6652
|
+
|
|
6653
|
+
&.right {
|
|
6654
|
+
left: 26px;
|
|
6655
|
+
|
|
6656
|
+
&::before {
|
|
6657
|
+
.triangle-arrow(right; @row-description-triangle-color; 8px; 10px);
|
|
6658
|
+
|
|
6659
|
+
left: -8px;
|
|
6660
|
+
}
|
|
6661
|
+
}
|
|
6662
|
+
|
|
6663
|
+
&.left {
|
|
6664
|
+
left: -250px;
|
|
6665
|
+
|
|
6666
|
+
&::before {
|
|
6667
|
+
.triangle-arrow(left; @row-description-triangle-color; 8px; 10px);
|
|
6668
|
+
|
|
6669
|
+
right: -8px;
|
|
6670
|
+
}
|
|
6671
|
+
}
|
|
6672
|
+
}
|
|
6673
|
+
}
|
|
6674
|
+
|
|
6517
6675
|
.igz-multiple-checkboxes {
|
|
6518
6676
|
.multiple-checkboxes-color-set();
|
|
6519
6677
|
|
|
@@ -6697,247 +6855,50 @@ yx-axis
|
|
|
6697
6855
|
}
|
|
6698
6856
|
}
|
|
6699
6857
|
|
|
6700
|
-
.
|
|
6701
|
-
.
|
|
6858
|
+
.igz-number-input {
|
|
6859
|
+
.number-input-color-set();
|
|
6702
6860
|
|
|
6861
|
+
min-width: 115px;
|
|
6862
|
+
font-family: @font-family-sans-serif;
|
|
6863
|
+
font-size: 14px;
|
|
6864
|
+
font-weight: 400;
|
|
6865
|
+
height: 36px;
|
|
6703
6866
|
position: relative;
|
|
6704
|
-
|
|
6867
|
+
background-color: @number-input-bg-color;
|
|
6868
|
+
border: @number-input-border;
|
|
6869
|
+
border-radius: 2px;
|
|
6870
|
+
color: @number-input-color;
|
|
6871
|
+
display: flex;
|
|
6872
|
+
justify-content: flex-start;
|
|
6705
6873
|
align-items: center;
|
|
6706
|
-
|
|
6707
|
-
|
|
6874
|
+
padding: 0 10px 0 11px;
|
|
6875
|
+
z-index: 3;
|
|
6708
6876
|
|
|
6709
|
-
.
|
|
6710
|
-
|
|
6877
|
+
&:not(.disabled) {
|
|
6878
|
+
&:focus.ng-invalid:not(.ng-pristine), &.ng-invalid.ng-touched {
|
|
6879
|
+
background-color: @number-input-not-disabled-focus-invalid-bg-color;
|
|
6880
|
+
border: @number-input-not-disabled-focus-invalid-border;
|
|
6881
|
+
box-shadow: none;
|
|
6882
|
+
outline: none;
|
|
6883
|
+
}
|
|
6711
6884
|
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
|
|
6885
|
+
&:focus-within, &.focused {
|
|
6886
|
+
outline: 0;
|
|
6887
|
+
border: @number-input-not-disabled-hover-focus-border;
|
|
6715
6888
|
}
|
|
6716
6889
|
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
|
|
6890
|
+
&.invalid:not(.pristine), &.invalid.submitted {
|
|
6891
|
+
background-color: @number-input-not-disabled-invalid-bg-color;
|
|
6892
|
+
border: @number-input-not-disabled-invalid-border;
|
|
6893
|
+
box-shadow: none;
|
|
6894
|
+
}
|
|
6721
6895
|
|
|
6722
|
-
|
|
6723
|
-
|
|
6724
|
-
|
|
6896
|
+
&:focus.ng-valid, &:focus.ng-pristine {
|
|
6897
|
+
border: @number-input-not-disabled-valid-border;
|
|
6898
|
+
box-shadow: none;
|
|
6899
|
+
outline: none;
|
|
6725
6900
|
}
|
|
6726
|
-
|
|
6727
|
-
&.igz-icon-alert-message {
|
|
6728
|
-
&::before {
|
|
6729
|
-
color: @icon-warn-hover-before-color;
|
|
6730
|
-
background-color: @icon-warn-before-bg-color;
|
|
6731
|
-
}
|
|
6732
|
-
|
|
6733
|
-
&:hover {
|
|
6734
|
-
&::before {
|
|
6735
|
-
color: @icon-warn-before-color;
|
|
6736
|
-
}
|
|
6737
|
-
}
|
|
6738
|
-
}
|
|
6739
|
-
|
|
6740
|
-
&.click-trigger {
|
|
6741
|
-
cursor: pointer;
|
|
6742
|
-
}
|
|
6743
|
-
|
|
6744
|
-
&+ .row-description-wrapper {
|
|
6745
|
-
display: none;
|
|
6746
|
-
}
|
|
6747
|
-
|
|
6748
|
-
&:not(.click-trigger):hover + .row-description-wrapper,
|
|
6749
|
-
&.open + .row-description-wrapper {
|
|
6750
|
-
display: block;
|
|
6751
|
-
}
|
|
6752
|
-
}
|
|
6753
|
-
|
|
6754
|
-
.row-description-wrapper {
|
|
6755
|
-
position: fixed;
|
|
6756
|
-
z-index: 4;
|
|
6757
|
-
}
|
|
6758
|
-
|
|
6759
|
-
.row-description {
|
|
6760
|
-
width: 240px;
|
|
6761
|
-
padding: 16px 19px;
|
|
6762
|
-
position: absolute;
|
|
6763
|
-
border-radius: 2px;
|
|
6764
|
-
box-shadow: @row-description-box-shadow;
|
|
6765
|
-
background-color: @row-description-bg-color;
|
|
6766
|
-
color: @row-description-color;
|
|
6767
|
-
font-family: @font-family-sans-serif;
|
|
6768
|
-
font-size: 12px;
|
|
6769
|
-
font-weight: 400;
|
|
6770
|
-
white-space: pre-line;
|
|
6771
|
-
line-height: normal;
|
|
6772
|
-
|
|
6773
|
-
&::before {
|
|
6774
|
-
position: absolute;
|
|
6775
|
-
content: '';
|
|
6776
|
-
}
|
|
6777
|
-
|
|
6778
|
-
&.top,
|
|
6779
|
-
&.bottom {
|
|
6780
|
-
left: -114px;
|
|
6781
|
-
|
|
6782
|
-
&::before {
|
|
6783
|
-
right: calc(50% - 9px);
|
|
6784
|
-
}
|
|
6785
|
-
|
|
6786
|
-
&-left {
|
|
6787
|
-
left: -220px;
|
|
6788
|
-
|
|
6789
|
-
&::before {
|
|
6790
|
-
right: 4px;
|
|
6791
|
-
}
|
|
6792
|
-
}
|
|
6793
|
-
|
|
6794
|
-
&-right {
|
|
6795
|
-
left: -6px;
|
|
6796
|
-
|
|
6797
|
-
&::before {
|
|
6798
|
-
right: calc(100% - 22px);
|
|
6799
|
-
}
|
|
6800
|
-
}
|
|
6801
|
-
}
|
|
6802
|
-
|
|
6803
|
-
&.top,
|
|
6804
|
-
&.top-left,
|
|
6805
|
-
&.top-right {
|
|
6806
|
-
bottom: 35px;
|
|
6807
|
-
|
|
6808
|
-
&::before {
|
|
6809
|
-
.triangle-arrow(down; @row-description-triangle-color; 8px; 10px);
|
|
6810
|
-
|
|
6811
|
-
bottom: -10px;
|
|
6812
|
-
}
|
|
6813
|
-
}
|
|
6814
|
-
|
|
6815
|
-
&.bottom,
|
|
6816
|
-
&.bottom-left,
|
|
6817
|
-
&.bottom-right {
|
|
6818
|
-
top: 8px;
|
|
6819
|
-
|
|
6820
|
-
&::before {
|
|
6821
|
-
.triangle-arrow(up; @row-description-triangle-color; 8px; 10px);
|
|
6822
|
-
|
|
6823
|
-
top: -10px;
|
|
6824
|
-
}
|
|
6825
|
-
}
|
|
6826
|
-
|
|
6827
|
-
&.right,
|
|
6828
|
-
&.left {
|
|
6829
|
-
top: -30px;
|
|
6830
|
-
|
|
6831
|
-
&::before {
|
|
6832
|
-
top: 7px;
|
|
6833
|
-
}
|
|
6834
|
-
}
|
|
6835
|
-
|
|
6836
|
-
&.right {
|
|
6837
|
-
left: 26px;
|
|
6838
|
-
|
|
6839
|
-
&::before {
|
|
6840
|
-
.triangle-arrow(right; @row-description-triangle-color; 8px; 10px);
|
|
6841
|
-
|
|
6842
|
-
left: -8px;
|
|
6843
|
-
}
|
|
6844
|
-
}
|
|
6845
|
-
|
|
6846
|
-
&.left {
|
|
6847
|
-
left: -250px;
|
|
6848
|
-
|
|
6849
|
-
&::before {
|
|
6850
|
-
.triangle-arrow(left; @row-description-triangle-color; 8px; 10px);
|
|
6851
|
-
|
|
6852
|
-
right: -8px;
|
|
6853
|
-
}
|
|
6854
|
-
}
|
|
6855
|
-
}
|
|
6856
|
-
}
|
|
6857
|
-
|
|
6858
|
-
.igz-navigation-tabs {
|
|
6859
|
-
.navigation-tabs-color-set();
|
|
6860
|
-
|
|
6861
|
-
background-color: @navigation-tabs-bg-color;
|
|
6862
|
-
height: 56px;
|
|
6863
|
-
padding-top: 7px;
|
|
6864
|
-
|
|
6865
|
-
.navigation-tab {
|
|
6866
|
-
float: left;
|
|
6867
|
-
height: 32px;
|
|
6868
|
-
padding: 15px 24px 0;
|
|
6869
|
-
font-family: @font-family-sans-serif;
|
|
6870
|
-
color: @navigation-tab-color;
|
|
6871
|
-
font-size: 14px;
|
|
6872
|
-
text-align: center;
|
|
6873
|
-
cursor: pointer;
|
|
6874
|
-
border-bottom: @navigation-tab-border-bottom;
|
|
6875
|
-
box-sizing: content-box;
|
|
6876
|
-
|
|
6877
|
-
&.active, &.active:hover {
|
|
6878
|
-
background-color: @navigation-tab-active-hover-bg-color;
|
|
6879
|
-
color: @navigation-tab-active-hover-color;
|
|
6880
|
-
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
6881
|
-
}
|
|
6882
|
-
|
|
6883
|
-
&:hover {
|
|
6884
|
-
background-color: @navigation-tab-hover-bg-color;
|
|
6885
|
-
}
|
|
6886
|
-
|
|
6887
|
-
&.active {
|
|
6888
|
-
background-color: @navigation-tab-active-bg-color;
|
|
6889
|
-
}
|
|
6890
|
-
|
|
6891
|
-
@media screen and (max-width: 940px) {
|
|
6892
|
-
padding: 15px 12px 0;
|
|
6893
|
-
}
|
|
6894
|
-
}
|
|
6895
|
-
}
|
|
6896
|
-
|
|
6897
|
-
.igz-number-input {
|
|
6898
|
-
.number-input-color-set();
|
|
6899
|
-
|
|
6900
|
-
min-width: 115px;
|
|
6901
|
-
font-family: @font-family-sans-serif;
|
|
6902
|
-
font-size: 14px;
|
|
6903
|
-
font-weight: 400;
|
|
6904
|
-
height: 36px;
|
|
6905
|
-
position: relative;
|
|
6906
|
-
background-color: @number-input-bg-color;
|
|
6907
|
-
border: @number-input-border;
|
|
6908
|
-
border-radius: 2px;
|
|
6909
|
-
color: @number-input-color;
|
|
6910
|
-
display: flex;
|
|
6911
|
-
justify-content: flex-start;
|
|
6912
|
-
align-items: center;
|
|
6913
|
-
padding: 0 10px 0 11px;
|
|
6914
|
-
z-index: 3;
|
|
6915
|
-
|
|
6916
|
-
&:not(.disabled) {
|
|
6917
|
-
&:focus.ng-invalid:not(.ng-pristine), &.ng-invalid.ng-touched {
|
|
6918
|
-
background-color: @number-input-not-disabled-focus-invalid-bg-color;
|
|
6919
|
-
border: @number-input-not-disabled-focus-invalid-border;
|
|
6920
|
-
box-shadow: none;
|
|
6921
|
-
outline: none;
|
|
6922
|
-
}
|
|
6923
|
-
|
|
6924
|
-
&:focus-within, &.focused {
|
|
6925
|
-
outline: 0;
|
|
6926
|
-
border: @number-input-not-disabled-hover-focus-border;
|
|
6927
|
-
}
|
|
6928
|
-
|
|
6929
|
-
&.invalid:not(.pristine), &.invalid.submitted {
|
|
6930
|
-
background-color: @number-input-not-disabled-invalid-bg-color;
|
|
6931
|
-
border: @number-input-not-disabled-invalid-border;
|
|
6932
|
-
box-shadow: none;
|
|
6933
|
-
}
|
|
6934
|
-
|
|
6935
|
-
&:focus.ng-valid, &:focus.ng-pristine {
|
|
6936
|
-
border: @number-input-not-disabled-valid-border;
|
|
6937
|
-
box-shadow: none;
|
|
6938
|
-
outline: none;
|
|
6939
|
-
}
|
|
6940
|
-
}
|
|
6901
|
+
}
|
|
6941
6902
|
|
|
6942
6903
|
&.additional-left-padding {
|
|
6943
6904
|
padding-left: 22px;
|
|
@@ -7047,6 +7008,45 @@ yx-axis
|
|
|
7047
7008
|
}
|
|
7048
7009
|
}
|
|
7049
7010
|
|
|
7011
|
+
.igz-navigation-tabs {
|
|
7012
|
+
.navigation-tabs-color-set();
|
|
7013
|
+
|
|
7014
|
+
background-color: @navigation-tabs-bg-color;
|
|
7015
|
+
height: 56px;
|
|
7016
|
+
padding-top: 7px;
|
|
7017
|
+
|
|
7018
|
+
.navigation-tab {
|
|
7019
|
+
float: left;
|
|
7020
|
+
height: 32px;
|
|
7021
|
+
padding: 15px 24px 0;
|
|
7022
|
+
font-family: @font-family-sans-serif;
|
|
7023
|
+
color: @navigation-tab-color;
|
|
7024
|
+
font-size: 14px;
|
|
7025
|
+
text-align: center;
|
|
7026
|
+
cursor: pointer;
|
|
7027
|
+
border-bottom: @navigation-tab-border-bottom;
|
|
7028
|
+
box-sizing: content-box;
|
|
7029
|
+
|
|
7030
|
+
&.active, &.active:hover {
|
|
7031
|
+
background-color: @navigation-tab-active-hover-bg-color;
|
|
7032
|
+
color: @navigation-tab-active-hover-color;
|
|
7033
|
+
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
7034
|
+
}
|
|
7035
|
+
|
|
7036
|
+
&:hover {
|
|
7037
|
+
background-color: @navigation-tab-hover-bg-color;
|
|
7038
|
+
}
|
|
7039
|
+
|
|
7040
|
+
&.active {
|
|
7041
|
+
background-color: @navigation-tab-active-bg-color;
|
|
7042
|
+
}
|
|
7043
|
+
|
|
7044
|
+
@media screen and (max-width: 940px) {
|
|
7045
|
+
padding: 15px 12px 0;
|
|
7046
|
+
}
|
|
7047
|
+
}
|
|
7048
|
+
}
|
|
7049
|
+
|
|
7050
7050
|
.igz-pagination {
|
|
7051
7051
|
.pagination-color-set();
|
|
7052
7052
|
|
|
@@ -7195,8 +7195,227 @@ yx-axis
|
|
|
7195
7195
|
}
|
|
7196
7196
|
}
|
|
7197
7197
|
}
|
|
7198
|
-
.
|
|
7199
|
-
.
|
|
7198
|
+
.igz-slider-input-block {
|
|
7199
|
+
.igz-slider-input-block-color-set();
|
|
7200
|
+
|
|
7201
|
+
position: relative;
|
|
7202
|
+
|
|
7203
|
+
.igz-slider-input-title {
|
|
7204
|
+
float: left;
|
|
7205
|
+
display: table;
|
|
7206
|
+
min-height: 30px;
|
|
7207
|
+
line-height: 1;
|
|
7208
|
+
color: @slider-input-title-color;
|
|
7209
|
+
font-size: 14px;
|
|
7210
|
+
font-weight: 400;
|
|
7211
|
+
text-align: left;
|
|
7212
|
+
cursor: default;
|
|
7213
|
+
|
|
7214
|
+
.igz-slider-input-title-text {
|
|
7215
|
+
display: table-cell;
|
|
7216
|
+
vertical-align: middle;
|
|
7217
|
+
}
|
|
7218
|
+
}
|
|
7219
|
+
|
|
7220
|
+
// Custom styles for third-party library slider
|
|
7221
|
+
.igz-slider-input-rz-slider {
|
|
7222
|
+
float: left;
|
|
7223
|
+
min-height: 16px;
|
|
7224
|
+
line-height: 16px;
|
|
7225
|
+
|
|
7226
|
+
.rzslider {
|
|
7227
|
+
margin: 0;
|
|
7228
|
+
height: 8px;
|
|
7229
|
+
|
|
7230
|
+
.rz-bar-wrapper {
|
|
7231
|
+
height: auto;
|
|
7232
|
+
margin: 0;
|
|
7233
|
+
padding: 0;
|
|
7234
|
+
|
|
7235
|
+
.rz-bar {
|
|
7236
|
+
background-color: @rz-bar-bg-color;
|
|
7237
|
+
height: 3px;
|
|
7238
|
+
}
|
|
7239
|
+
}
|
|
7240
|
+
|
|
7241
|
+
.rz-bubble {
|
|
7242
|
+
display: none;
|
|
7243
|
+
}
|
|
7244
|
+
|
|
7245
|
+
.rz-pointer {
|
|
7246
|
+
height: 14px;
|
|
7247
|
+
width: 14px;
|
|
7248
|
+
top: -6px;
|
|
7249
|
+
box-shadow: @rz-pointer-box-shadow;
|
|
7250
|
+
outline: 0;
|
|
7251
|
+
|
|
7252
|
+
&:after {
|
|
7253
|
+
display: none;
|
|
7254
|
+
}
|
|
7255
|
+
}
|
|
7256
|
+
|
|
7257
|
+
&:not([disabled]) {
|
|
7258
|
+
.rz-bar.rz-selection {
|
|
7259
|
+
background-color: @rz-selection-bg-color;
|
|
7260
|
+
}
|
|
7261
|
+
|
|
7262
|
+
.rz-pointer {
|
|
7263
|
+
background-color: @rz-pointer-bg-color;
|
|
7264
|
+
}
|
|
7265
|
+
}
|
|
7266
|
+
}
|
|
7267
|
+
}
|
|
7268
|
+
|
|
7269
|
+
// Current value
|
|
7270
|
+
.igz-slider-input-current-value {
|
|
7271
|
+
float: left;
|
|
7272
|
+
min-height: 30px;
|
|
7273
|
+
line-height: 30px;
|
|
7274
|
+
|
|
7275
|
+
&.with-measure-units {
|
|
7276
|
+
width: 18%;
|
|
7277
|
+
padding-right: 0;
|
|
7278
|
+
|
|
7279
|
+
.igz-slider-input-current-value-text {
|
|
7280
|
+
margin-right: 4px;
|
|
7281
|
+
}
|
|
7282
|
+
}
|
|
7283
|
+
|
|
7284
|
+
&.with-value-unit {
|
|
7285
|
+
padding-right: 21px;
|
|
7286
|
+
}
|
|
7287
|
+
|
|
7288
|
+
.igz-slider-input-current-value-text {
|
|
7289
|
+
color: @slider-input-current-value-text-color;
|
|
7290
|
+
font-size: 13px;
|
|
7291
|
+
font-weight: 400;
|
|
7292
|
+
background-color: @slider-input-current-value-text-bg-color;
|
|
7293
|
+
text-align: right;
|
|
7294
|
+
}
|
|
7295
|
+
}
|
|
7296
|
+
|
|
7297
|
+
.igz-slider-input-unit-label {
|
|
7298
|
+
position: absolute;
|
|
7299
|
+
right: 0;
|
|
7300
|
+
min-height: 30px;
|
|
7301
|
+
line-height: 30px;
|
|
7302
|
+
}
|
|
7303
|
+
|
|
7304
|
+
// Units dropdown
|
|
7305
|
+
.igz-slider-input-units-dropdown {
|
|
7306
|
+
float: left;
|
|
7307
|
+
|
|
7308
|
+
.default-dropdown {
|
|
7309
|
+
height: 30px;
|
|
7310
|
+
|
|
7311
|
+
.default-dropdown-field {
|
|
7312
|
+
border: none;
|
|
7313
|
+
background-color: @default-dropdown-field-bg-color;
|
|
7314
|
+
|
|
7315
|
+
.dropdown-selected-item {
|
|
7316
|
+
padding-left: 0;
|
|
7317
|
+
}
|
|
7318
|
+
|
|
7319
|
+
.dropdown-arrow {
|
|
7320
|
+
margin-right: 0;
|
|
7321
|
+
}
|
|
7322
|
+
}
|
|
7323
|
+
}
|
|
7324
|
+
}
|
|
7325
|
+
}
|
|
7326
|
+
|
|
7327
|
+
.igz-size {
|
|
7328
|
+
.size-color-set();
|
|
7329
|
+
|
|
7330
|
+
align-items: center;
|
|
7331
|
+
display: flex;
|
|
7332
|
+
justify-content: space-between;
|
|
7333
|
+
|
|
7334
|
+
&:after {
|
|
7335
|
+
content: ' ';
|
|
7336
|
+
display: inline-block;
|
|
7337
|
+
vertical-align: middle;
|
|
7338
|
+
}
|
|
7339
|
+
|
|
7340
|
+
.size-value {
|
|
7341
|
+
line-height: 1;
|
|
7342
|
+
flex: 0 0 100px;
|
|
7343
|
+
min-width: 100px;
|
|
7344
|
+
|
|
7345
|
+
> span {
|
|
7346
|
+
line-height: 25px;
|
|
7347
|
+
}
|
|
7348
|
+
|
|
7349
|
+
&.short {
|
|
7350
|
+
flex: 0 0 75px;
|
|
7351
|
+
min-width: 75px;
|
|
7352
|
+
}
|
|
7353
|
+
|
|
7354
|
+
&.shorten {
|
|
7355
|
+
flex: 0 0 60px;
|
|
7356
|
+
min-width: 60px;
|
|
7357
|
+
}
|
|
7358
|
+
|
|
7359
|
+
&.shortest {
|
|
7360
|
+
flex: 0 0 40px;
|
|
7361
|
+
min-width: 40px;
|
|
7362
|
+
}
|
|
7363
|
+
}
|
|
7364
|
+
|
|
7365
|
+
.size-reserved {
|
|
7366
|
+
color: @size-reserved-color;
|
|
7367
|
+
font-size: 12px;
|
|
7368
|
+
|
|
7369
|
+
.icon-font-arrow-right:before {
|
|
7370
|
+
color: @size-reserved-arrow-right-before-color;
|
|
7371
|
+
font-size: 10px;
|
|
7372
|
+
padding: 0 4px 0 4px;
|
|
7373
|
+
}
|
|
7374
|
+
|
|
7375
|
+
.icon-font-infinity:before {
|
|
7376
|
+
color: @size-reserved-infinity-before-color;
|
|
7377
|
+
font-size: 10px;
|
|
7378
|
+
}
|
|
7379
|
+
}
|
|
7380
|
+
|
|
7381
|
+
.size-chart {
|
|
7382
|
+
flex: 1 1 auto;
|
|
7383
|
+
min-width: 0;
|
|
7384
|
+
|
|
7385
|
+
div.highcharts-tooltip {
|
|
7386
|
+
position: fixed !important;
|
|
7387
|
+
|
|
7388
|
+
.igz-tooltip-wrapper {
|
|
7389
|
+
color: @size-chart-tooltip-wrapper-color;
|
|
7390
|
+
|
|
7391
|
+
&.used-capacity-tooltip-wrapper {
|
|
7392
|
+
.igz-row {
|
|
7393
|
+
.tooltip-label,
|
|
7394
|
+
.tooltip-value {
|
|
7395
|
+
text-overflow: unset;
|
|
7396
|
+
}
|
|
7397
|
+
}
|
|
7398
|
+
}
|
|
7399
|
+
|
|
7400
|
+
.tooltip-header {
|
|
7401
|
+
padding-bottom: 6px;
|
|
7402
|
+
margin-bottom: 5px;
|
|
7403
|
+
line-height: 1.1;
|
|
7404
|
+
text-align: center;
|
|
7405
|
+
}
|
|
7406
|
+
}
|
|
7407
|
+
}
|
|
7408
|
+
}
|
|
7409
|
+
|
|
7410
|
+
.igz-highcharts-wrapper {
|
|
7411
|
+
height: 40px;
|
|
7412
|
+
position: relative;
|
|
7413
|
+
width: 100%;
|
|
7414
|
+
}
|
|
7415
|
+
}
|
|
7416
|
+
|
|
7417
|
+
.search-input {
|
|
7418
|
+
.search-input-color-set();
|
|
7200
7419
|
|
|
7201
7420
|
position: relative;
|
|
7202
7421
|
color: @search-input-color;
|
|
@@ -7382,241 +7601,22 @@ yx-axis
|
|
|
7382
7601
|
}
|
|
7383
7602
|
}
|
|
7384
7603
|
}
|
|
7385
|
-
.
|
|
7386
|
-
.
|
|
7387
|
-
|
|
7388
|
-
align-items: center;
|
|
7389
|
-
display: flex;
|
|
7390
|
-
justify-content: space-between;
|
|
7604
|
+
.splash-screen {
|
|
7605
|
+
.splash-screen-color-set();
|
|
7391
7606
|
|
|
7392
|
-
|
|
7393
|
-
|
|
7394
|
-
|
|
7395
|
-
|
|
7396
|
-
|
|
7607
|
+
position: absolute;
|
|
7608
|
+
z-index: 996;
|
|
7609
|
+
width: 100%;
|
|
7610
|
+
height: 100%;
|
|
7611
|
+
background-color: @splash-screen-bg-color;
|
|
7612
|
+
transform-style: preserve-3d;
|
|
7397
7613
|
|
|
7398
|
-
|
|
7399
|
-
|
|
7400
|
-
flex: 0 0 100px;
|
|
7401
|
-
min-width: 100px;
|
|
7614
|
+
// ngAnimate appearance for show/hide
|
|
7615
|
+
transition: opacity linear .25s 0s;
|
|
7402
7616
|
|
|
7403
|
-
|
|
7404
|
-
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
&.short {
|
|
7408
|
-
flex: 0 0 75px;
|
|
7409
|
-
min-width: 75px;
|
|
7410
|
-
}
|
|
7411
|
-
|
|
7412
|
-
&.shorten {
|
|
7413
|
-
flex: 0 0 60px;
|
|
7414
|
-
min-width: 60px;
|
|
7415
|
-
}
|
|
7416
|
-
|
|
7417
|
-
&.shortest {
|
|
7418
|
-
flex: 0 0 40px;
|
|
7419
|
-
min-width: 40px;
|
|
7420
|
-
}
|
|
7421
|
-
}
|
|
7422
|
-
|
|
7423
|
-
.size-reserved {
|
|
7424
|
-
color: @size-reserved-color;
|
|
7425
|
-
font-size: 12px;
|
|
7426
|
-
|
|
7427
|
-
.icon-font-arrow-right:before {
|
|
7428
|
-
color: @size-reserved-arrow-right-before-color;
|
|
7429
|
-
font-size: 10px;
|
|
7430
|
-
padding: 0 4px 0 4px;
|
|
7431
|
-
}
|
|
7432
|
-
|
|
7433
|
-
.icon-font-infinity:before {
|
|
7434
|
-
color: @size-reserved-infinity-before-color;
|
|
7435
|
-
font-size: 10px;
|
|
7436
|
-
}
|
|
7437
|
-
}
|
|
7438
|
-
|
|
7439
|
-
.size-chart {
|
|
7440
|
-
flex: 1 1 auto;
|
|
7441
|
-
min-width: 0;
|
|
7442
|
-
|
|
7443
|
-
div.highcharts-tooltip {
|
|
7444
|
-
position: fixed !important;
|
|
7445
|
-
|
|
7446
|
-
.igz-tooltip-wrapper {
|
|
7447
|
-
color: @size-chart-tooltip-wrapper-color;
|
|
7448
|
-
|
|
7449
|
-
&.used-capacity-tooltip-wrapper {
|
|
7450
|
-
.igz-row {
|
|
7451
|
-
.tooltip-label,
|
|
7452
|
-
.tooltip-value {
|
|
7453
|
-
text-overflow: unset;
|
|
7454
|
-
}
|
|
7455
|
-
}
|
|
7456
|
-
}
|
|
7457
|
-
|
|
7458
|
-
.tooltip-header {
|
|
7459
|
-
padding-bottom: 6px;
|
|
7460
|
-
margin-bottom: 5px;
|
|
7461
|
-
line-height: 1.1;
|
|
7462
|
-
text-align: center;
|
|
7463
|
-
}
|
|
7464
|
-
}
|
|
7465
|
-
}
|
|
7466
|
-
}
|
|
7467
|
-
|
|
7468
|
-
.igz-highcharts-wrapper {
|
|
7469
|
-
height: 40px;
|
|
7470
|
-
position: relative;
|
|
7471
|
-
width: 100%;
|
|
7472
|
-
}
|
|
7473
|
-
}
|
|
7474
|
-
|
|
7475
|
-
.igz-slider-input-block {
|
|
7476
|
-
.igz-slider-input-block-color-set();
|
|
7477
|
-
|
|
7478
|
-
position: relative;
|
|
7479
|
-
|
|
7480
|
-
.igz-slider-input-title {
|
|
7481
|
-
float: left;
|
|
7482
|
-
display: table;
|
|
7483
|
-
min-height: 30px;
|
|
7484
|
-
line-height: 1;
|
|
7485
|
-
color: @slider-input-title-color;
|
|
7486
|
-
font-size: 14px;
|
|
7487
|
-
font-weight: 400;
|
|
7488
|
-
text-align: left;
|
|
7489
|
-
cursor: default;
|
|
7490
|
-
|
|
7491
|
-
.igz-slider-input-title-text {
|
|
7492
|
-
display: table-cell;
|
|
7493
|
-
vertical-align: middle;
|
|
7494
|
-
}
|
|
7495
|
-
}
|
|
7496
|
-
|
|
7497
|
-
// Custom styles for third-party library slider
|
|
7498
|
-
.igz-slider-input-rz-slider {
|
|
7499
|
-
float: left;
|
|
7500
|
-
min-height: 16px;
|
|
7501
|
-
line-height: 16px;
|
|
7502
|
-
|
|
7503
|
-
.rzslider {
|
|
7504
|
-
margin: 0;
|
|
7505
|
-
height: 8px;
|
|
7506
|
-
|
|
7507
|
-
.rz-bar-wrapper {
|
|
7508
|
-
height: auto;
|
|
7509
|
-
margin: 0;
|
|
7510
|
-
padding: 0;
|
|
7511
|
-
|
|
7512
|
-
.rz-bar {
|
|
7513
|
-
background-color: @rz-bar-bg-color;
|
|
7514
|
-
height: 3px;
|
|
7515
|
-
}
|
|
7516
|
-
}
|
|
7517
|
-
|
|
7518
|
-
.rz-bubble {
|
|
7519
|
-
display: none;
|
|
7520
|
-
}
|
|
7521
|
-
|
|
7522
|
-
.rz-pointer {
|
|
7523
|
-
height: 14px;
|
|
7524
|
-
width: 14px;
|
|
7525
|
-
top: -6px;
|
|
7526
|
-
box-shadow: @rz-pointer-box-shadow;
|
|
7527
|
-
outline: 0;
|
|
7528
|
-
|
|
7529
|
-
&:after {
|
|
7530
|
-
display: none;
|
|
7531
|
-
}
|
|
7532
|
-
}
|
|
7533
|
-
|
|
7534
|
-
&:not([disabled]) {
|
|
7535
|
-
.rz-bar.rz-selection {
|
|
7536
|
-
background-color: @rz-selection-bg-color;
|
|
7537
|
-
}
|
|
7538
|
-
|
|
7539
|
-
.rz-pointer {
|
|
7540
|
-
background-color: @rz-pointer-bg-color;
|
|
7541
|
-
}
|
|
7542
|
-
}
|
|
7543
|
-
}
|
|
7544
|
-
}
|
|
7545
|
-
|
|
7546
|
-
// Current value
|
|
7547
|
-
.igz-slider-input-current-value {
|
|
7548
|
-
float: left;
|
|
7549
|
-
min-height: 30px;
|
|
7550
|
-
line-height: 30px;
|
|
7551
|
-
|
|
7552
|
-
&.with-measure-units {
|
|
7553
|
-
width: 18%;
|
|
7554
|
-
padding-right: 0;
|
|
7555
|
-
|
|
7556
|
-
.igz-slider-input-current-value-text {
|
|
7557
|
-
margin-right: 4px;
|
|
7558
|
-
}
|
|
7559
|
-
}
|
|
7560
|
-
|
|
7561
|
-
&.with-value-unit {
|
|
7562
|
-
padding-right: 21px;
|
|
7563
|
-
}
|
|
7564
|
-
|
|
7565
|
-
.igz-slider-input-current-value-text {
|
|
7566
|
-
color: @slider-input-current-value-text-color;
|
|
7567
|
-
font-size: 13px;
|
|
7568
|
-
font-weight: 400;
|
|
7569
|
-
background-color: @slider-input-current-value-text-bg-color;
|
|
7570
|
-
text-align: right;
|
|
7571
|
-
}
|
|
7572
|
-
}
|
|
7573
|
-
|
|
7574
|
-
.igz-slider-input-unit-label {
|
|
7575
|
-
position: absolute;
|
|
7576
|
-
right: 0;
|
|
7577
|
-
min-height: 30px;
|
|
7578
|
-
line-height: 30px;
|
|
7579
|
-
}
|
|
7580
|
-
|
|
7581
|
-
// Units dropdown
|
|
7582
|
-
.igz-slider-input-units-dropdown {
|
|
7583
|
-
float: left;
|
|
7584
|
-
|
|
7585
|
-
.default-dropdown {
|
|
7586
|
-
height: 30px;
|
|
7587
|
-
|
|
7588
|
-
.default-dropdown-field {
|
|
7589
|
-
border: none;
|
|
7590
|
-
background-color: @default-dropdown-field-bg-color;
|
|
7591
|
-
|
|
7592
|
-
.dropdown-selected-item {
|
|
7593
|
-
padding-left: 0;
|
|
7594
|
-
}
|
|
7595
|
-
|
|
7596
|
-
.dropdown-arrow {
|
|
7597
|
-
margin-right: 0;
|
|
7598
|
-
}
|
|
7599
|
-
}
|
|
7600
|
-
}
|
|
7601
|
-
}
|
|
7602
|
-
}
|
|
7603
|
-
|
|
7604
|
-
.splash-screen {
|
|
7605
|
-
.splash-screen-color-set();
|
|
7606
|
-
|
|
7607
|
-
position: absolute;
|
|
7608
|
-
z-index: 996;
|
|
7609
|
-
width: 100%;
|
|
7610
|
-
height: 100%;
|
|
7611
|
-
background-color: @splash-screen-bg-color;
|
|
7612
|
-
transform-style: preserve-3d;
|
|
7613
|
-
|
|
7614
|
-
// ngAnimate appearance for show/hide
|
|
7615
|
-
transition: opacity linear .25s 0s;
|
|
7616
|
-
|
|
7617
|
-
&.ng-hide-remove {
|
|
7618
|
-
opacity: 0;
|
|
7619
|
-
}
|
|
7617
|
+
&.ng-hide-remove {
|
|
7618
|
+
opacity: 0;
|
|
7619
|
+
}
|
|
7620
7620
|
|
|
7621
7621
|
.loading-splash-screen {
|
|
7622
7622
|
position: absolute;
|
|
@@ -7785,37 +7785,97 @@ yx-axis
|
|
|
7785
7785
|
}
|
|
7786
7786
|
}
|
|
7787
7787
|
|
|
7788
|
-
.
|
|
7789
|
-
.
|
|
7788
|
+
.toast-status-panel {
|
|
7789
|
+
.toast-status-panel-color-set();
|
|
7790
7790
|
|
|
7791
|
-
|
|
7792
|
-
|
|
7793
|
-
|
|
7794
|
-
|
|
7795
|
-
min-height: 32px;
|
|
7796
|
-
line-height: 32px;
|
|
7791
|
+
margin-bottom: 20px;
|
|
7792
|
+
padding: 16px 36px 16px 12px;
|
|
7793
|
+
background-color: @toast-panel-bg-color;
|
|
7794
|
+
border: @toast-panel-border;
|
|
7797
7795
|
position: relative;
|
|
7798
7796
|
|
|
7799
|
-
|
|
7800
|
-
|
|
7801
|
-
|
|
7802
|
-
left: 8px;
|
|
7803
|
-
z-index: 2;
|
|
7804
|
-
color: @validating-input-icon-color;
|
|
7797
|
+
&.in-progress {
|
|
7798
|
+
background-color: @toast-panel-in-progress-bg-color;
|
|
7799
|
+
border: @toast-panel-in-progress-border;
|
|
7805
7800
|
}
|
|
7806
7801
|
|
|
7807
|
-
|
|
7808
|
-
|
|
7809
|
-
|
|
7802
|
+
&.failed {
|
|
7803
|
+
background-color: @toast-panel-failed-bg-color;
|
|
7804
|
+
border: @toast-panel-failed-border;
|
|
7805
|
+
}
|
|
7810
7806
|
|
|
7811
|
-
.
|
|
7812
|
-
|
|
7813
|
-
|
|
7814
|
-
|
|
7815
|
-
|
|
7807
|
+
.panel-status {
|
|
7808
|
+
color: @toast-panel-status-color;
|
|
7809
|
+
line-height: 24px;
|
|
7810
|
+
font-size: 14px;
|
|
7811
|
+
font-weight: 700;
|
|
7812
|
+
font-family: @font-family-sans-serif;
|
|
7813
|
+
align-items: center;
|
|
7814
|
+
display: flex;
|
|
7815
|
+
justify-content: center;
|
|
7816
7816
|
|
|
7817
|
-
&.
|
|
7818
|
-
|
|
7817
|
+
&.in-progress {
|
|
7818
|
+
color: @toast-panel-status-in-progress-color;
|
|
7819
|
+
}
|
|
7820
|
+
|
|
7821
|
+
&.failed {
|
|
7822
|
+
color: @toast-panel-status-failed-color;
|
|
7823
|
+
}
|
|
7824
|
+
|
|
7825
|
+
.panel-status-icon {
|
|
7826
|
+
font-size: 24px;
|
|
7827
|
+
|
|
7828
|
+
&.igz-icon-properties {
|
|
7829
|
+
-webkit-animation: rotation 4s infinite linear;
|
|
7830
|
+
|
|
7831
|
+
@-webkit-keyframes rotation {
|
|
7832
|
+
from {
|
|
7833
|
+
-webkit-transform: rotate(0deg);
|
|
7834
|
+
}
|
|
7835
|
+
to {
|
|
7836
|
+
-webkit-transform: rotate(359deg);
|
|
7837
|
+
}
|
|
7838
|
+
}
|
|
7839
|
+
}
|
|
7840
|
+
}
|
|
7841
|
+
|
|
7842
|
+
.panel-status-msg {
|
|
7843
|
+
margin-left: 8px;
|
|
7844
|
+
}
|
|
7845
|
+
}
|
|
7846
|
+
}
|
|
7847
|
+
|
|
7848
|
+
.validating-input-field {
|
|
7849
|
+
.validating-input-field-color-set();
|
|
7850
|
+
|
|
7851
|
+
background-color: @validating-input-field-bg-color;
|
|
7852
|
+
font-family: @font-family-sans-serif;
|
|
7853
|
+
font-size: 13px;
|
|
7854
|
+
font-weight: 400;
|
|
7855
|
+
min-height: 32px;
|
|
7856
|
+
line-height: 32px;
|
|
7857
|
+
position: relative;
|
|
7858
|
+
|
|
7859
|
+
.input-icon {
|
|
7860
|
+
position: absolute;
|
|
7861
|
+
top: 2px;
|
|
7862
|
+
left: 8px;
|
|
7863
|
+
z-index: 2;
|
|
7864
|
+
color: @validating-input-icon-color;
|
|
7865
|
+
}
|
|
7866
|
+
|
|
7867
|
+
//
|
|
7868
|
+
// validation icon
|
|
7869
|
+
//
|
|
7870
|
+
|
|
7871
|
+
.validation-icon {
|
|
7872
|
+
position: absolute;
|
|
7873
|
+
right: 9px;
|
|
7874
|
+
bottom: 0;
|
|
7875
|
+
z-index: 3;
|
|
7876
|
+
|
|
7877
|
+
&.igz-icon-verify-error {
|
|
7878
|
+
font-size: 13px;
|
|
7819
7879
|
color: @validation-icon-error-color;
|
|
7820
7880
|
}
|
|
7821
7881
|
|
|
@@ -8115,66 +8175,6 @@ form.ng-submitted .validating-input-field {
|
|
|
8115
8175
|
}
|
|
8116
8176
|
}
|
|
8117
8177
|
|
|
8118
|
-
.toast-status-panel {
|
|
8119
|
-
.toast-status-panel-color-set();
|
|
8120
|
-
|
|
8121
|
-
margin-bottom: 20px;
|
|
8122
|
-
padding: 16px 36px 16px 12px;
|
|
8123
|
-
background-color: @toast-panel-bg-color;
|
|
8124
|
-
border: @toast-panel-border;
|
|
8125
|
-
position: relative;
|
|
8126
|
-
|
|
8127
|
-
&.in-progress {
|
|
8128
|
-
background-color: @toast-panel-in-progress-bg-color;
|
|
8129
|
-
border: @toast-panel-in-progress-border;
|
|
8130
|
-
}
|
|
8131
|
-
|
|
8132
|
-
&.failed {
|
|
8133
|
-
background-color: @toast-panel-failed-bg-color;
|
|
8134
|
-
border: @toast-panel-failed-border;
|
|
8135
|
-
}
|
|
8136
|
-
|
|
8137
|
-
.panel-status {
|
|
8138
|
-
color: @toast-panel-status-color;
|
|
8139
|
-
line-height: 24px;
|
|
8140
|
-
font-size: 14px;
|
|
8141
|
-
font-weight: 700;
|
|
8142
|
-
font-family: @font-family-sans-serif;
|
|
8143
|
-
align-items: center;
|
|
8144
|
-
display: flex;
|
|
8145
|
-
justify-content: center;
|
|
8146
|
-
|
|
8147
|
-
&.in-progress {
|
|
8148
|
-
color: @toast-panel-status-in-progress-color;
|
|
8149
|
-
}
|
|
8150
|
-
|
|
8151
|
-
&.failed {
|
|
8152
|
-
color: @toast-panel-status-failed-color;
|
|
8153
|
-
}
|
|
8154
|
-
|
|
8155
|
-
.panel-status-icon {
|
|
8156
|
-
font-size: 24px;
|
|
8157
|
-
|
|
8158
|
-
&.igz-icon-properties {
|
|
8159
|
-
-webkit-animation: rotation 4s infinite linear;
|
|
8160
|
-
|
|
8161
|
-
@-webkit-keyframes rotation {
|
|
8162
|
-
from {
|
|
8163
|
-
-webkit-transform: rotate(0deg);
|
|
8164
|
-
}
|
|
8165
|
-
to {
|
|
8166
|
-
-webkit-transform: rotate(359deg);
|
|
8167
|
-
}
|
|
8168
|
-
}
|
|
8169
|
-
}
|
|
8170
|
-
}
|
|
8171
|
-
|
|
8172
|
-
.panel-status-msg {
|
|
8173
|
-
margin-left: 8px;
|
|
8174
|
-
}
|
|
8175
|
-
}
|
|
8176
|
-
}
|
|
8177
|
-
|
|
8178
8178
|
.ncl-api-gateway-row {
|
|
8179
8179
|
.common-table-cells-container {
|
|
8180
8180
|
.common-table-cell {
|
|
@@ -8778,18 +8778,6 @@ body {
|
|
|
8778
8778
|
border: solid 1px @pale-grey;
|
|
8779
8779
|
}
|
|
8780
8780
|
}
|
|
8781
|
-
.deploy-deleted-function-dialog {
|
|
8782
|
-
.sub-title {
|
|
8783
|
-
font-size: 16px;
|
|
8784
|
-
color: @silver-chalice-two;
|
|
8785
|
-
}
|
|
8786
|
-
|
|
8787
|
-
.buttons {
|
|
8788
|
-
display: flex;
|
|
8789
|
-
justify-content: flex-end;
|
|
8790
|
-
}
|
|
8791
|
-
}
|
|
8792
|
-
|
|
8793
8781
|
.duplicate-function-dialog-wrapper {
|
|
8794
8782
|
.main-content {
|
|
8795
8783
|
.field-group {
|
|
@@ -8811,6 +8799,18 @@ body {
|
|
|
8811
8799
|
}
|
|
8812
8800
|
}
|
|
8813
8801
|
|
|
8802
|
+
.deploy-deleted-function-dialog {
|
|
8803
|
+
.sub-title {
|
|
8804
|
+
font-size: 16px;
|
|
8805
|
+
color: @silver-chalice-two;
|
|
8806
|
+
}
|
|
8807
|
+
|
|
8808
|
+
.buttons {
|
|
8809
|
+
display: flex;
|
|
8810
|
+
justify-content: flex-end;
|
|
8811
|
+
}
|
|
8812
|
+
}
|
|
8813
|
+
|
|
8814
8814
|
.ncl-function-collapsing-row {
|
|
8815
8815
|
background-color: @white;
|
|
8816
8816
|
margin-bottom: 8px;
|
|
@@ -9290,216 +9290,94 @@ body {
|
|
|
9290
9290
|
}
|
|
9291
9291
|
}
|
|
9292
9292
|
|
|
9293
|
-
.
|
|
9294
|
-
.info-page-
|
|
9293
|
+
.info-page-filters-bookmark {
|
|
9294
|
+
.info-page-filters-color-set();
|
|
9295
9295
|
|
|
9296
|
-
|
|
9297
|
-
|
|
9296
|
+
background-color: @filters-bookmark-bg-color;
|
|
9297
|
+
border-bottom-right-radius: 4px;
|
|
9298
|
+
border-top-right-radius: 4px;
|
|
9299
|
+
box-shadow: @filters-bookmark-box-shadow;
|
|
9300
|
+
color: @filters-bookmark-color;
|
|
9301
|
+
cursor: pointer;
|
|
9302
|
+
font-size: 10px;
|
|
9303
|
+
height: 22px;
|
|
9298
9304
|
right: 0;
|
|
9299
|
-
|
|
9300
|
-
|
|
9301
|
-
|
|
9305
|
+
line-height: 22px;
|
|
9306
|
+
position: absolute;
|
|
9307
|
+
text-align: center;
|
|
9308
|
+
top: 22px;
|
|
9302
9309
|
transition: @igz-basic-transition;
|
|
9303
|
-
|
|
9310
|
+
width: 18px;
|
|
9311
|
+
z-index: 998;
|
|
9304
9312
|
|
|
9305
|
-
|
|
9306
|
-
|
|
9313
|
+
&:before {
|
|
9314
|
+
right: 3px;
|
|
9315
|
+
position: absolute;
|
|
9316
|
+
top: 6px;
|
|
9307
9317
|
}
|
|
9308
9318
|
|
|
9309
|
-
|
|
9310
|
-
|
|
9319
|
+
&:after {
|
|
9320
|
+
background-color: @filters-bookmark-after-bg-color;
|
|
9321
|
+
content: "";
|
|
9322
|
+
height: 100%;
|
|
9323
|
+
right: -6px;
|
|
9324
|
+
position: absolute;
|
|
9325
|
+
top: 0;
|
|
9326
|
+
width: 6px;
|
|
9311
9327
|
}
|
|
9312
9328
|
|
|
9313
|
-
&.
|
|
9314
|
-
|
|
9329
|
+
&.upper-pane-opened {
|
|
9330
|
+
top: 172px;
|
|
9315
9331
|
}
|
|
9316
9332
|
|
|
9317
|
-
|
|
9318
|
-
|
|
9319
|
-
max-width: 100%;
|
|
9320
|
-
padding: 40px 25px;
|
|
9333
|
+
&.info-page-filters-active {
|
|
9334
|
+
right: 249px;
|
|
9321
9335
|
}
|
|
9322
|
-
}
|
|
9323
9336
|
|
|
9324
|
-
|
|
9325
|
-
|
|
9326
|
-
|
|
9337
|
+
.bookmark-badge {
|
|
9338
|
+
position: absolute;
|
|
9339
|
+
top: -10px;
|
|
9340
|
+
right: -12px;
|
|
9341
|
+
box-shadow: @filters-bookmark-badge-box-shadow;
|
|
9327
9342
|
}
|
|
9328
9343
|
}
|
|
9329
9344
|
|
|
9330
|
-
|
|
9331
|
-
.info-page-
|
|
9345
|
+
.info-page-filters {
|
|
9346
|
+
.info-page-filters-color-set();
|
|
9332
9347
|
|
|
9333
|
-
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
|
|
9348
|
+
background: @filters-bg;
|
|
9349
|
+
border: @filters-border;
|
|
9350
|
+
border-top: none;
|
|
9351
|
+
box-shadow: @filters-box-shadow;
|
|
9352
|
+
position: absolute;
|
|
9353
|
+
bottom: 0;
|
|
9354
|
+
right: 0;
|
|
9355
|
+
padding: 0 0 15px 0;
|
|
9356
|
+
top: 0;
|
|
9357
|
+
transition: @igz-basic-transition;
|
|
9358
|
+
width: 376px;
|
|
9359
|
+
z-index: 996;
|
|
9339
9360
|
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
height: 49px;
|
|
9361
|
+
&.ng-hide {
|
|
9362
|
+
right: -375px;
|
|
9343
9363
|
|
|
9344
|
-
|
|
9345
|
-
|
|
9346
|
-
|
|
9347
|
-
|
|
9364
|
+
> [class*="info-page-filters"] {
|
|
9365
|
+
opacity: 0;
|
|
9366
|
+
transition: @igz-basic-transition;
|
|
9367
|
+
}
|
|
9368
|
+
}
|
|
9348
9369
|
|
|
9349
|
-
|
|
9350
|
-
|
|
9351
|
-
|
|
9352
|
-
|
|
9353
|
-
|
|
9354
|
-
|
|
9355
|
-
|
|
9356
|
-
|
|
9357
|
-
|
|
9358
|
-
|
|
9359
|
-
|
|
9360
|
-
.action-checkbox-all {
|
|
9361
|
-
padding-top: 2px;
|
|
9362
|
-
}
|
|
9363
|
-
}
|
|
9364
|
-
}
|
|
9365
|
-
|
|
9366
|
-
.common-table-cells-container {
|
|
9367
|
-
margin-right: 45px;
|
|
9368
|
-
|
|
9369
|
-
.common-table-cell {
|
|
9370
|
-
height: 49px;
|
|
9371
|
-
padding: 0 15px;
|
|
9372
|
-
border-right: @common-table-cell-border-right;
|
|
9373
|
-
|
|
9374
|
-
&:first-child {
|
|
9375
|
-
padding-left: 7px;
|
|
9376
|
-
}
|
|
9377
|
-
}
|
|
9378
|
-
}
|
|
9379
|
-
}
|
|
9380
|
-
|
|
9381
|
-
.common-table-body {
|
|
9382
|
-
margin-top: 7px;
|
|
9383
|
-
|
|
9384
|
-
.common-table-cell {
|
|
9385
|
-
&.actions-menu {
|
|
9386
|
-
width: 45px;
|
|
9387
|
-
}
|
|
9388
|
-
}
|
|
9389
|
-
}
|
|
9390
|
-
|
|
9391
|
-
.data-access-policy-layers, .data-lifecycle-layers {
|
|
9392
|
-
&:last-child {
|
|
9393
|
-
margin-bottom: 20px;
|
|
9394
|
-
}
|
|
9395
|
-
}
|
|
9396
|
-
}
|
|
9397
|
-
|
|
9398
|
-
.sortable-empty {
|
|
9399
|
-
background-color: @sortable-empty-bg-color;
|
|
9400
|
-
color: @sortable-empty-color;
|
|
9401
|
-
font-size: 14px;
|
|
9402
|
-
font-weight: 400;
|
|
9403
|
-
font-family: 'Open Sans', sans-serif;
|
|
9404
|
-
border-bottom: @sortable-empty-border;
|
|
9405
|
-
border-left: @sortable-empty-border;
|
|
9406
|
-
border-right: @sortable-empty-border;
|
|
9407
|
-
padding-left: 70px;
|
|
9408
|
-
height: 40px;
|
|
9409
|
-
line-height: 38px;
|
|
9410
|
-
}
|
|
9411
|
-
}
|
|
9412
|
-
}
|
|
9413
|
-
|
|
9414
|
-
|
|
9415
|
-
.info-page-filters-bookmark {
|
|
9416
|
-
.info-page-filters-color-set();
|
|
9417
|
-
|
|
9418
|
-
background-color: @filters-bookmark-bg-color;
|
|
9419
|
-
border-bottom-right-radius: 4px;
|
|
9420
|
-
border-top-right-radius: 4px;
|
|
9421
|
-
box-shadow: @filters-bookmark-box-shadow;
|
|
9422
|
-
color: @filters-bookmark-color;
|
|
9423
|
-
cursor: pointer;
|
|
9424
|
-
font-size: 10px;
|
|
9425
|
-
height: 22px;
|
|
9426
|
-
right: 0;
|
|
9427
|
-
line-height: 22px;
|
|
9428
|
-
position: absolute;
|
|
9429
|
-
text-align: center;
|
|
9430
|
-
top: 22px;
|
|
9431
|
-
transition: @igz-basic-transition;
|
|
9432
|
-
width: 18px;
|
|
9433
|
-
z-index: 998;
|
|
9434
|
-
|
|
9435
|
-
&:before {
|
|
9436
|
-
right: 3px;
|
|
9437
|
-
position: absolute;
|
|
9438
|
-
top: 6px;
|
|
9439
|
-
}
|
|
9440
|
-
|
|
9441
|
-
&:after {
|
|
9442
|
-
background-color: @filters-bookmark-after-bg-color;
|
|
9443
|
-
content: "";
|
|
9444
|
-
height: 100%;
|
|
9445
|
-
right: -6px;
|
|
9446
|
-
position: absolute;
|
|
9447
|
-
top: 0;
|
|
9448
|
-
width: 6px;
|
|
9449
|
-
}
|
|
9450
|
-
|
|
9451
|
-
&.upper-pane-opened {
|
|
9452
|
-
top: 172px;
|
|
9453
|
-
}
|
|
9454
|
-
|
|
9455
|
-
&.info-page-filters-active {
|
|
9456
|
-
right: 249px;
|
|
9457
|
-
}
|
|
9458
|
-
|
|
9459
|
-
.bookmark-badge {
|
|
9460
|
-
position: absolute;
|
|
9461
|
-
top: -10px;
|
|
9462
|
-
right: -12px;
|
|
9463
|
-
box-shadow: @filters-bookmark-badge-box-shadow;
|
|
9464
|
-
}
|
|
9465
|
-
}
|
|
9466
|
-
|
|
9467
|
-
.info-page-filters {
|
|
9468
|
-
.info-page-filters-color-set();
|
|
9469
|
-
|
|
9470
|
-
background: @filters-bg;
|
|
9471
|
-
border: @filters-border;
|
|
9472
|
-
border-top: none;
|
|
9473
|
-
box-shadow: @filters-box-shadow;
|
|
9474
|
-
position: absolute;
|
|
9475
|
-
bottom: 0;
|
|
9476
|
-
right: 0;
|
|
9477
|
-
padding: 0 0 15px 0;
|
|
9478
|
-
top: 0;
|
|
9479
|
-
transition: @igz-basic-transition;
|
|
9480
|
-
width: 376px;
|
|
9481
|
-
z-index: 996;
|
|
9482
|
-
|
|
9483
|
-
&.ng-hide {
|
|
9484
|
-
right: -375px;
|
|
9485
|
-
|
|
9486
|
-
> [class*="info-page-filters"] {
|
|
9487
|
-
opacity: 0;
|
|
9488
|
-
transition: @igz-basic-transition;
|
|
9489
|
-
}
|
|
9490
|
-
}
|
|
9491
|
-
|
|
9492
|
-
.info-page-filters-title {
|
|
9493
|
-
width: 100%;
|
|
9494
|
-
margin-top: -3px;
|
|
9495
|
-
padding: 0 23px;
|
|
9496
|
-
height: 57px;
|
|
9497
|
-
line-height: 57px;
|
|
9498
|
-
font-family: @font-family-sans-serif;
|
|
9499
|
-
font-size: 20px;
|
|
9500
|
-
letter-spacing: 0.2px;
|
|
9501
|
-
color: @filters-title-color;
|
|
9502
|
-
}
|
|
9370
|
+
.info-page-filters-title {
|
|
9371
|
+
width: 100%;
|
|
9372
|
+
margin-top: -3px;
|
|
9373
|
+
padding: 0 23px;
|
|
9374
|
+
height: 57px;
|
|
9375
|
+
line-height: 57px;
|
|
9376
|
+
font-family: @font-family-sans-serif;
|
|
9377
|
+
font-size: 20px;
|
|
9378
|
+
letter-spacing: 0.2px;
|
|
9379
|
+
color: @filters-title-color;
|
|
9380
|
+
}
|
|
9503
9381
|
|
|
9504
9382
|
.info-page-filters-label {
|
|
9505
9383
|
color: @filters-label-color;
|
|
@@ -9752,155 +9630,154 @@ igz-info-page-content {
|
|
|
9752
9630
|
}
|
|
9753
9631
|
}
|
|
9754
9632
|
|
|
9755
|
-
|
|
9756
|
-
.
|
|
9757
|
-
&:not(.disable-behavior) {
|
|
9758
|
-
&:hover .main-header-title-text {
|
|
9759
|
-
color: @dark-sky-blue;
|
|
9760
|
-
}
|
|
9761
|
-
}
|
|
9633
|
+
.igz-info-page-content-wrapper {
|
|
9634
|
+
.info-page-content-color-set();
|
|
9762
9635
|
|
|
9763
|
-
|
|
9764
|
-
|
|
9765
|
-
|
|
9636
|
+
position: absolute;
|
|
9637
|
+
top: 56px;
|
|
9638
|
+
right: 0;
|
|
9639
|
+
bottom: 0;
|
|
9640
|
+
left: 0;
|
|
9641
|
+
padding-top: 0;
|
|
9642
|
+
transition: @igz-basic-transition;
|
|
9643
|
+
background-color: @page-content-bg-color;
|
|
9644
|
+
|
|
9645
|
+
&.upper-pane-opened {
|
|
9646
|
+
top: 216px;
|
|
9766
9647
|
}
|
|
9767
9648
|
|
|
9768
|
-
|
|
9769
|
-
|
|
9770
|
-
font-weight: 100;
|
|
9771
|
-
margin: 0 14px;
|
|
9649
|
+
&.filters-opened {
|
|
9650
|
+
right: 377px;
|
|
9772
9651
|
}
|
|
9773
9652
|
|
|
9774
|
-
|
|
9775
|
-
|
|
9653
|
+
&.info-pane-opened {
|
|
9654
|
+
right: 379px;
|
|
9776
9655
|
}
|
|
9777
9656
|
|
|
9778
|
-
.
|
|
9779
|
-
|
|
9780
|
-
|
|
9657
|
+
.igz-info-page-content {
|
|
9658
|
+
min-width: 946px;
|
|
9659
|
+
max-width: 100%;
|
|
9660
|
+
padding: 40px 25px;
|
|
9781
9661
|
}
|
|
9782
9662
|
}
|
|
9783
9663
|
|
|
9784
|
-
|
|
9785
|
-
|
|
9664
|
+
igz-info-page-actions-bar {
|
|
9665
|
+
.igz-info-page-actions-bar .actions-content-block {
|
|
9666
|
+
margin-left: 14px;
|
|
9667
|
+
}
|
|
9668
|
+
}
|
|
9786
9669
|
|
|
9787
|
-
|
|
9788
|
-
|
|
9789
|
-
box-shadow: none;
|
|
9790
|
-
min-height: 49px;
|
|
9670
|
+
igz-info-page-content {
|
|
9671
|
+
.info-page-content-color-set();
|
|
9791
9672
|
|
|
9792
|
-
|
|
9793
|
-
|
|
9673
|
+
.container-data-access-policy-table, .data-lifecycle-table {
|
|
9674
|
+
&.common-table {
|
|
9675
|
+
.common-table-header {
|
|
9676
|
+
position: relative;
|
|
9677
|
+
height: 49px;
|
|
9678
|
+
line-height: 48px;
|
|
9794
9679
|
|
|
9795
|
-
|
|
9796
|
-
|
|
9797
|
-
|
|
9798
|
-
}
|
|
9680
|
+
.common-table-cell {
|
|
9681
|
+
margin-top: -1px;
|
|
9682
|
+
height: 49px;
|
|
9799
9683
|
|
|
9800
|
-
|
|
9801
|
-
|
|
9802
|
-
|
|
9803
|
-
|
|
9684
|
+
&.selected {
|
|
9685
|
+
background-color: @common-table-cell-selected-bg-color;
|
|
9686
|
+
border: @common-table-cell-selected-border;
|
|
9687
|
+
}
|
|
9804
9688
|
|
|
9805
|
-
|
|
9806
|
-
|
|
9807
|
-
|
|
9808
|
-
}
|
|
9689
|
+
&:last-child {
|
|
9690
|
+
margin-right: 0;
|
|
9691
|
+
}
|
|
9809
9692
|
|
|
9810
|
-
|
|
9811
|
-
|
|
9812
|
-
|
|
9813
|
-
}
|
|
9814
|
-
}
|
|
9693
|
+
&.actions-menu {
|
|
9694
|
+
width: 0;
|
|
9695
|
+
}
|
|
9815
9696
|
|
|
9816
|
-
|
|
9817
|
-
|
|
9818
|
-
flex: none;
|
|
9819
|
-
justify-content: center;
|
|
9820
|
-
align-items: flex-start;
|
|
9821
|
-
line-height: 51px;
|
|
9697
|
+
&.check-all-rows {
|
|
9698
|
+
padding-left: 30px;
|
|
9822
9699
|
|
|
9823
|
-
|
|
9824
|
-
|
|
9825
|
-
|
|
9700
|
+
.action-checkbox-all {
|
|
9701
|
+
padding-top: 2px;
|
|
9702
|
+
}
|
|
9703
|
+
}
|
|
9704
|
+
}
|
|
9826
9705
|
|
|
9827
|
-
|
|
9828
|
-
|
|
9829
|
-
.duskThree(0.64);
|
|
9830
|
-
color: @color;
|
|
9706
|
+
.common-table-cells-container {
|
|
9707
|
+
margin-right: 45px;
|
|
9831
9708
|
|
|
9832
|
-
|
|
9833
|
-
|
|
9709
|
+
.common-table-cell {
|
|
9710
|
+
height: 49px;
|
|
9711
|
+
padding: 0 15px;
|
|
9712
|
+
border-right: @common-table-cell-border-right;
|
|
9713
|
+
|
|
9714
|
+
&:first-child {
|
|
9715
|
+
padding-left: 7px;
|
|
9716
|
+
}
|
|
9717
|
+
}
|
|
9834
9718
|
}
|
|
9835
9719
|
}
|
|
9836
|
-
}
|
|
9837
|
-
}
|
|
9838
9720
|
|
|
9839
|
-
|
|
9840
|
-
|
|
9841
|
-
flex-flow: row nowrap;
|
|
9842
|
-
align-items: center;
|
|
9843
|
-
|
|
9844
|
-
.item-name {
|
|
9845
|
-
font-weight: bold;
|
|
9846
|
-
display: flex;
|
|
9847
|
-
flex-flow: row nowrap;
|
|
9848
|
-
align-items: baseline;
|
|
9849
|
-
width: 192px;
|
|
9721
|
+
.common-table-body {
|
|
9722
|
+
margin-top: 7px;
|
|
9850
9723
|
|
|
9851
|
-
|
|
9852
|
-
|
|
9724
|
+
.common-table-cell {
|
|
9725
|
+
&.actions-menu {
|
|
9726
|
+
width: 45px;
|
|
9727
|
+
}
|
|
9728
|
+
}
|
|
9853
9729
|
}
|
|
9854
|
-
}
|
|
9855
9730
|
|
|
9856
|
-
|
|
9857
|
-
|
|
9858
|
-
|
|
9731
|
+
.data-access-policy-layers, .data-lifecycle-layers {
|
|
9732
|
+
&:last-child {
|
|
9733
|
+
margin-bottom: 20px;
|
|
9734
|
+
}
|
|
9735
|
+
}
|
|
9859
9736
|
}
|
|
9860
9737
|
|
|
9861
|
-
.
|
|
9862
|
-
|
|
9738
|
+
.sortable-empty {
|
|
9739
|
+
background-color: @sortable-empty-bg-color;
|
|
9740
|
+
color: @sortable-empty-color;
|
|
9741
|
+
font-size: 14px;
|
|
9742
|
+
font-weight: 400;
|
|
9743
|
+
font-family: 'Open Sans', sans-serif;
|
|
9744
|
+
border-bottom: @sortable-empty-border;
|
|
9745
|
+
border-left: @sortable-empty-border;
|
|
9746
|
+
border-right: @sortable-empty-border;
|
|
9747
|
+
padding-left: 70px;
|
|
9748
|
+
height: 40px;
|
|
9749
|
+
line-height: 38px;
|
|
9863
9750
|
}
|
|
9864
9751
|
}
|
|
9752
|
+
}
|
|
9865
9753
|
|
|
9866
|
-
.item-info-row {
|
|
9867
|
-
line-height: 30px;
|
|
9868
|
-
}
|
|
9869
9754
|
|
|
9870
|
-
|
|
9871
|
-
|
|
9872
|
-
|
|
9873
|
-
|
|
9874
|
-
|
|
9875
|
-
|
|
9755
|
+
ncl-breadcrumbs {
|
|
9756
|
+
.main-header-title {
|
|
9757
|
+
&:not(.disable-behavior) {
|
|
9758
|
+
&:hover .main-header-title-text {
|
|
9759
|
+
color: @dark-sky-blue;
|
|
9760
|
+
}
|
|
9761
|
+
}
|
|
9876
9762
|
|
|
9877
|
-
|
|
9878
|
-
|
|
9879
|
-
|
|
9880
|
-
width: 100%;
|
|
9881
|
-
overflow: hidden;
|
|
9882
|
-
text-overflow: ellipsis;
|
|
9763
|
+
&.disable-behavior {
|
|
9764
|
+
color: @dusk-three;
|
|
9765
|
+
}
|
|
9883
9766
|
}
|
|
9884
9767
|
|
|
9885
|
-
.
|
|
9886
|
-
|
|
9887
|
-
|
|
9888
|
-
|
|
9768
|
+
.igz-icon-right {
|
|
9769
|
+
font-size: 11px;
|
|
9770
|
+
font-weight: 100;
|
|
9771
|
+
margin: 0 14px;
|
|
9889
9772
|
}
|
|
9890
9773
|
|
|
9891
|
-
.
|
|
9892
|
-
|
|
9893
|
-
|
|
9894
|
-
flex: none;
|
|
9895
|
-
padding-right: 4px;
|
|
9896
|
-
|
|
9897
|
-
.igz-action-panel {
|
|
9898
|
-
transition: unset;
|
|
9774
|
+
.ncl-header-subtitle {
|
|
9775
|
+
color: @greyish-purple;
|
|
9776
|
+
}
|
|
9899
9777
|
|
|
9900
|
-
|
|
9901
|
-
|
|
9902
|
-
|
|
9903
|
-
}
|
|
9778
|
+
.ncl-bold-subtitle {
|
|
9779
|
+
color: @dusk-three;
|
|
9780
|
+
font-weight: bold;
|
|
9904
9781
|
}
|
|
9905
9782
|
}
|
|
9906
9783
|
|
|
@@ -10042,44 +9919,185 @@ ncl-breadcrumbs {
|
|
|
10042
9919
|
}
|
|
10043
9920
|
}
|
|
10044
9921
|
}
|
|
10045
|
-
}
|
|
9922
|
+
}
|
|
9923
|
+
|
|
9924
|
+
.ncl-deploy-log-wrapper {
|
|
9925
|
+
.log-panel {
|
|
9926
|
+
.logs-common();
|
|
9927
|
+
background-color: @dark-grey;
|
|
9928
|
+
color: @light-grey-three;
|
|
9929
|
+
padding: 5px;
|
|
9930
|
+
margin: 21px 0 0 4px;
|
|
9931
|
+
min-height: 280px;
|
|
9932
|
+
max-height: 280px;
|
|
9933
|
+
height: 280px;
|
|
9934
|
+
|
|
9935
|
+
.log-entry {
|
|
9936
|
+
.log-entry-time {
|
|
9937
|
+
color: @solid-grey;
|
|
9938
|
+
}
|
|
9939
|
+
|
|
9940
|
+
.log-entry-level-debug{
|
|
9941
|
+
color: @dusty-blue;
|
|
9942
|
+
}
|
|
9943
|
+
|
|
9944
|
+
.log-entry-level-info {
|
|
9945
|
+
color: @cloudy-blue;
|
|
9946
|
+
}
|
|
9947
|
+
|
|
9948
|
+
.log-entry-level-warn{
|
|
9949
|
+
color: @sunflower-yellow;
|
|
9950
|
+
}
|
|
9951
|
+
|
|
9952
|
+
.log-entry-level-error {
|
|
9953
|
+
color: @darkish-pink;
|
|
9954
|
+
}
|
|
9955
|
+
|
|
9956
|
+
.log-entry-message {
|
|
9957
|
+
font-weight: 600;
|
|
9958
|
+
}
|
|
9959
|
+
}
|
|
9960
|
+
}
|
|
9961
|
+
}
|
|
9962
|
+
.ncl-collapsing-row {
|
|
9963
|
+
margin-bottom: 9px;
|
|
9964
|
+
|
|
9965
|
+
.title-block.common-table-row {
|
|
9966
|
+
border: 1px solid @pale-grey;
|
|
9967
|
+
box-shadow: none;
|
|
9968
|
+
min-height: 49px;
|
|
9969
|
+
|
|
9970
|
+
&.collapsed {
|
|
9971
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
|
|
9972
|
+
|
|
9973
|
+
&:hover {
|
|
9974
|
+
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
|
|
9975
|
+
}
|
|
9976
|
+
}
|
|
9977
|
+
|
|
9978
|
+
&:hover {
|
|
9979
|
+
.common-table-cells-container {
|
|
9980
|
+
background-color: @white;
|
|
9981
|
+
}
|
|
9982
|
+
|
|
9983
|
+
.actions-menu {
|
|
9984
|
+
visibility: visible;
|
|
9985
|
+
background-color: @white;
|
|
9986
|
+
}
|
|
9987
|
+
|
|
9988
|
+
.single-action {
|
|
9989
|
+
visibility: visible;
|
|
9990
|
+
}
|
|
9991
|
+
}
|
|
9992
|
+
}
|
|
9993
|
+
|
|
9994
|
+
.row-collapse {
|
|
9995
|
+
width: 40px;
|
|
9996
|
+
flex: none;
|
|
9997
|
+
justify-content: center;
|
|
9998
|
+
align-items: flex-start;
|
|
9999
|
+
line-height: 51px;
|
|
10000
|
+
|
|
10001
|
+
.collapse-icon {
|
|
10002
|
+
background-color: transparent;
|
|
10003
|
+
position: absolute;
|
|
10004
|
+
|
|
10005
|
+
&.igz-icon-right, &.igz-icon-down {
|
|
10006
|
+
font-size: 12px;
|
|
10007
|
+
.duskThree(0.64);
|
|
10008
|
+
color: @color;
|
|
10009
|
+
|
|
10010
|
+
&:hover {
|
|
10011
|
+
color: @dusk-three;
|
|
10012
|
+
}
|
|
10013
|
+
}
|
|
10014
|
+
}
|
|
10015
|
+
}
|
|
10016
|
+
|
|
10017
|
+
.item-row {
|
|
10018
|
+
display: flex;
|
|
10019
|
+
flex-flow: row nowrap;
|
|
10020
|
+
align-items: center;
|
|
10021
|
+
|
|
10022
|
+
.item-name {
|
|
10023
|
+
font-weight: bold;
|
|
10024
|
+
display: flex;
|
|
10025
|
+
flex-flow: row nowrap;
|
|
10026
|
+
align-items: baseline;
|
|
10027
|
+
width: 192px;
|
|
10028
|
+
|
|
10029
|
+
.text-ellipsis {
|
|
10030
|
+
width: auto;
|
|
10031
|
+
}
|
|
10032
|
+
}
|
|
10033
|
+
|
|
10034
|
+
.item-class {
|
|
10035
|
+
width: 168px;
|
|
10036
|
+
padding-left: 16px;
|
|
10037
|
+
}
|
|
10038
|
+
|
|
10039
|
+
.field-label {
|
|
10040
|
+
text-transform: capitalize;
|
|
10041
|
+
}
|
|
10042
|
+
}
|
|
10046
10043
|
|
|
10047
|
-
.
|
|
10048
|
-
|
|
10049
|
-
|
|
10050
|
-
background-color: @dark-grey;
|
|
10051
|
-
color: @light-grey-three;
|
|
10052
|
-
padding: 5px;
|
|
10053
|
-
margin: 21px 0 0 4px;
|
|
10054
|
-
min-height: 280px;
|
|
10055
|
-
max-height: 280px;
|
|
10056
|
-
height: 280px;
|
|
10044
|
+
.item-info-row {
|
|
10045
|
+
line-height: 30px;
|
|
10046
|
+
}
|
|
10057
10047
|
|
|
10058
|
-
|
|
10059
|
-
|
|
10060
|
-
|
|
10061
|
-
|
|
10048
|
+
.expanded-item-info-block {
|
|
10049
|
+
width: 100%;
|
|
10050
|
+
height: 100%;
|
|
10051
|
+
top: 0;
|
|
10052
|
+
padding: 10px 0;
|
|
10053
|
+
}
|
|
10062
10054
|
|
|
10063
|
-
|
|
10064
|
-
|
|
10065
|
-
|
|
10055
|
+
.collapsed-item-info-block {
|
|
10056
|
+
padding-left: 16px;
|
|
10057
|
+
white-space: nowrap;
|
|
10058
|
+
width: 100%;
|
|
10059
|
+
overflow: hidden;
|
|
10060
|
+
text-overflow: ellipsis;
|
|
10061
|
+
}
|
|
10066
10062
|
|
|
10067
|
-
|
|
10068
|
-
|
|
10069
|
-
|
|
10063
|
+
.actions-menu {
|
|
10064
|
+
visibility: hidden;
|
|
10065
|
+
align-items: flex-start;
|
|
10066
|
+
line-height: 51px;
|
|
10067
|
+
}
|
|
10070
10068
|
|
|
10071
|
-
|
|
10072
|
-
|
|
10069
|
+
.single-action {
|
|
10070
|
+
visibility: hidden;
|
|
10071
|
+
align-items: flex-start;
|
|
10072
|
+
flex: none;
|
|
10073
|
+
padding-right: 4px;
|
|
10074
|
+
|
|
10075
|
+
.igz-action-panel {
|
|
10076
|
+
transition: unset;
|
|
10077
|
+
|
|
10078
|
+
.igz-action-item {
|
|
10079
|
+
margin: 4px 0 0 0;
|
|
10073
10080
|
}
|
|
10081
|
+
}
|
|
10082
|
+
}
|
|
10083
|
+
}
|
|
10074
10084
|
|
|
10075
|
-
|
|
10076
|
-
|
|
10085
|
+
.view-yaml-dialog-wrapper {
|
|
10086
|
+
.ngdialog-content {
|
|
10087
|
+
.view-yaml-dialog-header {
|
|
10088
|
+
.title {
|
|
10089
|
+
margin-bottom: 10px;
|
|
10077
10090
|
}
|
|
10078
10091
|
|
|
10079
|
-
.
|
|
10080
|
-
|
|
10092
|
+
.copy-to-clipboard {
|
|
10093
|
+
width: 20px;
|
|
10081
10094
|
}
|
|
10082
10095
|
}
|
|
10096
|
+
|
|
10097
|
+
.monaco-editor {
|
|
10098
|
+
min-width: 700px;
|
|
10099
|
+
min-height: 450px;
|
|
10100
|
+
}
|
|
10083
10101
|
}
|
|
10084
10102
|
}
|
|
10085
10103
|
.ncl-edit-item {
|
|
@@ -10411,24 +10429,6 @@ ncl-breadcrumbs {
|
|
|
10411
10429
|
}
|
|
10412
10430
|
|
|
10413
10431
|
|
|
10414
|
-
.view-yaml-dialog-wrapper {
|
|
10415
|
-
.ngdialog-content {
|
|
10416
|
-
.view-yaml-dialog-header {
|
|
10417
|
-
.title {
|
|
10418
|
-
margin-bottom: 10px;
|
|
10419
|
-
}
|
|
10420
|
-
|
|
10421
|
-
.copy-to-clipboard {
|
|
10422
|
-
width: 20px;
|
|
10423
|
-
}
|
|
10424
|
-
}
|
|
10425
|
-
|
|
10426
|
-
.monaco-editor {
|
|
10427
|
-
min-width: 700px;
|
|
10428
|
-
min-height: 450px;
|
|
10429
|
-
}
|
|
10430
|
-
}
|
|
10431
|
-
}
|
|
10432
10432
|
ncl-navigation-tabs {
|
|
10433
10433
|
.ncl-navigation-tabs-color-set();
|
|
10434
10434
|
|
|
@@ -10862,168 +10862,23 @@ ncl-navigation-tabs {
|
|
|
10862
10862
|
|
|
10863
10863
|
.common-table-cell-content {
|
|
10864
10864
|
width: 100%;
|
|
10865
|
-
white-space: nowrap;
|
|
10866
|
-
overflow: hidden;
|
|
10867
|
-
text-overflow: ellipsis;
|
|
10868
|
-
min-width: 0;
|
|
10869
|
-
}
|
|
10870
|
-
|
|
10871
|
-
.igz-action-panel {
|
|
10872
|
-
&.invocation-tooltip {
|
|
10873
|
-
height: 36px;
|
|
10874
|
-
width: 56px;
|
|
10875
|
-
}
|
|
10876
|
-
}
|
|
10877
|
-
}
|
|
10878
|
-
|
|
10879
|
-
.function-status {
|
|
10880
|
-
min-width: 100px;
|
|
10881
|
-
}
|
|
10882
|
-
}
|
|
10883
|
-
}
|
|
10884
|
-
}
|
|
10885
|
-
|
|
10886
|
-
.function-event-wrapper {
|
|
10887
|
-
width: 600px;
|
|
10888
|
-
margin-bottom: -23px;
|
|
10889
|
-
|
|
10890
|
-
.header {
|
|
10891
|
-
display: flex;
|
|
10892
|
-
justify-content: space-between;
|
|
10893
|
-
border-bottom: 1px solid @pale-grey;
|
|
10894
|
-
|
|
10895
|
-
.title {
|
|
10896
|
-
font-size: 18px;
|
|
10897
|
-
}
|
|
10898
|
-
}
|
|
10899
|
-
|
|
10900
|
-
.content {
|
|
10901
|
-
border-bottom: 1px solid @pale-grey;
|
|
10902
|
-
padding: 16px 0 16px 16px;
|
|
10903
|
-
|
|
10904
|
-
.event-form {
|
|
10905
|
-
width: 88%;
|
|
10906
|
-
|
|
10907
|
-
.field-wrapper {
|
|
10908
|
-
display: flex;
|
|
10909
|
-
align-items: center;
|
|
10910
|
-
margin: 15px 0 0 0;
|
|
10911
|
-
|
|
10912
|
-
.field-label {
|
|
10913
|
-
font-size: 16px;
|
|
10914
|
-
margin-right: 10px;
|
|
10915
|
-
width: 195px;
|
|
10916
|
-
}
|
|
10917
|
-
|
|
10918
|
-
.field-content {
|
|
10919
|
-
width: 100%;
|
|
10920
|
-
|
|
10921
|
-
.ncl-monaco {
|
|
10922
|
-
height: 200px;
|
|
10923
|
-
}
|
|
10924
|
-
|
|
10925
|
-
.event-body {
|
|
10926
|
-
font-size: 13px;
|
|
10927
|
-
outline: none;
|
|
10928
|
-
border: 1px solid @pale-grey;
|
|
10929
|
-
resize: none;
|
|
10930
|
-
width: 100%;
|
|
10931
|
-
height: 100px;
|
|
10932
|
-
padding: 5px 5px 5px 16px;
|
|
10933
|
-
}
|
|
10934
|
-
}
|
|
10935
|
-
}
|
|
10936
|
-
}
|
|
10937
|
-
|
|
10938
|
-
.event-error {
|
|
10939
|
-
display: flex;
|
|
10940
|
-
font-size: 13px;
|
|
10941
|
-
align-items: center;
|
|
10942
|
-
justify-content: center;
|
|
10943
|
-
color: @darkish-pink;
|
|
10944
|
-
}
|
|
10945
|
-
}
|
|
10946
|
-
|
|
10947
|
-
.bottom-bar {
|
|
10948
|
-
height: 64px;
|
|
10949
|
-
display: flex;
|
|
10950
|
-
align-items: center;
|
|
10951
|
-
justify-content: flex-end;
|
|
10952
|
-
|
|
10953
|
-
.igz-button-primary {
|
|
10954
|
-
&.disabled {
|
|
10955
|
-
color: rgba(71, 64, 86, 0.24);
|
|
10956
|
-
border-radius: 2px;
|
|
10957
|
-
border: solid 1px #f3f3f6;
|
|
10958
|
-
background-color: #f3f3f6;
|
|
10959
|
-
cursor: default;
|
|
10960
|
-
display: inline-block;
|
|
10961
|
-
|
|
10962
|
-
&:hover {
|
|
10963
|
-
box-shadow: none;
|
|
10964
|
-
border: none;
|
|
10965
|
-
}
|
|
10966
|
-
}
|
|
10967
|
-
}
|
|
10968
|
-
}
|
|
10969
|
-
}
|
|
10970
|
-
|
|
10971
|
-
.ncl-version-configuration {
|
|
10972
|
-
> .igz-scrollable-container {
|
|
10973
|
-
padding: 24px 25px 22px 41px;
|
|
10974
|
-
}
|
|
10975
|
-
|
|
10976
|
-
.ncl-version-configuration-wrapper {
|
|
10977
|
-
> .row {
|
|
10978
|
-
display: flex;
|
|
10979
|
-
justify-content: space-between;
|
|
10980
|
-
flex-wrap: wrap;
|
|
10981
|
-
|
|
10982
|
-
.configuration-block {
|
|
10983
|
-
padding: 16px 23px 16px;
|
|
10984
|
-
background-color: @white;
|
|
10985
|
-
border: solid 1px @pale-grey;
|
|
10986
|
-
flex-grow: 1;
|
|
10987
|
-
flex-basis: 500px;
|
|
10988
|
-
margin-right: 16px;
|
|
10989
|
-
margin-bottom: 16px;
|
|
10990
|
-
|
|
10991
|
-
&.invisible {
|
|
10992
|
-
visibility: hidden;
|
|
10993
|
-
}
|
|
10994
|
-
|
|
10995
|
-
.title {
|
|
10996
|
-
font-size: 16px;
|
|
10997
|
-
font-weight: bold;
|
|
10998
|
-
font-style: normal;
|
|
10999
|
-
font-stretch: normal;
|
|
11000
|
-
letter-spacing: normal;
|
|
11001
|
-
text-align: left;
|
|
11002
|
-
color: @dusk-three;
|
|
11003
|
-
margin-bottom: 12px;
|
|
11004
|
-
}
|
|
11005
|
-
|
|
11006
|
-
.row {
|
|
11007
|
-
.label {
|
|
11008
|
-
display: block;
|
|
11009
|
-
font-family: Roboto, sans-serif;
|
|
11010
|
-
font-size: 14px;
|
|
11011
|
-
font-weight: 500;
|
|
11012
|
-
font-style: normal;
|
|
11013
|
-
font-stretch: normal;
|
|
11014
|
-
letter-spacing: normal;
|
|
11015
|
-
text-align: left;
|
|
11016
|
-
color: @dusk-three;
|
|
11017
|
-
padding: 0;
|
|
11018
|
-
}
|
|
10865
|
+
white-space: nowrap;
|
|
10866
|
+
overflow: hidden;
|
|
10867
|
+
text-overflow: ellipsis;
|
|
10868
|
+
min-width: 0;
|
|
11019
10869
|
}
|
|
11020
10870
|
|
|
11021
|
-
.
|
|
11022
|
-
|
|
11023
|
-
height:
|
|
10871
|
+
.igz-action-panel {
|
|
10872
|
+
&.invocation-tooltip {
|
|
10873
|
+
height: 36px;
|
|
10874
|
+
width: 56px;
|
|
11024
10875
|
}
|
|
11025
10876
|
}
|
|
11026
10877
|
}
|
|
10878
|
+
|
|
10879
|
+
.function-status {
|
|
10880
|
+
min-width: 100px;
|
|
10881
|
+
}
|
|
11027
10882
|
}
|
|
11028
10883
|
}
|
|
11029
10884
|
}
|
|
@@ -11240,6 +11095,66 @@ ncl-navigation-tabs {
|
|
|
11240
11095
|
}
|
|
11241
11096
|
}
|
|
11242
11097
|
|
|
11098
|
+
.ncl-version-configuration {
|
|
11099
|
+
> .igz-scrollable-container {
|
|
11100
|
+
padding: 24px 25px 22px 41px;
|
|
11101
|
+
}
|
|
11102
|
+
|
|
11103
|
+
.ncl-version-configuration-wrapper {
|
|
11104
|
+
> .row {
|
|
11105
|
+
display: flex;
|
|
11106
|
+
justify-content: space-between;
|
|
11107
|
+
flex-wrap: wrap;
|
|
11108
|
+
|
|
11109
|
+
.configuration-block {
|
|
11110
|
+
padding: 16px 23px 16px;
|
|
11111
|
+
background-color: @white;
|
|
11112
|
+
border: solid 1px @pale-grey;
|
|
11113
|
+
flex-grow: 1;
|
|
11114
|
+
flex-basis: 500px;
|
|
11115
|
+
margin-right: 16px;
|
|
11116
|
+
margin-bottom: 16px;
|
|
11117
|
+
|
|
11118
|
+
&.invisible {
|
|
11119
|
+
visibility: hidden;
|
|
11120
|
+
}
|
|
11121
|
+
|
|
11122
|
+
.title {
|
|
11123
|
+
font-size: 16px;
|
|
11124
|
+
font-weight: bold;
|
|
11125
|
+
font-style: normal;
|
|
11126
|
+
font-stretch: normal;
|
|
11127
|
+
letter-spacing: normal;
|
|
11128
|
+
text-align: left;
|
|
11129
|
+
color: @dusk-three;
|
|
11130
|
+
margin-bottom: 12px;
|
|
11131
|
+
}
|
|
11132
|
+
|
|
11133
|
+
.row {
|
|
11134
|
+
.label {
|
|
11135
|
+
display: block;
|
|
11136
|
+
font-family: Roboto, sans-serif;
|
|
11137
|
+
font-size: 14px;
|
|
11138
|
+
font-weight: 500;
|
|
11139
|
+
font-style: normal;
|
|
11140
|
+
font-stretch: normal;
|
|
11141
|
+
letter-spacing: normal;
|
|
11142
|
+
text-align: left;
|
|
11143
|
+
color: @dusk-three;
|
|
11144
|
+
padding: 0;
|
|
11145
|
+
}
|
|
11146
|
+
}
|
|
11147
|
+
|
|
11148
|
+
.ncl-version-configuration-labels, .ncl-version-configuration-annotations {
|
|
11149
|
+
.more-info-wrapper {
|
|
11150
|
+
height: 20px;
|
|
11151
|
+
}
|
|
11152
|
+
}
|
|
11153
|
+
}
|
|
11154
|
+
}
|
|
11155
|
+
}
|
|
11156
|
+
}
|
|
11157
|
+
|
|
11243
11158
|
.ncl-version-monitoring {
|
|
11244
11159
|
> .igz-scrollable-container {
|
|
11245
11160
|
padding: 24px 25px 22px 41px;
|
|
@@ -11368,6 +11283,91 @@ ncl-navigation-tabs {
|
|
|
11368
11283
|
}
|
|
11369
11284
|
}
|
|
11370
11285
|
|
|
11286
|
+
.function-event-wrapper {
|
|
11287
|
+
width: 600px;
|
|
11288
|
+
margin-bottom: -23px;
|
|
11289
|
+
|
|
11290
|
+
.header {
|
|
11291
|
+
display: flex;
|
|
11292
|
+
justify-content: space-between;
|
|
11293
|
+
border-bottom: 1px solid @pale-grey;
|
|
11294
|
+
|
|
11295
|
+
.title {
|
|
11296
|
+
font-size: 18px;
|
|
11297
|
+
}
|
|
11298
|
+
}
|
|
11299
|
+
|
|
11300
|
+
.content {
|
|
11301
|
+
border-bottom: 1px solid @pale-grey;
|
|
11302
|
+
padding: 16px 0 16px 16px;
|
|
11303
|
+
|
|
11304
|
+
.event-form {
|
|
11305
|
+
width: 88%;
|
|
11306
|
+
|
|
11307
|
+
.field-wrapper {
|
|
11308
|
+
display: flex;
|
|
11309
|
+
align-items: center;
|
|
11310
|
+
margin: 15px 0 0 0;
|
|
11311
|
+
|
|
11312
|
+
.field-label {
|
|
11313
|
+
font-size: 16px;
|
|
11314
|
+
margin-right: 10px;
|
|
11315
|
+
width: 195px;
|
|
11316
|
+
}
|
|
11317
|
+
|
|
11318
|
+
.field-content {
|
|
11319
|
+
width: 100%;
|
|
11320
|
+
|
|
11321
|
+
.ncl-monaco {
|
|
11322
|
+
height: 200px;
|
|
11323
|
+
}
|
|
11324
|
+
|
|
11325
|
+
.event-body {
|
|
11326
|
+
font-size: 13px;
|
|
11327
|
+
outline: none;
|
|
11328
|
+
border: 1px solid @pale-grey;
|
|
11329
|
+
resize: none;
|
|
11330
|
+
width: 100%;
|
|
11331
|
+
height: 100px;
|
|
11332
|
+
padding: 5px 5px 5px 16px;
|
|
11333
|
+
}
|
|
11334
|
+
}
|
|
11335
|
+
}
|
|
11336
|
+
}
|
|
11337
|
+
|
|
11338
|
+
.event-error {
|
|
11339
|
+
display: flex;
|
|
11340
|
+
font-size: 13px;
|
|
11341
|
+
align-items: center;
|
|
11342
|
+
justify-content: center;
|
|
11343
|
+
color: @darkish-pink;
|
|
11344
|
+
}
|
|
11345
|
+
}
|
|
11346
|
+
|
|
11347
|
+
.bottom-bar {
|
|
11348
|
+
height: 64px;
|
|
11349
|
+
display: flex;
|
|
11350
|
+
align-items: center;
|
|
11351
|
+
justify-content: flex-end;
|
|
11352
|
+
|
|
11353
|
+
.igz-button-primary {
|
|
11354
|
+
&.disabled {
|
|
11355
|
+
color: rgba(71, 64, 86, 0.24);
|
|
11356
|
+
border-radius: 2px;
|
|
11357
|
+
border: solid 1px #f3f3f6;
|
|
11358
|
+
background-color: #f3f3f6;
|
|
11359
|
+
cursor: default;
|
|
11360
|
+
display: inline-block;
|
|
11361
|
+
|
|
11362
|
+
&:hover {
|
|
11363
|
+
box-shadow: none;
|
|
11364
|
+
border: none;
|
|
11365
|
+
}
|
|
11366
|
+
}
|
|
11367
|
+
}
|
|
11368
|
+
}
|
|
11369
|
+
}
|
|
11370
|
+
|
|
11371
11371
|
.ncl-version-trigger {
|
|
11372
11372
|
padding: 11px 24px;
|
|
11373
11373
|
|
|
@@ -11421,116 +11421,17 @@ ncl-navigation-tabs {
|
|
|
11421
11421
|
display: flex;
|
|
11422
11422
|
justify-content: flex-end;
|
|
11423
11423
|
|
|
11424
|
-
.text-size-action-item {
|
|
11425
|
-
width: 35px;
|
|
11426
|
-
height: 35px;
|
|
11427
|
-
margin: 0 8px 0 0;
|
|
11428
|
-
display: flex;
|
|
11429
|
-
justify-content: space-evenly;
|
|
11430
|
-
font-size: 18px;
|
|
11431
|
-
|
|
11432
|
-
.action-icon {
|
|
11433
|
-
&.igz-icon-decrease {
|
|
11434
|
-
font-size: 10px;
|
|
11435
|
-
}
|
|
11436
|
-
}
|
|
11437
|
-
}
|
|
11438
|
-
}
|
|
11439
|
-
|
|
11440
|
-
.function-from-scratch-content {
|
|
11441
|
-
.splash-screen {
|
|
11442
|
-
top: 0;
|
|
11443
|
-
}
|
|
11444
|
-
|
|
11445
|
-
.title-wrapper {
|
|
11446
|
-
margin-left: 50px;
|
|
11447
|
-
|
|
11448
|
-
.title {
|
|
11449
|
-
color: @dusk-three;
|
|
11450
|
-
font-size: 16px;
|
|
11451
|
-
font-weight: bold;
|
|
11452
|
-
}
|
|
11453
|
-
}
|
|
11454
|
-
|
|
11455
|
-
.function-configuration {
|
|
11456
|
-
margin: 28px 0 0 0;
|
|
11457
|
-
|
|
11458
|
-
.configuration-form {
|
|
11459
|
-
display: flex;
|
|
11460
|
-
|
|
11461
|
-
.function-name-wrapper {
|
|
11462
|
-
width: 50%;
|
|
11463
|
-
display: flex;
|
|
11464
|
-
padding: 0 24px 0 74px;
|
|
11465
|
-
|
|
11466
|
-
.projects-drop-down {
|
|
11467
|
-
width: 40%;
|
|
11468
|
-
margin-right: 48px;
|
|
11469
|
-
|
|
11470
|
-
.input-label {
|
|
11471
|
-
font-size: 14px;
|
|
11472
|
-
font-weight: 600;
|
|
11473
|
-
color: @dusk-three;
|
|
11474
|
-
}
|
|
11475
|
-
|
|
11476
|
-
igz-default-dropdown {
|
|
11477
|
-
.default-dropdown {
|
|
11478
|
-
background-color: @white;
|
|
11479
|
-
|
|
11480
|
-
.default-dropdown-field {
|
|
11481
|
-
&:focus {
|
|
11482
|
-
background-color: inherit;
|
|
11483
|
-
}
|
|
11484
|
-
}
|
|
11485
|
-
}
|
|
11486
|
-
}
|
|
11487
|
-
}
|
|
11488
|
-
|
|
11489
|
-
.function-name {
|
|
11490
|
-
width: 100%;
|
|
11491
|
-
|
|
11492
|
-
.input-label {
|
|
11493
|
-
font-size: 14px;
|
|
11494
|
-
font-weight: 600;
|
|
11495
|
-
color: @dusk-three;
|
|
11496
|
-
}
|
|
11497
|
-
|
|
11498
|
-
igz-validating-input-field {
|
|
11499
|
-
margin-left: 2px;
|
|
11500
|
-
}
|
|
11501
|
-
}
|
|
11502
|
-
}
|
|
11503
|
-
|
|
11504
|
-
.function-runtime-wrapper {
|
|
11505
|
-
width: 50%;
|
|
11506
|
-
padding-left: 24px;
|
|
11507
|
-
padding-right: 10%;
|
|
11508
|
-
|
|
11509
|
-
.function-runtime {
|
|
11510
|
-
.input-label {
|
|
11511
|
-
font-size: 14px;
|
|
11512
|
-
font-weight: 600;
|
|
11513
|
-
color: @dusk-three;
|
|
11514
|
-
}
|
|
11515
|
-
|
|
11516
|
-
igz-default-dropdown {
|
|
11517
|
-
.default-dropdown {
|
|
11518
|
-
background-color: @white;
|
|
11519
|
-
|
|
11520
|
-
.default-dropdown-field {
|
|
11521
|
-
&:focus {
|
|
11522
|
-
background-color: inherit;
|
|
11523
|
-
}
|
|
11524
|
-
}
|
|
11525
|
-
}
|
|
11526
|
-
}
|
|
11424
|
+
.text-size-action-item {
|
|
11425
|
+
width: 35px;
|
|
11426
|
+
height: 35px;
|
|
11427
|
+
margin: 0 8px 0 0;
|
|
11428
|
+
display: flex;
|
|
11429
|
+
justify-content: space-evenly;
|
|
11430
|
+
font-size: 18px;
|
|
11527
11431
|
|
|
11528
|
-
|
|
11529
|
-
|
|
11530
|
-
|
|
11531
|
-
margin-top: 48px;
|
|
11532
|
-
}
|
|
11533
|
-
}
|
|
11432
|
+
.action-icon {
|
|
11433
|
+
&.igz-icon-decrease {
|
|
11434
|
+
font-size: 10px;
|
|
11534
11435
|
}
|
|
11535
11436
|
}
|
|
11536
11437
|
}
|
|
@@ -11798,6 +11699,105 @@ ncl-navigation-tabs {
|
|
|
11798
11699
|
}
|
|
11799
11700
|
}
|
|
11800
11701
|
|
|
11702
|
+
.function-from-scratch-content {
|
|
11703
|
+
.splash-screen {
|
|
11704
|
+
top: 0;
|
|
11705
|
+
}
|
|
11706
|
+
|
|
11707
|
+
.title-wrapper {
|
|
11708
|
+
margin-left: 50px;
|
|
11709
|
+
|
|
11710
|
+
.title {
|
|
11711
|
+
color: @dusk-three;
|
|
11712
|
+
font-size: 16px;
|
|
11713
|
+
font-weight: bold;
|
|
11714
|
+
}
|
|
11715
|
+
}
|
|
11716
|
+
|
|
11717
|
+
.function-configuration {
|
|
11718
|
+
margin: 28px 0 0 0;
|
|
11719
|
+
|
|
11720
|
+
.configuration-form {
|
|
11721
|
+
display: flex;
|
|
11722
|
+
|
|
11723
|
+
.function-name-wrapper {
|
|
11724
|
+
width: 50%;
|
|
11725
|
+
display: flex;
|
|
11726
|
+
padding: 0 24px 0 74px;
|
|
11727
|
+
|
|
11728
|
+
.projects-drop-down {
|
|
11729
|
+
width: 40%;
|
|
11730
|
+
margin-right: 48px;
|
|
11731
|
+
|
|
11732
|
+
.input-label {
|
|
11733
|
+
font-size: 14px;
|
|
11734
|
+
font-weight: 600;
|
|
11735
|
+
color: @dusk-three;
|
|
11736
|
+
}
|
|
11737
|
+
|
|
11738
|
+
igz-default-dropdown {
|
|
11739
|
+
.default-dropdown {
|
|
11740
|
+
background-color: @white;
|
|
11741
|
+
|
|
11742
|
+
.default-dropdown-field {
|
|
11743
|
+
&:focus {
|
|
11744
|
+
background-color: inherit;
|
|
11745
|
+
}
|
|
11746
|
+
}
|
|
11747
|
+
}
|
|
11748
|
+
}
|
|
11749
|
+
}
|
|
11750
|
+
|
|
11751
|
+
.function-name {
|
|
11752
|
+
width: 100%;
|
|
11753
|
+
|
|
11754
|
+
.input-label {
|
|
11755
|
+
font-size: 14px;
|
|
11756
|
+
font-weight: 600;
|
|
11757
|
+
color: @dusk-three;
|
|
11758
|
+
}
|
|
11759
|
+
|
|
11760
|
+
igz-validating-input-field {
|
|
11761
|
+
margin-left: 2px;
|
|
11762
|
+
}
|
|
11763
|
+
}
|
|
11764
|
+
}
|
|
11765
|
+
|
|
11766
|
+
.function-runtime-wrapper {
|
|
11767
|
+
width: 50%;
|
|
11768
|
+
padding-left: 24px;
|
|
11769
|
+
padding-right: 10%;
|
|
11770
|
+
|
|
11771
|
+
.function-runtime {
|
|
11772
|
+
.input-label {
|
|
11773
|
+
font-size: 14px;
|
|
11774
|
+
font-weight: 600;
|
|
11775
|
+
color: @dusk-three;
|
|
11776
|
+
}
|
|
11777
|
+
|
|
11778
|
+
igz-default-dropdown {
|
|
11779
|
+
.default-dropdown {
|
|
11780
|
+
background-color: @white;
|
|
11781
|
+
|
|
11782
|
+
.default-dropdown-field {
|
|
11783
|
+
&:focus {
|
|
11784
|
+
background-color: inherit;
|
|
11785
|
+
}
|
|
11786
|
+
}
|
|
11787
|
+
}
|
|
11788
|
+
}
|
|
11789
|
+
|
|
11790
|
+
.bottom-bar {
|
|
11791
|
+
display: flex;
|
|
11792
|
+
justify-content: flex-end;
|
|
11793
|
+
margin-top: 48px;
|
|
11794
|
+
}
|
|
11795
|
+
}
|
|
11796
|
+
}
|
|
11797
|
+
}
|
|
11798
|
+
}
|
|
11799
|
+
}
|
|
11800
|
+
|
|
11801
11801
|
.function-import-wrapper-content {
|
|
11802
11802
|
font-family: @font-family-sans-serif;
|
|
11803
11803
|
padding-left: 3%;
|
|
@@ -12810,178 +12810,82 @@ ncl-navigation-tabs {
|
|
|
12810
12810
|
color: @orangish;
|
|
12811
12811
|
}
|
|
12812
12812
|
}
|
|
12813
|
-
|
|
12814
|
-
.date {
|
|
12815
|
-
display: inline-block;
|
|
12816
|
-
width: 230px;
|
|
12817
|
-
font-size: 14px;
|
|
12818
|
-
font-weight: bold;
|
|
12819
|
-
margin-right: 15px;
|
|
12820
|
-
}
|
|
12821
|
-
|
|
12822
|
-
.ncl-icon-parameters {
|
|
12823
|
-
.duskThree(0.64);
|
|
12824
|
-
position: absolute;
|
|
12825
|
-
top: 9px;
|
|
12826
|
-
right: 9px;
|
|
12827
|
-
color: @color;
|
|
12828
|
-
font-size: 14px;
|
|
12829
|
-
}
|
|
12830
|
-
}
|
|
12831
|
-
|
|
12832
|
-
.expanded-body {
|
|
12833
|
-
font-size: 14px;
|
|
12834
|
-
color: @dusk-three;
|
|
12835
|
-
|
|
12836
|
-
.error {
|
|
12837
|
-
width: 71%;
|
|
12838
|
-
border-radius: 3px;
|
|
12839
|
-
background-color: #fbe5e8;
|
|
12840
|
-
border: solid 1px @darkish-pink;
|
|
12841
|
-
color: @darkish-pink;
|
|
12842
|
-
word-wrap: break-word;
|
|
12843
|
-
margin-left: 62px;
|
|
12844
|
-
padding: 12px;
|
|
12845
|
-
margin-bottom: 16px;
|
|
12846
|
-
}
|
|
12847
|
-
|
|
12848
|
-
.message {
|
|
12849
|
-
display: inline-block;
|
|
12850
|
-
width: 70%;
|
|
12851
|
-
word-wrap: break-word;
|
|
12852
|
-
margin: 0 0 16px 62px;
|
|
12853
|
-
}
|
|
12854
|
-
|
|
12855
|
-
.parameters {
|
|
12856
|
-
padding: 0 62px 16px;
|
|
12857
|
-
|
|
12858
|
-
.parameters-header {
|
|
12859
|
-
font-weight: bold;
|
|
12860
|
-
}
|
|
12861
|
-
|
|
12862
|
-
> div {
|
|
12863
|
-
display: flex;
|
|
12864
|
-
line-height: 2;
|
|
12865
|
-
|
|
12866
|
-
.labels {
|
|
12867
|
-
color: @greyish-purple;
|
|
12868
|
-
font-size: 14px;
|
|
12869
|
-
width: 30%;
|
|
12870
|
-
}
|
|
12871
|
-
|
|
12872
|
-
.values {
|
|
12873
|
-
color: @dusk-three;
|
|
12874
|
-
font-size: 14px;
|
|
12875
|
-
width: 70%;
|
|
12876
|
-
}
|
|
12877
|
-
}
|
|
12878
|
-
}
|
|
12879
|
-
}
|
|
12880
|
-
}
|
|
12881
|
-
|
|
12882
|
-
.no-logs {
|
|
12883
|
-
margin: 10px auto 0;
|
|
12884
|
-
font-size: 14px;
|
|
12885
|
-
color: @pale-grey;
|
|
12886
|
-
text-align: center;
|
|
12887
|
-
}
|
|
12888
|
-
}
|
|
12889
|
-
@desktop: 1350px;
|
|
12890
|
-
@desktop-low: 1202px;
|
|
12891
|
-
@desktop-middle: 1550px;
|
|
12892
|
-
|
|
12893
|
-
.ncl-version-configuration-basic-settings {
|
|
12894
|
-
.row {
|
|
12895
|
-
display: flex;
|
|
12896
|
-
justify-content: space-between;
|
|
12897
|
-
|
|
12898
|
-
&:not(:last-child) {
|
|
12899
|
-
margin-bottom: 23px;
|
|
12900
|
-
}
|
|
12901
|
-
|
|
12902
|
-
&:last-child {
|
|
12903
|
-
margin-bottom: 4px;
|
|
12904
|
-
}
|
|
12905
|
-
|
|
12906
|
-
&.enable-checkbox {
|
|
12907
|
-
justify-content: flex-start;
|
|
12908
|
-
margin-bottom: 18px;
|
|
12909
|
-
}
|
|
12910
|
-
|
|
12911
|
-
> div {
|
|
12912
|
-
flex: 1;
|
|
12913
|
-
|
|
12914
|
-
&:not(:last-child) {
|
|
12915
|
-
margin-right: 46px;
|
|
12916
|
-
}
|
|
12917
|
-
|
|
12918
|
-
.label {
|
|
12919
|
-
padding: 0;
|
|
12920
|
-
margin-bottom: 5px;
|
|
12921
|
-
}
|
|
12922
|
-
|
|
12923
|
-
&.timeout-block {
|
|
12924
|
-
.label {
|
|
12925
|
-
margin-bottom: 3px;
|
|
12926
|
-
}
|
|
12927
|
-
|
|
12928
|
-
.timeout-values {
|
|
12929
|
-
margin-left: 27px;
|
|
12930
|
-
|
|
12931
|
-
.inputs {
|
|
12932
|
-
display: flex;
|
|
12933
|
-
align-items: center;
|
|
12934
|
-
|
|
12935
|
-
.values-label {
|
|
12936
|
-
.duskThree(0.9);
|
|
12937
|
-
margin: 0 17px 0 8px;
|
|
12938
|
-
font-size: 14px;
|
|
12939
|
-
font-weight: normal;
|
|
12940
|
-
font-style: normal;
|
|
12941
|
-
letter-spacing: normal;
|
|
12942
|
-
text-align: left;
|
|
12943
|
-
color: @color;
|
|
12944
|
-
}
|
|
12945
|
-
}
|
|
12946
|
-
}
|
|
12813
|
+
|
|
12814
|
+
.date {
|
|
12815
|
+
display: inline-block;
|
|
12816
|
+
width: 230px;
|
|
12817
|
+
font-size: 14px;
|
|
12818
|
+
font-weight: bold;
|
|
12819
|
+
margin-right: 15px;
|
|
12820
|
+
}
|
|
12821
|
+
|
|
12822
|
+
.ncl-icon-parameters {
|
|
12823
|
+
.duskThree(0.64);
|
|
12824
|
+
position: absolute;
|
|
12825
|
+
top: 9px;
|
|
12826
|
+
right: 9px;
|
|
12827
|
+
color: @color;
|
|
12828
|
+
font-size: 14px;
|
|
12947
12829
|
}
|
|
12948
12830
|
}
|
|
12949
12831
|
|
|
12950
|
-
.
|
|
12951
|
-
|
|
12952
|
-
|
|
12832
|
+
.expanded-body {
|
|
12833
|
+
font-size: 14px;
|
|
12834
|
+
color: @dusk-three;
|
|
12953
12835
|
|
|
12954
|
-
.
|
|
12955
|
-
|
|
12956
|
-
|
|
12957
|
-
|
|
12836
|
+
.error {
|
|
12837
|
+
width: 71%;
|
|
12838
|
+
border-radius: 3px;
|
|
12839
|
+
background-color: #fbe5e8;
|
|
12840
|
+
border: solid 1px @darkish-pink;
|
|
12841
|
+
color: @darkish-pink;
|
|
12842
|
+
word-wrap: break-word;
|
|
12843
|
+
margin-left: 62px;
|
|
12844
|
+
padding: 12px;
|
|
12845
|
+
margin-bottom: 16px;
|
|
12846
|
+
}
|
|
12958
12847
|
|
|
12959
|
-
|
|
12960
|
-
|
|
12961
|
-
|
|
12962
|
-
|
|
12848
|
+
.message {
|
|
12849
|
+
display: inline-block;
|
|
12850
|
+
width: 70%;
|
|
12851
|
+
word-wrap: break-word;
|
|
12852
|
+
margin: 0 0 16px 62px;
|
|
12963
12853
|
}
|
|
12964
12854
|
|
|
12965
|
-
|
|
12966
|
-
|
|
12855
|
+
.parameters {
|
|
12856
|
+
padding: 0 62px 16px;
|
|
12967
12857
|
|
|
12968
|
-
|
|
12969
|
-
|
|
12858
|
+
.parameters-header {
|
|
12859
|
+
font-weight: bold;
|
|
12970
12860
|
}
|
|
12971
12861
|
|
|
12972
|
-
|
|
12973
|
-
|
|
12974
|
-
|
|
12975
|
-
}
|
|
12862
|
+
> div {
|
|
12863
|
+
display: flex;
|
|
12864
|
+
line-height: 2;
|
|
12976
12865
|
|
|
12977
|
-
|
|
12978
|
-
|
|
12866
|
+
.labels {
|
|
12867
|
+
color: @greyish-purple;
|
|
12868
|
+
font-size: 14px;
|
|
12869
|
+
width: 30%;
|
|
12870
|
+
}
|
|
12871
|
+
|
|
12872
|
+
.values {
|
|
12873
|
+
color: @dusk-three;
|
|
12874
|
+
font-size: 14px;
|
|
12875
|
+
width: 70%;
|
|
12876
|
+
}
|
|
12979
12877
|
}
|
|
12980
12878
|
}
|
|
12981
12879
|
}
|
|
12982
12880
|
}
|
|
12983
|
-
}
|
|
12984
12881
|
|
|
12882
|
+
.no-logs {
|
|
12883
|
+
margin: 10px auto 0;
|
|
12884
|
+
font-size: 14px;
|
|
12885
|
+
color: @pale-grey;
|
|
12886
|
+
text-align: center;
|
|
12887
|
+
}
|
|
12888
|
+
}
|
|
12985
12889
|
.ncl-version-configuration-build {
|
|
12986
12890
|
&.disabled {
|
|
12987
12891
|
opacity: .5;
|
|
@@ -13221,70 +13125,109 @@ ncl-navigation-tabs {
|
|
|
13221
13125
|
}
|
|
13222
13126
|
}
|
|
13223
13127
|
|
|
13224
|
-
|
|
13128
|
+
@desktop: 1350px;
|
|
13129
|
+
@desktop-low: 1202px;
|
|
13130
|
+
@desktop-middle: 1550px;
|
|
13131
|
+
|
|
13132
|
+
.ncl-version-configuration-basic-settings {
|
|
13225
13133
|
.row {
|
|
13226
13134
|
display: flex;
|
|
13227
|
-
|
|
13135
|
+
justify-content: space-between;
|
|
13228
13136
|
|
|
13229
|
-
|
|
13230
|
-
|
|
13137
|
+
&:not(:last-child) {
|
|
13138
|
+
margin-bottom: 23px;
|
|
13231
13139
|
}
|
|
13232
|
-
}
|
|
13233
|
-
}
|
|
13234
13140
|
|
|
13235
|
-
|
|
13236
|
-
|
|
13237
|
-
|
|
13238
|
-
.row {
|
|
13239
|
-
.range-inputs-row {
|
|
13240
|
-
display: flex;
|
|
13241
|
-
align-items: flex-end;
|
|
13141
|
+
&:last-child {
|
|
13142
|
+
margin-bottom: 4px;
|
|
13143
|
+
}
|
|
13242
13144
|
|
|
13243
|
-
|
|
13244
|
-
|
|
13245
|
-
|
|
13145
|
+
&.enable-checkbox {
|
|
13146
|
+
justify-content: flex-start;
|
|
13147
|
+
margin-bottom: 18px;
|
|
13246
13148
|
}
|
|
13247
13149
|
|
|
13248
|
-
|
|
13249
|
-
|
|
13150
|
+
> div {
|
|
13151
|
+
flex: 1;
|
|
13250
13152
|
|
|
13251
|
-
|
|
13252
|
-
|
|
13153
|
+
&:not(:last-child) {
|
|
13154
|
+
margin-right: 46px;
|
|
13253
13155
|
}
|
|
13254
13156
|
|
|
13255
|
-
.
|
|
13256
|
-
|
|
13157
|
+
.label {
|
|
13158
|
+
padding: 0;
|
|
13159
|
+
margin-bottom: 5px;
|
|
13257
13160
|
}
|
|
13258
13161
|
|
|
13259
|
-
|
|
13260
|
-
|
|
13261
|
-
|
|
13162
|
+
&.timeout-block {
|
|
13163
|
+
.label {
|
|
13164
|
+
margin-bottom: 3px;
|
|
13165
|
+
}
|
|
13262
13166
|
|
|
13263
|
-
.
|
|
13264
|
-
|
|
13167
|
+
.timeout-values {
|
|
13168
|
+
margin-left: 27px;
|
|
13169
|
+
|
|
13170
|
+
.inputs {
|
|
13171
|
+
display: flex;
|
|
13172
|
+
align-items: center;
|
|
13173
|
+
|
|
13174
|
+
.values-label {
|
|
13175
|
+
.duskThree(0.9);
|
|
13176
|
+
margin: 0 17px 0 8px;
|
|
13177
|
+
font-size: 14px;
|
|
13178
|
+
font-weight: normal;
|
|
13179
|
+
font-style: normal;
|
|
13180
|
+
letter-spacing: normal;
|
|
13181
|
+
text-align: left;
|
|
13182
|
+
color: @color;
|
|
13183
|
+
}
|
|
13184
|
+
}
|
|
13265
13185
|
}
|
|
13186
|
+
}
|
|
13187
|
+
}
|
|
13266
13188
|
|
|
13267
|
-
|
|
13268
|
-
|
|
13189
|
+
.logger-block {
|
|
13190
|
+
display: flex;
|
|
13191
|
+
margin-top: 3px;
|
|
13192
|
+
|
|
13193
|
+
.logger-dropdown {
|
|
13194
|
+
.default-dropdown {
|
|
13195
|
+
position: relative;
|
|
13196
|
+
height: 36px;
|
|
13197
|
+
|
|
13198
|
+
.dropdown-overlap {
|
|
13199
|
+
z-index: 100;
|
|
13200
|
+
}
|
|
13269
13201
|
}
|
|
13202
|
+
}
|
|
13270
13203
|
|
|
13271
|
-
|
|
13272
|
-
|
|
13204
|
+
> div {
|
|
13205
|
+
flex: 1;
|
|
13206
|
+
|
|
13207
|
+
&:not(:last-child) {
|
|
13208
|
+
margin-right: 16px;
|
|
13273
13209
|
}
|
|
13274
13210
|
|
|
13275
|
-
.
|
|
13276
|
-
|
|
13211
|
+
.label {
|
|
13212
|
+
padding: 0;
|
|
13213
|
+
margin-bottom: 5px;
|
|
13214
|
+
}
|
|
13215
|
+
|
|
13216
|
+
&.logger-input {
|
|
13217
|
+
flex-grow: 1.95;
|
|
13277
13218
|
}
|
|
13278
13219
|
}
|
|
13279
13220
|
}
|
|
13221
|
+
}
|
|
13222
|
+
}
|
|
13280
13223
|
|
|
13281
|
-
|
|
13282
|
-
|
|
13283
|
-
|
|
13224
|
+
.ncl-version-configuration-logging {
|
|
13225
|
+
.row {
|
|
13226
|
+
display: flex;
|
|
13227
|
+
position: relative;
|
|
13284
13228
|
|
|
13285
|
-
|
|
13286
|
-
|
|
13287
|
-
}
|
|
13229
|
+
.logging-wrapper {
|
|
13230
|
+
width: 100%;
|
|
13288
13231
|
}
|
|
13289
13232
|
}
|
|
13290
13233
|
}
|
|
@@ -13340,6 +13283,63 @@ ncl-navigation-tabs {
|
|
|
13340
13283
|
}
|
|
13341
13284
|
}
|
|
13342
13285
|
|
|
13286
|
+
@desktop-middle: 1550px;
|
|
13287
|
+
|
|
13288
|
+
.ncl-version-configuration-resources {
|
|
13289
|
+
.row {
|
|
13290
|
+
.range-inputs-row {
|
|
13291
|
+
display: flex;
|
|
13292
|
+
align-items: flex-end;
|
|
13293
|
+
|
|
13294
|
+
.row-title {
|
|
13295
|
+
margin-bottom: 8px;
|
|
13296
|
+
}
|
|
13297
|
+
}
|
|
13298
|
+
|
|
13299
|
+
.form-row {
|
|
13300
|
+
padding: 12px 0;
|
|
13301
|
+
|
|
13302
|
+
.row-title, .input-title {
|
|
13303
|
+
font-size: 14px;
|
|
13304
|
+
}
|
|
13305
|
+
|
|
13306
|
+
.row-title {
|
|
13307
|
+
font-weight: 500;
|
|
13308
|
+
}
|
|
13309
|
+
|
|
13310
|
+
.input-wrapper {
|
|
13311
|
+
display: flex;
|
|
13312
|
+
flex-wrap: wrap;
|
|
13313
|
+
|
|
13314
|
+
.input-title {
|
|
13315
|
+
width: 100%;
|
|
13316
|
+
}
|
|
13317
|
+
|
|
13318
|
+
.memory-number-input, .cpu-number-input {
|
|
13319
|
+
width: 50%;
|
|
13320
|
+
}
|
|
13321
|
+
|
|
13322
|
+
.memory-size-dropdown, .cpu-dropdown {
|
|
13323
|
+
width: 35%
|
|
13324
|
+
}
|
|
13325
|
+
|
|
13326
|
+
.gpu-number-input, .replicas-number-input {
|
|
13327
|
+
width: 85%;
|
|
13328
|
+
}
|
|
13329
|
+
}
|
|
13330
|
+
}
|
|
13331
|
+
|
|
13332
|
+
.slider-block {
|
|
13333
|
+
padding-top: 0;
|
|
13334
|
+
margin-bottom: 10px;
|
|
13335
|
+
|
|
13336
|
+
.slider {
|
|
13337
|
+
width: 70%;
|
|
13338
|
+
}
|
|
13339
|
+
}
|
|
13340
|
+
}
|
|
13341
|
+
}
|
|
13342
|
+
|
|
13343
13343
|
.ncl-version-configuration-volumes {
|
|
13344
13344
|
.ncl-version-volume {
|
|
13345
13345
|
.common-table-header {
|