iguazio.dashboard-controls 1.2.8 → 1.2.10
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/js/iguazio.dashboard-controls.js +15140 -15122
- package/dist/less/iguazio.dashboard-controls.less +1677 -1677
- package/package.json +2 -2
- package/src/nuclio/common/screens/create-function/function-from-scratch/function-from-scratch.component.js +6 -0
- package/src/nuclio/common/screens/create-function/function-from-template/function-from-template.component.js +6 -0
- package/src/nuclio/functions/version/version-code/version-code.component.js +8 -1
|
@@ -5569,6 +5569,164 @@ yx-axis
|
|
|
5569
5569
|
}
|
|
5570
5570
|
}
|
|
5571
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
|
+
visibility: hidden;
|
|
5596
|
+
background-color: @menu-dropdown-bg-color;
|
|
5597
|
+
border: @menu-dropdown-border;
|
|
5598
|
+
border-radius: 2px;
|
|
5599
|
+
box-shadow: @menu-dropdown-box-shadow;
|
|
5600
|
+
color: @menu-dropdown-color;
|
|
5601
|
+
font-family: @font-family-sans-serif;
|
|
5602
|
+
font-size: 13px;
|
|
5603
|
+
font-weight: 500;
|
|
5604
|
+
line-height: normal;
|
|
5605
|
+
margin-top: 9px;
|
|
5606
|
+
min-width: 129px;
|
|
5607
|
+
padding: 8px 0 0;
|
|
5608
|
+
position: absolute;
|
|
5609
|
+
z-index: 10;
|
|
5610
|
+
transform: translateX(-100%);
|
|
5611
|
+
|
|
5612
|
+
.actions-list {
|
|
5613
|
+
cursor: default;
|
|
5614
|
+
padding-bottom: 8px;
|
|
5615
|
+
|
|
5616
|
+
.tooltip {
|
|
5617
|
+
// !important used to overwrite third-party's inline style
|
|
5618
|
+
display: none !important;
|
|
5619
|
+
}
|
|
5620
|
+
}
|
|
5621
|
+
|
|
5622
|
+
.igz-action-item {
|
|
5623
|
+
color: @action-item-color;
|
|
5624
|
+
cursor: pointer;
|
|
5625
|
+
font-size: 13px;
|
|
5626
|
+
font-weight: 400;
|
|
5627
|
+
line-height: 32px;
|
|
5628
|
+
padding: 0 18px;
|
|
5629
|
+
text-align: left;
|
|
5630
|
+
white-space: nowrap;
|
|
5631
|
+
|
|
5632
|
+
&:hover,
|
|
5633
|
+
&.subtemplate-show {
|
|
5634
|
+
background-color: @action-item-hover-bg-color;
|
|
5635
|
+
}
|
|
5636
|
+
|
|
5637
|
+
&.inactive {
|
|
5638
|
+
color: @action-item-inactive-color;
|
|
5639
|
+
cursor: default;
|
|
5640
|
+
|
|
5641
|
+
&:hover {
|
|
5642
|
+
background-color: @menu-dropdown-bg-color;
|
|
5643
|
+
}
|
|
5644
|
+
}
|
|
5645
|
+
|
|
5646
|
+
.action-icon {
|
|
5647
|
+
color: @action-icon-color;
|
|
5648
|
+
display: inline-block;
|
|
5649
|
+
padding-right: 14px;
|
|
5650
|
+
|
|
5651
|
+
&.icon-placeholder {
|
|
5652
|
+
&:before {
|
|
5653
|
+
content: '';
|
|
5654
|
+
display: inline-block;
|
|
5655
|
+
}
|
|
5656
|
+
}
|
|
5657
|
+
|
|
5658
|
+
&:before {
|
|
5659
|
+
font-size: 16px;
|
|
5660
|
+
position: relative;
|
|
5661
|
+
text-align: center;
|
|
5662
|
+
width: 20px;
|
|
5663
|
+
top: 2px;
|
|
5664
|
+
}
|
|
5665
|
+
}
|
|
5666
|
+
|
|
5667
|
+
.action-label {
|
|
5668
|
+
display: inline-block;
|
|
5669
|
+
}
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
.shortcuts-list {
|
|
5673
|
+
padding-bottom: 8px;
|
|
5674
|
+
|
|
5675
|
+
&:not(.first-block) {
|
|
5676
|
+
border-top: @shortcuts-list-not-first-block-border;
|
|
5677
|
+
padding-top: 8px;
|
|
5678
|
+
}
|
|
5679
|
+
}
|
|
5680
|
+
|
|
5681
|
+
.shortcuts-header {
|
|
5682
|
+
font-family: @font-family-sans-serif;
|
|
5683
|
+
color: @shortcuts-header-color;
|
|
5684
|
+
line-height: 24px;
|
|
5685
|
+
font-size: 13px;
|
|
5686
|
+
font-weight: 400;
|
|
5687
|
+
padding: 0 15px 4px 22px;
|
|
5688
|
+
text-align: left;
|
|
5689
|
+
}
|
|
5690
|
+
|
|
5691
|
+
.shortcuts-item {
|
|
5692
|
+
color: @shortcuts-item-color;
|
|
5693
|
+
cursor: pointer;
|
|
5694
|
+
font-weight: 400;
|
|
5695
|
+
white-space: nowrap;
|
|
5696
|
+
line-height: 32px;
|
|
5697
|
+
padding: 0 26px 0 32px;
|
|
5698
|
+
text-align: left;
|
|
5699
|
+
transition: @igz-basic-transition-color;
|
|
5700
|
+
|
|
5701
|
+
&:hover {
|
|
5702
|
+
background-color: @shortcuts-item-hover-bg-color;
|
|
5703
|
+
}
|
|
5704
|
+
|
|
5705
|
+
}
|
|
5706
|
+
|
|
5707
|
+
}
|
|
5708
|
+
|
|
5709
|
+
&.small-action-menu {
|
|
5710
|
+
.menu-button {
|
|
5711
|
+
color: @small-action-menu-btn-color;
|
|
5712
|
+
width: auto;
|
|
5713
|
+
font-size: 12px;
|
|
5714
|
+
display: inline-block;
|
|
5715
|
+
height: auto;
|
|
5716
|
+
margin: 0;
|
|
5717
|
+
vertical-align: sub;
|
|
5718
|
+
}
|
|
5719
|
+
|
|
5720
|
+
.menu-dropdown {
|
|
5721
|
+
margin: 0;
|
|
5722
|
+
}
|
|
5723
|
+
}
|
|
5724
|
+
|
|
5725
|
+
.upward-menu {
|
|
5726
|
+
transform: translate(-100%, -100%);
|
|
5727
|
+
}
|
|
5728
|
+
}
|
|
5729
|
+
|
|
5572
5730
|
.igz-action-panel {
|
|
5573
5731
|
.action-panel-color-set();
|
|
5574
5732
|
.action-icon-color-set();
|
|
@@ -5779,216 +5937,58 @@ yx-axis
|
|
|
5779
5937
|
}
|
|
5780
5938
|
}
|
|
5781
5939
|
|
|
5782
|
-
.
|
|
5783
|
-
.
|
|
5784
|
-
.action-icon-color-set();
|
|
5940
|
+
.auto-complete-wrapper {
|
|
5941
|
+
.auto-complete-color-set();
|
|
5785
5942
|
|
|
5786
|
-
opacity: 1;
|
|
5787
5943
|
position: relative;
|
|
5788
5944
|
|
|
5789
|
-
.
|
|
5790
|
-
|
|
5791
|
-
|
|
5792
|
-
font-size: 18px;
|
|
5793
|
-
height: 19px;
|
|
5794
|
-
text-align: center;
|
|
5795
|
-
transition: @igz-basic-transition-color;
|
|
5796
|
-
width: 30px;
|
|
5945
|
+
.input-row {
|
|
5946
|
+
display: flex;
|
|
5947
|
+
width: 100%;
|
|
5797
5948
|
|
|
5798
|
-
|
|
5799
|
-
|
|
5800
|
-
color: @menu-btn-active-hover-color;
|
|
5949
|
+
.auto-complete-input {
|
|
5950
|
+
flex-grow: 3;
|
|
5801
5951
|
}
|
|
5802
|
-
}
|
|
5803
5952
|
|
|
5804
|
-
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
5808
|
-
border-radius: 2px;
|
|
5809
|
-
box-shadow: @menu-dropdown-box-shadow;
|
|
5810
|
-
color: @menu-dropdown-color;
|
|
5811
|
-
font-family: @font-family-sans-serif;
|
|
5812
|
-
font-size: 13px;
|
|
5813
|
-
font-weight: 500;
|
|
5814
|
-
line-height: normal;
|
|
5815
|
-
margin-top: 9px;
|
|
5816
|
-
min-width: 129px;
|
|
5817
|
-
padding: 8px 0 0;
|
|
5818
|
-
position: absolute;
|
|
5819
|
-
z-index: 10;
|
|
5820
|
-
transform: translateX(-100%);
|
|
5953
|
+
.auto-complete-filters {
|
|
5954
|
+
width: 20%;
|
|
5955
|
+
}
|
|
5956
|
+
}
|
|
5821
5957
|
|
|
5822
|
-
|
|
5823
|
-
|
|
5824
|
-
|
|
5958
|
+
.suggestions-row {
|
|
5959
|
+
.auto-complete-suggestions-container {
|
|
5960
|
+
position: absolute;
|
|
5961
|
+
background-color: @auto-complete-suggestions-container-bg-color;
|
|
5962
|
+
border-radius: 2px;
|
|
5963
|
+
box-shadow: @auto-complete-suggestions-container-box-shadow;
|
|
5964
|
+
color: @auto-complete-suggestions-container-color;
|
|
5965
|
+
max-height: 220px;
|
|
5966
|
+
overflow: auto;
|
|
5967
|
+
z-index: 1000;
|
|
5968
|
+
width: 100%;
|
|
5969
|
+
margin-top: 2px;
|
|
5825
5970
|
|
|
5826
|
-
.
|
|
5827
|
-
|
|
5828
|
-
|
|
5829
|
-
}
|
|
5830
|
-
}
|
|
5971
|
+
.list {
|
|
5972
|
+
padding: 0;
|
|
5973
|
+
margin: 0;
|
|
5831
5974
|
|
|
5832
|
-
|
|
5833
|
-
|
|
5834
|
-
|
|
5835
|
-
|
|
5836
|
-
|
|
5837
|
-
|
|
5838
|
-
|
|
5839
|
-
|
|
5840
|
-
|
|
5975
|
+
.list-item {
|
|
5976
|
+
color: @auto-complete-list-item-color;
|
|
5977
|
+
font-family: @font-family-sans-serif;
|
|
5978
|
+
font-size: 14px;
|
|
5979
|
+
list-style-type: none;
|
|
5980
|
+
margin: 0;
|
|
5981
|
+
outline: none;
|
|
5982
|
+
width: 100%;
|
|
5983
|
+
min-height: 32px;
|
|
5841
5984
|
|
|
5842
|
-
|
|
5843
|
-
|
|
5844
|
-
|
|
5845
|
-
}
|
|
5985
|
+
&:first-child {
|
|
5986
|
+
margin-top: 7px;
|
|
5987
|
+
}
|
|
5846
5988
|
|
|
5847
|
-
|
|
5848
|
-
|
|
5849
|
-
|
|
5850
|
-
|
|
5851
|
-
&:hover {
|
|
5852
|
-
background-color: @menu-dropdown-bg-color;
|
|
5853
|
-
}
|
|
5854
|
-
}
|
|
5855
|
-
|
|
5856
|
-
.action-icon {
|
|
5857
|
-
color: @action-icon-color;
|
|
5858
|
-
display: inline-block;
|
|
5859
|
-
padding-right: 14px;
|
|
5860
|
-
|
|
5861
|
-
&.icon-placeholder {
|
|
5862
|
-
&:before {
|
|
5863
|
-
content: '';
|
|
5864
|
-
display: inline-block;
|
|
5865
|
-
}
|
|
5866
|
-
}
|
|
5867
|
-
|
|
5868
|
-
&:before {
|
|
5869
|
-
font-size: 16px;
|
|
5870
|
-
position: relative;
|
|
5871
|
-
text-align: center;
|
|
5872
|
-
width: 20px;
|
|
5873
|
-
top: 2px;
|
|
5874
|
-
}
|
|
5875
|
-
}
|
|
5876
|
-
|
|
5877
|
-
.action-label {
|
|
5878
|
-
display: inline-block;
|
|
5879
|
-
}
|
|
5880
|
-
}
|
|
5881
|
-
|
|
5882
|
-
.shortcuts-list {
|
|
5883
|
-
padding-bottom: 8px;
|
|
5884
|
-
|
|
5885
|
-
&:not(.first-block) {
|
|
5886
|
-
border-top: @shortcuts-list-not-first-block-border;
|
|
5887
|
-
padding-top: 8px;
|
|
5888
|
-
}
|
|
5889
|
-
}
|
|
5890
|
-
|
|
5891
|
-
.shortcuts-header {
|
|
5892
|
-
font-family: @font-family-sans-serif;
|
|
5893
|
-
color: @shortcuts-header-color;
|
|
5894
|
-
line-height: 24px;
|
|
5895
|
-
font-size: 13px;
|
|
5896
|
-
font-weight: 400;
|
|
5897
|
-
padding: 0 15px 4px 22px;
|
|
5898
|
-
text-align: left;
|
|
5899
|
-
}
|
|
5900
|
-
|
|
5901
|
-
.shortcuts-item {
|
|
5902
|
-
color: @shortcuts-item-color;
|
|
5903
|
-
cursor: pointer;
|
|
5904
|
-
font-weight: 400;
|
|
5905
|
-
white-space: nowrap;
|
|
5906
|
-
line-height: 32px;
|
|
5907
|
-
padding: 0 26px 0 32px;
|
|
5908
|
-
text-align: left;
|
|
5909
|
-
transition: @igz-basic-transition-color;
|
|
5910
|
-
|
|
5911
|
-
&:hover {
|
|
5912
|
-
background-color: @shortcuts-item-hover-bg-color;
|
|
5913
|
-
}
|
|
5914
|
-
|
|
5915
|
-
}
|
|
5916
|
-
|
|
5917
|
-
}
|
|
5918
|
-
|
|
5919
|
-
&.small-action-menu {
|
|
5920
|
-
.menu-button {
|
|
5921
|
-
color: @small-action-menu-btn-color;
|
|
5922
|
-
width: auto;
|
|
5923
|
-
font-size: 12px;
|
|
5924
|
-
display: inline-block;
|
|
5925
|
-
height: auto;
|
|
5926
|
-
margin: 0;
|
|
5927
|
-
vertical-align: sub;
|
|
5928
|
-
}
|
|
5929
|
-
|
|
5930
|
-
.menu-dropdown {
|
|
5931
|
-
margin: 0;
|
|
5932
|
-
}
|
|
5933
|
-
}
|
|
5934
|
-
|
|
5935
|
-
.upward-menu {
|
|
5936
|
-
transform: translate(-100%, -100%);
|
|
5937
|
-
}
|
|
5938
|
-
}
|
|
5939
|
-
|
|
5940
|
-
.auto-complete-wrapper {
|
|
5941
|
-
.auto-complete-color-set();
|
|
5942
|
-
|
|
5943
|
-
position: relative;
|
|
5944
|
-
|
|
5945
|
-
.input-row {
|
|
5946
|
-
display: flex;
|
|
5947
|
-
width: 100%;
|
|
5948
|
-
|
|
5949
|
-
.auto-complete-input {
|
|
5950
|
-
flex-grow: 3;
|
|
5951
|
-
}
|
|
5952
|
-
|
|
5953
|
-
.auto-complete-filters {
|
|
5954
|
-
width: 20%;
|
|
5955
|
-
}
|
|
5956
|
-
}
|
|
5957
|
-
|
|
5958
|
-
.suggestions-row {
|
|
5959
|
-
.auto-complete-suggestions-container {
|
|
5960
|
-
position: absolute;
|
|
5961
|
-
background-color: @auto-complete-suggestions-container-bg-color;
|
|
5962
|
-
border-radius: 2px;
|
|
5963
|
-
box-shadow: @auto-complete-suggestions-container-box-shadow;
|
|
5964
|
-
color: @auto-complete-suggestions-container-color;
|
|
5965
|
-
max-height: 220px;
|
|
5966
|
-
overflow: auto;
|
|
5967
|
-
z-index: 1000;
|
|
5968
|
-
width: 100%;
|
|
5969
|
-
margin-top: 2px;
|
|
5970
|
-
|
|
5971
|
-
.list {
|
|
5972
|
-
padding: 0;
|
|
5973
|
-
margin: 0;
|
|
5974
|
-
|
|
5975
|
-
.list-item {
|
|
5976
|
-
color: @auto-complete-list-item-color;
|
|
5977
|
-
font-family: @font-family-sans-serif;
|
|
5978
|
-
font-size: 14px;
|
|
5979
|
-
list-style-type: none;
|
|
5980
|
-
margin: 0;
|
|
5981
|
-
outline: none;
|
|
5982
|
-
width: 100%;
|
|
5983
|
-
min-height: 32px;
|
|
5984
|
-
|
|
5985
|
-
&:first-child {
|
|
5986
|
-
margin-top: 7px;
|
|
5987
|
-
}
|
|
5988
|
-
|
|
5989
|
-
&:last-child {
|
|
5990
|
-
margin-bottom: 4px;
|
|
5991
|
-
}
|
|
5989
|
+
&:last-child {
|
|
5990
|
+
margin-bottom: 4px;
|
|
5991
|
+
}
|
|
5992
5992
|
|
|
5993
5993
|
.list-item-block {
|
|
5994
5994
|
display: flex;
|
|
@@ -6455,6 +6455,82 @@ yx-axis
|
|
|
6455
6455
|
}
|
|
6456
6456
|
}
|
|
6457
6457
|
|
|
6458
|
+
.element-loading-status {
|
|
6459
|
+
.element-loading-status-color-set();
|
|
6460
|
+
|
|
6461
|
+
position: relative;
|
|
6462
|
+
width: 100%;
|
|
6463
|
+
height: 100%;
|
|
6464
|
+
|
|
6465
|
+
.loader-wrapper {
|
|
6466
|
+
height: 100%;
|
|
6467
|
+
width: 100%;
|
|
6468
|
+
position: relative;
|
|
6469
|
+
|
|
6470
|
+
.loader-text {
|
|
6471
|
+
color: @loading-text-color;
|
|
6472
|
+
}
|
|
6473
|
+
}
|
|
6474
|
+
|
|
6475
|
+
.loading-error {
|
|
6476
|
+
text-align: center;
|
|
6477
|
+
line-height: 15px;
|
|
6478
|
+
width: 100%;
|
|
6479
|
+
height: 100%;
|
|
6480
|
+
position: relative;
|
|
6481
|
+
|
|
6482
|
+
.sad-icon {
|
|
6483
|
+
position: absolute;
|
|
6484
|
+
left: 32px;
|
|
6485
|
+
}
|
|
6486
|
+
|
|
6487
|
+
.loading-error-title, .loading-error-message {
|
|
6488
|
+
font-size: 13px;
|
|
6489
|
+
font-weight: 700;
|
|
6490
|
+
padding: 0 15px;
|
|
6491
|
+
}
|
|
6492
|
+
|
|
6493
|
+
.loading-error-title {
|
|
6494
|
+
color: @loading-error-title-color;
|
|
6495
|
+
padding-top: 15px;
|
|
6496
|
+
}
|
|
6497
|
+
|
|
6498
|
+
.refresh-page {
|
|
6499
|
+
color: @loading-error-refresh-page-color;
|
|
6500
|
+
text-decoration: underline;
|
|
6501
|
+
cursor: pointer;
|
|
6502
|
+
}
|
|
6503
|
+
}
|
|
6504
|
+
|
|
6505
|
+
// Small size status
|
|
6506
|
+
|
|
6507
|
+
&.loading-status-small {
|
|
6508
|
+
.loader-fading-circle {
|
|
6509
|
+
width: 20px;
|
|
6510
|
+
height: 20px;
|
|
6511
|
+
}
|
|
6512
|
+
|
|
6513
|
+
.loading-error {
|
|
6514
|
+
|
|
6515
|
+
.loading-error-title, .loading-error-message {
|
|
6516
|
+
text-overflow: ellipsis;
|
|
6517
|
+
overflow: hidden;
|
|
6518
|
+
padding: 0;
|
|
6519
|
+
}
|
|
6520
|
+
|
|
6521
|
+
.loading-error-title {
|
|
6522
|
+
padding-top: 8px;
|
|
6523
|
+
}
|
|
6524
|
+
|
|
6525
|
+
.refresh-page {
|
|
6526
|
+
overflow: hidden;
|
|
6527
|
+
text-overflow: ellipsis;
|
|
6528
|
+
padding: 0;
|
|
6529
|
+
}
|
|
6530
|
+
}
|
|
6531
|
+
}
|
|
6532
|
+
}
|
|
6533
|
+
|
|
6458
6534
|
.default-dropdown {
|
|
6459
6535
|
.default-dropdown-color-set();
|
|
6460
6536
|
.severity-icons-color-set();
|
|
@@ -6895,104 +6971,28 @@ yx-axis
|
|
|
6895
6971
|
}
|
|
6896
6972
|
}
|
|
6897
6973
|
|
|
6898
|
-
.
|
|
6899
|
-
.
|
|
6974
|
+
.control-panel-log-row {
|
|
6975
|
+
.control-panel-log-table-row-color-set();
|
|
6900
6976
|
|
|
6901
|
-
|
|
6902
|
-
|
|
6903
|
-
|
|
6977
|
+
.log-entry {
|
|
6978
|
+
.log-entry-time {
|
|
6979
|
+
color: @log-entry-time-color;
|
|
6980
|
+
}
|
|
6904
6981
|
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
position: relative;
|
|
6982
|
+
.log-entry-level-debug {
|
|
6983
|
+
color: @log-entry-level-debug-color;
|
|
6984
|
+
}
|
|
6909
6985
|
|
|
6910
|
-
.
|
|
6911
|
-
color: @
|
|
6986
|
+
.log-entry-level-info {
|
|
6987
|
+
color: @log-entry-level-info-color;
|
|
6912
6988
|
}
|
|
6913
|
-
}
|
|
6914
6989
|
|
|
6915
|
-
|
|
6916
|
-
|
|
6917
|
-
|
|
6918
|
-
width: 100%;
|
|
6919
|
-
height: 100%;
|
|
6920
|
-
position: relative;
|
|
6990
|
+
.log-entry-level-warn, .log-entry-level-warning {
|
|
6991
|
+
color: @log-entry-level-warn-color;
|
|
6992
|
+
}
|
|
6921
6993
|
|
|
6922
|
-
.
|
|
6923
|
-
|
|
6924
|
-
left: 32px;
|
|
6925
|
-
}
|
|
6926
|
-
|
|
6927
|
-
.loading-error-title, .loading-error-message {
|
|
6928
|
-
font-size: 13px;
|
|
6929
|
-
font-weight: 700;
|
|
6930
|
-
padding: 0 15px;
|
|
6931
|
-
}
|
|
6932
|
-
|
|
6933
|
-
.loading-error-title {
|
|
6934
|
-
color: @loading-error-title-color;
|
|
6935
|
-
padding-top: 15px;
|
|
6936
|
-
}
|
|
6937
|
-
|
|
6938
|
-
.refresh-page {
|
|
6939
|
-
color: @loading-error-refresh-page-color;
|
|
6940
|
-
text-decoration: underline;
|
|
6941
|
-
cursor: pointer;
|
|
6942
|
-
}
|
|
6943
|
-
}
|
|
6944
|
-
|
|
6945
|
-
// Small size status
|
|
6946
|
-
|
|
6947
|
-
&.loading-status-small {
|
|
6948
|
-
.loader-fading-circle {
|
|
6949
|
-
width: 20px;
|
|
6950
|
-
height: 20px;
|
|
6951
|
-
}
|
|
6952
|
-
|
|
6953
|
-
.loading-error {
|
|
6954
|
-
|
|
6955
|
-
.loading-error-title, .loading-error-message {
|
|
6956
|
-
text-overflow: ellipsis;
|
|
6957
|
-
overflow: hidden;
|
|
6958
|
-
padding: 0;
|
|
6959
|
-
}
|
|
6960
|
-
|
|
6961
|
-
.loading-error-title {
|
|
6962
|
-
padding-top: 8px;
|
|
6963
|
-
}
|
|
6964
|
-
|
|
6965
|
-
.refresh-page {
|
|
6966
|
-
overflow: hidden;
|
|
6967
|
-
text-overflow: ellipsis;
|
|
6968
|
-
padding: 0;
|
|
6969
|
-
}
|
|
6970
|
-
}
|
|
6971
|
-
}
|
|
6972
|
-
}
|
|
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;
|
|
6994
|
+
.log-entry-level-error {
|
|
6995
|
+
color: @log-entry-level-error-color;
|
|
6996
6996
|
}
|
|
6997
6997
|
|
|
6998
6998
|
.log-entry-message {
|
|
@@ -7356,159 +7356,6 @@ yx-axis
|
|
|
7356
7356
|
}
|
|
7357
7357
|
}
|
|
7358
7358
|
|
|
7359
|
-
.igz-number-input {
|
|
7360
|
-
.number-input-color-set();
|
|
7361
|
-
|
|
7362
|
-
min-width: 115px;
|
|
7363
|
-
font-family: @font-family-sans-serif;
|
|
7364
|
-
font-size: 14px;
|
|
7365
|
-
font-weight: 400;
|
|
7366
|
-
height: 36px;
|
|
7367
|
-
position: relative;
|
|
7368
|
-
background-color: @number-input-bg-color;
|
|
7369
|
-
border: @number-input-border;
|
|
7370
|
-
border-radius: 2px;
|
|
7371
|
-
color: @number-input-color;
|
|
7372
|
-
display: flex;
|
|
7373
|
-
justify-content: flex-start;
|
|
7374
|
-
align-items: center;
|
|
7375
|
-
padding: 0 10px 0 11px;
|
|
7376
|
-
z-index: 3;
|
|
7377
|
-
|
|
7378
|
-
&:not(.disabled) {
|
|
7379
|
-
&:focus.ng-invalid:not(.ng-pristine), &.ng-invalid.ng-touched {
|
|
7380
|
-
background-color: @number-input-not-disabled-focus-invalid-bg-color;
|
|
7381
|
-
border: @number-input-not-disabled-focus-invalid-border;
|
|
7382
|
-
box-shadow: none;
|
|
7383
|
-
outline: none;
|
|
7384
|
-
}
|
|
7385
|
-
|
|
7386
|
-
&:focus-within, &.focused {
|
|
7387
|
-
outline: 0;
|
|
7388
|
-
border: @number-input-not-disabled-hover-focus-border;
|
|
7389
|
-
}
|
|
7390
|
-
|
|
7391
|
-
&.invalid:not(.pristine), &.invalid.submitted {
|
|
7392
|
-
background-color: @number-input-not-disabled-invalid-bg-color;
|
|
7393
|
-
border: @number-input-not-disabled-invalid-border;
|
|
7394
|
-
box-shadow: none;
|
|
7395
|
-
}
|
|
7396
|
-
|
|
7397
|
-
&:focus.ng-valid, &:focus.ng-pristine {
|
|
7398
|
-
border: @number-input-not-disabled-valid-border;
|
|
7399
|
-
box-shadow: none;
|
|
7400
|
-
outline: none;
|
|
7401
|
-
}
|
|
7402
|
-
}
|
|
7403
|
-
|
|
7404
|
-
&.additional-left-padding {
|
|
7405
|
-
padding-left: 22px;
|
|
7406
|
-
}
|
|
7407
|
-
|
|
7408
|
-
.input-field {
|
|
7409
|
-
border: none;
|
|
7410
|
-
outline: 0;
|
|
7411
|
-
padding: 0;
|
|
7412
|
-
text-align: left;
|
|
7413
|
-
background-color: @number-input-field-bg-color;
|
|
7414
|
-
}
|
|
7415
|
-
|
|
7416
|
-
//
|
|
7417
|
-
// placeholder
|
|
7418
|
-
//
|
|
7419
|
-
|
|
7420
|
-
::-webkit-input-placeholder {
|
|
7421
|
-
/* Chrome, Chromium, Edge, Safari, Opera*/
|
|
7422
|
-
color: @number-input-placeholder-color;
|
|
7423
|
-
}
|
|
7424
|
-
|
|
7425
|
-
:-moz-placeholder {
|
|
7426
|
-
/* Firefox 4-18 */
|
|
7427
|
-
color: @number-input-placeholder-color;
|
|
7428
|
-
}
|
|
7429
|
-
|
|
7430
|
-
::-moz-placeholder {
|
|
7431
|
-
/* Firefox 19+ */
|
|
7432
|
-
color: @number-input-placeholder-color;
|
|
7433
|
-
}
|
|
7434
|
-
|
|
7435
|
-
:-ms-input-placeholder {
|
|
7436
|
-
/* - Internet Explorer 10–11
|
|
7437
|
-
- Internet Explorer Mobile 10-11 */
|
|
7438
|
-
color: @number-input-placeholder-color !important;
|
|
7439
|
-
}
|
|
7440
|
-
|
|
7441
|
-
::placeholder {
|
|
7442
|
-
/* modern browser versions */
|
|
7443
|
-
color: @number-input-placeholder-color;
|
|
7444
|
-
}
|
|
7445
|
-
|
|
7446
|
-
.additional-left-block {
|
|
7447
|
-
.prefix-unit {
|
|
7448
|
-
color: @number-input-additional-left-block-prefix-unit-color;
|
|
7449
|
-
font-size: 14px;
|
|
7450
|
-
font-weight: 700;
|
|
7451
|
-
padding-right: 7px;
|
|
7452
|
-
}
|
|
7453
|
-
}
|
|
7454
|
-
|
|
7455
|
-
.suffix-unit-container {
|
|
7456
|
-
display: flex;
|
|
7457
|
-
align-items: center;
|
|
7458
|
-
|
|
7459
|
-
.suffix-unit {
|
|
7460
|
-
color: @number-input-suffix-unit-color;
|
|
7461
|
-
font-size: 14px;
|
|
7462
|
-
font-weight: 400;
|
|
7463
|
-
padding-left: 3px;
|
|
7464
|
-
}
|
|
7465
|
-
}
|
|
7466
|
-
|
|
7467
|
-
.arrow-block {
|
|
7468
|
-
font-size: 11px;
|
|
7469
|
-
display: flex;
|
|
7470
|
-
flex-direction: column;
|
|
7471
|
-
justify-content: center;
|
|
7472
|
-
height: 100%;
|
|
7473
|
-
margin-left: 6px;
|
|
7474
|
-
|
|
7475
|
-
.igz-icon-dropup, .igz-icon-dropdown {
|
|
7476
|
-
color: @number-input-arrow-block-icon-color;
|
|
7477
|
-
cursor: pointer;
|
|
7478
|
-
display: block;
|
|
7479
|
-
line-height: 11px;
|
|
7480
|
-
outline: 0;
|
|
7481
|
-
|
|
7482
|
-
&:hover {
|
|
7483
|
-
color: @number-input-arrow-block-icon-hover-color;
|
|
7484
|
-
}
|
|
7485
|
-
}
|
|
7486
|
-
}
|
|
7487
|
-
|
|
7488
|
-
&.disabled {
|
|
7489
|
-
background-color: @number-input-disabled-bg-color;
|
|
7490
|
-
opacity: 0.5;
|
|
7491
|
-
|
|
7492
|
-
.suffix-unit {
|
|
7493
|
-
opacity: 0.5;
|
|
7494
|
-
}
|
|
7495
|
-
|
|
7496
|
-
.igz-icon-dropup, .igz-icon-dropdown {
|
|
7497
|
-
&, &:hover {
|
|
7498
|
-
color: @number-input-disabled-icon-hover-color;
|
|
7499
|
-
opacity: 0.5;
|
|
7500
|
-
cursor: default;
|
|
7501
|
-
}
|
|
7502
|
-
}
|
|
7503
|
-
}
|
|
7504
|
-
}
|
|
7505
|
-
|
|
7506
|
-
.step3, .step4 {
|
|
7507
|
-
.additional-right-padding {
|
|
7508
|
-
padding-right: 50px;
|
|
7509
|
-
}
|
|
7510
|
-
}
|
|
7511
|
-
|
|
7512
7359
|
.igz-navigation-tabs {
|
|
7513
7360
|
.navigation-tabs-color-set();
|
|
7514
7361
|
|
|
@@ -7696,223 +7543,156 @@ yx-axis
|
|
|
7696
7543
|
}
|
|
7697
7544
|
}
|
|
7698
7545
|
}
|
|
7699
|
-
.igz-
|
|
7700
|
-
.
|
|
7546
|
+
.igz-number-input {
|
|
7547
|
+
.number-input-color-set();
|
|
7701
7548
|
|
|
7549
|
+
min-width: 115px;
|
|
7550
|
+
font-family: @font-family-sans-serif;
|
|
7551
|
+
font-size: 14px;
|
|
7552
|
+
font-weight: 400;
|
|
7553
|
+
height: 36px;
|
|
7702
7554
|
position: relative;
|
|
7555
|
+
background-color: @number-input-bg-color;
|
|
7556
|
+
border: @number-input-border;
|
|
7557
|
+
border-radius: 2px;
|
|
7558
|
+
color: @number-input-color;
|
|
7559
|
+
display: flex;
|
|
7560
|
+
justify-content: flex-start;
|
|
7561
|
+
align-items: center;
|
|
7562
|
+
padding: 0 10px 0 11px;
|
|
7563
|
+
z-index: 3;
|
|
7703
7564
|
|
|
7704
|
-
.
|
|
7705
|
-
|
|
7706
|
-
|
|
7707
|
-
|
|
7708
|
-
|
|
7709
|
-
|
|
7710
|
-
font-size: 14px;
|
|
7711
|
-
font-weight: 400;
|
|
7712
|
-
text-align: left;
|
|
7713
|
-
cursor: default;
|
|
7714
|
-
|
|
7715
|
-
.igz-slider-input-title-text {
|
|
7716
|
-
display: table-cell;
|
|
7717
|
-
vertical-align: middle;
|
|
7718
|
-
}
|
|
7719
|
-
}
|
|
7720
|
-
|
|
7721
|
-
// Custom styles for third-party library slider
|
|
7722
|
-
.igz-slider-input-rz-slider {
|
|
7723
|
-
float: left;
|
|
7724
|
-
min-height: 16px;
|
|
7725
|
-
line-height: 16px;
|
|
7726
|
-
|
|
7727
|
-
.rzslider {
|
|
7728
|
-
margin: 0;
|
|
7729
|
-
height: 8px;
|
|
7730
|
-
|
|
7731
|
-
.rz-bar-wrapper {
|
|
7732
|
-
height: auto;
|
|
7733
|
-
margin: 0;
|
|
7734
|
-
padding: 0;
|
|
7735
|
-
|
|
7736
|
-
.rz-bar {
|
|
7737
|
-
background-color: @rz-bar-bg-color;
|
|
7738
|
-
height: 3px;
|
|
7739
|
-
}
|
|
7740
|
-
}
|
|
7741
|
-
|
|
7742
|
-
.rz-bubble {
|
|
7743
|
-
display: none;
|
|
7744
|
-
}
|
|
7745
|
-
|
|
7746
|
-
.rz-pointer {
|
|
7747
|
-
height: 14px;
|
|
7748
|
-
width: 14px;
|
|
7749
|
-
top: -6px;
|
|
7750
|
-
box-shadow: @rz-pointer-box-shadow;
|
|
7751
|
-
outline: 0;
|
|
7752
|
-
|
|
7753
|
-
&:after {
|
|
7754
|
-
display: none;
|
|
7755
|
-
}
|
|
7756
|
-
}
|
|
7757
|
-
|
|
7758
|
-
&:not([disabled]) {
|
|
7759
|
-
.rz-bar.rz-selection {
|
|
7760
|
-
background-color: @rz-selection-bg-color;
|
|
7761
|
-
}
|
|
7762
|
-
|
|
7763
|
-
.rz-pointer {
|
|
7764
|
-
background-color: @rz-pointer-bg-color;
|
|
7765
|
-
}
|
|
7766
|
-
}
|
|
7565
|
+
&:not(.disabled) {
|
|
7566
|
+
&:focus.ng-invalid:not(.ng-pristine), &.ng-invalid.ng-touched {
|
|
7567
|
+
background-color: @number-input-not-disabled-focus-invalid-bg-color;
|
|
7568
|
+
border: @number-input-not-disabled-focus-invalid-border;
|
|
7569
|
+
box-shadow: none;
|
|
7570
|
+
outline: none;
|
|
7767
7571
|
}
|
|
7768
|
-
}
|
|
7769
|
-
|
|
7770
|
-
// Current value
|
|
7771
|
-
.igz-slider-input-current-value {
|
|
7772
|
-
float: left;
|
|
7773
|
-
min-height: 30px;
|
|
7774
|
-
line-height: 30px;
|
|
7775
|
-
|
|
7776
|
-
&.with-measure-units {
|
|
7777
|
-
width: 18%;
|
|
7778
|
-
padding-right: 0;
|
|
7779
7572
|
|
|
7780
|
-
|
|
7781
|
-
|
|
7782
|
-
|
|
7573
|
+
&:focus-within, &.focused {
|
|
7574
|
+
outline: 0;
|
|
7575
|
+
border: @number-input-not-disabled-hover-focus-border;
|
|
7783
7576
|
}
|
|
7784
7577
|
|
|
7785
|
-
&.
|
|
7786
|
-
|
|
7578
|
+
&.invalid:not(.pristine), &.invalid.submitted {
|
|
7579
|
+
background-color: @number-input-not-disabled-invalid-bg-color;
|
|
7580
|
+
border: @number-input-not-disabled-invalid-border;
|
|
7581
|
+
box-shadow: none;
|
|
7787
7582
|
}
|
|
7788
7583
|
|
|
7789
|
-
.
|
|
7790
|
-
|
|
7791
|
-
|
|
7792
|
-
|
|
7793
|
-
background-color: @slider-input-current-value-text-bg-color;
|
|
7794
|
-
text-align: right;
|
|
7584
|
+
&:focus.ng-valid, &:focus.ng-pristine {
|
|
7585
|
+
border: @number-input-not-disabled-valid-border;
|
|
7586
|
+
box-shadow: none;
|
|
7587
|
+
outline: none;
|
|
7795
7588
|
}
|
|
7796
7589
|
}
|
|
7797
7590
|
|
|
7798
|
-
|
|
7799
|
-
|
|
7800
|
-
right: 0;
|
|
7801
|
-
min-height: 30px;
|
|
7802
|
-
line-height: 30px;
|
|
7591
|
+
&.additional-left-padding {
|
|
7592
|
+
padding-left: 22px;
|
|
7803
7593
|
}
|
|
7804
7594
|
|
|
7805
|
-
|
|
7806
|
-
|
|
7807
|
-
|
|
7808
|
-
|
|
7809
|
-
|
|
7810
|
-
|
|
7811
|
-
|
|
7812
|
-
.default-dropdown-field {
|
|
7813
|
-
border: none;
|
|
7814
|
-
background-color: @default-dropdown-field-bg-color;
|
|
7595
|
+
.input-field {
|
|
7596
|
+
border: none;
|
|
7597
|
+
outline: 0;
|
|
7598
|
+
padding: 0;
|
|
7599
|
+
text-align: left;
|
|
7600
|
+
background-color: @number-input-field-bg-color;
|
|
7601
|
+
}
|
|
7815
7602
|
|
|
7816
|
-
|
|
7817
|
-
|
|
7818
|
-
|
|
7603
|
+
//
|
|
7604
|
+
// placeholder
|
|
7605
|
+
//
|
|
7819
7606
|
|
|
7820
|
-
|
|
7821
|
-
|
|
7822
|
-
|
|
7823
|
-
}
|
|
7824
|
-
}
|
|
7607
|
+
::-webkit-input-placeholder {
|
|
7608
|
+
/* Chrome, Chromium, Edge, Safari, Opera*/
|
|
7609
|
+
color: @number-input-placeholder-color;
|
|
7825
7610
|
}
|
|
7826
|
-
}
|
|
7827
|
-
|
|
7828
|
-
.igz-size {
|
|
7829
|
-
.size-color-set();
|
|
7830
7611
|
|
|
7831
|
-
|
|
7832
|
-
|
|
7833
|
-
|
|
7834
|
-
|
|
7612
|
+
:-moz-placeholder {
|
|
7613
|
+
/* Firefox 4-18 */
|
|
7614
|
+
color: @number-input-placeholder-color;
|
|
7615
|
+
}
|
|
7835
7616
|
|
|
7836
|
-
|
|
7837
|
-
|
|
7838
|
-
|
|
7839
|
-
vertical-align: middle;
|
|
7617
|
+
::-moz-placeholder {
|
|
7618
|
+
/* Firefox 19+ */
|
|
7619
|
+
color: @number-input-placeholder-color;
|
|
7840
7620
|
}
|
|
7841
7621
|
|
|
7842
|
-
|
|
7843
|
-
|
|
7844
|
-
|
|
7845
|
-
|
|
7622
|
+
:-ms-input-placeholder {
|
|
7623
|
+
/* - Internet Explorer 10–11
|
|
7624
|
+
- Internet Explorer Mobile 10-11 */
|
|
7625
|
+
color: @number-input-placeholder-color !important;
|
|
7626
|
+
}
|
|
7846
7627
|
|
|
7847
|
-
|
|
7848
|
-
|
|
7849
|
-
|
|
7628
|
+
::placeholder {
|
|
7629
|
+
/* modern browser versions */
|
|
7630
|
+
color: @number-input-placeholder-color;
|
|
7631
|
+
}
|
|
7850
7632
|
|
|
7851
|
-
|
|
7852
|
-
|
|
7853
|
-
|
|
7633
|
+
.additional-left-block {
|
|
7634
|
+
.prefix-unit {
|
|
7635
|
+
color: @number-input-additional-left-block-prefix-unit-color;
|
|
7636
|
+
font-size: 14px;
|
|
7637
|
+
font-weight: 700;
|
|
7638
|
+
padding-right: 7px;
|
|
7854
7639
|
}
|
|
7640
|
+
}
|
|
7855
7641
|
|
|
7856
|
-
|
|
7857
|
-
|
|
7858
|
-
|
|
7859
|
-
}
|
|
7642
|
+
.suffix-unit-container {
|
|
7643
|
+
display: flex;
|
|
7644
|
+
align-items: center;
|
|
7860
7645
|
|
|
7861
|
-
|
|
7862
|
-
|
|
7863
|
-
|
|
7646
|
+
.suffix-unit {
|
|
7647
|
+
color: @number-input-suffix-unit-color;
|
|
7648
|
+
font-size: 14px;
|
|
7649
|
+
font-weight: 400;
|
|
7650
|
+
padding-left: 3px;
|
|
7864
7651
|
}
|
|
7865
7652
|
}
|
|
7866
7653
|
|
|
7867
|
-
.
|
|
7868
|
-
|
|
7869
|
-
|
|
7654
|
+
.arrow-block {
|
|
7655
|
+
font-size: 11px;
|
|
7656
|
+
display: flex;
|
|
7657
|
+
flex-direction: column;
|
|
7658
|
+
justify-content: center;
|
|
7659
|
+
height: 100%;
|
|
7660
|
+
margin-left: 6px;
|
|
7870
7661
|
|
|
7871
|
-
.icon-
|
|
7872
|
-
color: @
|
|
7873
|
-
|
|
7874
|
-
|
|
7875
|
-
|
|
7662
|
+
.igz-icon-dropup, .igz-icon-dropdown {
|
|
7663
|
+
color: @number-input-arrow-block-icon-color;
|
|
7664
|
+
cursor: pointer;
|
|
7665
|
+
display: block;
|
|
7666
|
+
line-height: 11px;
|
|
7667
|
+
outline: 0;
|
|
7876
7668
|
|
|
7877
|
-
|
|
7878
|
-
|
|
7879
|
-
|
|
7669
|
+
&:hover {
|
|
7670
|
+
color: @number-input-arrow-block-icon-hover-color;
|
|
7671
|
+
}
|
|
7880
7672
|
}
|
|
7881
7673
|
}
|
|
7882
7674
|
|
|
7883
|
-
|
|
7884
|
-
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
div.highcharts-tooltip {
|
|
7888
|
-
position: fixed !important;
|
|
7889
|
-
|
|
7890
|
-
.igz-tooltip-wrapper {
|
|
7891
|
-
color: @size-chart-tooltip-wrapper-color;
|
|
7675
|
+
&.disabled {
|
|
7676
|
+
background-color: @number-input-disabled-bg-color;
|
|
7677
|
+
opacity: 0.5;
|
|
7892
7678
|
|
|
7893
|
-
|
|
7894
|
-
|
|
7895
|
-
|
|
7896
|
-
.tooltip-value {
|
|
7897
|
-
text-overflow: unset;
|
|
7898
|
-
}
|
|
7899
|
-
}
|
|
7900
|
-
}
|
|
7679
|
+
.suffix-unit {
|
|
7680
|
+
opacity: 0.5;
|
|
7681
|
+
}
|
|
7901
7682
|
|
|
7902
|
-
|
|
7903
|
-
|
|
7904
|
-
|
|
7905
|
-
|
|
7906
|
-
|
|
7907
|
-
}
|
|
7683
|
+
.igz-icon-dropup, .igz-icon-dropdown {
|
|
7684
|
+
&, &:hover {
|
|
7685
|
+
color: @number-input-disabled-icon-hover-color;
|
|
7686
|
+
opacity: 0.5;
|
|
7687
|
+
cursor: default;
|
|
7908
7688
|
}
|
|
7909
7689
|
}
|
|
7910
7690
|
}
|
|
7691
|
+
}
|
|
7911
7692
|
|
|
7912
|
-
|
|
7913
|
-
|
|
7914
|
-
|
|
7915
|
-
width: 100%;
|
|
7693
|
+
.step3, .step4 {
|
|
7694
|
+
.additional-right-padding {
|
|
7695
|
+
padding-right: 50px;
|
|
7916
7696
|
}
|
|
7917
7697
|
}
|
|
7918
7698
|
|
|
@@ -8103,8 +7883,228 @@ yx-axis
|
|
|
8103
7883
|
}
|
|
8104
7884
|
}
|
|
8105
7885
|
}
|
|
8106
|
-
.
|
|
8107
|
-
.
|
|
7886
|
+
.igz-size {
|
|
7887
|
+
.size-color-set();
|
|
7888
|
+
|
|
7889
|
+
align-items: center;
|
|
7890
|
+
display: flex;
|
|
7891
|
+
justify-content: space-between;
|
|
7892
|
+
min-height: 40px;
|
|
7893
|
+
|
|
7894
|
+
&:after {
|
|
7895
|
+
content: ' ';
|
|
7896
|
+
display: inline-block;
|
|
7897
|
+
vertical-align: middle;
|
|
7898
|
+
}
|
|
7899
|
+
|
|
7900
|
+
.size-value {
|
|
7901
|
+
line-height: 1;
|
|
7902
|
+
flex: 0 0 100px;
|
|
7903
|
+
min-width: 100px;
|
|
7904
|
+
|
|
7905
|
+
> span {
|
|
7906
|
+
line-height: 25px;
|
|
7907
|
+
}
|
|
7908
|
+
|
|
7909
|
+
&.short {
|
|
7910
|
+
flex: 0 0 75px;
|
|
7911
|
+
min-width: 75px;
|
|
7912
|
+
}
|
|
7913
|
+
|
|
7914
|
+
&.shorten {
|
|
7915
|
+
flex: 0 0 60px;
|
|
7916
|
+
min-width: 60px;
|
|
7917
|
+
}
|
|
7918
|
+
|
|
7919
|
+
&.shortest {
|
|
7920
|
+
flex: 0 0 40px;
|
|
7921
|
+
min-width: 40px;
|
|
7922
|
+
}
|
|
7923
|
+
}
|
|
7924
|
+
|
|
7925
|
+
.size-reserved {
|
|
7926
|
+
color: @size-reserved-color;
|
|
7927
|
+
font-size: 12px;
|
|
7928
|
+
|
|
7929
|
+
.icon-font-arrow-right:before {
|
|
7930
|
+
color: @size-reserved-arrow-right-before-color;
|
|
7931
|
+
font-size: 10px;
|
|
7932
|
+
padding: 0 4px 0 4px;
|
|
7933
|
+
}
|
|
7934
|
+
|
|
7935
|
+
.icon-font-infinity:before {
|
|
7936
|
+
color: @size-reserved-infinity-before-color;
|
|
7937
|
+
font-size: 10px;
|
|
7938
|
+
}
|
|
7939
|
+
}
|
|
7940
|
+
|
|
7941
|
+
.size-chart {
|
|
7942
|
+
flex: 1 1 auto;
|
|
7943
|
+
min-width: 0;
|
|
7944
|
+
|
|
7945
|
+
div.highcharts-tooltip {
|
|
7946
|
+
position: fixed !important;
|
|
7947
|
+
|
|
7948
|
+
.igz-tooltip-wrapper {
|
|
7949
|
+
color: @size-chart-tooltip-wrapper-color;
|
|
7950
|
+
|
|
7951
|
+
&.used-capacity-tooltip-wrapper {
|
|
7952
|
+
.igz-row {
|
|
7953
|
+
.tooltip-label,
|
|
7954
|
+
.tooltip-value {
|
|
7955
|
+
text-overflow: unset;
|
|
7956
|
+
}
|
|
7957
|
+
}
|
|
7958
|
+
}
|
|
7959
|
+
|
|
7960
|
+
.tooltip-header {
|
|
7961
|
+
padding-bottom: 6px;
|
|
7962
|
+
margin-bottom: 5px;
|
|
7963
|
+
line-height: 1.1;
|
|
7964
|
+
text-align: center;
|
|
7965
|
+
}
|
|
7966
|
+
}
|
|
7967
|
+
}
|
|
7968
|
+
}
|
|
7969
|
+
|
|
7970
|
+
.igz-highcharts-wrapper {
|
|
7971
|
+
height: 40px;
|
|
7972
|
+
position: relative;
|
|
7973
|
+
width: 100%;
|
|
7974
|
+
}
|
|
7975
|
+
}
|
|
7976
|
+
|
|
7977
|
+
.igz-slider-input-block {
|
|
7978
|
+
.igz-slider-input-block-color-set();
|
|
7979
|
+
|
|
7980
|
+
position: relative;
|
|
7981
|
+
|
|
7982
|
+
.igz-slider-input-title {
|
|
7983
|
+
float: left;
|
|
7984
|
+
display: table;
|
|
7985
|
+
min-height: 30px;
|
|
7986
|
+
line-height: 1;
|
|
7987
|
+
color: @slider-input-title-color;
|
|
7988
|
+
font-size: 14px;
|
|
7989
|
+
font-weight: 400;
|
|
7990
|
+
text-align: left;
|
|
7991
|
+
cursor: default;
|
|
7992
|
+
|
|
7993
|
+
.igz-slider-input-title-text {
|
|
7994
|
+
display: table-cell;
|
|
7995
|
+
vertical-align: middle;
|
|
7996
|
+
}
|
|
7997
|
+
}
|
|
7998
|
+
|
|
7999
|
+
// Custom styles for third-party library slider
|
|
8000
|
+
.igz-slider-input-rz-slider {
|
|
8001
|
+
float: left;
|
|
8002
|
+
min-height: 16px;
|
|
8003
|
+
line-height: 16px;
|
|
8004
|
+
|
|
8005
|
+
.rzslider {
|
|
8006
|
+
margin: 0;
|
|
8007
|
+
height: 8px;
|
|
8008
|
+
|
|
8009
|
+
.rz-bar-wrapper {
|
|
8010
|
+
height: auto;
|
|
8011
|
+
margin: 0;
|
|
8012
|
+
padding: 0;
|
|
8013
|
+
|
|
8014
|
+
.rz-bar {
|
|
8015
|
+
background-color: @rz-bar-bg-color;
|
|
8016
|
+
height: 3px;
|
|
8017
|
+
}
|
|
8018
|
+
}
|
|
8019
|
+
|
|
8020
|
+
.rz-bubble {
|
|
8021
|
+
display: none;
|
|
8022
|
+
}
|
|
8023
|
+
|
|
8024
|
+
.rz-pointer {
|
|
8025
|
+
height: 14px;
|
|
8026
|
+
width: 14px;
|
|
8027
|
+
top: -6px;
|
|
8028
|
+
box-shadow: @rz-pointer-box-shadow;
|
|
8029
|
+
outline: 0;
|
|
8030
|
+
|
|
8031
|
+
&:after {
|
|
8032
|
+
display: none;
|
|
8033
|
+
}
|
|
8034
|
+
}
|
|
8035
|
+
|
|
8036
|
+
&:not([disabled]) {
|
|
8037
|
+
.rz-bar.rz-selection {
|
|
8038
|
+
background-color: @rz-selection-bg-color;
|
|
8039
|
+
}
|
|
8040
|
+
|
|
8041
|
+
.rz-pointer {
|
|
8042
|
+
background-color: @rz-pointer-bg-color;
|
|
8043
|
+
}
|
|
8044
|
+
}
|
|
8045
|
+
}
|
|
8046
|
+
}
|
|
8047
|
+
|
|
8048
|
+
// Current value
|
|
8049
|
+
.igz-slider-input-current-value {
|
|
8050
|
+
float: left;
|
|
8051
|
+
min-height: 30px;
|
|
8052
|
+
line-height: 30px;
|
|
8053
|
+
|
|
8054
|
+
&.with-measure-units {
|
|
8055
|
+
width: 18%;
|
|
8056
|
+
padding-right: 0;
|
|
8057
|
+
|
|
8058
|
+
.igz-slider-input-current-value-text {
|
|
8059
|
+
margin-right: 4px;
|
|
8060
|
+
}
|
|
8061
|
+
}
|
|
8062
|
+
|
|
8063
|
+
&.with-value-unit {
|
|
8064
|
+
padding-right: 21px;
|
|
8065
|
+
}
|
|
8066
|
+
|
|
8067
|
+
.igz-slider-input-current-value-text {
|
|
8068
|
+
color: @slider-input-current-value-text-color;
|
|
8069
|
+
font-size: 13px;
|
|
8070
|
+
font-weight: 400;
|
|
8071
|
+
background-color: @slider-input-current-value-text-bg-color;
|
|
8072
|
+
text-align: right;
|
|
8073
|
+
}
|
|
8074
|
+
}
|
|
8075
|
+
|
|
8076
|
+
.igz-slider-input-unit-label {
|
|
8077
|
+
position: absolute;
|
|
8078
|
+
right: 0;
|
|
8079
|
+
min-height: 30px;
|
|
8080
|
+
line-height: 30px;
|
|
8081
|
+
}
|
|
8082
|
+
|
|
8083
|
+
// Units dropdown
|
|
8084
|
+
.igz-slider-input-units-dropdown {
|
|
8085
|
+
float: left;
|
|
8086
|
+
|
|
8087
|
+
.default-dropdown {
|
|
8088
|
+
height: 30px;
|
|
8089
|
+
|
|
8090
|
+
.default-dropdown-field {
|
|
8091
|
+
border: none;
|
|
8092
|
+
background-color: @default-dropdown-field-bg-color;
|
|
8093
|
+
|
|
8094
|
+
.dropdown-selected-item {
|
|
8095
|
+
padding-left: 0;
|
|
8096
|
+
}
|
|
8097
|
+
|
|
8098
|
+
.dropdown-arrow {
|
|
8099
|
+
margin-right: 0;
|
|
8100
|
+
}
|
|
8101
|
+
}
|
|
8102
|
+
}
|
|
8103
|
+
}
|
|
8104
|
+
}
|
|
8105
|
+
|
|
8106
|
+
.splash-screen {
|
|
8107
|
+
.splash-screen-color-set();
|
|
8108
8108
|
|
|
8109
8109
|
position: absolute;
|
|
8110
8110
|
z-index: 996;
|
|
@@ -9816,36 +9816,158 @@ body {
|
|
|
9816
9816
|
}
|
|
9817
9817
|
}
|
|
9818
9818
|
|
|
9819
|
-
.info-page-
|
|
9820
|
-
.info-page-
|
|
9819
|
+
.igz-info-page-content-wrapper {
|
|
9820
|
+
.info-page-content-color-set();
|
|
9821
9821
|
|
|
9822
|
-
background-color: @filters-bookmark-bg-color;
|
|
9823
|
-
border-bottom-right-radius: 4px;
|
|
9824
|
-
border-top-right-radius: 4px;
|
|
9825
|
-
box-shadow: @filters-bookmark-box-shadow;
|
|
9826
|
-
color: @filters-bookmark-color;
|
|
9827
|
-
cursor: pointer;
|
|
9828
|
-
font-size: 10px;
|
|
9829
|
-
height: 22px;
|
|
9830
|
-
right: 0;
|
|
9831
|
-
line-height: 22px;
|
|
9832
9822
|
position: absolute;
|
|
9833
|
-
|
|
9834
|
-
|
|
9823
|
+
top: 56px;
|
|
9824
|
+
right: 0;
|
|
9825
|
+
bottom: 0;
|
|
9826
|
+
left: 0;
|
|
9827
|
+
padding-top: 0;
|
|
9835
9828
|
transition: @igz-basic-transition;
|
|
9836
|
-
|
|
9837
|
-
z-index: 998;
|
|
9829
|
+
background-color: @page-content-bg-color;
|
|
9838
9830
|
|
|
9839
|
-
|
|
9840
|
-
|
|
9841
|
-
position: absolute;
|
|
9842
|
-
top: 6px;
|
|
9831
|
+
&.upper-pane-opened {
|
|
9832
|
+
top: 216px;
|
|
9843
9833
|
}
|
|
9844
9834
|
|
|
9845
|
-
|
|
9846
|
-
|
|
9847
|
-
|
|
9848
|
-
|
|
9835
|
+
&.filters-opened {
|
|
9836
|
+
right: 377px;
|
|
9837
|
+
}
|
|
9838
|
+
|
|
9839
|
+
&.info-pane-opened {
|
|
9840
|
+
right: 379px;
|
|
9841
|
+
}
|
|
9842
|
+
|
|
9843
|
+
.igz-info-page-content {
|
|
9844
|
+
min-width: 946px;
|
|
9845
|
+
max-width: 100%;
|
|
9846
|
+
padding: 40px 25px;
|
|
9847
|
+
}
|
|
9848
|
+
}
|
|
9849
|
+
|
|
9850
|
+
igz-info-page-actions-bar {
|
|
9851
|
+
.igz-info-page-actions-bar .actions-content-block {
|
|
9852
|
+
margin-left: 14px;
|
|
9853
|
+
}
|
|
9854
|
+
}
|
|
9855
|
+
|
|
9856
|
+
igz-info-page-content {
|
|
9857
|
+
.info-page-content-color-set();
|
|
9858
|
+
|
|
9859
|
+
.container-data-access-policy-table, .data-lifecycle-table {
|
|
9860
|
+
&.common-table {
|
|
9861
|
+
.common-table-header {
|
|
9862
|
+
position: relative;
|
|
9863
|
+
height: 49px;
|
|
9864
|
+
line-height: 48px;
|
|
9865
|
+
|
|
9866
|
+
.common-table-cell {
|
|
9867
|
+
margin-top: -1px;
|
|
9868
|
+
height: 49px;
|
|
9869
|
+
|
|
9870
|
+
&.selected {
|
|
9871
|
+
background-color: @common-table-cell-selected-bg-color;
|
|
9872
|
+
border: @common-table-cell-selected-border;
|
|
9873
|
+
}
|
|
9874
|
+
|
|
9875
|
+
&:last-child {
|
|
9876
|
+
margin-right: 0;
|
|
9877
|
+
}
|
|
9878
|
+
|
|
9879
|
+
&.actions-menu {
|
|
9880
|
+
width: 0;
|
|
9881
|
+
}
|
|
9882
|
+
|
|
9883
|
+
&.check-all-rows {
|
|
9884
|
+
padding-left: 30px;
|
|
9885
|
+
|
|
9886
|
+
.action-checkbox-all {
|
|
9887
|
+
padding-top: 2px;
|
|
9888
|
+
}
|
|
9889
|
+
}
|
|
9890
|
+
}
|
|
9891
|
+
|
|
9892
|
+
.common-table-cells-container {
|
|
9893
|
+
margin-right: 45px;
|
|
9894
|
+
|
|
9895
|
+
.common-table-cell {
|
|
9896
|
+
height: 49px;
|
|
9897
|
+
padding: 0 15px;
|
|
9898
|
+
border-right: @common-table-cell-border-right;
|
|
9899
|
+
|
|
9900
|
+
&:first-child {
|
|
9901
|
+
padding-left: 7px;
|
|
9902
|
+
}
|
|
9903
|
+
}
|
|
9904
|
+
}
|
|
9905
|
+
}
|
|
9906
|
+
|
|
9907
|
+
.common-table-body {
|
|
9908
|
+
margin-top: 7px;
|
|
9909
|
+
|
|
9910
|
+
.common-table-cell {
|
|
9911
|
+
&.actions-menu {
|
|
9912
|
+
width: 45px;
|
|
9913
|
+
}
|
|
9914
|
+
}
|
|
9915
|
+
}
|
|
9916
|
+
|
|
9917
|
+
.data-access-policy-layers, .data-lifecycle-layers {
|
|
9918
|
+
&:last-child {
|
|
9919
|
+
margin-bottom: 20px;
|
|
9920
|
+
}
|
|
9921
|
+
}
|
|
9922
|
+
}
|
|
9923
|
+
|
|
9924
|
+
.sortable-empty {
|
|
9925
|
+
background-color: @sortable-empty-bg-color;
|
|
9926
|
+
color: @sortable-empty-color;
|
|
9927
|
+
font-size: 14px;
|
|
9928
|
+
font-weight: 400;
|
|
9929
|
+
font-family: 'Open Sans', sans-serif;
|
|
9930
|
+
border-bottom: @sortable-empty-border;
|
|
9931
|
+
border-left: @sortable-empty-border;
|
|
9932
|
+
border-right: @sortable-empty-border;
|
|
9933
|
+
padding-left: 70px;
|
|
9934
|
+
height: 40px;
|
|
9935
|
+
line-height: 38px;
|
|
9936
|
+
}
|
|
9937
|
+
}
|
|
9938
|
+
}
|
|
9939
|
+
|
|
9940
|
+
|
|
9941
|
+
.info-page-filters-bookmark {
|
|
9942
|
+
.info-page-filters-color-set();
|
|
9943
|
+
|
|
9944
|
+
background-color: @filters-bookmark-bg-color;
|
|
9945
|
+
border-bottom-right-radius: 4px;
|
|
9946
|
+
border-top-right-radius: 4px;
|
|
9947
|
+
box-shadow: @filters-bookmark-box-shadow;
|
|
9948
|
+
color: @filters-bookmark-color;
|
|
9949
|
+
cursor: pointer;
|
|
9950
|
+
font-size: 10px;
|
|
9951
|
+
height: 22px;
|
|
9952
|
+
right: 0;
|
|
9953
|
+
line-height: 22px;
|
|
9954
|
+
position: absolute;
|
|
9955
|
+
text-align: center;
|
|
9956
|
+
top: 22px;
|
|
9957
|
+
transition: @igz-basic-transition;
|
|
9958
|
+
width: 18px;
|
|
9959
|
+
z-index: 998;
|
|
9960
|
+
|
|
9961
|
+
&:before {
|
|
9962
|
+
right: 3px;
|
|
9963
|
+
position: absolute;
|
|
9964
|
+
top: 6px;
|
|
9965
|
+
}
|
|
9966
|
+
|
|
9967
|
+
&:after {
|
|
9968
|
+
background-color: @filters-bookmark-after-bg-color;
|
|
9969
|
+
content: "";
|
|
9970
|
+
height: 100%;
|
|
9849
9971
|
right: -6px;
|
|
9850
9972
|
position: absolute;
|
|
9851
9973
|
top: 0;
|
|
@@ -10156,204 +10278,82 @@ body {
|
|
|
10156
10278
|
}
|
|
10157
10279
|
}
|
|
10158
10280
|
|
|
10159
|
-
|
|
10160
|
-
.
|
|
10161
|
-
|
|
10162
|
-
|
|
10163
|
-
|
|
10164
|
-
|
|
10165
|
-
|
|
10166
|
-
left: 0;
|
|
10167
|
-
padding-top: 0;
|
|
10168
|
-
transition: @igz-basic-transition;
|
|
10169
|
-
background-color: @page-content-bg-color;
|
|
10170
|
-
|
|
10171
|
-
&.upper-pane-opened {
|
|
10172
|
-
top: 216px;
|
|
10173
|
-
}
|
|
10281
|
+
ncl-breadcrumbs {
|
|
10282
|
+
.main-header-title {
|
|
10283
|
+
&:not(.disable-behavior) {
|
|
10284
|
+
&:hover .main-header-title-text {
|
|
10285
|
+
color: @dark-sky-blue;
|
|
10286
|
+
}
|
|
10287
|
+
}
|
|
10174
10288
|
|
|
10175
|
-
|
|
10176
|
-
|
|
10289
|
+
&.disable-behavior {
|
|
10290
|
+
color: @dusk-three;
|
|
10291
|
+
}
|
|
10177
10292
|
}
|
|
10178
10293
|
|
|
10179
|
-
|
|
10180
|
-
|
|
10294
|
+
.igz-icon-right {
|
|
10295
|
+
font-size: 11px;
|
|
10296
|
+
font-weight: 100;
|
|
10297
|
+
margin: 0 14px;
|
|
10181
10298
|
}
|
|
10182
10299
|
|
|
10183
|
-
.
|
|
10184
|
-
|
|
10185
|
-
max-width: 100%;
|
|
10186
|
-
padding: 40px 25px;
|
|
10300
|
+
.ncl-header-subtitle {
|
|
10301
|
+
color: @greyish-purple;
|
|
10187
10302
|
}
|
|
10188
|
-
}
|
|
10189
10303
|
|
|
10190
|
-
|
|
10191
|
-
|
|
10192
|
-
|
|
10304
|
+
.ncl-bold-subtitle {
|
|
10305
|
+
color: @dusk-three;
|
|
10306
|
+
font-weight: bold;
|
|
10193
10307
|
}
|
|
10194
10308
|
}
|
|
10195
10309
|
|
|
10196
|
-
|
|
10197
|
-
|
|
10310
|
+
.ncl-collapsing-row {
|
|
10311
|
+
margin-bottom: 9px;
|
|
10198
10312
|
|
|
10199
|
-
.
|
|
10200
|
-
|
|
10201
|
-
|
|
10202
|
-
|
|
10203
|
-
height: 49px;
|
|
10204
|
-
line-height: 48px;
|
|
10313
|
+
.title-block.common-table-row {
|
|
10314
|
+
border: 1px solid @pale-grey;
|
|
10315
|
+
box-shadow: none;
|
|
10316
|
+
min-height: 49px;
|
|
10205
10317
|
|
|
10206
|
-
|
|
10207
|
-
|
|
10208
|
-
height: 49px;
|
|
10318
|
+
&.collapsed {
|
|
10319
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
|
|
10209
10320
|
|
|
10210
|
-
|
|
10211
|
-
|
|
10212
|
-
|
|
10213
|
-
|
|
10321
|
+
&:hover {
|
|
10322
|
+
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
|
|
10323
|
+
}
|
|
10324
|
+
}
|
|
10214
10325
|
|
|
10215
|
-
|
|
10216
|
-
|
|
10217
|
-
|
|
10326
|
+
&:hover {
|
|
10327
|
+
.common-table-cells-container {
|
|
10328
|
+
background-color: @white;
|
|
10329
|
+
}
|
|
10218
10330
|
|
|
10219
|
-
|
|
10220
|
-
|
|
10221
|
-
|
|
10331
|
+
.actions-menu {
|
|
10332
|
+
visibility: visible;
|
|
10333
|
+
background-color: @white;
|
|
10334
|
+
}
|
|
10222
10335
|
|
|
10223
|
-
|
|
10224
|
-
|
|
10336
|
+
.single-action {
|
|
10337
|
+
visibility: visible;
|
|
10338
|
+
}
|
|
10339
|
+
}
|
|
10340
|
+
}
|
|
10225
10341
|
|
|
10226
|
-
|
|
10227
|
-
|
|
10228
|
-
|
|
10229
|
-
|
|
10230
|
-
|
|
10342
|
+
.row-collapse {
|
|
10343
|
+
width: 40px;
|
|
10344
|
+
flex: none;
|
|
10345
|
+
justify-content: center;
|
|
10346
|
+
align-items: flex-start;
|
|
10347
|
+
line-height: 51px;
|
|
10231
10348
|
|
|
10232
|
-
|
|
10233
|
-
|
|
10349
|
+
.collapse-icon {
|
|
10350
|
+
background-color: transparent;
|
|
10351
|
+
position: absolute;
|
|
10234
10352
|
|
|
10235
|
-
|
|
10236
|
-
|
|
10237
|
-
|
|
10238
|
-
|
|
10239
|
-
|
|
10240
|
-
&:first-child {
|
|
10241
|
-
padding-left: 7px;
|
|
10242
|
-
}
|
|
10243
|
-
}
|
|
10244
|
-
}
|
|
10245
|
-
}
|
|
10246
|
-
|
|
10247
|
-
.common-table-body {
|
|
10248
|
-
margin-top: 7px;
|
|
10249
|
-
|
|
10250
|
-
.common-table-cell {
|
|
10251
|
-
&.actions-menu {
|
|
10252
|
-
width: 45px;
|
|
10253
|
-
}
|
|
10254
|
-
}
|
|
10255
|
-
}
|
|
10256
|
-
|
|
10257
|
-
.data-access-policy-layers, .data-lifecycle-layers {
|
|
10258
|
-
&:last-child {
|
|
10259
|
-
margin-bottom: 20px;
|
|
10260
|
-
}
|
|
10261
|
-
}
|
|
10262
|
-
}
|
|
10263
|
-
|
|
10264
|
-
.sortable-empty {
|
|
10265
|
-
background-color: @sortable-empty-bg-color;
|
|
10266
|
-
color: @sortable-empty-color;
|
|
10267
|
-
font-size: 14px;
|
|
10268
|
-
font-weight: 400;
|
|
10269
|
-
font-family: 'Open Sans', sans-serif;
|
|
10270
|
-
border-bottom: @sortable-empty-border;
|
|
10271
|
-
border-left: @sortable-empty-border;
|
|
10272
|
-
border-right: @sortable-empty-border;
|
|
10273
|
-
padding-left: 70px;
|
|
10274
|
-
height: 40px;
|
|
10275
|
-
line-height: 38px;
|
|
10276
|
-
}
|
|
10277
|
-
}
|
|
10278
|
-
}
|
|
10279
|
-
|
|
10280
|
-
|
|
10281
|
-
ncl-breadcrumbs {
|
|
10282
|
-
.main-header-title {
|
|
10283
|
-
&:not(.disable-behavior) {
|
|
10284
|
-
&:hover .main-header-title-text {
|
|
10285
|
-
color: @dark-sky-blue;
|
|
10286
|
-
}
|
|
10287
|
-
}
|
|
10288
|
-
|
|
10289
|
-
&.disable-behavior {
|
|
10290
|
-
color: @dusk-three;
|
|
10291
|
-
}
|
|
10292
|
-
}
|
|
10293
|
-
|
|
10294
|
-
.igz-icon-right {
|
|
10295
|
-
font-size: 11px;
|
|
10296
|
-
font-weight: 100;
|
|
10297
|
-
margin: 0 14px;
|
|
10298
|
-
}
|
|
10299
|
-
|
|
10300
|
-
.ncl-header-subtitle {
|
|
10301
|
-
color: @greyish-purple;
|
|
10302
|
-
}
|
|
10303
|
-
|
|
10304
|
-
.ncl-bold-subtitle {
|
|
10305
|
-
color: @dusk-three;
|
|
10306
|
-
font-weight: bold;
|
|
10307
|
-
}
|
|
10308
|
-
}
|
|
10309
|
-
|
|
10310
|
-
.ncl-collapsing-row {
|
|
10311
|
-
margin-bottom: 9px;
|
|
10312
|
-
|
|
10313
|
-
.title-block.common-table-row {
|
|
10314
|
-
border: 1px solid @pale-grey;
|
|
10315
|
-
box-shadow: none;
|
|
10316
|
-
min-height: 49px;
|
|
10317
|
-
|
|
10318
|
-
&.collapsed {
|
|
10319
|
-
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
|
|
10320
|
-
|
|
10321
|
-
&:hover {
|
|
10322
|
-
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
|
|
10323
|
-
}
|
|
10324
|
-
}
|
|
10325
|
-
|
|
10326
|
-
&:hover {
|
|
10327
|
-
.common-table-cells-container {
|
|
10328
|
-
background-color: @white;
|
|
10329
|
-
}
|
|
10330
|
-
|
|
10331
|
-
.actions-menu {
|
|
10332
|
-
visibility: visible;
|
|
10333
|
-
background-color: @white;
|
|
10334
|
-
}
|
|
10335
|
-
|
|
10336
|
-
.single-action {
|
|
10337
|
-
visibility: visible;
|
|
10338
|
-
}
|
|
10339
|
-
}
|
|
10340
|
-
}
|
|
10341
|
-
|
|
10342
|
-
.row-collapse {
|
|
10343
|
-
width: 40px;
|
|
10344
|
-
flex: none;
|
|
10345
|
-
justify-content: center;
|
|
10346
|
-
align-items: flex-start;
|
|
10347
|
-
line-height: 51px;
|
|
10348
|
-
|
|
10349
|
-
.collapse-icon {
|
|
10350
|
-
background-color: transparent;
|
|
10351
|
-
position: absolute;
|
|
10352
|
-
|
|
10353
|
-
&.igz-icon-right, &.igz-icon-down {
|
|
10354
|
-
font-size: 12px;
|
|
10355
|
-
.duskThree(0.64);
|
|
10356
|
-
color: @color;
|
|
10353
|
+
&.igz-icon-right, &.igz-icon-down {
|
|
10354
|
+
font-size: 12px;
|
|
10355
|
+
.duskThree(0.64);
|
|
10356
|
+
color: @color;
|
|
10357
10357
|
|
|
10358
10358
|
&:hover {
|
|
10359
10359
|
color: @dusk-three;
|
|
@@ -11420,63 +11420,88 @@ ncl-navigation-tabs {
|
|
|
11420
11420
|
}
|
|
11421
11421
|
}
|
|
11422
11422
|
|
|
11423
|
-
.
|
|
11424
|
-
|
|
11425
|
-
|
|
11423
|
+
.function-event-wrapper {
|
|
11424
|
+
width: 600px;
|
|
11425
|
+
margin-bottom: -23px;
|
|
11426
|
+
|
|
11427
|
+
.header {
|
|
11428
|
+
display: flex;
|
|
11429
|
+
justify-content: space-between;
|
|
11430
|
+
border-bottom: 1px solid @pale-grey;
|
|
11431
|
+
|
|
11432
|
+
.title {
|
|
11433
|
+
font-size: 18px;
|
|
11434
|
+
}
|
|
11426
11435
|
}
|
|
11427
11436
|
|
|
11428
|
-
.
|
|
11429
|
-
|
|
11430
|
-
|
|
11431
|
-
justify-content: space-between;
|
|
11432
|
-
flex-wrap: wrap;
|
|
11437
|
+
.content {
|
|
11438
|
+
border-bottom: 1px solid @pale-grey;
|
|
11439
|
+
padding: 16px 0 16px 16px;
|
|
11433
11440
|
|
|
11434
|
-
|
|
11435
|
-
|
|
11436
|
-
background-color: @white;
|
|
11437
|
-
border: solid 1px @pale-grey;
|
|
11438
|
-
flex-grow: 1;
|
|
11439
|
-
flex-basis: 500px;
|
|
11440
|
-
margin-right: 16px;
|
|
11441
|
-
margin-bottom: 16px;
|
|
11441
|
+
.event-form {
|
|
11442
|
+
width: 88%;
|
|
11442
11443
|
|
|
11443
|
-
|
|
11444
|
-
|
|
11445
|
-
|
|
11444
|
+
.field-wrapper {
|
|
11445
|
+
display: flex;
|
|
11446
|
+
align-items: center;
|
|
11447
|
+
margin: 15px 0 0 0;
|
|
11446
11448
|
|
|
11447
|
-
.
|
|
11449
|
+
.field-label {
|
|
11448
11450
|
font-size: 16px;
|
|
11449
|
-
|
|
11450
|
-
|
|
11451
|
-
font-stretch: normal;
|
|
11452
|
-
letter-spacing: normal;
|
|
11453
|
-
text-align: left;
|
|
11454
|
-
color: @dusk-three;
|
|
11455
|
-
margin-bottom: 12px;
|
|
11451
|
+
margin-right: 10px;
|
|
11452
|
+
width: 195px;
|
|
11456
11453
|
}
|
|
11457
11454
|
|
|
11458
|
-
.
|
|
11459
|
-
|
|
11460
|
-
|
|
11461
|
-
|
|
11462
|
-
|
|
11463
|
-
font-weight: 500;
|
|
11464
|
-
font-style: normal;
|
|
11465
|
-
font-stretch: normal;
|
|
11466
|
-
letter-spacing: normal;
|
|
11467
|
-
text-align: left;
|
|
11468
|
-
color: @dusk-three;
|
|
11469
|
-
padding: 0;
|
|
11455
|
+
.field-content {
|
|
11456
|
+
width: 100%;
|
|
11457
|
+
|
|
11458
|
+
.ncl-monaco {
|
|
11459
|
+
height: 200px;
|
|
11470
11460
|
}
|
|
11471
|
-
}
|
|
11472
11461
|
|
|
11473
|
-
|
|
11474
|
-
|
|
11475
|
-
|
|
11462
|
+
.event-body {
|
|
11463
|
+
font-size: 13px;
|
|
11464
|
+
outline: none;
|
|
11465
|
+
border: 1px solid @pale-grey;
|
|
11466
|
+
resize: none;
|
|
11467
|
+
width: 100%;
|
|
11468
|
+
height: 100px;
|
|
11469
|
+
padding: 5px 5px 5px 16px;
|
|
11476
11470
|
}
|
|
11477
11471
|
}
|
|
11478
11472
|
}
|
|
11479
11473
|
}
|
|
11474
|
+
|
|
11475
|
+
.event-error {
|
|
11476
|
+
display: flex;
|
|
11477
|
+
font-size: 13px;
|
|
11478
|
+
align-items: center;
|
|
11479
|
+
justify-content: center;
|
|
11480
|
+
color: @darkish-pink;
|
|
11481
|
+
}
|
|
11482
|
+
}
|
|
11483
|
+
|
|
11484
|
+
.bottom-bar {
|
|
11485
|
+
height: 64px;
|
|
11486
|
+
display: flex;
|
|
11487
|
+
align-items: center;
|
|
11488
|
+
justify-content: flex-end;
|
|
11489
|
+
|
|
11490
|
+
.igz-button-primary {
|
|
11491
|
+
&.disabled {
|
|
11492
|
+
color: rgba(71, 64, 86, 0.24);
|
|
11493
|
+
border-radius: 2px;
|
|
11494
|
+
border: solid 1px #f3f3f6;
|
|
11495
|
+
background-color: #f3f3f6;
|
|
11496
|
+
cursor: default;
|
|
11497
|
+
display: inline-block;
|
|
11498
|
+
|
|
11499
|
+
&:hover {
|
|
11500
|
+
box-shadow: none;
|
|
11501
|
+
border: none;
|
|
11502
|
+
}
|
|
11503
|
+
}
|
|
11504
|
+
}
|
|
11480
11505
|
}
|
|
11481
11506
|
}
|
|
11482
11507
|
|
|
@@ -11692,85 +11717,60 @@ ncl-navigation-tabs {
|
|
|
11692
11717
|
}
|
|
11693
11718
|
}
|
|
11694
11719
|
|
|
11695
|
-
.
|
|
11696
|
-
|
|
11697
|
-
|
|
11698
|
-
|
|
11699
|
-
.header {
|
|
11700
|
-
display: flex;
|
|
11701
|
-
justify-content: space-between;
|
|
11702
|
-
border-bottom: 1px solid @pale-grey;
|
|
11703
|
-
|
|
11704
|
-
.title {
|
|
11705
|
-
font-size: 18px;
|
|
11706
|
-
}
|
|
11720
|
+
.ncl-version-configuration {
|
|
11721
|
+
> .igz-scrollable-container {
|
|
11722
|
+
padding: 24px 25px 22px 41px;
|
|
11707
11723
|
}
|
|
11708
11724
|
|
|
11709
|
-
.
|
|
11710
|
-
|
|
11711
|
-
|
|
11712
|
-
|
|
11713
|
-
|
|
11714
|
-
width: 88%;
|
|
11725
|
+
.ncl-version-configuration-wrapper {
|
|
11726
|
+
> .row {
|
|
11727
|
+
display: flex;
|
|
11728
|
+
justify-content: space-between;
|
|
11729
|
+
flex-wrap: wrap;
|
|
11715
11730
|
|
|
11716
|
-
.
|
|
11717
|
-
|
|
11718
|
-
|
|
11719
|
-
|
|
11731
|
+
.configuration-block {
|
|
11732
|
+
padding: 16px 23px 16px;
|
|
11733
|
+
background-color: @white;
|
|
11734
|
+
border: solid 1px @pale-grey;
|
|
11735
|
+
flex-grow: 1;
|
|
11736
|
+
flex-basis: 500px;
|
|
11737
|
+
margin-right: 16px;
|
|
11738
|
+
margin-bottom: 16px;
|
|
11720
11739
|
|
|
11721
|
-
|
|
11722
|
-
|
|
11723
|
-
margin-right: 10px;
|
|
11724
|
-
width: 195px;
|
|
11740
|
+
&.invisible {
|
|
11741
|
+
visibility: hidden;
|
|
11725
11742
|
}
|
|
11726
11743
|
|
|
11727
|
-
.
|
|
11728
|
-
|
|
11729
|
-
|
|
11730
|
-
|
|
11731
|
-
|
|
11732
|
-
|
|
11744
|
+
.title {
|
|
11745
|
+
font-size: 16px;
|
|
11746
|
+
font-weight: bold;
|
|
11747
|
+
font-style: normal;
|
|
11748
|
+
font-stretch: normal;
|
|
11749
|
+
letter-spacing: normal;
|
|
11750
|
+
text-align: left;
|
|
11751
|
+
color: @dusk-three;
|
|
11752
|
+
margin-bottom: 12px;
|
|
11753
|
+
}
|
|
11733
11754
|
|
|
11734
|
-
|
|
11735
|
-
|
|
11736
|
-
|
|
11737
|
-
|
|
11738
|
-
|
|
11739
|
-
|
|
11740
|
-
|
|
11741
|
-
|
|
11755
|
+
.row {
|
|
11756
|
+
.label {
|
|
11757
|
+
display: block;
|
|
11758
|
+
font-family: Roboto, sans-serif;
|
|
11759
|
+
font-size: 14px;
|
|
11760
|
+
font-weight: 500;
|
|
11761
|
+
font-style: normal;
|
|
11762
|
+
font-stretch: normal;
|
|
11763
|
+
letter-spacing: normal;
|
|
11764
|
+
text-align: left;
|
|
11765
|
+
color: @dusk-three;
|
|
11766
|
+
padding: 0;
|
|
11742
11767
|
}
|
|
11743
11768
|
}
|
|
11744
|
-
}
|
|
11745
|
-
}
|
|
11746
|
-
|
|
11747
|
-
.event-error {
|
|
11748
|
-
display: flex;
|
|
11749
|
-
font-size: 13px;
|
|
11750
|
-
align-items: center;
|
|
11751
|
-
justify-content: center;
|
|
11752
|
-
color: @darkish-pink;
|
|
11753
|
-
}
|
|
11754
|
-
}
|
|
11755
|
-
|
|
11756
|
-
.bottom-bar {
|
|
11757
|
-
height: 64px;
|
|
11758
|
-
display: flex;
|
|
11759
|
-
align-items: center;
|
|
11760
|
-
justify-content: flex-end;
|
|
11761
|
-
|
|
11762
|
-
.igz-button-primary {
|
|
11763
|
-
&.disabled {
|
|
11764
|
-
color: rgba(71, 64, 86, 0.24);
|
|
11765
|
-
border-radius: 2px;
|
|
11766
|
-
border: solid 1px #f3f3f6;
|
|
11767
|
-
background-color: #f3f3f6;
|
|
11768
|
-
cursor: default;
|
|
11769
|
-
display: inline-block;
|
|
11770
11769
|
|
|
11771
|
-
|
|
11772
|
-
|
|
11773
|
-
|
|
11770
|
+
.ncl-version-configuration-labels, .ncl-version-configuration-annotations {
|
|
11771
|
+
.more-info-wrapper {
|
|
11772
|
+
height: 20px;
|
|
11773
|
+
}
|
|
11774
11774
|
}
|
|
11775
11775
|
}
|
|
11776
11776
|
}
|
|
@@ -11893,59 +11893,6 @@ ncl-navigation-tabs {
|
|
|
11893
11893
|
}
|
|
11894
11894
|
}
|
|
11895
11895
|
|
|
11896
|
-
.ncl-version-trigger {
|
|
11897
|
-
padding: 11px 24px;
|
|
11898
|
-
|
|
11899
|
-
.common-table-header {
|
|
11900
|
-
border: none;
|
|
11901
|
-
padding-left: 24px;
|
|
11902
|
-
|
|
11903
|
-
.common-table-cell {
|
|
11904
|
-
font-size: 14px;
|
|
11905
|
-
font-weight: bold;
|
|
11906
|
-
letter-spacing: normal;
|
|
11907
|
-
color: @dusk-three;
|
|
11908
|
-
height: 46px;
|
|
11909
|
-
}
|
|
11910
|
-
}
|
|
11911
|
-
|
|
11912
|
-
.common-table-body {
|
|
11913
|
-
.common-table-row {
|
|
11914
|
-
&:not(.read-only):hover {
|
|
11915
|
-
.common-table-cells-container {
|
|
11916
|
-
background-color: @white;
|
|
11917
|
-
}
|
|
11918
|
-
|
|
11919
|
-
.actions-menu {
|
|
11920
|
-
background-color: @white;
|
|
11921
|
-
}
|
|
11922
|
-
}
|
|
11923
|
-
}
|
|
11924
|
-
}
|
|
11925
|
-
|
|
11926
|
-
.http-trigger-checkbox {
|
|
11927
|
-
display: flex;
|
|
11928
|
-
}
|
|
11929
|
-
|
|
11930
|
-
.item-row .item-name, .item-row .item-class, .item-row .item-info {
|
|
11931
|
-
padding-left: 0;
|
|
11932
|
-
}
|
|
11933
|
-
|
|
11934
|
-
.title-field-row .name-field, .item-row .item-name, .header-name {
|
|
11935
|
-
margin-right: 16px;
|
|
11936
|
-
width: 15%;
|
|
11937
|
-
}
|
|
11938
|
-
|
|
11939
|
-
.title-field-row .class-field, .item-row .item-class, .header-class {
|
|
11940
|
-
margin-right: 16px;
|
|
11941
|
-
width: 10%;
|
|
11942
|
-
}
|
|
11943
|
-
|
|
11944
|
-
.title-field-row .class-field {
|
|
11945
|
-
width: auto;
|
|
11946
|
-
}
|
|
11947
|
-
}
|
|
11948
|
-
|
|
11949
11896
|
.ncl-version-monitoring {
|
|
11950
11897
|
> .igz-scrollable-container {
|
|
11951
11898
|
padding: 24px 25px 22px 41px;
|
|
@@ -12079,6 +12026,59 @@ ncl-navigation-tabs {
|
|
|
12079
12026
|
}
|
|
12080
12027
|
}
|
|
12081
12028
|
|
|
12029
|
+
.ncl-version-trigger {
|
|
12030
|
+
padding: 11px 24px;
|
|
12031
|
+
|
|
12032
|
+
.common-table-header {
|
|
12033
|
+
border: none;
|
|
12034
|
+
padding-left: 24px;
|
|
12035
|
+
|
|
12036
|
+
.common-table-cell {
|
|
12037
|
+
font-size: 14px;
|
|
12038
|
+
font-weight: bold;
|
|
12039
|
+
letter-spacing: normal;
|
|
12040
|
+
color: @dusk-three;
|
|
12041
|
+
height: 46px;
|
|
12042
|
+
}
|
|
12043
|
+
}
|
|
12044
|
+
|
|
12045
|
+
.common-table-body {
|
|
12046
|
+
.common-table-row {
|
|
12047
|
+
&:not(.read-only):hover {
|
|
12048
|
+
.common-table-cells-container {
|
|
12049
|
+
background-color: @white;
|
|
12050
|
+
}
|
|
12051
|
+
|
|
12052
|
+
.actions-menu {
|
|
12053
|
+
background-color: @white;
|
|
12054
|
+
}
|
|
12055
|
+
}
|
|
12056
|
+
}
|
|
12057
|
+
}
|
|
12058
|
+
|
|
12059
|
+
.http-trigger-checkbox {
|
|
12060
|
+
display: flex;
|
|
12061
|
+
}
|
|
12062
|
+
|
|
12063
|
+
.item-row .item-name, .item-row .item-class, .item-row .item-info {
|
|
12064
|
+
padding-left: 0;
|
|
12065
|
+
}
|
|
12066
|
+
|
|
12067
|
+
.title-field-row .name-field, .item-row .item-name, .header-name {
|
|
12068
|
+
margin-right: 16px;
|
|
12069
|
+
width: 15%;
|
|
12070
|
+
}
|
|
12071
|
+
|
|
12072
|
+
.title-field-row .class-field, .item-row .item-class, .header-class {
|
|
12073
|
+
margin-right: 16px;
|
|
12074
|
+
width: 10%;
|
|
12075
|
+
}
|
|
12076
|
+
|
|
12077
|
+
.title-field-row .class-field {
|
|
12078
|
+
width: auto;
|
|
12079
|
+
}
|
|
12080
|
+
}
|
|
12081
|
+
|
|
12082
12082
|
.ncl-text-size-dropdown {
|
|
12083
12083
|
display: flex;
|
|
12084
12084
|
justify-content: flex-end;
|
|
@@ -12099,144 +12099,45 @@ ncl-navigation-tabs {
|
|
|
12099
12099
|
}
|
|
12100
12100
|
}
|
|
12101
12101
|
|
|
12102
|
-
.function-from-
|
|
12103
|
-
.
|
|
12104
|
-
top: 0;
|
|
12105
|
-
}
|
|
12106
|
-
|
|
12107
|
-
.title-wrapper {
|
|
12108
|
-
margin-left: 50px;
|
|
12102
|
+
.function-from-template-content {
|
|
12103
|
+
.ncl-function-from-template-color-set();
|
|
12109
12104
|
|
|
12110
|
-
|
|
12111
|
-
color: @dusk-three;
|
|
12112
|
-
font-size: 16px;
|
|
12113
|
-
font-weight: bold;
|
|
12114
|
-
}
|
|
12115
|
-
}
|
|
12105
|
+
padding: 0 72px 0 63px;
|
|
12116
12106
|
|
|
12117
|
-
.
|
|
12118
|
-
|
|
12107
|
+
.configuration-form {
|
|
12108
|
+
display: flex;
|
|
12119
12109
|
|
|
12120
|
-
.
|
|
12110
|
+
.function-name-wrapper {
|
|
12111
|
+
width: 50%;
|
|
12121
12112
|
display: flex;
|
|
12113
|
+
justify-content: flex-end;
|
|
12114
|
+
margin-bottom: 2px;
|
|
12122
12115
|
|
|
12123
|
-
.
|
|
12124
|
-
width:
|
|
12125
|
-
|
|
12126
|
-
padding: 0 24px 0 74px;
|
|
12127
|
-
|
|
12128
|
-
.projects-drop-down {
|
|
12129
|
-
width: 40%;
|
|
12130
|
-
margin-right: 48px;
|
|
12116
|
+
.projects-drop-down {
|
|
12117
|
+
width: 40%;
|
|
12118
|
+
margin-right: 48px;
|
|
12131
12119
|
|
|
12132
|
-
|
|
12133
|
-
|
|
12134
|
-
|
|
12135
|
-
|
|
12136
|
-
|
|
12120
|
+
.input-label {
|
|
12121
|
+
font-size: 14px;
|
|
12122
|
+
font-weight: 600;
|
|
12123
|
+
color: @dusk-three;
|
|
12124
|
+
}
|
|
12137
12125
|
|
|
12138
|
-
|
|
12139
|
-
|
|
12140
|
-
|
|
12126
|
+
igz-default-dropdown {
|
|
12127
|
+
.default-dropdown {
|
|
12128
|
+
background-color: @white;
|
|
12141
12129
|
|
|
12142
|
-
|
|
12143
|
-
|
|
12144
|
-
|
|
12145
|
-
}
|
|
12130
|
+
.default-dropdown-field {
|
|
12131
|
+
&:focus {
|
|
12132
|
+
background-color: inherit;
|
|
12146
12133
|
}
|
|
12147
12134
|
}
|
|
12148
12135
|
}
|
|
12149
12136
|
}
|
|
12137
|
+
}
|
|
12150
12138
|
|
|
12151
|
-
|
|
12152
|
-
|
|
12153
|
-
|
|
12154
|
-
.input-label {
|
|
12155
|
-
font-size: 14px;
|
|
12156
|
-
font-weight: 600;
|
|
12157
|
-
color: @dusk-three;
|
|
12158
|
-
}
|
|
12159
|
-
|
|
12160
|
-
igz-validating-input-field {
|
|
12161
|
-
margin-left: 2px;
|
|
12162
|
-
}
|
|
12163
|
-
}
|
|
12164
|
-
}
|
|
12165
|
-
|
|
12166
|
-
.function-runtime-wrapper {
|
|
12167
|
-
width: 50%;
|
|
12168
|
-
padding-left: 24px;
|
|
12169
|
-
padding-right: 10%;
|
|
12170
|
-
|
|
12171
|
-
.function-runtime {
|
|
12172
|
-
.input-label {
|
|
12173
|
-
font-size: 14px;
|
|
12174
|
-
font-weight: 600;
|
|
12175
|
-
color: @dusk-three;
|
|
12176
|
-
}
|
|
12177
|
-
|
|
12178
|
-
igz-default-dropdown {
|
|
12179
|
-
.default-dropdown {
|
|
12180
|
-
background-color: @white;
|
|
12181
|
-
|
|
12182
|
-
.default-dropdown-field {
|
|
12183
|
-
&:focus {
|
|
12184
|
-
background-color: inherit;
|
|
12185
|
-
}
|
|
12186
|
-
}
|
|
12187
|
-
}
|
|
12188
|
-
}
|
|
12189
|
-
|
|
12190
|
-
.bottom-bar {
|
|
12191
|
-
display: flex;
|
|
12192
|
-
justify-content: flex-end;
|
|
12193
|
-
margin-top: 48px;
|
|
12194
|
-
}
|
|
12195
|
-
}
|
|
12196
|
-
}
|
|
12197
|
-
}
|
|
12198
|
-
}
|
|
12199
|
-
}
|
|
12200
|
-
|
|
12201
|
-
.function-from-template-content {
|
|
12202
|
-
.ncl-function-from-template-color-set();
|
|
12203
|
-
|
|
12204
|
-
padding: 0 72px 0 63px;
|
|
12205
|
-
|
|
12206
|
-
.configuration-form {
|
|
12207
|
-
display: flex;
|
|
12208
|
-
|
|
12209
|
-
.function-name-wrapper {
|
|
12210
|
-
width: 50%;
|
|
12211
|
-
display: flex;
|
|
12212
|
-
justify-content: flex-end;
|
|
12213
|
-
margin-bottom: 2px;
|
|
12214
|
-
|
|
12215
|
-
.projects-drop-down {
|
|
12216
|
-
width: 40%;
|
|
12217
|
-
margin-right: 48px;
|
|
12218
|
-
|
|
12219
|
-
.input-label {
|
|
12220
|
-
font-size: 14px;
|
|
12221
|
-
font-weight: 600;
|
|
12222
|
-
color: @dusk-three;
|
|
12223
|
-
}
|
|
12224
|
-
|
|
12225
|
-
igz-default-dropdown {
|
|
12226
|
-
.default-dropdown {
|
|
12227
|
-
background-color: @white;
|
|
12228
|
-
|
|
12229
|
-
.default-dropdown-field {
|
|
12230
|
-
&:focus {
|
|
12231
|
-
background-color: inherit;
|
|
12232
|
-
}
|
|
12233
|
-
}
|
|
12234
|
-
}
|
|
12235
|
-
}
|
|
12236
|
-
}
|
|
12237
|
-
|
|
12238
|
-
.function-name {
|
|
12239
|
-
width: 100%;
|
|
12139
|
+
.function-name {
|
|
12140
|
+
width: 100%;
|
|
12240
12141
|
|
|
12241
12142
|
.input-label {
|
|
12242
12143
|
font-size: 14px;
|
|
@@ -12460,6 +12361,105 @@ ncl-navigation-tabs {
|
|
|
12460
12361
|
}
|
|
12461
12362
|
}
|
|
12462
12363
|
|
|
12364
|
+
.function-from-scratch-content {
|
|
12365
|
+
.splash-screen {
|
|
12366
|
+
top: 0;
|
|
12367
|
+
}
|
|
12368
|
+
|
|
12369
|
+
.title-wrapper {
|
|
12370
|
+
margin-left: 50px;
|
|
12371
|
+
|
|
12372
|
+
.title {
|
|
12373
|
+
color: @dusk-three;
|
|
12374
|
+
font-size: 16px;
|
|
12375
|
+
font-weight: bold;
|
|
12376
|
+
}
|
|
12377
|
+
}
|
|
12378
|
+
|
|
12379
|
+
.function-configuration {
|
|
12380
|
+
margin: 28px 0 0 0;
|
|
12381
|
+
|
|
12382
|
+
.configuration-form {
|
|
12383
|
+
display: flex;
|
|
12384
|
+
|
|
12385
|
+
.function-name-wrapper {
|
|
12386
|
+
width: 50%;
|
|
12387
|
+
display: flex;
|
|
12388
|
+
padding: 0 24px 0 74px;
|
|
12389
|
+
|
|
12390
|
+
.projects-drop-down {
|
|
12391
|
+
width: 40%;
|
|
12392
|
+
margin-right: 48px;
|
|
12393
|
+
|
|
12394
|
+
.input-label {
|
|
12395
|
+
font-size: 14px;
|
|
12396
|
+
font-weight: 600;
|
|
12397
|
+
color: @dusk-three;
|
|
12398
|
+
}
|
|
12399
|
+
|
|
12400
|
+
igz-default-dropdown {
|
|
12401
|
+
.default-dropdown {
|
|
12402
|
+
background-color: @white;
|
|
12403
|
+
|
|
12404
|
+
.default-dropdown-field {
|
|
12405
|
+
&:focus {
|
|
12406
|
+
background-color: inherit;
|
|
12407
|
+
}
|
|
12408
|
+
}
|
|
12409
|
+
}
|
|
12410
|
+
}
|
|
12411
|
+
}
|
|
12412
|
+
|
|
12413
|
+
.function-name {
|
|
12414
|
+
width: 100%;
|
|
12415
|
+
|
|
12416
|
+
.input-label {
|
|
12417
|
+
font-size: 14px;
|
|
12418
|
+
font-weight: 600;
|
|
12419
|
+
color: @dusk-three;
|
|
12420
|
+
}
|
|
12421
|
+
|
|
12422
|
+
igz-validating-input-field {
|
|
12423
|
+
margin-left: 2px;
|
|
12424
|
+
}
|
|
12425
|
+
}
|
|
12426
|
+
}
|
|
12427
|
+
|
|
12428
|
+
.function-runtime-wrapper {
|
|
12429
|
+
width: 50%;
|
|
12430
|
+
padding-left: 24px;
|
|
12431
|
+
padding-right: 10%;
|
|
12432
|
+
|
|
12433
|
+
.function-runtime {
|
|
12434
|
+
.input-label {
|
|
12435
|
+
font-size: 14px;
|
|
12436
|
+
font-weight: 600;
|
|
12437
|
+
color: @dusk-three;
|
|
12438
|
+
}
|
|
12439
|
+
|
|
12440
|
+
igz-default-dropdown {
|
|
12441
|
+
.default-dropdown {
|
|
12442
|
+
background-color: @white;
|
|
12443
|
+
|
|
12444
|
+
.default-dropdown-field {
|
|
12445
|
+
&:focus {
|
|
12446
|
+
background-color: inherit;
|
|
12447
|
+
}
|
|
12448
|
+
}
|
|
12449
|
+
}
|
|
12450
|
+
}
|
|
12451
|
+
|
|
12452
|
+
.bottom-bar {
|
|
12453
|
+
display: flex;
|
|
12454
|
+
justify-content: flex-end;
|
|
12455
|
+
margin-top: 48px;
|
|
12456
|
+
}
|
|
12457
|
+
}
|
|
12458
|
+
}
|
|
12459
|
+
}
|
|
12460
|
+
}
|
|
12461
|
+
}
|
|
12462
|
+
|
|
12463
12463
|
.function-import-wrapper-content {
|
|
12464
12464
|
font-family: @font-family-sans-serif;
|
|
12465
12465
|
padding-left: 3%;
|
|
@@ -13222,134 +13222,332 @@ ncl-navigation-tabs {
|
|
|
13222
13222
|
}
|
|
13223
13223
|
}
|
|
13224
13224
|
|
|
13225
|
-
|
|
13226
|
-
|
|
13227
|
-
|
|
13228
|
-
|
|
13229
|
-
|
|
13230
|
-
|
|
13231
|
-
|
|
13232
|
-
justify-content: space-between;
|
|
13225
|
+
.function-from-template-dialog-wrapper {
|
|
13226
|
+
.title {
|
|
13227
|
+
font-size: 20px;
|
|
13228
|
+
font-weight: 500;
|
|
13229
|
+
text-align: left;
|
|
13230
|
+
color: @dusk-three;
|
|
13231
|
+
}
|
|
13233
13232
|
|
|
13234
|
-
|
|
13235
|
-
|
|
13236
|
-
|
|
13233
|
+
.main-content {
|
|
13234
|
+
width: 500px;
|
|
13235
|
+
max-height: 500px;
|
|
13237
13236
|
|
|
13238
|
-
|
|
13239
|
-
margin
|
|
13240
|
-
}
|
|
13237
|
+
form {
|
|
13238
|
+
margin: 0 20px 0 0;
|
|
13241
13239
|
|
|
13242
|
-
|
|
13243
|
-
|
|
13244
|
-
|
|
13245
|
-
|
|
13240
|
+
.field-label {
|
|
13241
|
+
font-size: 14px;
|
|
13242
|
+
text-align: left;
|
|
13243
|
+
color: @dusk-three;
|
|
13244
|
+
}
|
|
13246
13245
|
|
|
13247
|
-
|
|
13248
|
-
|
|
13246
|
+
.validating-input-field {
|
|
13247
|
+
.input-field {
|
|
13248
|
+
padding: 0 10px 0 17px;
|
|
13249
|
+
}
|
|
13249
13250
|
|
|
13250
|
-
|
|
13251
|
-
|
|
13251
|
+
.input-placeholder {
|
|
13252
|
+
left: 18px;
|
|
13253
|
+
font-style: italic;
|
|
13254
|
+
font-size: 14px;
|
|
13255
|
+
}
|
|
13252
13256
|
}
|
|
13257
|
+
}
|
|
13258
|
+
}
|
|
13259
|
+
}
|
|
13253
13260
|
|
|
13254
|
-
|
|
13255
|
-
|
|
13256
|
-
|
|
13257
|
-
}
|
|
13261
|
+
.ncl-test-events-logs {
|
|
13262
|
+
padding: 6px 17px 25px;
|
|
13263
|
+
background-color: @white;
|
|
13258
13264
|
|
|
13259
|
-
|
|
13260
|
-
|
|
13261
|
-
|
|
13262
|
-
|
|
13265
|
+
.functional-buttons {
|
|
13266
|
+
.duskThree(0.64);
|
|
13267
|
+
display: flex;
|
|
13268
|
+
justify-content: flex-end;
|
|
13269
|
+
color: @color;
|
|
13270
|
+
font-size: 16px;
|
|
13263
13271
|
|
|
13264
|
-
|
|
13265
|
-
|
|
13272
|
+
> div {
|
|
13273
|
+
margin-right: 24px;
|
|
13266
13274
|
|
|
13267
|
-
|
|
13268
|
-
|
|
13269
|
-
|
|
13275
|
+
&:hover {
|
|
13276
|
+
color: @dusk-three;
|
|
13277
|
+
}
|
|
13278
|
+
}
|
|
13279
|
+
}
|
|
13270
13280
|
|
|
13271
|
-
|
|
13272
|
-
|
|
13273
|
-
|
|
13274
|
-
|
|
13275
|
-
|
|
13276
|
-
|
|
13277
|
-
|
|
13278
|
-
|
|
13279
|
-
|
|
13280
|
-
|
|
13281
|
-
|
|
13281
|
+
.collapsed-row {
|
|
13282
|
+
.black(0.2);
|
|
13283
|
+
display: flex;
|
|
13284
|
+
align-items: center;
|
|
13285
|
+
position: relative;
|
|
13286
|
+
height: 36px;
|
|
13287
|
+
background-color: @white;
|
|
13288
|
+
color: @dusk-three;
|
|
13289
|
+
box-shadow: 1.7px 1.1px 4px 0 @color;
|
|
13290
|
+
border: solid 1px @pale-grey;
|
|
13291
|
+
margin-bottom: 10px;
|
|
13292
|
+
|
|
13293
|
+
.igz-icon-right {
|
|
13294
|
+
.duskThree(0.64);
|
|
13295
|
+
font-size: 12px;
|
|
13296
|
+
color: @color;
|
|
13297
|
+
margin: 0 8px 0 12px;
|
|
13298
|
+
|
|
13299
|
+
&::before {
|
|
13300
|
+
vertical-align: text-bottom;
|
|
13301
|
+
}
|
|
13302
|
+
}
|
|
13303
|
+
|
|
13304
|
+
.level-icon {
|
|
13305
|
+
display: inline-block;
|
|
13306
|
+
margin-right: 8px;
|
|
13307
|
+
width: 20px;
|
|
13308
|
+
text-align: center;
|
|
13309
|
+
|
|
13310
|
+
&::before {
|
|
13311
|
+
font-size: 16px;
|
|
13312
|
+
vertical-align: text-bottom;
|
|
13313
|
+
}
|
|
13314
|
+
|
|
13315
|
+
&.ncl-icon-debug {
|
|
13316
|
+
color: @orangish;
|
|
13317
|
+
|
|
13318
|
+
&::before {
|
|
13319
|
+
font-size: 18px;
|
|
13282
13320
|
}
|
|
13283
13321
|
}
|
|
13322
|
+
|
|
13323
|
+
&.igz-icon-info-round {
|
|
13324
|
+
color: @orangish;
|
|
13325
|
+
}
|
|
13326
|
+
|
|
13327
|
+
&.igz-icon-warning {
|
|
13328
|
+
color: @orangish;
|
|
13329
|
+
}
|
|
13330
|
+
|
|
13331
|
+
&.igz-icon-cancel-path {
|
|
13332
|
+
color: @orangish;
|
|
13333
|
+
}
|
|
13284
13334
|
}
|
|
13285
13335
|
|
|
13286
|
-
.
|
|
13336
|
+
.date {
|
|
13337
|
+
display: inline-block;
|
|
13338
|
+
width: 230px;
|
|
13339
|
+
font-size: 14px;
|
|
13340
|
+
font-weight: bold;
|
|
13341
|
+
margin-right: 15px;
|
|
13342
|
+
}
|
|
13343
|
+
|
|
13344
|
+
.message {
|
|
13345
|
+
display: inline-block;
|
|
13346
|
+
width: 200px;
|
|
13347
|
+
margin-right: 30px;
|
|
13348
|
+
}
|
|
13349
|
+
|
|
13350
|
+
.ncl-icon-parameters {
|
|
13351
|
+
.duskThree(0.64);
|
|
13352
|
+
color: @color;
|
|
13353
|
+
font-size: 14px;
|
|
13354
|
+
position: absolute;
|
|
13355
|
+
top: 9px;
|
|
13356
|
+
right: 9px;
|
|
13357
|
+
}
|
|
13358
|
+
}
|
|
13359
|
+
|
|
13360
|
+
.expanded-row {
|
|
13361
|
+
background-color: @white;
|
|
13362
|
+
color: @dusk-three;
|
|
13363
|
+
border: solid 1px @pale-grey;
|
|
13364
|
+
margin-bottom: 10px;
|
|
13365
|
+
|
|
13366
|
+
.header {
|
|
13367
|
+
position: relative;
|
|
13287
13368
|
display: flex;
|
|
13288
|
-
|
|
13369
|
+
align-items: center;
|
|
13370
|
+
height: 34px;
|
|
13289
13371
|
|
|
13290
|
-
.
|
|
13291
|
-
.
|
|
13292
|
-
|
|
13293
|
-
|
|
13372
|
+
.igz-icon-down {
|
|
13373
|
+
.duskThree(0.64);
|
|
13374
|
+
font-size: 12px;
|
|
13375
|
+
color: @color;
|
|
13376
|
+
margin: 0 8px 0 12px;
|
|
13294
13377
|
|
|
13295
|
-
|
|
13296
|
-
|
|
13297
|
-
}
|
|
13378
|
+
&::before {
|
|
13379
|
+
vertical-align: text-bottom;
|
|
13298
13380
|
}
|
|
13299
13381
|
}
|
|
13300
13382
|
|
|
13301
|
-
|
|
13302
|
-
|
|
13383
|
+
.level-icon {
|
|
13384
|
+
display: inline-block;
|
|
13385
|
+
margin-right: 8px;
|
|
13386
|
+
width: 20px;
|
|
13387
|
+
text-align: center;
|
|
13303
13388
|
|
|
13304
|
-
|
|
13305
|
-
|
|
13389
|
+
&::before {
|
|
13390
|
+
font-size: 16px;
|
|
13391
|
+
vertical-align: text-bottom;
|
|
13306
13392
|
}
|
|
13307
13393
|
|
|
13308
|
-
|
|
13309
|
-
|
|
13310
|
-
|
|
13394
|
+
&.ncl-icon-debug {
|
|
13395
|
+
color: @orangish;
|
|
13396
|
+
|
|
13397
|
+
&::before {
|
|
13398
|
+
font-size: 18px;
|
|
13399
|
+
}
|
|
13311
13400
|
}
|
|
13312
13401
|
|
|
13313
|
-
&.
|
|
13314
|
-
|
|
13402
|
+
&.igz-icon-info-round {
|
|
13403
|
+
color: @orangish;
|
|
13404
|
+
}
|
|
13405
|
+
|
|
13406
|
+
&.igz-icon-warning {
|
|
13407
|
+
color: @orangish;
|
|
13408
|
+
}
|
|
13409
|
+
|
|
13410
|
+
&.igz-icon-cancel-path {
|
|
13411
|
+
color: @orangish;
|
|
13412
|
+
}
|
|
13413
|
+
}
|
|
13414
|
+
|
|
13415
|
+
.date {
|
|
13416
|
+
display: inline-block;
|
|
13417
|
+
width: 230px;
|
|
13418
|
+
font-size: 14px;
|
|
13419
|
+
font-weight: bold;
|
|
13420
|
+
margin-right: 15px;
|
|
13421
|
+
}
|
|
13422
|
+
|
|
13423
|
+
.ncl-icon-parameters {
|
|
13424
|
+
.duskThree(0.64);
|
|
13425
|
+
position: absolute;
|
|
13426
|
+
top: 9px;
|
|
13427
|
+
right: 9px;
|
|
13428
|
+
color: @color;
|
|
13429
|
+
font-size: 14px;
|
|
13430
|
+
}
|
|
13431
|
+
}
|
|
13432
|
+
|
|
13433
|
+
.expanded-body {
|
|
13434
|
+
font-size: 14px;
|
|
13435
|
+
color: @dusk-three;
|
|
13436
|
+
|
|
13437
|
+
.error {
|
|
13438
|
+
width: 71%;
|
|
13439
|
+
border-radius: 3px;
|
|
13440
|
+
background-color: #fbe5e8;
|
|
13441
|
+
border: solid 1px @darkish-pink;
|
|
13442
|
+
color: @darkish-pink;
|
|
13443
|
+
word-wrap: break-word;
|
|
13444
|
+
margin-left: 62px;
|
|
13445
|
+
padding: 12px;
|
|
13446
|
+
margin-bottom: 16px;
|
|
13447
|
+
}
|
|
13448
|
+
|
|
13449
|
+
.message {
|
|
13450
|
+
display: inline-block;
|
|
13451
|
+
width: 70%;
|
|
13452
|
+
word-wrap: break-word;
|
|
13453
|
+
margin: 0 0 16px 62px;
|
|
13454
|
+
}
|
|
13455
|
+
|
|
13456
|
+
.parameters {
|
|
13457
|
+
padding: 0 62px 16px;
|
|
13458
|
+
|
|
13459
|
+
.parameters-header {
|
|
13460
|
+
font-weight: bold;
|
|
13461
|
+
}
|
|
13462
|
+
|
|
13463
|
+
> div {
|
|
13464
|
+
display: flex;
|
|
13465
|
+
line-height: 2;
|
|
13466
|
+
|
|
13467
|
+
.labels {
|
|
13468
|
+
color: @greyish-purple;
|
|
13469
|
+
font-size: 14px;
|
|
13470
|
+
width: 30%;
|
|
13471
|
+
}
|
|
13472
|
+
|
|
13473
|
+
.values {
|
|
13474
|
+
color: @dusk-three;
|
|
13475
|
+
font-size: 14px;
|
|
13476
|
+
width: 70%;
|
|
13477
|
+
}
|
|
13315
13478
|
}
|
|
13316
13479
|
}
|
|
13317
13480
|
}
|
|
13318
13481
|
}
|
|
13319
|
-
}
|
|
13320
13482
|
|
|
13321
|
-
.
|
|
13322
|
-
|
|
13323
|
-
font-size:
|
|
13324
|
-
|
|
13325
|
-
text-align:
|
|
13326
|
-
color: @dusk-three;
|
|
13483
|
+
.no-logs {
|
|
13484
|
+
margin: 10px auto 0;
|
|
13485
|
+
font-size: 14px;
|
|
13486
|
+
color: @pale-grey;
|
|
13487
|
+
text-align: center;
|
|
13327
13488
|
}
|
|
13489
|
+
}
|
|
13490
|
+
.ncl-test-events-navigation-tabs {
|
|
13491
|
+
display: flex;
|
|
13492
|
+
background: #f8f8fb;
|
|
13493
|
+
height: 40px;
|
|
13494
|
+
border-top: 1px solid @pale-grey;
|
|
13495
|
+
border-bottom: 1px solid @pale-grey;
|
|
13328
13496
|
|
|
13329
|
-
.
|
|
13330
|
-
|
|
13331
|
-
|
|
13497
|
+
.test-events-navigation-tab {
|
|
13498
|
+
.duskThree(0.64);
|
|
13499
|
+
position: relative;
|
|
13500
|
+
float: left;
|
|
13501
|
+
height: 27px;
|
|
13502
|
+
padding: 10px 40px 0;
|
|
13503
|
+
font-family: @font-family-sans-serif;
|
|
13504
|
+
color: @color;
|
|
13505
|
+
font-size: 13px;
|
|
13506
|
+
text-align: center;
|
|
13507
|
+
cursor: pointer;
|
|
13508
|
+
border-bottom: none;
|
|
13509
|
+
box-sizing: content-box;
|
|
13332
13510
|
|
|
13333
|
-
|
|
13334
|
-
|
|
13511
|
+
&.active, &.active:hover {
|
|
13512
|
+
background: none;
|
|
13513
|
+
color: @dusk-three;
|
|
13514
|
+
border-bottom: 2px solid @dusk-three;
|
|
13515
|
+
font-weight: bold;
|
|
13516
|
+
|
|
13517
|
+
.badge {
|
|
13518
|
+
color: @white;
|
|
13519
|
+
background-color: @light-grey-blue;
|
|
13520
|
+
}
|
|
13521
|
+
}
|
|
13522
|
+
|
|
13523
|
+
.badge {
|
|
13524
|
+
display: inline-block;
|
|
13525
|
+
min-width: 22px;
|
|
13526
|
+
padding: 3px 7px;
|
|
13527
|
+
font-size: 12px;
|
|
13528
|
+
font-weight: 500;
|
|
13529
|
+
color: @greyish-purple;
|
|
13530
|
+
line-height: 1;
|
|
13531
|
+
vertical-align: middle;
|
|
13532
|
+
white-space: nowrap;
|
|
13533
|
+
text-align: center;
|
|
13534
|
+
background-color: @pale-grey;
|
|
13535
|
+
border-radius: 7.5px;
|
|
13536
|
+
margin-left: 7px;
|
|
13537
|
+
margin-top: -4px;
|
|
13538
|
+
}
|
|
13539
|
+
}
|
|
13335
13540
|
|
|
13336
|
-
|
|
13337
|
-
|
|
13338
|
-
|
|
13339
|
-
color: @dusk-three;
|
|
13340
|
-
}
|
|
13541
|
+
.default-dropdown {
|
|
13542
|
+
float: left;
|
|
13543
|
+
width: 105px;
|
|
13341
13544
|
|
|
13342
|
-
|
|
13343
|
-
|
|
13344
|
-
|
|
13345
|
-
}
|
|
13545
|
+
.default-dropdown-field:not(:hover) {
|
|
13546
|
+
border-color: transparent;
|
|
13547
|
+
}
|
|
13346
13548
|
|
|
13347
|
-
|
|
13348
|
-
|
|
13349
|
-
font-style: italic;
|
|
13350
|
-
font-size: 14px;
|
|
13351
|
-
}
|
|
13352
|
-
}
|
|
13549
|
+
.default-dropdown-container {
|
|
13550
|
+
z-index: 3;
|
|
13353
13551
|
}
|
|
13354
13552
|
}
|
|
13355
13553
|
}
|
|
@@ -13499,573 +13697,375 @@ ncl-navigation-tabs {
|
|
|
13499
13697
|
color: @dark-grey;
|
|
13500
13698
|
}
|
|
13501
13699
|
|
|
13502
|
-
.file-name {
|
|
13503
|
-
margin-left: 8px;
|
|
13504
|
-
color: @dark-sky-blue;
|
|
13505
|
-
text-overflow: ellipsis;
|
|
13506
|
-
}
|
|
13507
|
-
|
|
13508
|
-
.ncl-icon-script {
|
|
13509
|
-
font-size: 12px;
|
|
13510
|
-
}
|
|
13511
|
-
}
|
|
13512
|
-
|
|
13513
|
-
.uploading-file {
|
|
13514
|
-
padding: 3px 55px 3px 8px;
|
|
13515
|
-
|
|
13516
|
-
.file-name {
|
|
13517
|
-
vertical-align: top;
|
|
13518
|
-
margin: 4px;
|
|
13519
|
-
margin-left: 9px;
|
|
13520
|
-
}
|
|
13521
|
-
}
|
|
13522
|
-
}
|
|
13523
|
-
|
|
13524
|
-
.one-file-uploaded {
|
|
13525
|
-
margin-right: 16px;
|
|
13526
|
-
}
|
|
13527
|
-
|
|
13528
|
-
.uploaded-wrapper {
|
|
13529
|
-
width: 100%;
|
|
13530
|
-
display: flex;
|
|
13531
|
-
justify-content: space-between;
|
|
13532
|
-
|
|
13533
|
-
.uploaded {
|
|
13534
|
-
position: relative;
|
|
13535
|
-
flex-grow: 1;
|
|
13536
|
-
padding: 6px 40px 6px 8px;
|
|
13537
|
-
|
|
13538
|
-
.file-name {
|
|
13539
|
-
margin-left: 9px;
|
|
13540
|
-
color: @dusk-three;
|
|
13541
|
-
|
|
13542
|
-
.uploaded-file-directory {
|
|
13543
|
-
margin-left: 8px;
|
|
13544
|
-
color: @dark-greyish-blue;
|
|
13545
|
-
}
|
|
13546
|
-
}
|
|
13547
|
-
}
|
|
13548
|
-
|
|
13549
|
-
.uploaded-file {
|
|
13550
|
-
padding: 3px 55px 3px 8px;
|
|
13551
|
-
|
|
13552
|
-
.file-name {
|
|
13553
|
-
margin: 4px 4px 4px 9px;
|
|
13554
|
-
vertical-align: top;
|
|
13555
|
-
}
|
|
13556
|
-
|
|
13557
|
-
.build-close-button {
|
|
13558
|
-
top: 6px;
|
|
13559
|
-
}
|
|
13560
|
-
}
|
|
13561
|
-
}
|
|
13562
|
-
}
|
|
13563
|
-
}
|
|
13564
|
-
|
|
13565
|
-
.configuration-build-title-wrapper {
|
|
13566
|
-
display: flex;
|
|
13567
|
-
justify-content: space-between;
|
|
13568
|
-
|
|
13569
|
-
.igz-action-menu {
|
|
13570
|
-
.menu-button {
|
|
13571
|
-
width: 40px;
|
|
13572
|
-
height: 40px;
|
|
13573
|
-
display: flex;
|
|
13574
|
-
justify-content: center;
|
|
13575
|
-
align-items: center;
|
|
13576
|
-
font-size: 22px;
|
|
13577
|
-
margin: -10px -15px 0 0;
|
|
13578
|
-
border-radius: 50%;
|
|
13579
|
-
color: @dusk-three;
|
|
13580
|
-
}
|
|
13581
|
-
|
|
13582
|
-
.active {
|
|
13583
|
-
.black(0.1);
|
|
13584
|
-
background-color: @silver;
|
|
13585
|
-
box-shadow: inset 0px 2px 3px 0 @color;
|
|
13586
|
-
}
|
|
13587
|
-
|
|
13588
|
-
.menu-dropdown {
|
|
13589
|
-
margin-top: 4px;
|
|
13590
|
-
right: -18px;
|
|
13591
|
-
}
|
|
13592
|
-
}
|
|
13593
|
-
}
|
|
13594
|
-
}
|
|
13595
|
-
|
|
13596
|
-
.ncl-version-configuration-logging {
|
|
13597
|
-
.row {
|
|
13598
|
-
display: flex;
|
|
13599
|
-
position: relative;
|
|
13600
|
-
|
|
13601
|
-
.logging-wrapper {
|
|
13602
|
-
width: 100%;
|
|
13603
|
-
}
|
|
13604
|
-
}
|
|
13605
|
-
}
|
|
13606
|
-
|
|
13607
|
-
@desktop-middle: 1550px;
|
|
13608
|
-
|
|
13609
|
-
.ncl-version-configuration-resources {
|
|
13610
|
-
.row {
|
|
13611
|
-
.range-inputs-row {
|
|
13612
|
-
display: flex;
|
|
13613
|
-
align-items: flex-end;
|
|
13614
|
-
|
|
13615
|
-
.row-title {
|
|
13616
|
-
margin-bottom: 8px;
|
|
13617
|
-
}
|
|
13618
|
-
}
|
|
13619
|
-
|
|
13620
|
-
.form-row {
|
|
13621
|
-
padding: 12px 0;
|
|
13622
|
-
|
|
13623
|
-
.row-title, .input-title {
|
|
13624
|
-
font-size: 14px;
|
|
13625
|
-
}
|
|
13626
|
-
|
|
13627
|
-
.row-title {
|
|
13628
|
-
font-weight: 500;
|
|
13629
|
-
}
|
|
13630
|
-
|
|
13631
|
-
.input-wrapper {
|
|
13632
|
-
display: flex;
|
|
13633
|
-
flex-wrap: wrap;
|
|
13634
|
-
|
|
13635
|
-
.input-title {
|
|
13636
|
-
width: 100%;
|
|
13637
|
-
}
|
|
13638
|
-
|
|
13639
|
-
.memory-number-input, .cpu-number-input {
|
|
13640
|
-
width: 50%;
|
|
13641
|
-
}
|
|
13642
|
-
|
|
13643
|
-
.memory-size-dropdown, .cpu-dropdown {
|
|
13644
|
-
width: 35%
|
|
13645
|
-
}
|
|
13646
|
-
|
|
13647
|
-
.gpu-number-input, .replicas-number-input, .preemtion-mode-input, .priority-class-input {
|
|
13648
|
-
width: 85%;
|
|
13649
|
-
}
|
|
13650
|
-
}
|
|
13651
|
-
}
|
|
13652
|
-
|
|
13653
|
-
.slider-block {
|
|
13654
|
-
padding-top: 0;
|
|
13655
|
-
margin-bottom: 10px;
|
|
13656
|
-
|
|
13657
|
-
.slider {
|
|
13658
|
-
width: 70%;
|
|
13659
|
-
}
|
|
13660
|
-
}
|
|
13661
|
-
}
|
|
13662
|
-
}
|
|
13663
|
-
|
|
13664
|
-
.ncl-version-configuration-runtime-attributes {
|
|
13665
|
-
.row:not(.info-row) {
|
|
13666
|
-
display: flex;
|
|
13667
|
-
justify-content: space-between;
|
|
13668
|
-
|
|
13669
|
-
&:not(:last-child) {
|
|
13670
|
-
margin-top: 10px;
|
|
13671
|
-
margin-bottom: 25px;
|
|
13672
|
-
}
|
|
13673
|
-
|
|
13674
|
-
> div {
|
|
13675
|
-
flex: 0.65;
|
|
13676
|
-
|
|
13677
|
-
&:not(:last-child) {
|
|
13678
|
-
margin-right: 16px;
|
|
13679
|
-
}
|
|
13680
|
-
|
|
13681
|
-
&.arguments-input {
|
|
13682
|
-
flex-grow: 2;
|
|
13683
|
-
}
|
|
13684
|
-
}
|
|
13685
|
-
}
|
|
13686
|
-
|
|
13687
|
-
.row {
|
|
13688
|
-
.runtime {
|
|
13689
|
-
height: 36px;
|
|
13690
|
-
border-radius: 2px;
|
|
13691
|
-
padding: 9px 0 0 14px;
|
|
13692
|
-
text-transform: capitalize;
|
|
13693
|
-
font-family: @font-family-sans-serif;
|
|
13694
|
-
font-size: 14px;
|
|
13695
|
-
text-align: left;
|
|
13696
|
-
color: @dusk-three;
|
|
13697
|
-
}
|
|
13698
|
-
|
|
13699
|
-
.textarea-field {
|
|
13700
|
-
height: 177px;
|
|
13701
|
-
resize: none;
|
|
13702
|
-
white-space: pre;
|
|
13703
|
-
overflow-x: auto;
|
|
13704
|
-
}
|
|
13705
|
-
}
|
|
13706
|
-
|
|
13707
|
-
.java-attribute {
|
|
13708
|
-
.textarea-field {
|
|
13709
|
-
height: 70px;
|
|
13710
|
-
overflow-y: auto;
|
|
13711
|
-
}
|
|
13712
|
-
}
|
|
13713
|
-
}
|
|
13714
|
-
|
|
13715
|
-
.ncl-version-configuration-volumes {
|
|
13716
|
-
.ncl-version-volume {
|
|
13717
|
-
.common-table-header {
|
|
13718
|
-
border: none;
|
|
13719
|
-
padding-left: 40px;
|
|
13720
|
-
padding-right: 60px;
|
|
13721
|
-
|
|
13722
|
-
.common-table-cell {
|
|
13723
|
-
font-size: 14px;
|
|
13724
|
-
font-weight: bold;
|
|
13725
|
-
letter-spacing: normal;
|
|
13726
|
-
color: @dusk-three;
|
|
13727
|
-
height: 46px;
|
|
13728
|
-
}
|
|
13729
|
-
|
|
13730
|
-
&.item-header {
|
|
13731
|
-
display: flex;
|
|
13700
|
+
.file-name {
|
|
13701
|
+
margin-left: 8px;
|
|
13702
|
+
color: @dark-sky-blue;
|
|
13703
|
+
text-overflow: ellipsis;
|
|
13704
|
+
}
|
|
13732
13705
|
|
|
13733
|
-
|
|
13734
|
-
|
|
13735
|
-
|
|
13706
|
+
.ncl-icon-script {
|
|
13707
|
+
font-size: 12px;
|
|
13708
|
+
}
|
|
13736
13709
|
}
|
|
13737
13710
|
|
|
13738
|
-
.
|
|
13739
|
-
|
|
13740
|
-
}
|
|
13711
|
+
.uploading-file {
|
|
13712
|
+
padding: 3px 55px 3px 8px;
|
|
13741
13713
|
|
|
13742
|
-
|
|
13743
|
-
|
|
13714
|
+
.file-name {
|
|
13715
|
+
vertical-align: top;
|
|
13716
|
+
margin: 4px;
|
|
13717
|
+
margin-left: 9px;
|
|
13718
|
+
}
|
|
13744
13719
|
}
|
|
13745
13720
|
}
|
|
13746
|
-
}
|
|
13747
13721
|
|
|
13748
|
-
|
|
13749
|
-
|
|
13750
|
-
|
|
13751
|
-
padding-left: 0;
|
|
13752
|
-
width: 25%;
|
|
13753
|
-
}
|
|
13722
|
+
.one-file-uploaded {
|
|
13723
|
+
margin-right: 16px;
|
|
13724
|
+
}
|
|
13754
13725
|
|
|
13755
|
-
|
|
13756
|
-
|
|
13757
|
-
|
|
13726
|
+
.uploaded-wrapper {
|
|
13727
|
+
width: 100%;
|
|
13728
|
+
display: flex;
|
|
13729
|
+
justify-content: space-between;
|
|
13758
13730
|
|
|
13759
|
-
.
|
|
13760
|
-
|
|
13731
|
+
.uploaded {
|
|
13732
|
+
position: relative;
|
|
13733
|
+
flex-grow: 1;
|
|
13734
|
+
padding: 6px 40px 6px 8px;
|
|
13735
|
+
|
|
13736
|
+
.file-name {
|
|
13737
|
+
margin-left: 9px;
|
|
13738
|
+
color: @dusk-three;
|
|
13739
|
+
|
|
13740
|
+
.uploaded-file-directory {
|
|
13741
|
+
margin-left: 8px;
|
|
13742
|
+
color: @dark-greyish-blue;
|
|
13743
|
+
}
|
|
13744
|
+
}
|
|
13761
13745
|
}
|
|
13762
|
-
}
|
|
13763
13746
|
|
|
13764
|
-
|
|
13765
|
-
|
|
13766
|
-
|
|
13767
|
-
|
|
13747
|
+
.uploaded-file {
|
|
13748
|
+
padding: 3px 55px 3px 8px;
|
|
13749
|
+
|
|
13750
|
+
.file-name {
|
|
13751
|
+
margin: 4px 4px 4px 9px;
|
|
13752
|
+
vertical-align: top;
|
|
13768
13753
|
}
|
|
13769
13754
|
|
|
13770
|
-
.
|
|
13771
|
-
|
|
13755
|
+
.build-close-button {
|
|
13756
|
+
top: 6px;
|
|
13772
13757
|
}
|
|
13773
13758
|
}
|
|
13774
13759
|
}
|
|
13775
13760
|
}
|
|
13776
13761
|
}
|
|
13777
|
-
}
|
|
13778
13762
|
|
|
13779
|
-
.
|
|
13780
|
-
padding: 6px 17px 25px;
|
|
13781
|
-
background-color: @white;
|
|
13782
|
-
|
|
13783
|
-
.functional-buttons {
|
|
13784
|
-
.duskThree(0.64);
|
|
13763
|
+
.configuration-build-title-wrapper {
|
|
13785
13764
|
display: flex;
|
|
13786
|
-
justify-content:
|
|
13787
|
-
color: @color;
|
|
13788
|
-
font-size: 16px;
|
|
13789
|
-
|
|
13790
|
-
> div {
|
|
13791
|
-
margin-right: 24px;
|
|
13765
|
+
justify-content: space-between;
|
|
13792
13766
|
|
|
13793
|
-
|
|
13767
|
+
.igz-action-menu {
|
|
13768
|
+
.menu-button {
|
|
13769
|
+
width: 40px;
|
|
13770
|
+
height: 40px;
|
|
13771
|
+
display: flex;
|
|
13772
|
+
justify-content: center;
|
|
13773
|
+
align-items: center;
|
|
13774
|
+
font-size: 22px;
|
|
13775
|
+
margin: -10px -15px 0 0;
|
|
13776
|
+
border-radius: 50%;
|
|
13794
13777
|
color: @dusk-three;
|
|
13795
13778
|
}
|
|
13779
|
+
|
|
13780
|
+
.active {
|
|
13781
|
+
.black(0.1);
|
|
13782
|
+
background-color: @silver;
|
|
13783
|
+
box-shadow: inset 0px 2px 3px 0 @color;
|
|
13784
|
+
}
|
|
13785
|
+
|
|
13786
|
+
.menu-dropdown {
|
|
13787
|
+
margin-top: 4px;
|
|
13788
|
+
right: -18px;
|
|
13789
|
+
}
|
|
13796
13790
|
}
|
|
13797
13791
|
}
|
|
13792
|
+
}
|
|
13798
13793
|
|
|
13799
|
-
|
|
13800
|
-
|
|
13794
|
+
@desktop: 1350px;
|
|
13795
|
+
@desktop-low: 1202px;
|
|
13796
|
+
@desktop-middle: 1550px;
|
|
13797
|
+
|
|
13798
|
+
.ncl-version-configuration-basic-settings {
|
|
13799
|
+
.row {
|
|
13801
13800
|
display: flex;
|
|
13802
|
-
|
|
13803
|
-
position: relative;
|
|
13804
|
-
height: 36px;
|
|
13805
|
-
background-color: @white;
|
|
13806
|
-
color: @dusk-three;
|
|
13807
|
-
box-shadow: 1.7px 1.1px 4px 0 @color;
|
|
13808
|
-
border: solid 1px @pale-grey;
|
|
13809
|
-
margin-bottom: 10px;
|
|
13801
|
+
justify-content: space-between;
|
|
13810
13802
|
|
|
13811
|
-
|
|
13812
|
-
|
|
13813
|
-
|
|
13814
|
-
color: @color;
|
|
13815
|
-
margin: 0 8px 0 12px;
|
|
13803
|
+
&:not(:last-child) {
|
|
13804
|
+
margin-bottom: 23px;
|
|
13805
|
+
}
|
|
13816
13806
|
|
|
13817
|
-
|
|
13818
|
-
|
|
13819
|
-
}
|
|
13807
|
+
&:last-child {
|
|
13808
|
+
margin-bottom: 4px;
|
|
13820
13809
|
}
|
|
13821
13810
|
|
|
13822
|
-
|
|
13823
|
-
|
|
13824
|
-
margin-
|
|
13825
|
-
|
|
13826
|
-
text-align: center;
|
|
13811
|
+
&.enable-checkbox {
|
|
13812
|
+
justify-content: flex-start;
|
|
13813
|
+
margin-bottom: 18px;
|
|
13814
|
+
}
|
|
13827
13815
|
|
|
13828
|
-
|
|
13829
|
-
|
|
13830
|
-
|
|
13816
|
+
> div {
|
|
13817
|
+
flex: 1;
|
|
13818
|
+
|
|
13819
|
+
&:not(:last-child) {
|
|
13820
|
+
margin-right: 46px;
|
|
13831
13821
|
}
|
|
13832
13822
|
|
|
13833
|
-
|
|
13834
|
-
|
|
13823
|
+
.label {
|
|
13824
|
+
padding: 0;
|
|
13825
|
+
margin-bottom: 5px;
|
|
13826
|
+
}
|
|
13835
13827
|
|
|
13836
|
-
|
|
13837
|
-
|
|
13828
|
+
&.timeout-block {
|
|
13829
|
+
.label {
|
|
13830
|
+
margin-bottom: 3px;
|
|
13838
13831
|
}
|
|
13839
|
-
}
|
|
13840
13832
|
|
|
13841
|
-
|
|
13842
|
-
|
|
13843
|
-
}
|
|
13833
|
+
.timeout-values {
|
|
13834
|
+
margin-left: 27px;
|
|
13844
13835
|
|
|
13845
|
-
|
|
13846
|
-
|
|
13847
|
-
|
|
13836
|
+
.inputs {
|
|
13837
|
+
display: flex;
|
|
13838
|
+
align-items: center;
|
|
13848
13839
|
|
|
13849
|
-
|
|
13850
|
-
|
|
13840
|
+
.values-label {
|
|
13841
|
+
.duskThree(0.9);
|
|
13842
|
+
margin: 0 17px 0 8px;
|
|
13843
|
+
font-size: 14px;
|
|
13844
|
+
font-weight: normal;
|
|
13845
|
+
font-style: normal;
|
|
13846
|
+
letter-spacing: normal;
|
|
13847
|
+
text-align: left;
|
|
13848
|
+
color: @color;
|
|
13849
|
+
}
|
|
13850
|
+
}
|
|
13851
|
+
}
|
|
13851
13852
|
}
|
|
13852
13853
|
}
|
|
13853
13854
|
|
|
13854
|
-
.
|
|
13855
|
-
display:
|
|
13856
|
-
|
|
13857
|
-
font-size: 14px;
|
|
13858
|
-
font-weight: bold;
|
|
13859
|
-
margin-right: 15px;
|
|
13860
|
-
}
|
|
13855
|
+
.logger-block {
|
|
13856
|
+
display: flex;
|
|
13857
|
+
margin-top: 3px;
|
|
13861
13858
|
|
|
13862
|
-
|
|
13863
|
-
|
|
13864
|
-
|
|
13865
|
-
|
|
13859
|
+
.logger-dropdown {
|
|
13860
|
+
.default-dropdown {
|
|
13861
|
+
position: relative;
|
|
13862
|
+
height: 36px;
|
|
13863
|
+
|
|
13864
|
+
.dropdown-overlap {
|
|
13865
|
+
z-index: 100;
|
|
13866
|
+
}
|
|
13867
|
+
}
|
|
13868
|
+
}
|
|
13869
|
+
|
|
13870
|
+
> div {
|
|
13871
|
+
flex: 1;
|
|
13872
|
+
|
|
13873
|
+
&:not(:last-child) {
|
|
13874
|
+
margin-right: 16px;
|
|
13875
|
+
}
|
|
13876
|
+
|
|
13877
|
+
.label {
|
|
13878
|
+
padding: 0;
|
|
13879
|
+
margin-bottom: 5px;
|
|
13880
|
+
}
|
|
13881
|
+
|
|
13882
|
+
&.logger-input {
|
|
13883
|
+
flex-grow: 1.95;
|
|
13884
|
+
}
|
|
13885
|
+
}
|
|
13866
13886
|
}
|
|
13887
|
+
}
|
|
13888
|
+
}
|
|
13867
13889
|
|
|
13868
|
-
|
|
13869
|
-
|
|
13870
|
-
|
|
13871
|
-
|
|
13872
|
-
|
|
13873
|
-
|
|
13874
|
-
|
|
13890
|
+
.ncl-version-configuration-logging {
|
|
13891
|
+
.row {
|
|
13892
|
+
display: flex;
|
|
13893
|
+
position: relative;
|
|
13894
|
+
|
|
13895
|
+
.logging-wrapper {
|
|
13896
|
+
width: 100%;
|
|
13875
13897
|
}
|
|
13876
13898
|
}
|
|
13899
|
+
}
|
|
13877
13900
|
|
|
13878
|
-
|
|
13879
|
-
background-color: @white;
|
|
13880
|
-
color: @dusk-three;
|
|
13881
|
-
border: solid 1px @pale-grey;
|
|
13882
|
-
margin-bottom: 10px;
|
|
13901
|
+
@desktop-middle: 1550px;
|
|
13883
13902
|
|
|
13884
|
-
|
|
13885
|
-
|
|
13903
|
+
.ncl-version-configuration-resources {
|
|
13904
|
+
.row {
|
|
13905
|
+
.range-inputs-row {
|
|
13886
13906
|
display: flex;
|
|
13887
|
-
align-items:
|
|
13888
|
-
height: 34px;
|
|
13889
|
-
|
|
13890
|
-
.igz-icon-down {
|
|
13891
|
-
.duskThree(0.64);
|
|
13892
|
-
font-size: 12px;
|
|
13893
|
-
color: @color;
|
|
13894
|
-
margin: 0 8px 0 12px;
|
|
13907
|
+
align-items: flex-end;
|
|
13895
13908
|
|
|
13896
|
-
|
|
13897
|
-
|
|
13898
|
-
}
|
|
13909
|
+
.row-title {
|
|
13910
|
+
margin-bottom: 8px;
|
|
13899
13911
|
}
|
|
13912
|
+
}
|
|
13900
13913
|
|
|
13901
|
-
|
|
13902
|
-
|
|
13903
|
-
margin-right: 8px;
|
|
13904
|
-
width: 20px;
|
|
13905
|
-
text-align: center;
|
|
13914
|
+
.form-row {
|
|
13915
|
+
padding: 12px 0;
|
|
13906
13916
|
|
|
13907
|
-
|
|
13908
|
-
|
|
13909
|
-
|
|
13910
|
-
}
|
|
13917
|
+
.row-title, .input-title {
|
|
13918
|
+
font-size: 14px;
|
|
13919
|
+
}
|
|
13911
13920
|
|
|
13912
|
-
|
|
13913
|
-
|
|
13921
|
+
.row-title {
|
|
13922
|
+
font-weight: 500;
|
|
13923
|
+
}
|
|
13914
13924
|
|
|
13915
|
-
|
|
13916
|
-
|
|
13917
|
-
|
|
13925
|
+
.input-wrapper {
|
|
13926
|
+
display: flex;
|
|
13927
|
+
flex-wrap: wrap;
|
|
13928
|
+
|
|
13929
|
+
.input-title {
|
|
13930
|
+
width: 100%;
|
|
13918
13931
|
}
|
|
13919
13932
|
|
|
13920
|
-
|
|
13921
|
-
|
|
13933
|
+
.memory-number-input, .cpu-number-input {
|
|
13934
|
+
width: 50%;
|
|
13922
13935
|
}
|
|
13923
13936
|
|
|
13924
|
-
|
|
13925
|
-
|
|
13937
|
+
.memory-size-dropdown, .cpu-dropdown {
|
|
13938
|
+
width: 35%
|
|
13926
13939
|
}
|
|
13927
13940
|
|
|
13928
|
-
|
|
13929
|
-
|
|
13941
|
+
.gpu-number-input, .replicas-number-input, .preemtion-mode-input, .priority-class-input {
|
|
13942
|
+
width: 85%;
|
|
13930
13943
|
}
|
|
13931
13944
|
}
|
|
13945
|
+
}
|
|
13932
13946
|
|
|
13933
|
-
|
|
13934
|
-
|
|
13935
|
-
|
|
13936
|
-
font-size: 14px;
|
|
13937
|
-
font-weight: bold;
|
|
13938
|
-
margin-right: 15px;
|
|
13939
|
-
}
|
|
13947
|
+
.slider-block {
|
|
13948
|
+
padding-top: 0;
|
|
13949
|
+
margin-bottom: 10px;
|
|
13940
13950
|
|
|
13941
|
-
.
|
|
13942
|
-
|
|
13943
|
-
position: absolute;
|
|
13944
|
-
top: 9px;
|
|
13945
|
-
right: 9px;
|
|
13946
|
-
color: @color;
|
|
13947
|
-
font-size: 14px;
|
|
13951
|
+
.slider {
|
|
13952
|
+
width: 70%;
|
|
13948
13953
|
}
|
|
13949
13954
|
}
|
|
13955
|
+
}
|
|
13956
|
+
}
|
|
13950
13957
|
|
|
13951
|
-
|
|
13952
|
-
|
|
13953
|
-
|
|
13958
|
+
.ncl-version-configuration-volumes {
|
|
13959
|
+
.ncl-version-volume {
|
|
13960
|
+
.common-table-header {
|
|
13961
|
+
border: none;
|
|
13962
|
+
padding-left: 40px;
|
|
13963
|
+
padding-right: 60px;
|
|
13954
13964
|
|
|
13955
|
-
.
|
|
13956
|
-
|
|
13957
|
-
|
|
13958
|
-
|
|
13959
|
-
|
|
13960
|
-
|
|
13961
|
-
word-wrap: break-word;
|
|
13962
|
-
margin-left: 62px;
|
|
13963
|
-
padding: 12px;
|
|
13964
|
-
margin-bottom: 16px;
|
|
13965
|
+
.common-table-cell {
|
|
13966
|
+
font-size: 14px;
|
|
13967
|
+
font-weight: bold;
|
|
13968
|
+
letter-spacing: normal;
|
|
13969
|
+
color: @dusk-three;
|
|
13970
|
+
height: 46px;
|
|
13965
13971
|
}
|
|
13966
13972
|
|
|
13967
|
-
|
|
13968
|
-
display:
|
|
13969
|
-
|
|
13970
|
-
|
|
13971
|
-
|
|
13973
|
+
&.item-header {
|
|
13974
|
+
display: flex;
|
|
13975
|
+
|
|
13976
|
+
.item-name {
|
|
13977
|
+
width: 25%;
|
|
13978
|
+
padding-left: 0;
|
|
13979
|
+
}
|
|
13980
|
+
|
|
13981
|
+
.item-class {
|
|
13982
|
+
width: 20%;
|
|
13983
|
+
}
|
|
13984
|
+
|
|
13985
|
+
.item-info {
|
|
13986
|
+
width: 55%;
|
|
13987
|
+
}
|
|
13972
13988
|
}
|
|
13989
|
+
}
|
|
13973
13990
|
|
|
13974
|
-
|
|
13975
|
-
|
|
13991
|
+
.common-table-body {
|
|
13992
|
+
.ncl-collapsing-row .item-row {
|
|
13993
|
+
.item-name {
|
|
13994
|
+
padding-left: 0;
|
|
13995
|
+
width: 25%;
|
|
13996
|
+
}
|
|
13976
13997
|
|
|
13977
|
-
.
|
|
13978
|
-
|
|
13998
|
+
.item-class {
|
|
13999
|
+
width: 20%;
|
|
13979
14000
|
}
|
|
13980
14001
|
|
|
13981
|
-
|
|
13982
|
-
|
|
13983
|
-
|
|
14002
|
+
.item-info {
|
|
14003
|
+
width: 55%;
|
|
14004
|
+
}
|
|
14005
|
+
}
|
|
13984
14006
|
|
|
13985
|
-
|
|
13986
|
-
|
|
13987
|
-
|
|
13988
|
-
|
|
14007
|
+
.common-table-row {
|
|
14008
|
+
&:not(.read-only):hover {
|
|
14009
|
+
.common-table-cells-container {
|
|
14010
|
+
background-color: @white;
|
|
13989
14011
|
}
|
|
13990
14012
|
|
|
13991
|
-
.
|
|
13992
|
-
color: @
|
|
13993
|
-
font-size: 14px;
|
|
13994
|
-
width: 70%;
|
|
14013
|
+
.actions-menu {
|
|
14014
|
+
background-color: @white;
|
|
13995
14015
|
}
|
|
13996
14016
|
}
|
|
13997
14017
|
}
|
|
13998
14018
|
}
|
|
13999
14019
|
}
|
|
14000
|
-
|
|
14001
|
-
.no-logs {
|
|
14002
|
-
margin: 10px auto 0;
|
|
14003
|
-
font-size: 14px;
|
|
14004
|
-
color: @pale-grey;
|
|
14005
|
-
text-align: center;
|
|
14006
|
-
}
|
|
14007
14020
|
}
|
|
14008
|
-
.ncl-test-events-navigation-tabs {
|
|
14009
|
-
display: flex;
|
|
14010
|
-
background: #f8f8fb;
|
|
14011
|
-
height: 40px;
|
|
14012
|
-
border-top: 1px solid @pale-grey;
|
|
14013
|
-
border-bottom: 1px solid @pale-grey;
|
|
14014
14021
|
|
|
14015
|
-
|
|
14016
|
-
|
|
14017
|
-
|
|
14018
|
-
|
|
14019
|
-
height: 27px;
|
|
14020
|
-
padding: 10px 40px 0;
|
|
14021
|
-
font-family: @font-family-sans-serif;
|
|
14022
|
-
color: @color;
|
|
14023
|
-
font-size: 13px;
|
|
14024
|
-
text-align: center;
|
|
14025
|
-
cursor: pointer;
|
|
14026
|
-
border-bottom: none;
|
|
14027
|
-
box-sizing: content-box;
|
|
14022
|
+
.ncl-version-configuration-runtime-attributes {
|
|
14023
|
+
.row:not(.info-row) {
|
|
14024
|
+
display: flex;
|
|
14025
|
+
justify-content: space-between;
|
|
14028
14026
|
|
|
14029
|
-
|
|
14030
|
-
|
|
14031
|
-
|
|
14032
|
-
|
|
14033
|
-
font-weight: bold;
|
|
14027
|
+
&:not(:last-child) {
|
|
14028
|
+
margin-top: 10px;
|
|
14029
|
+
margin-bottom: 25px;
|
|
14030
|
+
}
|
|
14034
14031
|
|
|
14035
|
-
|
|
14036
|
-
|
|
14037
|
-
|
|
14032
|
+
> div {
|
|
14033
|
+
flex: 0.65;
|
|
14034
|
+
|
|
14035
|
+
&:not(:last-child) {
|
|
14036
|
+
margin-right: 16px;
|
|
14038
14037
|
}
|
|
14039
|
-
}
|
|
14040
14038
|
|
|
14041
|
-
|
|
14042
|
-
|
|
14043
|
-
|
|
14044
|
-
padding: 3px 7px;
|
|
14045
|
-
font-size: 12px;
|
|
14046
|
-
font-weight: 500;
|
|
14047
|
-
color: @greyish-purple;
|
|
14048
|
-
line-height: 1;
|
|
14049
|
-
vertical-align: middle;
|
|
14050
|
-
white-space: nowrap;
|
|
14051
|
-
text-align: center;
|
|
14052
|
-
background-color: @pale-grey;
|
|
14053
|
-
border-radius: 7.5px;
|
|
14054
|
-
margin-left: 7px;
|
|
14055
|
-
margin-top: -4px;
|
|
14039
|
+
&.arguments-input {
|
|
14040
|
+
flex-grow: 2;
|
|
14041
|
+
}
|
|
14056
14042
|
}
|
|
14057
14043
|
}
|
|
14058
14044
|
|
|
14059
|
-
.
|
|
14060
|
-
|
|
14061
|
-
|
|
14045
|
+
.row {
|
|
14046
|
+
.runtime {
|
|
14047
|
+
height: 36px;
|
|
14048
|
+
border-radius: 2px;
|
|
14049
|
+
padding: 9px 0 0 14px;
|
|
14050
|
+
text-transform: capitalize;
|
|
14051
|
+
font-family: @font-family-sans-serif;
|
|
14052
|
+
font-size: 14px;
|
|
14053
|
+
text-align: left;
|
|
14054
|
+
color: @dusk-three;
|
|
14055
|
+
}
|
|
14062
14056
|
|
|
14063
|
-
.
|
|
14064
|
-
|
|
14057
|
+
.textarea-field {
|
|
14058
|
+
height: 177px;
|
|
14059
|
+
resize: none;
|
|
14060
|
+
white-space: pre;
|
|
14061
|
+
overflow-x: auto;
|
|
14065
14062
|
}
|
|
14063
|
+
}
|
|
14066
14064
|
|
|
14067
|
-
|
|
14068
|
-
|
|
14065
|
+
.java-attribute {
|
|
14066
|
+
.textarea-field {
|
|
14067
|
+
height: 70px;
|
|
14068
|
+
overflow-y: auto;
|
|
14069
14069
|
}
|
|
14070
14070
|
}
|
|
14071
14071
|
}
|