iguazio.dashboard-controls 0.37.12-patch1 → 0.37.12-patch4
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 +3508 -3395
- package/dist/less/iguazio.dashboard-controls.less +1096 -1096
- package/package.json +1 -1
- package/src/igz_controls/components/pagination/pagination.controller.js +21 -13
- package/src/igz_controls/services/general-data.service.js +10 -0
- package/src/igz_controls/services/server-status.service.js +91 -0
- package/src/nuclio/functions/functions.component.js +6 -4
- package/src/nuclio/functions/version/version.component.js +6 -3
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
.common-table-cell {
|
|
2
|
-
&.status {
|
|
3
|
-
min-width: 95px;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
|
|
7
1
|
//
|
|
8
2
|
// Common styles for buttons
|
|
9
3
|
//
|
|
@@ -3583,6 +3577,12 @@ html input[disabled], html textarea[disabled] {
|
|
|
3583
3577
|
|
|
3584
3578
|
// Media Query
|
|
3585
3579
|
@retina-display: ~"only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx)";
|
|
3580
|
+
.common-table-cell {
|
|
3581
|
+
&.status {
|
|
3582
|
+
min-width: 95px;
|
|
3583
|
+
}
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3586
3586
|
ncl-functions {
|
|
3587
3587
|
igz-info-page-actions-bar {
|
|
3588
3588
|
.igz-info-page-actions-bar {
|
|
@@ -5350,6 +5350,27 @@ yx-axis
|
|
|
5350
5350
|
|
|
5351
5351
|
/* ---------------------------------------- */
|
|
5352
5352
|
|
|
5353
|
+
.action-checkbox {
|
|
5354
|
+
.action-checkbox-color-set();
|
|
5355
|
+
|
|
5356
|
+
line-height: 16px;
|
|
5357
|
+
text-align: center;
|
|
5358
|
+
|
|
5359
|
+
.check-item {
|
|
5360
|
+
font-size: 16px;
|
|
5361
|
+
cursor: pointer;
|
|
5362
|
+
line-height: 1;
|
|
5363
|
+
vertical-align: middle;
|
|
5364
|
+
|
|
5365
|
+
&.igz-icon-checkbox-unchecked {
|
|
5366
|
+
color: @icon-checkbox-unchecked;
|
|
5367
|
+
}
|
|
5368
|
+
|
|
5369
|
+
&.igz-icon-checkbox-checked {
|
|
5370
|
+
color: @icon-checkbox-checked;
|
|
5371
|
+
}
|
|
5372
|
+
}
|
|
5373
|
+
}
|
|
5353
5374
|
/**
|
|
5354
5375
|
UI.Layout CSS
|
|
5355
5376
|
*************************************/
|
|
@@ -5493,185 +5514,6 @@ yx-axis
|
|
|
5493
5514
|
display: none;
|
|
5494
5515
|
}
|
|
5495
5516
|
|
|
5496
|
-
.action-checkbox {
|
|
5497
|
-
.action-checkbox-color-set();
|
|
5498
|
-
|
|
5499
|
-
line-height: 16px;
|
|
5500
|
-
text-align: center;
|
|
5501
|
-
|
|
5502
|
-
.check-item {
|
|
5503
|
-
font-size: 16px;
|
|
5504
|
-
cursor: pointer;
|
|
5505
|
-
line-height: 1;
|
|
5506
|
-
vertical-align: middle;
|
|
5507
|
-
|
|
5508
|
-
&.igz-icon-checkbox-unchecked {
|
|
5509
|
-
color: @icon-checkbox-unchecked;
|
|
5510
|
-
}
|
|
5511
|
-
|
|
5512
|
-
&.igz-icon-checkbox-checked {
|
|
5513
|
-
color: @icon-checkbox-checked;
|
|
5514
|
-
}
|
|
5515
|
-
}
|
|
5516
|
-
}
|
|
5517
|
-
.igz-action-menu {
|
|
5518
|
-
.action-menu-color-set();
|
|
5519
|
-
.action-icon-color-set();
|
|
5520
|
-
|
|
5521
|
-
opacity: 1;
|
|
5522
|
-
position: relative;
|
|
5523
|
-
|
|
5524
|
-
.menu-button {
|
|
5525
|
-
color: @menu-btn-color;
|
|
5526
|
-
cursor: pointer;
|
|
5527
|
-
font-size: 18px;
|
|
5528
|
-
height: 19px;
|
|
5529
|
-
text-align: center;
|
|
5530
|
-
transition: @igz-basic-transition-color;
|
|
5531
|
-
width: 30px;
|
|
5532
|
-
|
|
5533
|
-
&.active,
|
|
5534
|
-
&:hover {
|
|
5535
|
-
color: @menu-btn-active-hover-color;
|
|
5536
|
-
}
|
|
5537
|
-
}
|
|
5538
|
-
|
|
5539
|
-
.menu-dropdown {
|
|
5540
|
-
visibility: hidden;
|
|
5541
|
-
background-color: @menu-dropdown-bg-color;
|
|
5542
|
-
border: @menu-dropdown-border;
|
|
5543
|
-
border-radius: 2px;
|
|
5544
|
-
box-shadow: @menu-dropdown-box-shadow;
|
|
5545
|
-
color: @menu-dropdown-color;
|
|
5546
|
-
font-family: @font-family-sans-serif;
|
|
5547
|
-
font-size: 13px;
|
|
5548
|
-
font-weight: 500;
|
|
5549
|
-
line-height: normal;
|
|
5550
|
-
margin-top: 9px;
|
|
5551
|
-
min-width: 129px;
|
|
5552
|
-
padding: 8px 0 0;
|
|
5553
|
-
position: absolute;
|
|
5554
|
-
z-index: 10;
|
|
5555
|
-
transform: translateX(-100%);
|
|
5556
|
-
|
|
5557
|
-
.actions-list {
|
|
5558
|
-
cursor: default;
|
|
5559
|
-
padding-bottom: 8px;
|
|
5560
|
-
|
|
5561
|
-
.tooltip {
|
|
5562
|
-
// !important used to overwrite third-party's inline style
|
|
5563
|
-
display: none !important;
|
|
5564
|
-
}
|
|
5565
|
-
}
|
|
5566
|
-
|
|
5567
|
-
.igz-action-item {
|
|
5568
|
-
color: @action-item-color;
|
|
5569
|
-
cursor: pointer;
|
|
5570
|
-
font-size: 13px;
|
|
5571
|
-
font-weight: 400;
|
|
5572
|
-
line-height: 32px;
|
|
5573
|
-
padding: 0 18px;
|
|
5574
|
-
text-align: left;
|
|
5575
|
-
white-space: nowrap;
|
|
5576
|
-
|
|
5577
|
-
&:hover,
|
|
5578
|
-
&.subtemplate-show {
|
|
5579
|
-
background-color: @action-item-hover-bg-color;
|
|
5580
|
-
}
|
|
5581
|
-
|
|
5582
|
-
&.inactive {
|
|
5583
|
-
color: @action-item-inactive-color;
|
|
5584
|
-
cursor: default;
|
|
5585
|
-
|
|
5586
|
-
&:hover {
|
|
5587
|
-
background-color: @menu-dropdown-bg-color;
|
|
5588
|
-
}
|
|
5589
|
-
}
|
|
5590
|
-
|
|
5591
|
-
.action-icon {
|
|
5592
|
-
color: @action-icon-color;
|
|
5593
|
-
display: inline-block;
|
|
5594
|
-
padding-right: 14px;
|
|
5595
|
-
|
|
5596
|
-
&.icon-placeholder {
|
|
5597
|
-
&:before {
|
|
5598
|
-
content: '';
|
|
5599
|
-
display: inline-block;
|
|
5600
|
-
}
|
|
5601
|
-
}
|
|
5602
|
-
|
|
5603
|
-
&:before {
|
|
5604
|
-
font-size: 16px;
|
|
5605
|
-
position: relative;
|
|
5606
|
-
text-align: center;
|
|
5607
|
-
width: 20px;
|
|
5608
|
-
top: 2px;
|
|
5609
|
-
}
|
|
5610
|
-
}
|
|
5611
|
-
|
|
5612
|
-
.action-label {
|
|
5613
|
-
display: inline-block;
|
|
5614
|
-
}
|
|
5615
|
-
}
|
|
5616
|
-
|
|
5617
|
-
.shortcuts-list {
|
|
5618
|
-
padding-bottom: 8px;
|
|
5619
|
-
|
|
5620
|
-
&:not(.first-block) {
|
|
5621
|
-
border-top: @shortcuts-list-not-first-block-border;
|
|
5622
|
-
padding-top: 8px;
|
|
5623
|
-
}
|
|
5624
|
-
}
|
|
5625
|
-
|
|
5626
|
-
.shortcuts-header {
|
|
5627
|
-
font-family: @font-family-sans-serif;
|
|
5628
|
-
color: @shortcuts-header-color;
|
|
5629
|
-
line-height: 24px;
|
|
5630
|
-
font-size: 13px;
|
|
5631
|
-
font-weight: 400;
|
|
5632
|
-
padding: 0 15px 4px 22px;
|
|
5633
|
-
text-align: left;
|
|
5634
|
-
}
|
|
5635
|
-
|
|
5636
|
-
.shortcuts-item {
|
|
5637
|
-
color: @shortcuts-item-color;
|
|
5638
|
-
cursor: pointer;
|
|
5639
|
-
font-weight: 400;
|
|
5640
|
-
white-space: nowrap;
|
|
5641
|
-
line-height: 32px;
|
|
5642
|
-
padding: 0 26px 0 32px;
|
|
5643
|
-
text-align: left;
|
|
5644
|
-
transition: @igz-basic-transition-color;
|
|
5645
|
-
|
|
5646
|
-
&:hover {
|
|
5647
|
-
background-color: @shortcuts-item-hover-bg-color;
|
|
5648
|
-
}
|
|
5649
|
-
|
|
5650
|
-
}
|
|
5651
|
-
|
|
5652
|
-
}
|
|
5653
|
-
|
|
5654
|
-
&.small-action-menu {
|
|
5655
|
-
.menu-button {
|
|
5656
|
-
color: @small-action-menu-btn-color;
|
|
5657
|
-
width: auto;
|
|
5658
|
-
font-size: 12px;
|
|
5659
|
-
display: inline-block;
|
|
5660
|
-
height: auto;
|
|
5661
|
-
margin: 0;
|
|
5662
|
-
vertical-align: sub;
|
|
5663
|
-
}
|
|
5664
|
-
|
|
5665
|
-
.menu-dropdown {
|
|
5666
|
-
margin: 0;
|
|
5667
|
-
}
|
|
5668
|
-
}
|
|
5669
|
-
|
|
5670
|
-
.upward-menu {
|
|
5671
|
-
transform: translate(-100%, -100%);
|
|
5672
|
-
}
|
|
5673
|
-
}
|
|
5674
|
-
|
|
5675
5517
|
.action-checkbox-all {
|
|
5676
5518
|
.action-checkbox-all-color-set();
|
|
5677
5519
|
|
|
@@ -5899,42 +5741,200 @@ yx-axis
|
|
|
5899
5741
|
}
|
|
5900
5742
|
}
|
|
5901
5743
|
|
|
5902
|
-
.
|
|
5903
|
-
.
|
|
5744
|
+
.igz-action-menu {
|
|
5745
|
+
.action-menu-color-set();
|
|
5746
|
+
.action-icon-color-set();
|
|
5904
5747
|
|
|
5748
|
+
opacity: 1;
|
|
5905
5749
|
position: relative;
|
|
5906
5750
|
|
|
5907
|
-
.
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
5751
|
+
.menu-button {
|
|
5752
|
+
color: @menu-btn-color;
|
|
5753
|
+
cursor: pointer;
|
|
5754
|
+
font-size: 18px;
|
|
5755
|
+
height: 19px;
|
|
5756
|
+
text-align: center;
|
|
5757
|
+
transition: @igz-basic-transition-color;
|
|
5758
|
+
width: 30px;
|
|
5914
5759
|
|
|
5915
|
-
|
|
5916
|
-
|
|
5760
|
+
&.active,
|
|
5761
|
+
&:hover {
|
|
5762
|
+
color: @menu-btn-active-hover-color;
|
|
5917
5763
|
}
|
|
5918
5764
|
}
|
|
5919
5765
|
|
|
5920
|
-
.
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5926
|
-
|
|
5927
|
-
|
|
5928
|
-
|
|
5929
|
-
|
|
5930
|
-
|
|
5931
|
-
|
|
5932
|
-
|
|
5933
|
-
|
|
5934
|
-
|
|
5935
|
-
|
|
5936
|
-
|
|
5937
|
-
|
|
5766
|
+
.menu-dropdown {
|
|
5767
|
+
visibility: hidden;
|
|
5768
|
+
background-color: @menu-dropdown-bg-color;
|
|
5769
|
+
border: @menu-dropdown-border;
|
|
5770
|
+
border-radius: 2px;
|
|
5771
|
+
box-shadow: @menu-dropdown-box-shadow;
|
|
5772
|
+
color: @menu-dropdown-color;
|
|
5773
|
+
font-family: @font-family-sans-serif;
|
|
5774
|
+
font-size: 13px;
|
|
5775
|
+
font-weight: 500;
|
|
5776
|
+
line-height: normal;
|
|
5777
|
+
margin-top: 9px;
|
|
5778
|
+
min-width: 129px;
|
|
5779
|
+
padding: 8px 0 0;
|
|
5780
|
+
position: absolute;
|
|
5781
|
+
z-index: 10;
|
|
5782
|
+
transform: translateX(-100%);
|
|
5783
|
+
|
|
5784
|
+
.actions-list {
|
|
5785
|
+
cursor: default;
|
|
5786
|
+
padding-bottom: 8px;
|
|
5787
|
+
|
|
5788
|
+
.tooltip {
|
|
5789
|
+
// !important used to overwrite third-party's inline style
|
|
5790
|
+
display: none !important;
|
|
5791
|
+
}
|
|
5792
|
+
}
|
|
5793
|
+
|
|
5794
|
+
.igz-action-item {
|
|
5795
|
+
color: @action-item-color;
|
|
5796
|
+
cursor: pointer;
|
|
5797
|
+
font-size: 13px;
|
|
5798
|
+
font-weight: 400;
|
|
5799
|
+
line-height: 32px;
|
|
5800
|
+
padding: 0 18px;
|
|
5801
|
+
text-align: left;
|
|
5802
|
+
white-space: nowrap;
|
|
5803
|
+
|
|
5804
|
+
&:hover,
|
|
5805
|
+
&.subtemplate-show {
|
|
5806
|
+
background-color: @action-item-hover-bg-color;
|
|
5807
|
+
}
|
|
5808
|
+
|
|
5809
|
+
&.inactive {
|
|
5810
|
+
color: @action-item-inactive-color;
|
|
5811
|
+
cursor: default;
|
|
5812
|
+
|
|
5813
|
+
&:hover {
|
|
5814
|
+
background-color: @menu-dropdown-bg-color;
|
|
5815
|
+
}
|
|
5816
|
+
}
|
|
5817
|
+
|
|
5818
|
+
.action-icon {
|
|
5819
|
+
color: @action-icon-color;
|
|
5820
|
+
display: inline-block;
|
|
5821
|
+
padding-right: 14px;
|
|
5822
|
+
|
|
5823
|
+
&.icon-placeholder {
|
|
5824
|
+
&:before {
|
|
5825
|
+
content: '';
|
|
5826
|
+
display: inline-block;
|
|
5827
|
+
}
|
|
5828
|
+
}
|
|
5829
|
+
|
|
5830
|
+
&:before {
|
|
5831
|
+
font-size: 16px;
|
|
5832
|
+
position: relative;
|
|
5833
|
+
text-align: center;
|
|
5834
|
+
width: 20px;
|
|
5835
|
+
top: 2px;
|
|
5836
|
+
}
|
|
5837
|
+
}
|
|
5838
|
+
|
|
5839
|
+
.action-label {
|
|
5840
|
+
display: inline-block;
|
|
5841
|
+
}
|
|
5842
|
+
}
|
|
5843
|
+
|
|
5844
|
+
.shortcuts-list {
|
|
5845
|
+
padding-bottom: 8px;
|
|
5846
|
+
|
|
5847
|
+
&:not(.first-block) {
|
|
5848
|
+
border-top: @shortcuts-list-not-first-block-border;
|
|
5849
|
+
padding-top: 8px;
|
|
5850
|
+
}
|
|
5851
|
+
}
|
|
5852
|
+
|
|
5853
|
+
.shortcuts-header {
|
|
5854
|
+
font-family: @font-family-sans-serif;
|
|
5855
|
+
color: @shortcuts-header-color;
|
|
5856
|
+
line-height: 24px;
|
|
5857
|
+
font-size: 13px;
|
|
5858
|
+
font-weight: 400;
|
|
5859
|
+
padding: 0 15px 4px 22px;
|
|
5860
|
+
text-align: left;
|
|
5861
|
+
}
|
|
5862
|
+
|
|
5863
|
+
.shortcuts-item {
|
|
5864
|
+
color: @shortcuts-item-color;
|
|
5865
|
+
cursor: pointer;
|
|
5866
|
+
font-weight: 400;
|
|
5867
|
+
white-space: nowrap;
|
|
5868
|
+
line-height: 32px;
|
|
5869
|
+
padding: 0 26px 0 32px;
|
|
5870
|
+
text-align: left;
|
|
5871
|
+
transition: @igz-basic-transition-color;
|
|
5872
|
+
|
|
5873
|
+
&:hover {
|
|
5874
|
+
background-color: @shortcuts-item-hover-bg-color;
|
|
5875
|
+
}
|
|
5876
|
+
|
|
5877
|
+
}
|
|
5878
|
+
|
|
5879
|
+
}
|
|
5880
|
+
|
|
5881
|
+
&.small-action-menu {
|
|
5882
|
+
.menu-button {
|
|
5883
|
+
color: @small-action-menu-btn-color;
|
|
5884
|
+
width: auto;
|
|
5885
|
+
font-size: 12px;
|
|
5886
|
+
display: inline-block;
|
|
5887
|
+
height: auto;
|
|
5888
|
+
margin: 0;
|
|
5889
|
+
vertical-align: sub;
|
|
5890
|
+
}
|
|
5891
|
+
|
|
5892
|
+
.menu-dropdown {
|
|
5893
|
+
margin: 0;
|
|
5894
|
+
}
|
|
5895
|
+
}
|
|
5896
|
+
|
|
5897
|
+
.upward-menu {
|
|
5898
|
+
transform: translate(-100%, -100%);
|
|
5899
|
+
}
|
|
5900
|
+
}
|
|
5901
|
+
|
|
5902
|
+
.auto-complete-wrapper {
|
|
5903
|
+
.auto-complete-color-set();
|
|
5904
|
+
|
|
5905
|
+
position: relative;
|
|
5906
|
+
|
|
5907
|
+
.input-row {
|
|
5908
|
+
display: flex;
|
|
5909
|
+
width: 100%;
|
|
5910
|
+
|
|
5911
|
+
.auto-complete-input {
|
|
5912
|
+
flex-grow: 3;
|
|
5913
|
+
}
|
|
5914
|
+
|
|
5915
|
+
.auto-complete-filters {
|
|
5916
|
+
width: 20%;
|
|
5917
|
+
}
|
|
5918
|
+
}
|
|
5919
|
+
|
|
5920
|
+
.suggestions-row {
|
|
5921
|
+
.auto-complete-suggestions-container {
|
|
5922
|
+
position: absolute;
|
|
5923
|
+
background-color: @auto-complete-suggestions-container-bg-color;
|
|
5924
|
+
border-radius: 2px;
|
|
5925
|
+
box-shadow: @auto-complete-suggestions-container-box-shadow;
|
|
5926
|
+
color: @auto-complete-suggestions-container-color;
|
|
5927
|
+
max-height: 220px;
|
|
5928
|
+
overflow: auto;
|
|
5929
|
+
z-index: 1000;
|
|
5930
|
+
width: 100%;
|
|
5931
|
+
margin-top: 2px;
|
|
5932
|
+
|
|
5933
|
+
.list {
|
|
5934
|
+
padding: 0;
|
|
5935
|
+
margin: 0;
|
|
5936
|
+
|
|
5937
|
+
.list-item {
|
|
5938
5938
|
color: @auto-complete-list-item-color;
|
|
5939
5939
|
font-family: @font-family-sans-serif;
|
|
5940
5940
|
font-size: 14px;
|
|
@@ -6672,6 +6672,45 @@ yx-axis
|
|
|
6672
6672
|
}
|
|
6673
6673
|
}
|
|
6674
6674
|
|
|
6675
|
+
.igz-navigation-tabs {
|
|
6676
|
+
.navigation-tabs-color-set();
|
|
6677
|
+
|
|
6678
|
+
background-color: @navigation-tabs-bg-color;
|
|
6679
|
+
height: 56px;
|
|
6680
|
+
padding-top: 7px;
|
|
6681
|
+
|
|
6682
|
+
.navigation-tab {
|
|
6683
|
+
float: left;
|
|
6684
|
+
height: 32px;
|
|
6685
|
+
padding: 15px 24px 0;
|
|
6686
|
+
font-family: @font-family-sans-serif;
|
|
6687
|
+
color: @navigation-tab-color;
|
|
6688
|
+
font-size: 14px;
|
|
6689
|
+
text-align: center;
|
|
6690
|
+
cursor: pointer;
|
|
6691
|
+
border-bottom: @navigation-tab-border-bottom;
|
|
6692
|
+
box-sizing: content-box;
|
|
6693
|
+
|
|
6694
|
+
&.active, &.active:hover {
|
|
6695
|
+
background-color: @navigation-tab-active-hover-bg-color;
|
|
6696
|
+
color: @navigation-tab-active-hover-color;
|
|
6697
|
+
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
6698
|
+
}
|
|
6699
|
+
|
|
6700
|
+
&:hover {
|
|
6701
|
+
background-color: @navigation-tab-hover-bg-color;
|
|
6702
|
+
}
|
|
6703
|
+
|
|
6704
|
+
&.active {
|
|
6705
|
+
background-color: @navigation-tab-active-bg-color;
|
|
6706
|
+
}
|
|
6707
|
+
|
|
6708
|
+
@media screen and (max-width: 940px) {
|
|
6709
|
+
padding: 15px 12px 0;
|
|
6710
|
+
}
|
|
6711
|
+
}
|
|
6712
|
+
}
|
|
6713
|
+
|
|
6675
6714
|
.igz-multiple-checkboxes {
|
|
6676
6715
|
.multiple-checkboxes-color-set();
|
|
6677
6716
|
|
|
@@ -7008,45 +7047,6 @@ yx-axis
|
|
|
7008
7047
|
}
|
|
7009
7048
|
}
|
|
7010
7049
|
|
|
7011
|
-
.igz-navigation-tabs {
|
|
7012
|
-
.navigation-tabs-color-set();
|
|
7013
|
-
|
|
7014
|
-
background-color: @navigation-tabs-bg-color;
|
|
7015
|
-
height: 56px;
|
|
7016
|
-
padding-top: 7px;
|
|
7017
|
-
|
|
7018
|
-
.navigation-tab {
|
|
7019
|
-
float: left;
|
|
7020
|
-
height: 32px;
|
|
7021
|
-
padding: 15px 24px 0;
|
|
7022
|
-
font-family: @font-family-sans-serif;
|
|
7023
|
-
color: @navigation-tab-color;
|
|
7024
|
-
font-size: 14px;
|
|
7025
|
-
text-align: center;
|
|
7026
|
-
cursor: pointer;
|
|
7027
|
-
border-bottom: @navigation-tab-border-bottom;
|
|
7028
|
-
box-sizing: content-box;
|
|
7029
|
-
|
|
7030
|
-
&.active, &.active:hover {
|
|
7031
|
-
background-color: @navigation-tab-active-hover-bg-color;
|
|
7032
|
-
color: @navigation-tab-active-hover-color;
|
|
7033
|
-
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
7034
|
-
}
|
|
7035
|
-
|
|
7036
|
-
&:hover {
|
|
7037
|
-
background-color: @navigation-tab-hover-bg-color;
|
|
7038
|
-
}
|
|
7039
|
-
|
|
7040
|
-
&.active {
|
|
7041
|
-
background-color: @navigation-tab-active-bg-color;
|
|
7042
|
-
}
|
|
7043
|
-
|
|
7044
|
-
@media screen and (max-width: 940px) {
|
|
7045
|
-
padding: 15px 12px 0;
|
|
7046
|
-
}
|
|
7047
|
-
}
|
|
7048
|
-
}
|
|
7049
|
-
|
|
7050
7050
|
.igz-pagination {
|
|
7051
7051
|
.pagination-color-set();
|
|
7052
7052
|
|
|
@@ -7195,10 +7195,100 @@ yx-axis
|
|
|
7195
7195
|
}
|
|
7196
7196
|
}
|
|
7197
7197
|
}
|
|
7198
|
-
.igz-
|
|
7199
|
-
.
|
|
7200
|
-
|
|
7201
|
-
|
|
7198
|
+
.igz-size {
|
|
7199
|
+
.size-color-set();
|
|
7200
|
+
|
|
7201
|
+
align-items: center;
|
|
7202
|
+
display: flex;
|
|
7203
|
+
justify-content: space-between;
|
|
7204
|
+
|
|
7205
|
+
&:after {
|
|
7206
|
+
content: ' ';
|
|
7207
|
+
display: inline-block;
|
|
7208
|
+
vertical-align: middle;
|
|
7209
|
+
}
|
|
7210
|
+
|
|
7211
|
+
.size-value {
|
|
7212
|
+
line-height: 1;
|
|
7213
|
+
flex: 0 0 100px;
|
|
7214
|
+
min-width: 100px;
|
|
7215
|
+
|
|
7216
|
+
> span {
|
|
7217
|
+
line-height: 25px;
|
|
7218
|
+
}
|
|
7219
|
+
|
|
7220
|
+
&.short {
|
|
7221
|
+
flex: 0 0 75px;
|
|
7222
|
+
min-width: 75px;
|
|
7223
|
+
}
|
|
7224
|
+
|
|
7225
|
+
&.shorten {
|
|
7226
|
+
flex: 0 0 60px;
|
|
7227
|
+
min-width: 60px;
|
|
7228
|
+
}
|
|
7229
|
+
|
|
7230
|
+
&.shortest {
|
|
7231
|
+
flex: 0 0 40px;
|
|
7232
|
+
min-width: 40px;
|
|
7233
|
+
}
|
|
7234
|
+
}
|
|
7235
|
+
|
|
7236
|
+
.size-reserved {
|
|
7237
|
+
color: @size-reserved-color;
|
|
7238
|
+
font-size: 12px;
|
|
7239
|
+
|
|
7240
|
+
.icon-font-arrow-right:before {
|
|
7241
|
+
color: @size-reserved-arrow-right-before-color;
|
|
7242
|
+
font-size: 10px;
|
|
7243
|
+
padding: 0 4px 0 4px;
|
|
7244
|
+
}
|
|
7245
|
+
|
|
7246
|
+
.icon-font-infinity:before {
|
|
7247
|
+
color: @size-reserved-infinity-before-color;
|
|
7248
|
+
font-size: 10px;
|
|
7249
|
+
}
|
|
7250
|
+
}
|
|
7251
|
+
|
|
7252
|
+
.size-chart {
|
|
7253
|
+
flex: 1 1 auto;
|
|
7254
|
+
min-width: 0;
|
|
7255
|
+
|
|
7256
|
+
div.highcharts-tooltip {
|
|
7257
|
+
position: fixed !important;
|
|
7258
|
+
|
|
7259
|
+
.igz-tooltip-wrapper {
|
|
7260
|
+
color: @size-chart-tooltip-wrapper-color;
|
|
7261
|
+
|
|
7262
|
+
&.used-capacity-tooltip-wrapper {
|
|
7263
|
+
.igz-row {
|
|
7264
|
+
.tooltip-label,
|
|
7265
|
+
.tooltip-value {
|
|
7266
|
+
text-overflow: unset;
|
|
7267
|
+
}
|
|
7268
|
+
}
|
|
7269
|
+
}
|
|
7270
|
+
|
|
7271
|
+
.tooltip-header {
|
|
7272
|
+
padding-bottom: 6px;
|
|
7273
|
+
margin-bottom: 5px;
|
|
7274
|
+
line-height: 1.1;
|
|
7275
|
+
text-align: center;
|
|
7276
|
+
}
|
|
7277
|
+
}
|
|
7278
|
+
}
|
|
7279
|
+
}
|
|
7280
|
+
|
|
7281
|
+
.igz-highcharts-wrapper {
|
|
7282
|
+
height: 40px;
|
|
7283
|
+
position: relative;
|
|
7284
|
+
width: 100%;
|
|
7285
|
+
}
|
|
7286
|
+
}
|
|
7287
|
+
|
|
7288
|
+
.igz-slider-input-block {
|
|
7289
|
+
.igz-slider-input-block-color-set();
|
|
7290
|
+
|
|
7291
|
+
position: relative;
|
|
7202
7292
|
|
|
7203
7293
|
.igz-slider-input-title {
|
|
7204
7294
|
float: left;
|
|
@@ -7324,96 +7414,6 @@ yx-axis
|
|
|
7324
7414
|
}
|
|
7325
7415
|
}
|
|
7326
7416
|
|
|
7327
|
-
.igz-size {
|
|
7328
|
-
.size-color-set();
|
|
7329
|
-
|
|
7330
|
-
align-items: center;
|
|
7331
|
-
display: flex;
|
|
7332
|
-
justify-content: space-between;
|
|
7333
|
-
|
|
7334
|
-
&:after {
|
|
7335
|
-
content: ' ';
|
|
7336
|
-
display: inline-block;
|
|
7337
|
-
vertical-align: middle;
|
|
7338
|
-
}
|
|
7339
|
-
|
|
7340
|
-
.size-value {
|
|
7341
|
-
line-height: 1;
|
|
7342
|
-
flex: 0 0 100px;
|
|
7343
|
-
min-width: 100px;
|
|
7344
|
-
|
|
7345
|
-
> span {
|
|
7346
|
-
line-height: 25px;
|
|
7347
|
-
}
|
|
7348
|
-
|
|
7349
|
-
&.short {
|
|
7350
|
-
flex: 0 0 75px;
|
|
7351
|
-
min-width: 75px;
|
|
7352
|
-
}
|
|
7353
|
-
|
|
7354
|
-
&.shorten {
|
|
7355
|
-
flex: 0 0 60px;
|
|
7356
|
-
min-width: 60px;
|
|
7357
|
-
}
|
|
7358
|
-
|
|
7359
|
-
&.shortest {
|
|
7360
|
-
flex: 0 0 40px;
|
|
7361
|
-
min-width: 40px;
|
|
7362
|
-
}
|
|
7363
|
-
}
|
|
7364
|
-
|
|
7365
|
-
.size-reserved {
|
|
7366
|
-
color: @size-reserved-color;
|
|
7367
|
-
font-size: 12px;
|
|
7368
|
-
|
|
7369
|
-
.icon-font-arrow-right:before {
|
|
7370
|
-
color: @size-reserved-arrow-right-before-color;
|
|
7371
|
-
font-size: 10px;
|
|
7372
|
-
padding: 0 4px 0 4px;
|
|
7373
|
-
}
|
|
7374
|
-
|
|
7375
|
-
.icon-font-infinity:before {
|
|
7376
|
-
color: @size-reserved-infinity-before-color;
|
|
7377
|
-
font-size: 10px;
|
|
7378
|
-
}
|
|
7379
|
-
}
|
|
7380
|
-
|
|
7381
|
-
.size-chart {
|
|
7382
|
-
flex: 1 1 auto;
|
|
7383
|
-
min-width: 0;
|
|
7384
|
-
|
|
7385
|
-
div.highcharts-tooltip {
|
|
7386
|
-
position: fixed !important;
|
|
7387
|
-
|
|
7388
|
-
.igz-tooltip-wrapper {
|
|
7389
|
-
color: @size-chart-tooltip-wrapper-color;
|
|
7390
|
-
|
|
7391
|
-
&.used-capacity-tooltip-wrapper {
|
|
7392
|
-
.igz-row {
|
|
7393
|
-
.tooltip-label,
|
|
7394
|
-
.tooltip-value {
|
|
7395
|
-
text-overflow: unset;
|
|
7396
|
-
}
|
|
7397
|
-
}
|
|
7398
|
-
}
|
|
7399
|
-
|
|
7400
|
-
.tooltip-header {
|
|
7401
|
-
padding-bottom: 6px;
|
|
7402
|
-
margin-bottom: 5px;
|
|
7403
|
-
line-height: 1.1;
|
|
7404
|
-
text-align: center;
|
|
7405
|
-
}
|
|
7406
|
-
}
|
|
7407
|
-
}
|
|
7408
|
-
}
|
|
7409
|
-
|
|
7410
|
-
.igz-highcharts-wrapper {
|
|
7411
|
-
height: 40px;
|
|
7412
|
-
position: relative;
|
|
7413
|
-
width: 100%;
|
|
7414
|
-
}
|
|
7415
|
-
}
|
|
7416
|
-
|
|
7417
7417
|
.search-input {
|
|
7418
7418
|
.search-input-color-set();
|
|
7419
7419
|
|
|
@@ -8778,6 +8778,18 @@ body {
|
|
|
8778
8778
|
border: solid 1px @pale-grey;
|
|
8779
8779
|
}
|
|
8780
8780
|
}
|
|
8781
|
+
.deploy-deleted-function-dialog {
|
|
8782
|
+
.sub-title {
|
|
8783
|
+
font-size: 16px;
|
|
8784
|
+
color: @silver-chalice-two;
|
|
8785
|
+
}
|
|
8786
|
+
|
|
8787
|
+
.buttons {
|
|
8788
|
+
display: flex;
|
|
8789
|
+
justify-content: flex-end;
|
|
8790
|
+
}
|
|
8791
|
+
}
|
|
8792
|
+
|
|
8781
8793
|
.duplicate-function-dialog-wrapper {
|
|
8782
8794
|
.main-content {
|
|
8783
8795
|
.field-group {
|
|
@@ -8799,18 +8811,6 @@ body {
|
|
|
8799
8811
|
}
|
|
8800
8812
|
}
|
|
8801
8813
|
|
|
8802
|
-
.deploy-deleted-function-dialog {
|
|
8803
|
-
.sub-title {
|
|
8804
|
-
font-size: 16px;
|
|
8805
|
-
color: @silver-chalice-two;
|
|
8806
|
-
}
|
|
8807
|
-
|
|
8808
|
-
.buttons {
|
|
8809
|
-
display: flex;
|
|
8810
|
-
justify-content: flex-end;
|
|
8811
|
-
}
|
|
8812
|
-
}
|
|
8813
|
-
|
|
8814
8814
|
.ncl-function-collapsing-row {
|
|
8815
8815
|
background-color: @white;
|
|
8816
8816
|
margin-bottom: 8px;
|
|
@@ -9290,48 +9290,170 @@ body {
|
|
|
9290
9290
|
}
|
|
9291
9291
|
}
|
|
9292
9292
|
|
|
9293
|
-
.info-page-
|
|
9294
|
-
.info-page-
|
|
9293
|
+
.igz-info-page-content-wrapper {
|
|
9294
|
+
.info-page-content-color-set();
|
|
9295
9295
|
|
|
9296
|
-
background-color: @filters-bookmark-bg-color;
|
|
9297
|
-
border-bottom-right-radius: 4px;
|
|
9298
|
-
border-top-right-radius: 4px;
|
|
9299
|
-
box-shadow: @filters-bookmark-box-shadow;
|
|
9300
|
-
color: @filters-bookmark-color;
|
|
9301
|
-
cursor: pointer;
|
|
9302
|
-
font-size: 10px;
|
|
9303
|
-
height: 22px;
|
|
9304
|
-
right: 0;
|
|
9305
|
-
line-height: 22px;
|
|
9306
9296
|
position: absolute;
|
|
9307
|
-
|
|
9308
|
-
|
|
9297
|
+
top: 56px;
|
|
9298
|
+
right: 0;
|
|
9299
|
+
bottom: 0;
|
|
9300
|
+
left: 0;
|
|
9301
|
+
padding-top: 0;
|
|
9309
9302
|
transition: @igz-basic-transition;
|
|
9310
|
-
|
|
9311
|
-
z-index: 998;
|
|
9303
|
+
background-color: @page-content-bg-color;
|
|
9312
9304
|
|
|
9313
|
-
|
|
9314
|
-
|
|
9315
|
-
position: absolute;
|
|
9316
|
-
top: 6px;
|
|
9305
|
+
&.upper-pane-opened {
|
|
9306
|
+
top: 216px;
|
|
9317
9307
|
}
|
|
9318
9308
|
|
|
9319
|
-
|
|
9320
|
-
|
|
9321
|
-
content: "";
|
|
9322
|
-
height: 100%;
|
|
9323
|
-
right: -6px;
|
|
9324
|
-
position: absolute;
|
|
9325
|
-
top: 0;
|
|
9326
|
-
width: 6px;
|
|
9309
|
+
&.filters-opened {
|
|
9310
|
+
right: 377px;
|
|
9327
9311
|
}
|
|
9328
9312
|
|
|
9329
|
-
&.
|
|
9330
|
-
|
|
9313
|
+
&.info-pane-opened {
|
|
9314
|
+
right: 379px;
|
|
9331
9315
|
}
|
|
9332
9316
|
|
|
9333
|
-
|
|
9334
|
-
|
|
9317
|
+
.igz-info-page-content {
|
|
9318
|
+
min-width: 946px;
|
|
9319
|
+
max-width: 100%;
|
|
9320
|
+
padding: 40px 25px;
|
|
9321
|
+
}
|
|
9322
|
+
}
|
|
9323
|
+
|
|
9324
|
+
igz-info-page-actions-bar {
|
|
9325
|
+
.igz-info-page-actions-bar .actions-content-block {
|
|
9326
|
+
margin-left: 14px;
|
|
9327
|
+
}
|
|
9328
|
+
}
|
|
9329
|
+
|
|
9330
|
+
igz-info-page-content {
|
|
9331
|
+
.info-page-content-color-set();
|
|
9332
|
+
|
|
9333
|
+
.container-data-access-policy-table, .data-lifecycle-table {
|
|
9334
|
+
&.common-table {
|
|
9335
|
+
.common-table-header {
|
|
9336
|
+
position: relative;
|
|
9337
|
+
height: 49px;
|
|
9338
|
+
line-height: 48px;
|
|
9339
|
+
|
|
9340
|
+
.common-table-cell {
|
|
9341
|
+
margin-top: -1px;
|
|
9342
|
+
height: 49px;
|
|
9343
|
+
|
|
9344
|
+
&.selected {
|
|
9345
|
+
background-color: @common-table-cell-selected-bg-color;
|
|
9346
|
+
border: @common-table-cell-selected-border;
|
|
9347
|
+
}
|
|
9348
|
+
|
|
9349
|
+
&:last-child {
|
|
9350
|
+
margin-right: 0;
|
|
9351
|
+
}
|
|
9352
|
+
|
|
9353
|
+
&.actions-menu {
|
|
9354
|
+
width: 0;
|
|
9355
|
+
}
|
|
9356
|
+
|
|
9357
|
+
&.check-all-rows {
|
|
9358
|
+
padding-left: 30px;
|
|
9359
|
+
|
|
9360
|
+
.action-checkbox-all {
|
|
9361
|
+
padding-top: 2px;
|
|
9362
|
+
}
|
|
9363
|
+
}
|
|
9364
|
+
}
|
|
9365
|
+
|
|
9366
|
+
.common-table-cells-container {
|
|
9367
|
+
margin-right: 45px;
|
|
9368
|
+
|
|
9369
|
+
.common-table-cell {
|
|
9370
|
+
height: 49px;
|
|
9371
|
+
padding: 0 15px;
|
|
9372
|
+
border-right: @common-table-cell-border-right;
|
|
9373
|
+
|
|
9374
|
+
&:first-child {
|
|
9375
|
+
padding-left: 7px;
|
|
9376
|
+
}
|
|
9377
|
+
}
|
|
9378
|
+
}
|
|
9379
|
+
}
|
|
9380
|
+
|
|
9381
|
+
.common-table-body {
|
|
9382
|
+
margin-top: 7px;
|
|
9383
|
+
|
|
9384
|
+
.common-table-cell {
|
|
9385
|
+
&.actions-menu {
|
|
9386
|
+
width: 45px;
|
|
9387
|
+
}
|
|
9388
|
+
}
|
|
9389
|
+
}
|
|
9390
|
+
|
|
9391
|
+
.data-access-policy-layers, .data-lifecycle-layers {
|
|
9392
|
+
&:last-child {
|
|
9393
|
+
margin-bottom: 20px;
|
|
9394
|
+
}
|
|
9395
|
+
}
|
|
9396
|
+
}
|
|
9397
|
+
|
|
9398
|
+
.sortable-empty {
|
|
9399
|
+
background-color: @sortable-empty-bg-color;
|
|
9400
|
+
color: @sortable-empty-color;
|
|
9401
|
+
font-size: 14px;
|
|
9402
|
+
font-weight: 400;
|
|
9403
|
+
font-family: 'Open Sans', sans-serif;
|
|
9404
|
+
border-bottom: @sortable-empty-border;
|
|
9405
|
+
border-left: @sortable-empty-border;
|
|
9406
|
+
border-right: @sortable-empty-border;
|
|
9407
|
+
padding-left: 70px;
|
|
9408
|
+
height: 40px;
|
|
9409
|
+
line-height: 38px;
|
|
9410
|
+
}
|
|
9411
|
+
}
|
|
9412
|
+
}
|
|
9413
|
+
|
|
9414
|
+
|
|
9415
|
+
.info-page-filters-bookmark {
|
|
9416
|
+
.info-page-filters-color-set();
|
|
9417
|
+
|
|
9418
|
+
background-color: @filters-bookmark-bg-color;
|
|
9419
|
+
border-bottom-right-radius: 4px;
|
|
9420
|
+
border-top-right-radius: 4px;
|
|
9421
|
+
box-shadow: @filters-bookmark-box-shadow;
|
|
9422
|
+
color: @filters-bookmark-color;
|
|
9423
|
+
cursor: pointer;
|
|
9424
|
+
font-size: 10px;
|
|
9425
|
+
height: 22px;
|
|
9426
|
+
right: 0;
|
|
9427
|
+
line-height: 22px;
|
|
9428
|
+
position: absolute;
|
|
9429
|
+
text-align: center;
|
|
9430
|
+
top: 22px;
|
|
9431
|
+
transition: @igz-basic-transition;
|
|
9432
|
+
width: 18px;
|
|
9433
|
+
z-index: 998;
|
|
9434
|
+
|
|
9435
|
+
&:before {
|
|
9436
|
+
right: 3px;
|
|
9437
|
+
position: absolute;
|
|
9438
|
+
top: 6px;
|
|
9439
|
+
}
|
|
9440
|
+
|
|
9441
|
+
&:after {
|
|
9442
|
+
background-color: @filters-bookmark-after-bg-color;
|
|
9443
|
+
content: "";
|
|
9444
|
+
height: 100%;
|
|
9445
|
+
right: -6px;
|
|
9446
|
+
position: absolute;
|
|
9447
|
+
top: 0;
|
|
9448
|
+
width: 6px;
|
|
9449
|
+
}
|
|
9450
|
+
|
|
9451
|
+
&.upper-pane-opened {
|
|
9452
|
+
top: 172px;
|
|
9453
|
+
}
|
|
9454
|
+
|
|
9455
|
+
&.info-page-filters-active {
|
|
9456
|
+
right: 249px;
|
|
9335
9457
|
}
|
|
9336
9458
|
|
|
9337
9459
|
.bookmark-badge {
|
|
@@ -9630,128 +9752,6 @@ body {
|
|
|
9630
9752
|
}
|
|
9631
9753
|
}
|
|
9632
9754
|
|
|
9633
|
-
.igz-info-page-content-wrapper {
|
|
9634
|
-
.info-page-content-color-set();
|
|
9635
|
-
|
|
9636
|
-
position: absolute;
|
|
9637
|
-
top: 56px;
|
|
9638
|
-
right: 0;
|
|
9639
|
-
bottom: 0;
|
|
9640
|
-
left: 0;
|
|
9641
|
-
padding-top: 0;
|
|
9642
|
-
transition: @igz-basic-transition;
|
|
9643
|
-
background-color: @page-content-bg-color;
|
|
9644
|
-
|
|
9645
|
-
&.upper-pane-opened {
|
|
9646
|
-
top: 216px;
|
|
9647
|
-
}
|
|
9648
|
-
|
|
9649
|
-
&.filters-opened {
|
|
9650
|
-
right: 377px;
|
|
9651
|
-
}
|
|
9652
|
-
|
|
9653
|
-
&.info-pane-opened {
|
|
9654
|
-
right: 379px;
|
|
9655
|
-
}
|
|
9656
|
-
|
|
9657
|
-
.igz-info-page-content {
|
|
9658
|
-
min-width: 946px;
|
|
9659
|
-
max-width: 100%;
|
|
9660
|
-
padding: 40px 25px;
|
|
9661
|
-
}
|
|
9662
|
-
}
|
|
9663
|
-
|
|
9664
|
-
igz-info-page-actions-bar {
|
|
9665
|
-
.igz-info-page-actions-bar .actions-content-block {
|
|
9666
|
-
margin-left: 14px;
|
|
9667
|
-
}
|
|
9668
|
-
}
|
|
9669
|
-
|
|
9670
|
-
igz-info-page-content {
|
|
9671
|
-
.info-page-content-color-set();
|
|
9672
|
-
|
|
9673
|
-
.container-data-access-policy-table, .data-lifecycle-table {
|
|
9674
|
-
&.common-table {
|
|
9675
|
-
.common-table-header {
|
|
9676
|
-
position: relative;
|
|
9677
|
-
height: 49px;
|
|
9678
|
-
line-height: 48px;
|
|
9679
|
-
|
|
9680
|
-
.common-table-cell {
|
|
9681
|
-
margin-top: -1px;
|
|
9682
|
-
height: 49px;
|
|
9683
|
-
|
|
9684
|
-
&.selected {
|
|
9685
|
-
background-color: @common-table-cell-selected-bg-color;
|
|
9686
|
-
border: @common-table-cell-selected-border;
|
|
9687
|
-
}
|
|
9688
|
-
|
|
9689
|
-
&:last-child {
|
|
9690
|
-
margin-right: 0;
|
|
9691
|
-
}
|
|
9692
|
-
|
|
9693
|
-
&.actions-menu {
|
|
9694
|
-
width: 0;
|
|
9695
|
-
}
|
|
9696
|
-
|
|
9697
|
-
&.check-all-rows {
|
|
9698
|
-
padding-left: 30px;
|
|
9699
|
-
|
|
9700
|
-
.action-checkbox-all {
|
|
9701
|
-
padding-top: 2px;
|
|
9702
|
-
}
|
|
9703
|
-
}
|
|
9704
|
-
}
|
|
9705
|
-
|
|
9706
|
-
.common-table-cells-container {
|
|
9707
|
-
margin-right: 45px;
|
|
9708
|
-
|
|
9709
|
-
.common-table-cell {
|
|
9710
|
-
height: 49px;
|
|
9711
|
-
padding: 0 15px;
|
|
9712
|
-
border-right: @common-table-cell-border-right;
|
|
9713
|
-
|
|
9714
|
-
&:first-child {
|
|
9715
|
-
padding-left: 7px;
|
|
9716
|
-
}
|
|
9717
|
-
}
|
|
9718
|
-
}
|
|
9719
|
-
}
|
|
9720
|
-
|
|
9721
|
-
.common-table-body {
|
|
9722
|
-
margin-top: 7px;
|
|
9723
|
-
|
|
9724
|
-
.common-table-cell {
|
|
9725
|
-
&.actions-menu {
|
|
9726
|
-
width: 45px;
|
|
9727
|
-
}
|
|
9728
|
-
}
|
|
9729
|
-
}
|
|
9730
|
-
|
|
9731
|
-
.data-access-policy-layers, .data-lifecycle-layers {
|
|
9732
|
-
&:last-child {
|
|
9733
|
-
margin-bottom: 20px;
|
|
9734
|
-
}
|
|
9735
|
-
}
|
|
9736
|
-
}
|
|
9737
|
-
|
|
9738
|
-
.sortable-empty {
|
|
9739
|
-
background-color: @sortable-empty-bg-color;
|
|
9740
|
-
color: @sortable-empty-color;
|
|
9741
|
-
font-size: 14px;
|
|
9742
|
-
font-weight: 400;
|
|
9743
|
-
font-family: 'Open Sans', sans-serif;
|
|
9744
|
-
border-bottom: @sortable-empty-border;
|
|
9745
|
-
border-left: @sortable-empty-border;
|
|
9746
|
-
border-right: @sortable-empty-border;
|
|
9747
|
-
padding-left: 70px;
|
|
9748
|
-
height: 40px;
|
|
9749
|
-
line-height: 38px;
|
|
9750
|
-
}
|
|
9751
|
-
}
|
|
9752
|
-
}
|
|
9753
|
-
|
|
9754
|
-
|
|
9755
9755
|
ncl-breadcrumbs {
|
|
9756
9756
|
.main-header-title {
|
|
9757
9757
|
&:not(.disable-behavior) {
|
|
@@ -9921,44 +9921,6 @@ ncl-breadcrumbs {
|
|
|
9921
9921
|
}
|
|
9922
9922
|
}
|
|
9923
9923
|
|
|
9924
|
-
.ncl-deploy-log-wrapper {
|
|
9925
|
-
.log-panel {
|
|
9926
|
-
.logs-common();
|
|
9927
|
-
background-color: @dark-grey;
|
|
9928
|
-
color: @light-grey-three;
|
|
9929
|
-
padding: 5px;
|
|
9930
|
-
margin: 21px 0 0 4px;
|
|
9931
|
-
min-height: 280px;
|
|
9932
|
-
max-height: 280px;
|
|
9933
|
-
height: 280px;
|
|
9934
|
-
|
|
9935
|
-
.log-entry {
|
|
9936
|
-
.log-entry-time {
|
|
9937
|
-
color: @solid-grey;
|
|
9938
|
-
}
|
|
9939
|
-
|
|
9940
|
-
.log-entry-level-debug{
|
|
9941
|
-
color: @dusty-blue;
|
|
9942
|
-
}
|
|
9943
|
-
|
|
9944
|
-
.log-entry-level-info {
|
|
9945
|
-
color: @cloudy-blue;
|
|
9946
|
-
}
|
|
9947
|
-
|
|
9948
|
-
.log-entry-level-warn{
|
|
9949
|
-
color: @sunflower-yellow;
|
|
9950
|
-
}
|
|
9951
|
-
|
|
9952
|
-
.log-entry-level-error {
|
|
9953
|
-
color: @darkish-pink;
|
|
9954
|
-
}
|
|
9955
|
-
|
|
9956
|
-
.log-entry-message {
|
|
9957
|
-
font-weight: 600;
|
|
9958
|
-
}
|
|
9959
|
-
}
|
|
9960
|
-
}
|
|
9961
|
-
}
|
|
9962
9924
|
.ncl-collapsing-row {
|
|
9963
9925
|
margin-bottom: 9px;
|
|
9964
9926
|
|
|
@@ -10082,6 +10044,44 @@ ncl-breadcrumbs {
|
|
|
10082
10044
|
}
|
|
10083
10045
|
}
|
|
10084
10046
|
|
|
10047
|
+
.ncl-deploy-log-wrapper {
|
|
10048
|
+
.log-panel {
|
|
10049
|
+
.logs-common();
|
|
10050
|
+
background-color: @dark-grey;
|
|
10051
|
+
color: @light-grey-three;
|
|
10052
|
+
padding: 5px;
|
|
10053
|
+
margin: 21px 0 0 4px;
|
|
10054
|
+
min-height: 280px;
|
|
10055
|
+
max-height: 280px;
|
|
10056
|
+
height: 280px;
|
|
10057
|
+
|
|
10058
|
+
.log-entry {
|
|
10059
|
+
.log-entry-time {
|
|
10060
|
+
color: @solid-grey;
|
|
10061
|
+
}
|
|
10062
|
+
|
|
10063
|
+
.log-entry-level-debug{
|
|
10064
|
+
color: @dusty-blue;
|
|
10065
|
+
}
|
|
10066
|
+
|
|
10067
|
+
.log-entry-level-info {
|
|
10068
|
+
color: @cloudy-blue;
|
|
10069
|
+
}
|
|
10070
|
+
|
|
10071
|
+
.log-entry-level-warn{
|
|
10072
|
+
color: @sunflower-yellow;
|
|
10073
|
+
}
|
|
10074
|
+
|
|
10075
|
+
.log-entry-level-error {
|
|
10076
|
+
color: @darkish-pink;
|
|
10077
|
+
}
|
|
10078
|
+
|
|
10079
|
+
.log-entry-message {
|
|
10080
|
+
font-weight: 600;
|
|
10081
|
+
}
|
|
10082
|
+
}
|
|
10083
|
+
}
|
|
10084
|
+
}
|
|
10085
10085
|
.view-yaml-dialog-wrapper {
|
|
10086
10086
|
.ngdialog-content {
|
|
10087
10087
|
.view-yaml-dialog-header {
|
|
@@ -10410,25 +10410,95 @@ ncl-breadcrumbs {
|
|
|
10410
10410
|
border: 1px solid @pale-grey;
|
|
10411
10411
|
background-color: @white;
|
|
10412
10412
|
|
|
10413
|
-
&.no-top-padding {
|
|
10414
|
-
padding-top: 0;
|
|
10415
|
-
}
|
|
10413
|
+
&.no-top-padding {
|
|
10414
|
+
padding-top: 0;
|
|
10415
|
+
}
|
|
10416
|
+
|
|
10417
|
+
.ncl-monaco-top-row {
|
|
10418
|
+
display: block;
|
|
10419
|
+
}
|
|
10420
|
+
|
|
10421
|
+
.ncl-monaco-editor {
|
|
10422
|
+
height: 100%;
|
|
10423
|
+
}
|
|
10424
|
+
}
|
|
10425
|
+
|
|
10426
|
+
.ncl-monaco-dark {
|
|
10427
|
+
background-color: @vs-dark;
|
|
10428
|
+
}
|
|
10429
|
+
}
|
|
10430
|
+
|
|
10431
|
+
|
|
10432
|
+
.ncl-search-input {
|
|
10433
|
+
position: relative;
|
|
10434
|
+
color: @silver;
|
|
10435
|
+
|
|
10436
|
+
.container-search-input {
|
|
10437
|
+
background-color: transparent;
|
|
10438
|
+
border-bottom: 1px solid @silver;
|
|
10439
|
+
font-size: 13px;
|
|
10440
|
+
font-weight: 400;
|
|
10441
|
+
height: 36px;
|
|
10442
|
+
line-height: 36px;
|
|
10443
|
+
margin: 0;
|
|
10444
|
+
outline: 0;
|
|
10445
|
+
padding: 0 0 3px 31px;
|
|
10446
|
+
width: 100%;
|
|
10447
|
+
|
|
10448
|
+
&::-webkit-input-placeholder {
|
|
10449
|
+
color: @silver;
|
|
10450
|
+
}
|
|
10451
|
+
|
|
10452
|
+
&:-moz-placeholder { /* Firefox 18- */
|
|
10453
|
+
color: @silver;
|
|
10454
|
+
}
|
|
10455
|
+
|
|
10456
|
+
&::-moz-placeholder { /* Firefox 19+ */
|
|
10457
|
+
color: @silver;
|
|
10458
|
+
}
|
|
10459
|
+
|
|
10460
|
+
&:-ms-input-placeholder {
|
|
10461
|
+
color: @silver;
|
|
10462
|
+
}
|
|
10463
|
+
|
|
10464
|
+
&:focus {
|
|
10465
|
+
border-bottom: 1px solid @light-blue;
|
|
10466
|
+
|
|
10467
|
+
&, & + .igz-icon-search:before {
|
|
10468
|
+
color: @dusk-three;
|
|
10469
|
+
}
|
|
10470
|
+
|
|
10471
|
+
&::-webkit-input-placeholder {
|
|
10472
|
+
color: transparent;
|
|
10473
|
+
}
|
|
10474
|
+
|
|
10475
|
+
&:-moz-placeholder { /* Firefox 18- */
|
|
10476
|
+
color: transparent;
|
|
10477
|
+
}
|
|
10478
|
+
|
|
10479
|
+
&::-moz-placeholder { /* Firefox 19+ */
|
|
10480
|
+
color: transparent;
|
|
10481
|
+
}
|
|
10416
10482
|
|
|
10417
|
-
|
|
10418
|
-
|
|
10483
|
+
&:-ms-input-placeholder {
|
|
10484
|
+
color: transparent;
|
|
10485
|
+
}
|
|
10419
10486
|
}
|
|
10487
|
+
}
|
|
10420
10488
|
|
|
10421
|
-
|
|
10422
|
-
|
|
10423
|
-
|
|
10489
|
+
.igz-icon-search {
|
|
10490
|
+
font-size: 18px;
|
|
10491
|
+
position: absolute;
|
|
10492
|
+
left: 8px;
|
|
10493
|
+
top: 5px;
|
|
10494
|
+
z-index: 1;
|
|
10495
|
+
color: @silver;
|
|
10424
10496
|
}
|
|
10425
10497
|
|
|
10426
|
-
|
|
10427
|
-
|
|
10498
|
+
input::-ms-clear {
|
|
10499
|
+
display: none;
|
|
10428
10500
|
}
|
|
10429
10501
|
}
|
|
10430
|
-
|
|
10431
|
-
|
|
10432
10502
|
ncl-navigation-tabs {
|
|
10433
10503
|
.ncl-navigation-tabs-color-set();
|
|
10434
10504
|
|
|
@@ -10590,76 +10660,6 @@ ncl-navigation-tabs {
|
|
|
10590
10660
|
}
|
|
10591
10661
|
}
|
|
10592
10662
|
|
|
10593
|
-
.ncl-search-input {
|
|
10594
|
-
position: relative;
|
|
10595
|
-
color: @silver;
|
|
10596
|
-
|
|
10597
|
-
.container-search-input {
|
|
10598
|
-
background-color: transparent;
|
|
10599
|
-
border-bottom: 1px solid @silver;
|
|
10600
|
-
font-size: 13px;
|
|
10601
|
-
font-weight: 400;
|
|
10602
|
-
height: 36px;
|
|
10603
|
-
line-height: 36px;
|
|
10604
|
-
margin: 0;
|
|
10605
|
-
outline: 0;
|
|
10606
|
-
padding: 0 0 3px 31px;
|
|
10607
|
-
width: 100%;
|
|
10608
|
-
|
|
10609
|
-
&::-webkit-input-placeholder {
|
|
10610
|
-
color: @silver;
|
|
10611
|
-
}
|
|
10612
|
-
|
|
10613
|
-
&:-moz-placeholder { /* Firefox 18- */
|
|
10614
|
-
color: @silver;
|
|
10615
|
-
}
|
|
10616
|
-
|
|
10617
|
-
&::-moz-placeholder { /* Firefox 19+ */
|
|
10618
|
-
color: @silver;
|
|
10619
|
-
}
|
|
10620
|
-
|
|
10621
|
-
&:-ms-input-placeholder {
|
|
10622
|
-
color: @silver;
|
|
10623
|
-
}
|
|
10624
|
-
|
|
10625
|
-
&:focus {
|
|
10626
|
-
border-bottom: 1px solid @light-blue;
|
|
10627
|
-
|
|
10628
|
-
&, & + .igz-icon-search:before {
|
|
10629
|
-
color: @dusk-three;
|
|
10630
|
-
}
|
|
10631
|
-
|
|
10632
|
-
&::-webkit-input-placeholder {
|
|
10633
|
-
color: transparent;
|
|
10634
|
-
}
|
|
10635
|
-
|
|
10636
|
-
&:-moz-placeholder { /* Firefox 18- */
|
|
10637
|
-
color: transparent;
|
|
10638
|
-
}
|
|
10639
|
-
|
|
10640
|
-
&::-moz-placeholder { /* Firefox 19+ */
|
|
10641
|
-
color: transparent;
|
|
10642
|
-
}
|
|
10643
|
-
|
|
10644
|
-
&:-ms-input-placeholder {
|
|
10645
|
-
color: transparent;
|
|
10646
|
-
}
|
|
10647
|
-
}
|
|
10648
|
-
}
|
|
10649
|
-
|
|
10650
|
-
.igz-icon-search {
|
|
10651
|
-
font-size: 18px;
|
|
10652
|
-
position: absolute;
|
|
10653
|
-
left: 8px;
|
|
10654
|
-
top: 5px;
|
|
10655
|
-
z-index: 1;
|
|
10656
|
-
color: @silver;
|
|
10657
|
-
}
|
|
10658
|
-
|
|
10659
|
-
input::-ms-clear {
|
|
10660
|
-
display: none;
|
|
10661
|
-
}
|
|
10662
|
-
}
|
|
10663
10663
|
.new-function-wrapper {
|
|
10664
10664
|
.ncl-new-function-color-set();
|
|
10665
10665
|
|
|
@@ -10883,6 +10883,91 @@ ncl-navigation-tabs {
|
|
|
10883
10883
|
}
|
|
10884
10884
|
}
|
|
10885
10885
|
|
|
10886
|
+
.function-event-wrapper {
|
|
10887
|
+
width: 600px;
|
|
10888
|
+
margin-bottom: -23px;
|
|
10889
|
+
|
|
10890
|
+
.header {
|
|
10891
|
+
display: flex;
|
|
10892
|
+
justify-content: space-between;
|
|
10893
|
+
border-bottom: 1px solid @pale-grey;
|
|
10894
|
+
|
|
10895
|
+
.title {
|
|
10896
|
+
font-size: 18px;
|
|
10897
|
+
}
|
|
10898
|
+
}
|
|
10899
|
+
|
|
10900
|
+
.content {
|
|
10901
|
+
border-bottom: 1px solid @pale-grey;
|
|
10902
|
+
padding: 16px 0 16px 16px;
|
|
10903
|
+
|
|
10904
|
+
.event-form {
|
|
10905
|
+
width: 88%;
|
|
10906
|
+
|
|
10907
|
+
.field-wrapper {
|
|
10908
|
+
display: flex;
|
|
10909
|
+
align-items: center;
|
|
10910
|
+
margin: 15px 0 0 0;
|
|
10911
|
+
|
|
10912
|
+
.field-label {
|
|
10913
|
+
font-size: 16px;
|
|
10914
|
+
margin-right: 10px;
|
|
10915
|
+
width: 195px;
|
|
10916
|
+
}
|
|
10917
|
+
|
|
10918
|
+
.field-content {
|
|
10919
|
+
width: 100%;
|
|
10920
|
+
|
|
10921
|
+
.ncl-monaco {
|
|
10922
|
+
height: 200px;
|
|
10923
|
+
}
|
|
10924
|
+
|
|
10925
|
+
.event-body {
|
|
10926
|
+
font-size: 13px;
|
|
10927
|
+
outline: none;
|
|
10928
|
+
border: 1px solid @pale-grey;
|
|
10929
|
+
resize: none;
|
|
10930
|
+
width: 100%;
|
|
10931
|
+
height: 100px;
|
|
10932
|
+
padding: 5px 5px 5px 16px;
|
|
10933
|
+
}
|
|
10934
|
+
}
|
|
10935
|
+
}
|
|
10936
|
+
}
|
|
10937
|
+
|
|
10938
|
+
.event-error {
|
|
10939
|
+
display: flex;
|
|
10940
|
+
font-size: 13px;
|
|
10941
|
+
align-items: center;
|
|
10942
|
+
justify-content: center;
|
|
10943
|
+
color: @darkish-pink;
|
|
10944
|
+
}
|
|
10945
|
+
}
|
|
10946
|
+
|
|
10947
|
+
.bottom-bar {
|
|
10948
|
+
height: 64px;
|
|
10949
|
+
display: flex;
|
|
10950
|
+
align-items: center;
|
|
10951
|
+
justify-content: flex-end;
|
|
10952
|
+
|
|
10953
|
+
.igz-button-primary {
|
|
10954
|
+
&.disabled {
|
|
10955
|
+
color: rgba(71, 64, 86, 0.24);
|
|
10956
|
+
border-radius: 2px;
|
|
10957
|
+
border: solid 1px #f3f3f6;
|
|
10958
|
+
background-color: #f3f3f6;
|
|
10959
|
+
cursor: default;
|
|
10960
|
+
display: inline-block;
|
|
10961
|
+
|
|
10962
|
+
&:hover {
|
|
10963
|
+
box-shadow: none;
|
|
10964
|
+
border: none;
|
|
10965
|
+
}
|
|
10966
|
+
}
|
|
10967
|
+
}
|
|
10968
|
+
}
|
|
10969
|
+
}
|
|
10970
|
+
|
|
10886
10971
|
.ncl-edit-version-code {
|
|
10887
10972
|
height: 100%;
|
|
10888
10973
|
display: flex;
|
|
@@ -11244,124 +11329,39 @@ ncl-navigation-tabs {
|
|
|
11244
11329
|
|
|
11245
11330
|
.ncl-monitoring-build-logger {
|
|
11246
11331
|
.monitoring-block-title {
|
|
11247
|
-
margin-left: 5px;
|
|
11248
|
-
}
|
|
11249
|
-
|
|
11250
|
-
.ncl-monitoring-build-logs {
|
|
11251
|
-
padding: 0 0 7px 4px;
|
|
11252
|
-
|
|
11253
|
-
&.collapsing {
|
|
11254
|
-
transition-duration: 150ms;
|
|
11255
|
-
}
|
|
11256
|
-
}
|
|
11257
|
-
}
|
|
11258
|
-
|
|
11259
|
-
.ncl-monitoring-error-logger {
|
|
11260
|
-
max-height: 335px;
|
|
11261
|
-
|
|
11262
|
-
.monitoring-block-title {
|
|
11263
|
-
margin-left: 5px;
|
|
11264
|
-
}
|
|
11265
|
-
|
|
11266
|
-
.ncl-monitoring-error-logs {
|
|
11267
|
-
padding: 0 0 7px 4px;
|
|
11268
|
-
|
|
11269
|
-
&.collapsing {
|
|
11270
|
-
transition-duration: 150ms;
|
|
11271
|
-
}
|
|
11272
|
-
|
|
11273
|
-
.error-panel {
|
|
11274
|
-
.logs-common();
|
|
11275
|
-
color: @dusk-three;
|
|
11276
|
-
padding: 5px;
|
|
11277
|
-
margin-left: 24px;
|
|
11278
|
-
max-height: 232px;
|
|
11279
|
-
}
|
|
11280
|
-
}
|
|
11281
|
-
}
|
|
11282
|
-
}
|
|
11283
|
-
}
|
|
11284
|
-
}
|
|
11285
|
-
|
|
11286
|
-
.function-event-wrapper {
|
|
11287
|
-
width: 600px;
|
|
11288
|
-
margin-bottom: -23px;
|
|
11289
|
-
|
|
11290
|
-
.header {
|
|
11291
|
-
display: flex;
|
|
11292
|
-
justify-content: space-between;
|
|
11293
|
-
border-bottom: 1px solid @pale-grey;
|
|
11294
|
-
|
|
11295
|
-
.title {
|
|
11296
|
-
font-size: 18px;
|
|
11297
|
-
}
|
|
11298
|
-
}
|
|
11299
|
-
|
|
11300
|
-
.content {
|
|
11301
|
-
border-bottom: 1px solid @pale-grey;
|
|
11302
|
-
padding: 16px 0 16px 16px;
|
|
11303
|
-
|
|
11304
|
-
.event-form {
|
|
11305
|
-
width: 88%;
|
|
11306
|
-
|
|
11307
|
-
.field-wrapper {
|
|
11308
|
-
display: flex;
|
|
11309
|
-
align-items: center;
|
|
11310
|
-
margin: 15px 0 0 0;
|
|
11311
|
-
|
|
11312
|
-
.field-label {
|
|
11313
|
-
font-size: 16px;
|
|
11314
|
-
margin-right: 10px;
|
|
11315
|
-
width: 195px;
|
|
11316
|
-
}
|
|
11317
|
-
|
|
11318
|
-
.field-content {
|
|
11319
|
-
width: 100%;
|
|
11332
|
+
margin-left: 5px;
|
|
11333
|
+
}
|
|
11320
11334
|
|
|
11321
|
-
|
|
11322
|
-
|
|
11323
|
-
}
|
|
11335
|
+
.ncl-monitoring-build-logs {
|
|
11336
|
+
padding: 0 0 7px 4px;
|
|
11324
11337
|
|
|
11325
|
-
|
|
11326
|
-
|
|
11327
|
-
outline: none;
|
|
11328
|
-
border: 1px solid @pale-grey;
|
|
11329
|
-
resize: none;
|
|
11330
|
-
width: 100%;
|
|
11331
|
-
height: 100px;
|
|
11332
|
-
padding: 5px 5px 5px 16px;
|
|
11338
|
+
&.collapsing {
|
|
11339
|
+
transition-duration: 150ms;
|
|
11333
11340
|
}
|
|
11334
11341
|
}
|
|
11335
11342
|
}
|
|
11336
|
-
}
|
|
11337
11343
|
|
|
11338
|
-
|
|
11339
|
-
|
|
11340
|
-
font-size: 13px;
|
|
11341
|
-
align-items: center;
|
|
11342
|
-
justify-content: center;
|
|
11343
|
-
color: @darkish-pink;
|
|
11344
|
-
}
|
|
11345
|
-
}
|
|
11344
|
+
.ncl-monitoring-error-logger {
|
|
11345
|
+
max-height: 335px;
|
|
11346
11346
|
|
|
11347
|
-
|
|
11348
|
-
|
|
11349
|
-
|
|
11350
|
-
align-items: center;
|
|
11351
|
-
justify-content: flex-end;
|
|
11347
|
+
.monitoring-block-title {
|
|
11348
|
+
margin-left: 5px;
|
|
11349
|
+
}
|
|
11352
11350
|
|
|
11353
|
-
|
|
11354
|
-
|
|
11355
|
-
color: rgba(71, 64, 86, 0.24);
|
|
11356
|
-
border-radius: 2px;
|
|
11357
|
-
border: solid 1px #f3f3f6;
|
|
11358
|
-
background-color: #f3f3f6;
|
|
11359
|
-
cursor: default;
|
|
11360
|
-
display: inline-block;
|
|
11351
|
+
.ncl-monitoring-error-logs {
|
|
11352
|
+
padding: 0 0 7px 4px;
|
|
11361
11353
|
|
|
11362
|
-
|
|
11363
|
-
|
|
11364
|
-
|
|
11354
|
+
&.collapsing {
|
|
11355
|
+
transition-duration: 150ms;
|
|
11356
|
+
}
|
|
11357
|
+
|
|
11358
|
+
.error-panel {
|
|
11359
|
+
.logs-common();
|
|
11360
|
+
color: @dusk-three;
|
|
11361
|
+
padding: 5px;
|
|
11362
|
+
margin-left: 24px;
|
|
11363
|
+
max-height: 232px;
|
|
11364
|
+
}
|
|
11365
11365
|
}
|
|
11366
11366
|
}
|
|
11367
11367
|
}
|
|
@@ -11437,6 +11437,105 @@ ncl-navigation-tabs {
|
|
|
11437
11437
|
}
|
|
11438
11438
|
}
|
|
11439
11439
|
|
|
11440
|
+
.function-from-scratch-content {
|
|
11441
|
+
.splash-screen {
|
|
11442
|
+
top: 0;
|
|
11443
|
+
}
|
|
11444
|
+
|
|
11445
|
+
.title-wrapper {
|
|
11446
|
+
margin-left: 50px;
|
|
11447
|
+
|
|
11448
|
+
.title {
|
|
11449
|
+
color: @dusk-three;
|
|
11450
|
+
font-size: 16px;
|
|
11451
|
+
font-weight: bold;
|
|
11452
|
+
}
|
|
11453
|
+
}
|
|
11454
|
+
|
|
11455
|
+
.function-configuration {
|
|
11456
|
+
margin: 28px 0 0 0;
|
|
11457
|
+
|
|
11458
|
+
.configuration-form {
|
|
11459
|
+
display: flex;
|
|
11460
|
+
|
|
11461
|
+
.function-name-wrapper {
|
|
11462
|
+
width: 50%;
|
|
11463
|
+
display: flex;
|
|
11464
|
+
padding: 0 24px 0 74px;
|
|
11465
|
+
|
|
11466
|
+
.projects-drop-down {
|
|
11467
|
+
width: 40%;
|
|
11468
|
+
margin-right: 48px;
|
|
11469
|
+
|
|
11470
|
+
.input-label {
|
|
11471
|
+
font-size: 14px;
|
|
11472
|
+
font-weight: 600;
|
|
11473
|
+
color: @dusk-three;
|
|
11474
|
+
}
|
|
11475
|
+
|
|
11476
|
+
igz-default-dropdown {
|
|
11477
|
+
.default-dropdown {
|
|
11478
|
+
background-color: @white;
|
|
11479
|
+
|
|
11480
|
+
.default-dropdown-field {
|
|
11481
|
+
&:focus {
|
|
11482
|
+
background-color: inherit;
|
|
11483
|
+
}
|
|
11484
|
+
}
|
|
11485
|
+
}
|
|
11486
|
+
}
|
|
11487
|
+
}
|
|
11488
|
+
|
|
11489
|
+
.function-name {
|
|
11490
|
+
width: 100%;
|
|
11491
|
+
|
|
11492
|
+
.input-label {
|
|
11493
|
+
font-size: 14px;
|
|
11494
|
+
font-weight: 600;
|
|
11495
|
+
color: @dusk-three;
|
|
11496
|
+
}
|
|
11497
|
+
|
|
11498
|
+
igz-validating-input-field {
|
|
11499
|
+
margin-left: 2px;
|
|
11500
|
+
}
|
|
11501
|
+
}
|
|
11502
|
+
}
|
|
11503
|
+
|
|
11504
|
+
.function-runtime-wrapper {
|
|
11505
|
+
width: 50%;
|
|
11506
|
+
padding-left: 24px;
|
|
11507
|
+
padding-right: 10%;
|
|
11508
|
+
|
|
11509
|
+
.function-runtime {
|
|
11510
|
+
.input-label {
|
|
11511
|
+
font-size: 14px;
|
|
11512
|
+
font-weight: 600;
|
|
11513
|
+
color: @dusk-three;
|
|
11514
|
+
}
|
|
11515
|
+
|
|
11516
|
+
igz-default-dropdown {
|
|
11517
|
+
.default-dropdown {
|
|
11518
|
+
background-color: @white;
|
|
11519
|
+
|
|
11520
|
+
.default-dropdown-field {
|
|
11521
|
+
&:focus {
|
|
11522
|
+
background-color: inherit;
|
|
11523
|
+
}
|
|
11524
|
+
}
|
|
11525
|
+
}
|
|
11526
|
+
}
|
|
11527
|
+
|
|
11528
|
+
.bottom-bar {
|
|
11529
|
+
display: flex;
|
|
11530
|
+
justify-content: flex-end;
|
|
11531
|
+
margin-top: 48px;
|
|
11532
|
+
}
|
|
11533
|
+
}
|
|
11534
|
+
}
|
|
11535
|
+
}
|
|
11536
|
+
}
|
|
11537
|
+
}
|
|
11538
|
+
|
|
11440
11539
|
.function-from-template-content {
|
|
11441
11540
|
.ncl-function-from-template-color-set();
|
|
11442
11541
|
|
|
@@ -11677,121 +11776,22 @@ ncl-navigation-tabs {
|
|
|
11677
11776
|
font-size: 18px;
|
|
11678
11777
|
font-weight: bold;
|
|
11679
11778
|
width: 100%;
|
|
11680
|
-
margin-bottom: 15px;
|
|
11681
|
-
}
|
|
11682
|
-
|
|
11683
|
-
.template-description {
|
|
11684
|
-
width: 100%;
|
|
11685
|
-
max-height: 62px;
|
|
11686
|
-
font-size: 14px;
|
|
11687
|
-
overflow: hidden;
|
|
11688
|
-
}
|
|
11689
|
-
|
|
11690
|
-
.template-read-more {
|
|
11691
|
-
color: @greyish-purple;
|
|
11692
|
-
font-style: italic;
|
|
11693
|
-
}
|
|
11694
|
-
}
|
|
11695
|
-
}
|
|
11696
|
-
}
|
|
11697
|
-
}
|
|
11698
|
-
}
|
|
11699
|
-
}
|
|
11700
|
-
}
|
|
11701
|
-
|
|
11702
|
-
.function-from-scratch-content {
|
|
11703
|
-
.splash-screen {
|
|
11704
|
-
top: 0;
|
|
11705
|
-
}
|
|
11706
|
-
|
|
11707
|
-
.title-wrapper {
|
|
11708
|
-
margin-left: 50px;
|
|
11709
|
-
|
|
11710
|
-
.title {
|
|
11711
|
-
color: @dusk-three;
|
|
11712
|
-
font-size: 16px;
|
|
11713
|
-
font-weight: bold;
|
|
11714
|
-
}
|
|
11715
|
-
}
|
|
11716
|
-
|
|
11717
|
-
.function-configuration {
|
|
11718
|
-
margin: 28px 0 0 0;
|
|
11719
|
-
|
|
11720
|
-
.configuration-form {
|
|
11721
|
-
display: flex;
|
|
11722
|
-
|
|
11723
|
-
.function-name-wrapper {
|
|
11724
|
-
width: 50%;
|
|
11725
|
-
display: flex;
|
|
11726
|
-
padding: 0 24px 0 74px;
|
|
11727
|
-
|
|
11728
|
-
.projects-drop-down {
|
|
11729
|
-
width: 40%;
|
|
11730
|
-
margin-right: 48px;
|
|
11731
|
-
|
|
11732
|
-
.input-label {
|
|
11733
|
-
font-size: 14px;
|
|
11734
|
-
font-weight: 600;
|
|
11735
|
-
color: @dusk-three;
|
|
11736
|
-
}
|
|
11737
|
-
|
|
11738
|
-
igz-default-dropdown {
|
|
11739
|
-
.default-dropdown {
|
|
11740
|
-
background-color: @white;
|
|
11741
|
-
|
|
11742
|
-
.default-dropdown-field {
|
|
11743
|
-
&:focus {
|
|
11744
|
-
background-color: inherit;
|
|
11745
|
-
}
|
|
11746
|
-
}
|
|
11747
|
-
}
|
|
11748
|
-
}
|
|
11749
|
-
}
|
|
11750
|
-
|
|
11751
|
-
.function-name {
|
|
11752
|
-
width: 100%;
|
|
11753
|
-
|
|
11754
|
-
.input-label {
|
|
11755
|
-
font-size: 14px;
|
|
11756
|
-
font-weight: 600;
|
|
11757
|
-
color: @dusk-three;
|
|
11758
|
-
}
|
|
11759
|
-
|
|
11760
|
-
igz-validating-input-field {
|
|
11761
|
-
margin-left: 2px;
|
|
11762
|
-
}
|
|
11763
|
-
}
|
|
11764
|
-
}
|
|
11765
|
-
|
|
11766
|
-
.function-runtime-wrapper {
|
|
11767
|
-
width: 50%;
|
|
11768
|
-
padding-left: 24px;
|
|
11769
|
-
padding-right: 10%;
|
|
11770
|
-
|
|
11771
|
-
.function-runtime {
|
|
11772
|
-
.input-label {
|
|
11773
|
-
font-size: 14px;
|
|
11774
|
-
font-weight: 600;
|
|
11775
|
-
color: @dusk-three;
|
|
11776
|
-
}
|
|
11779
|
+
margin-bottom: 15px;
|
|
11780
|
+
}
|
|
11777
11781
|
|
|
11778
|
-
|
|
11779
|
-
|
|
11780
|
-
|
|
11782
|
+
.template-description {
|
|
11783
|
+
width: 100%;
|
|
11784
|
+
max-height: 62px;
|
|
11785
|
+
font-size: 14px;
|
|
11786
|
+
overflow: hidden;
|
|
11787
|
+
}
|
|
11781
11788
|
|
|
11782
|
-
.
|
|
11783
|
-
|
|
11784
|
-
|
|
11785
|
-
}
|
|
11789
|
+
.template-read-more {
|
|
11790
|
+
color: @greyish-purple;
|
|
11791
|
+
font-style: italic;
|
|
11786
11792
|
}
|
|
11787
11793
|
}
|
|
11788
11794
|
}
|
|
11789
|
-
|
|
11790
|
-
.bottom-bar {
|
|
11791
|
-
display: flex;
|
|
11792
|
-
justify-content: flex-end;
|
|
11793
|
-
margin-top: 48px;
|
|
11794
|
-
}
|
|
11795
11795
|
}
|
|
11796
11796
|
}
|
|
11797
11797
|
}
|
|
@@ -12592,71 +12592,6 @@ ncl-navigation-tabs {
|
|
|
12592
12592
|
}
|
|
12593
12593
|
}
|
|
12594
12594
|
|
|
12595
|
-
.ncl-test-events-navigation-tabs {
|
|
12596
|
-
display: flex;
|
|
12597
|
-
background: #f8f8fb;
|
|
12598
|
-
height: 40px;
|
|
12599
|
-
border-top: 1px solid @pale-grey;
|
|
12600
|
-
border-bottom: 1px solid @pale-grey;
|
|
12601
|
-
|
|
12602
|
-
.test-events-navigation-tab {
|
|
12603
|
-
.duskThree(0.64);
|
|
12604
|
-
position: relative;
|
|
12605
|
-
float: left;
|
|
12606
|
-
height: 27px;
|
|
12607
|
-
padding: 10px 40px 0;
|
|
12608
|
-
font-family: @font-family-sans-serif;
|
|
12609
|
-
color: @color;
|
|
12610
|
-
font-size: 13px;
|
|
12611
|
-
text-align: center;
|
|
12612
|
-
cursor: pointer;
|
|
12613
|
-
border-bottom: none;
|
|
12614
|
-
box-sizing: content-box;
|
|
12615
|
-
|
|
12616
|
-
&.active, &.active:hover {
|
|
12617
|
-
background: none;
|
|
12618
|
-
color: @dusk-three;
|
|
12619
|
-
border-bottom: 2px solid @dusk-three;
|
|
12620
|
-
font-weight: bold;
|
|
12621
|
-
|
|
12622
|
-
.badge {
|
|
12623
|
-
color: @white;
|
|
12624
|
-
background-color: @light-grey-blue;
|
|
12625
|
-
}
|
|
12626
|
-
}
|
|
12627
|
-
|
|
12628
|
-
.badge {
|
|
12629
|
-
display: inline-block;
|
|
12630
|
-
min-width: 22px;
|
|
12631
|
-
padding: 3px 7px;
|
|
12632
|
-
font-size: 12px;
|
|
12633
|
-
font-weight: 500;
|
|
12634
|
-
color: @greyish-purple;
|
|
12635
|
-
line-height: 1;
|
|
12636
|
-
vertical-align: middle;
|
|
12637
|
-
white-space: nowrap;
|
|
12638
|
-
text-align: center;
|
|
12639
|
-
background-color: @pale-grey;
|
|
12640
|
-
border-radius: 7.5px;
|
|
12641
|
-
margin-left: 7px;
|
|
12642
|
-
margin-top: -4px;
|
|
12643
|
-
}
|
|
12644
|
-
}
|
|
12645
|
-
|
|
12646
|
-
.default-dropdown {
|
|
12647
|
-
float: left;
|
|
12648
|
-
width: 105px;
|
|
12649
|
-
|
|
12650
|
-
.default-dropdown-field:not(:hover) {
|
|
12651
|
-
border-color: transparent;
|
|
12652
|
-
}
|
|
12653
|
-
|
|
12654
|
-
.default-dropdown-container {
|
|
12655
|
-
z-index: 3;
|
|
12656
|
-
}
|
|
12657
|
-
}
|
|
12658
|
-
}
|
|
12659
|
-
|
|
12660
12595
|
.ncl-test-events-logs {
|
|
12661
12596
|
padding: 6px 17px 25px;
|
|
12662
12597
|
background-color: @white;
|
|
@@ -12829,63 +12764,224 @@ ncl-navigation-tabs {
|
|
|
12829
12764
|
}
|
|
12830
12765
|
}
|
|
12831
12766
|
|
|
12832
|
-
.expanded-body {
|
|
12833
|
-
font-size: 14px;
|
|
12834
|
-
color: @dusk-three;
|
|
12767
|
+
.expanded-body {
|
|
12768
|
+
font-size: 14px;
|
|
12769
|
+
color: @dusk-three;
|
|
12770
|
+
|
|
12771
|
+
.error {
|
|
12772
|
+
width: 71%;
|
|
12773
|
+
border-radius: 3px;
|
|
12774
|
+
background-color: #fbe5e8;
|
|
12775
|
+
border: solid 1px @darkish-pink;
|
|
12776
|
+
color: @darkish-pink;
|
|
12777
|
+
word-wrap: break-word;
|
|
12778
|
+
margin-left: 62px;
|
|
12779
|
+
padding: 12px;
|
|
12780
|
+
margin-bottom: 16px;
|
|
12781
|
+
}
|
|
12782
|
+
|
|
12783
|
+
.message {
|
|
12784
|
+
display: inline-block;
|
|
12785
|
+
width: 70%;
|
|
12786
|
+
word-wrap: break-word;
|
|
12787
|
+
margin: 0 0 16px 62px;
|
|
12788
|
+
}
|
|
12789
|
+
|
|
12790
|
+
.parameters {
|
|
12791
|
+
padding: 0 62px 16px;
|
|
12792
|
+
|
|
12793
|
+
.parameters-header {
|
|
12794
|
+
font-weight: bold;
|
|
12795
|
+
}
|
|
12796
|
+
|
|
12797
|
+
> div {
|
|
12798
|
+
display: flex;
|
|
12799
|
+
line-height: 2;
|
|
12800
|
+
|
|
12801
|
+
.labels {
|
|
12802
|
+
color: @greyish-purple;
|
|
12803
|
+
font-size: 14px;
|
|
12804
|
+
width: 30%;
|
|
12805
|
+
}
|
|
12806
|
+
|
|
12807
|
+
.values {
|
|
12808
|
+
color: @dusk-three;
|
|
12809
|
+
font-size: 14px;
|
|
12810
|
+
width: 70%;
|
|
12811
|
+
}
|
|
12812
|
+
}
|
|
12813
|
+
}
|
|
12814
|
+
}
|
|
12815
|
+
}
|
|
12816
|
+
|
|
12817
|
+
.no-logs {
|
|
12818
|
+
margin: 10px auto 0;
|
|
12819
|
+
font-size: 14px;
|
|
12820
|
+
color: @pale-grey;
|
|
12821
|
+
text-align: center;
|
|
12822
|
+
}
|
|
12823
|
+
}
|
|
12824
|
+
.ncl-test-events-navigation-tabs {
|
|
12825
|
+
display: flex;
|
|
12826
|
+
background: #f8f8fb;
|
|
12827
|
+
height: 40px;
|
|
12828
|
+
border-top: 1px solid @pale-grey;
|
|
12829
|
+
border-bottom: 1px solid @pale-grey;
|
|
12830
|
+
|
|
12831
|
+
.test-events-navigation-tab {
|
|
12832
|
+
.duskThree(0.64);
|
|
12833
|
+
position: relative;
|
|
12834
|
+
float: left;
|
|
12835
|
+
height: 27px;
|
|
12836
|
+
padding: 10px 40px 0;
|
|
12837
|
+
font-family: @font-family-sans-serif;
|
|
12838
|
+
color: @color;
|
|
12839
|
+
font-size: 13px;
|
|
12840
|
+
text-align: center;
|
|
12841
|
+
cursor: pointer;
|
|
12842
|
+
border-bottom: none;
|
|
12843
|
+
box-sizing: content-box;
|
|
12844
|
+
|
|
12845
|
+
&.active, &.active:hover {
|
|
12846
|
+
background: none;
|
|
12847
|
+
color: @dusk-three;
|
|
12848
|
+
border-bottom: 2px solid @dusk-three;
|
|
12849
|
+
font-weight: bold;
|
|
12850
|
+
|
|
12851
|
+
.badge {
|
|
12852
|
+
color: @white;
|
|
12853
|
+
background-color: @light-grey-blue;
|
|
12854
|
+
}
|
|
12855
|
+
}
|
|
12856
|
+
|
|
12857
|
+
.badge {
|
|
12858
|
+
display: inline-block;
|
|
12859
|
+
min-width: 22px;
|
|
12860
|
+
padding: 3px 7px;
|
|
12861
|
+
font-size: 12px;
|
|
12862
|
+
font-weight: 500;
|
|
12863
|
+
color: @greyish-purple;
|
|
12864
|
+
line-height: 1;
|
|
12865
|
+
vertical-align: middle;
|
|
12866
|
+
white-space: nowrap;
|
|
12867
|
+
text-align: center;
|
|
12868
|
+
background-color: @pale-grey;
|
|
12869
|
+
border-radius: 7.5px;
|
|
12870
|
+
margin-left: 7px;
|
|
12871
|
+
margin-top: -4px;
|
|
12872
|
+
}
|
|
12873
|
+
}
|
|
12874
|
+
|
|
12875
|
+
.default-dropdown {
|
|
12876
|
+
float: left;
|
|
12877
|
+
width: 105px;
|
|
12878
|
+
|
|
12879
|
+
.default-dropdown-field:not(:hover) {
|
|
12880
|
+
border-color: transparent;
|
|
12881
|
+
}
|
|
12882
|
+
|
|
12883
|
+
.default-dropdown-container {
|
|
12884
|
+
z-index: 3;
|
|
12885
|
+
}
|
|
12886
|
+
}
|
|
12887
|
+
}
|
|
12888
|
+
|
|
12889
|
+
@desktop: 1350px;
|
|
12890
|
+
@desktop-low: 1202px;
|
|
12891
|
+
@desktop-middle: 1550px;
|
|
12892
|
+
|
|
12893
|
+
.ncl-version-configuration-basic-settings {
|
|
12894
|
+
.row {
|
|
12895
|
+
display: flex;
|
|
12896
|
+
justify-content: space-between;
|
|
12897
|
+
|
|
12898
|
+
&:not(:last-child) {
|
|
12899
|
+
margin-bottom: 23px;
|
|
12900
|
+
}
|
|
12901
|
+
|
|
12902
|
+
&:last-child {
|
|
12903
|
+
margin-bottom: 4px;
|
|
12904
|
+
}
|
|
12905
|
+
|
|
12906
|
+
&.enable-checkbox {
|
|
12907
|
+
justify-content: flex-start;
|
|
12908
|
+
margin-bottom: 18px;
|
|
12909
|
+
}
|
|
12910
|
+
|
|
12911
|
+
> div {
|
|
12912
|
+
flex: 1;
|
|
12913
|
+
|
|
12914
|
+
&:not(:last-child) {
|
|
12915
|
+
margin-right: 46px;
|
|
12916
|
+
}
|
|
12917
|
+
|
|
12918
|
+
.label {
|
|
12919
|
+
padding: 0;
|
|
12920
|
+
margin-bottom: 5px;
|
|
12921
|
+
}
|
|
12922
|
+
|
|
12923
|
+
&.timeout-block {
|
|
12924
|
+
.label {
|
|
12925
|
+
margin-bottom: 3px;
|
|
12926
|
+
}
|
|
12927
|
+
|
|
12928
|
+
.timeout-values {
|
|
12929
|
+
margin-left: 27px;
|
|
12930
|
+
|
|
12931
|
+
.inputs {
|
|
12932
|
+
display: flex;
|
|
12933
|
+
align-items: center;
|
|
12934
|
+
|
|
12935
|
+
.values-label {
|
|
12936
|
+
.duskThree(0.9);
|
|
12937
|
+
margin: 0 17px 0 8px;
|
|
12938
|
+
font-size: 14px;
|
|
12939
|
+
font-weight: normal;
|
|
12940
|
+
font-style: normal;
|
|
12941
|
+
letter-spacing: normal;
|
|
12942
|
+
text-align: left;
|
|
12943
|
+
color: @color;
|
|
12944
|
+
}
|
|
12945
|
+
}
|
|
12946
|
+
}
|
|
12947
|
+
}
|
|
12948
|
+
}
|
|
12949
|
+
|
|
12950
|
+
.logger-block {
|
|
12951
|
+
display: flex;
|
|
12952
|
+
margin-top: 3px;
|
|
12835
12953
|
|
|
12836
|
-
.
|
|
12837
|
-
|
|
12838
|
-
|
|
12839
|
-
|
|
12840
|
-
border: solid 1px @darkish-pink;
|
|
12841
|
-
color: @darkish-pink;
|
|
12842
|
-
word-wrap: break-word;
|
|
12843
|
-
margin-left: 62px;
|
|
12844
|
-
padding: 12px;
|
|
12845
|
-
margin-bottom: 16px;
|
|
12846
|
-
}
|
|
12954
|
+
.logger-dropdown {
|
|
12955
|
+
.default-dropdown {
|
|
12956
|
+
position: relative;
|
|
12957
|
+
height: 36px;
|
|
12847
12958
|
|
|
12848
|
-
|
|
12849
|
-
|
|
12850
|
-
|
|
12851
|
-
|
|
12852
|
-
margin: 0 0 16px 62px;
|
|
12959
|
+
.dropdown-overlap {
|
|
12960
|
+
z-index: 100;
|
|
12961
|
+
}
|
|
12962
|
+
}
|
|
12853
12963
|
}
|
|
12854
12964
|
|
|
12855
|
-
|
|
12856
|
-
|
|
12965
|
+
> div {
|
|
12966
|
+
flex: 1;
|
|
12857
12967
|
|
|
12858
|
-
|
|
12859
|
-
|
|
12968
|
+
&:not(:last-child) {
|
|
12969
|
+
margin-right: 16px;
|
|
12860
12970
|
}
|
|
12861
12971
|
|
|
12862
|
-
|
|
12863
|
-
|
|
12864
|
-
|
|
12865
|
-
|
|
12866
|
-
.labels {
|
|
12867
|
-
color: @greyish-purple;
|
|
12868
|
-
font-size: 14px;
|
|
12869
|
-
width: 30%;
|
|
12870
|
-
}
|
|
12972
|
+
.label {
|
|
12973
|
+
padding: 0;
|
|
12974
|
+
margin-bottom: 5px;
|
|
12975
|
+
}
|
|
12871
12976
|
|
|
12872
|
-
|
|
12873
|
-
|
|
12874
|
-
font-size: 14px;
|
|
12875
|
-
width: 70%;
|
|
12876
|
-
}
|
|
12977
|
+
&.logger-input {
|
|
12978
|
+
flex-grow: 1.95;
|
|
12877
12979
|
}
|
|
12878
12980
|
}
|
|
12879
12981
|
}
|
|
12880
12982
|
}
|
|
12881
|
-
|
|
12882
|
-
.no-logs {
|
|
12883
|
-
margin: 10px auto 0;
|
|
12884
|
-
font-size: 14px;
|
|
12885
|
-
color: @pale-grey;
|
|
12886
|
-
text-align: center;
|
|
12887
|
-
}
|
|
12888
12983
|
}
|
|
12984
|
+
|
|
12889
12985
|
.ncl-version-configuration-build {
|
|
12890
12986
|
&.disabled {
|
|
12891
12987
|
opacity: .5;
|
|
@@ -13125,109 +13221,70 @@ ncl-navigation-tabs {
|
|
|
13125
13221
|
}
|
|
13126
13222
|
}
|
|
13127
13223
|
|
|
13128
|
-
|
|
13129
|
-
@desktop-low: 1202px;
|
|
13130
|
-
@desktop-middle: 1550px;
|
|
13131
|
-
|
|
13132
|
-
.ncl-version-configuration-basic-settings {
|
|
13224
|
+
.ncl-version-configuration-logging {
|
|
13133
13225
|
.row {
|
|
13134
13226
|
display: flex;
|
|
13135
|
-
|
|
13136
|
-
|
|
13137
|
-
&:not(:last-child) {
|
|
13138
|
-
margin-bottom: 23px;
|
|
13139
|
-
}
|
|
13140
|
-
|
|
13141
|
-
&:last-child {
|
|
13142
|
-
margin-bottom: 4px;
|
|
13143
|
-
}
|
|
13227
|
+
position: relative;
|
|
13144
13228
|
|
|
13145
|
-
|
|
13146
|
-
|
|
13147
|
-
margin-bottom: 18px;
|
|
13229
|
+
.logging-wrapper {
|
|
13230
|
+
width: 100%;
|
|
13148
13231
|
}
|
|
13232
|
+
}
|
|
13233
|
+
}
|
|
13149
13234
|
|
|
13150
|
-
|
|
13151
|
-
flex: 1;
|
|
13235
|
+
@desktop-middle: 1550px;
|
|
13152
13236
|
|
|
13153
|
-
|
|
13154
|
-
|
|
13155
|
-
|
|
13237
|
+
.ncl-version-configuration-resources {
|
|
13238
|
+
.row {
|
|
13239
|
+
.range-inputs-row {
|
|
13240
|
+
display: flex;
|
|
13241
|
+
align-items: flex-end;
|
|
13156
13242
|
|
|
13157
|
-
.
|
|
13158
|
-
|
|
13159
|
-
margin-bottom: 5px;
|
|
13243
|
+
.row-title {
|
|
13244
|
+
margin-bottom: 8px;
|
|
13160
13245
|
}
|
|
13246
|
+
}
|
|
13161
13247
|
|
|
13162
|
-
|
|
13163
|
-
|
|
13164
|
-
margin-bottom: 3px;
|
|
13165
|
-
}
|
|
13166
|
-
|
|
13167
|
-
.timeout-values {
|
|
13168
|
-
margin-left: 27px;
|
|
13169
|
-
|
|
13170
|
-
.inputs {
|
|
13171
|
-
display: flex;
|
|
13172
|
-
align-items: center;
|
|
13248
|
+
.form-row {
|
|
13249
|
+
padding: 12px 0;
|
|
13173
13250
|
|
|
13174
|
-
|
|
13175
|
-
|
|
13176
|
-
margin: 0 17px 0 8px;
|
|
13177
|
-
font-size: 14px;
|
|
13178
|
-
font-weight: normal;
|
|
13179
|
-
font-style: normal;
|
|
13180
|
-
letter-spacing: normal;
|
|
13181
|
-
text-align: left;
|
|
13182
|
-
color: @color;
|
|
13183
|
-
}
|
|
13184
|
-
}
|
|
13185
|
-
}
|
|
13251
|
+
.row-title, .input-title {
|
|
13252
|
+
font-size: 14px;
|
|
13186
13253
|
}
|
|
13187
|
-
}
|
|
13188
13254
|
|
|
13189
|
-
|
|
13190
|
-
|
|
13191
|
-
|
|
13255
|
+
.row-title {
|
|
13256
|
+
font-weight: 500;
|
|
13257
|
+
}
|
|
13192
13258
|
|
|
13193
|
-
.
|
|
13194
|
-
|
|
13195
|
-
|
|
13196
|
-
height: 36px;
|
|
13259
|
+
.input-wrapper {
|
|
13260
|
+
display: flex;
|
|
13261
|
+
flex-wrap: wrap;
|
|
13197
13262
|
|
|
13198
|
-
|
|
13199
|
-
|
|
13200
|
-
}
|
|
13263
|
+
.input-title {
|
|
13264
|
+
width: 100%;
|
|
13201
13265
|
}
|
|
13202
|
-
}
|
|
13203
|
-
|
|
13204
|
-
> div {
|
|
13205
|
-
flex: 1;
|
|
13206
13266
|
|
|
13207
|
-
|
|
13208
|
-
|
|
13267
|
+
.memory-number-input, .cpu-number-input {
|
|
13268
|
+
width: 50%;
|
|
13209
13269
|
}
|
|
13210
13270
|
|
|
13211
|
-
.
|
|
13212
|
-
|
|
13213
|
-
margin-bottom: 5px;
|
|
13271
|
+
.memory-size-dropdown, .cpu-dropdown {
|
|
13272
|
+
width: 35%
|
|
13214
13273
|
}
|
|
13215
13274
|
|
|
13216
|
-
|
|
13217
|
-
|
|
13275
|
+
.gpu-number-input, .replicas-number-input {
|
|
13276
|
+
width: 85%;
|
|
13218
13277
|
}
|
|
13219
13278
|
}
|
|
13220
13279
|
}
|
|
13221
|
-
}
|
|
13222
|
-
}
|
|
13223
13280
|
|
|
13224
|
-
.
|
|
13225
|
-
|
|
13226
|
-
|
|
13227
|
-
position: relative;
|
|
13281
|
+
.slider-block {
|
|
13282
|
+
padding-top: 0;
|
|
13283
|
+
margin-bottom: 10px;
|
|
13228
13284
|
|
|
13229
|
-
|
|
13230
|
-
|
|
13285
|
+
.slider {
|
|
13286
|
+
width: 70%;
|
|
13287
|
+
}
|
|
13231
13288
|
}
|
|
13232
13289
|
}
|
|
13233
13290
|
}
|
|
@@ -13283,63 +13340,6 @@ ncl-navigation-tabs {
|
|
|
13283
13340
|
}
|
|
13284
13341
|
}
|
|
13285
13342
|
|
|
13286
|
-
@desktop-middle: 1550px;
|
|
13287
|
-
|
|
13288
|
-
.ncl-version-configuration-resources {
|
|
13289
|
-
.row {
|
|
13290
|
-
.range-inputs-row {
|
|
13291
|
-
display: flex;
|
|
13292
|
-
align-items: flex-end;
|
|
13293
|
-
|
|
13294
|
-
.row-title {
|
|
13295
|
-
margin-bottom: 8px;
|
|
13296
|
-
}
|
|
13297
|
-
}
|
|
13298
|
-
|
|
13299
|
-
.form-row {
|
|
13300
|
-
padding: 12px 0;
|
|
13301
|
-
|
|
13302
|
-
.row-title, .input-title {
|
|
13303
|
-
font-size: 14px;
|
|
13304
|
-
}
|
|
13305
|
-
|
|
13306
|
-
.row-title {
|
|
13307
|
-
font-weight: 500;
|
|
13308
|
-
}
|
|
13309
|
-
|
|
13310
|
-
.input-wrapper {
|
|
13311
|
-
display: flex;
|
|
13312
|
-
flex-wrap: wrap;
|
|
13313
|
-
|
|
13314
|
-
.input-title {
|
|
13315
|
-
width: 100%;
|
|
13316
|
-
}
|
|
13317
|
-
|
|
13318
|
-
.memory-number-input, .cpu-number-input {
|
|
13319
|
-
width: 50%;
|
|
13320
|
-
}
|
|
13321
|
-
|
|
13322
|
-
.memory-size-dropdown, .cpu-dropdown {
|
|
13323
|
-
width: 35%
|
|
13324
|
-
}
|
|
13325
|
-
|
|
13326
|
-
.gpu-number-input, .replicas-number-input {
|
|
13327
|
-
width: 85%;
|
|
13328
|
-
}
|
|
13329
|
-
}
|
|
13330
|
-
}
|
|
13331
|
-
|
|
13332
|
-
.slider-block {
|
|
13333
|
-
padding-top: 0;
|
|
13334
|
-
margin-bottom: 10px;
|
|
13335
|
-
|
|
13336
|
-
.slider {
|
|
13337
|
-
width: 70%;
|
|
13338
|
-
}
|
|
13339
|
-
}
|
|
13340
|
-
}
|
|
13341
|
-
}
|
|
13342
|
-
|
|
13343
13343
|
.ncl-version-configuration-volumes {
|
|
13344
13344
|
.ncl-version-volume {
|
|
13345
13345
|
.common-table-header {
|