iguazio.dashboard-controls 1.0.10-1.13.x → 1.0.11

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.
Files changed (22) hide show
  1. package/dist/i18n/en/common.json +1 -1
  2. package/dist/i18n/en/functions.json +1 -2
  3. package/dist/images/ic-alert-message.svg +1 -1
  4. package/dist/images/oops.png +0 -0
  5. package/dist/images/shape.svg +1 -1
  6. package/dist/js/iguazio.dashboard-controls.js +12373 -12386
  7. package/dist/less/iguazio.dashboard-controls.less +1241 -1245
  8. package/package.json +2 -2
  9. package/src/i18n/en/common.json +1 -1
  10. package/src/i18n/en/functions.json +1 -2
  11. package/src/igz_controls/services/validation.service.js +31 -30
  12. package/src/nuclio/api-gateways/new-api-gateway-wizard/new-api-gateway-wizard.component.js +2 -1
  13. package/src/nuclio/api-gateways/new-api-gateway-wizard/new-api-gateway-wizard.tpl.html +1 -0
  14. package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-annotations/version-configuration-annotations.component.js +1 -1
  15. package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-environment-variables/version-configuration-environment-variables.component.js +3 -3
  16. package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-labels/version-configuration-labels.component.js +1 -1
  17. package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-resources/version-configuration-resources.component.js +19 -15
  18. package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-resources/version-configuration-resources.tpl.html +9 -2
  19. package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-volumes/version-configuration-volumes.component.js +1 -1
  20. package/src/nuclio/functions/version/version-triggers/version-triggers.component.js +1 -11
  21. package/src/nuclio/functions/version/version-triggers/version-triggers.less +0 -4
  22. package/src/nuclio/functions/version/version-triggers/version-triggers.tpl.html +0 -16
@@ -5552,6 +5552,181 @@ yx-axis
5552
5552
  }
5553
5553
  }
5554
5554
  }
5555
+ .igz-action-menu {
5556
+ .action-menu-color-set();
5557
+ .action-icon-color-set();
5558
+
5559
+ opacity: 1;
5560
+ position: relative;
5561
+
5562
+ .menu-button {
5563
+ color: @menu-btn-color;
5564
+ cursor: pointer;
5565
+ font-size: 18px;
5566
+ height: 19px;
5567
+ text-align: center;
5568
+ transition: @igz-basic-transition-color;
5569
+ width: 30px;
5570
+
5571
+ &.active,
5572
+ &:hover {
5573
+ color: @menu-btn-active-hover-color;
5574
+ }
5575
+ }
5576
+
5577
+ .menu-dropdown {
5578
+ visibility: hidden;
5579
+ background-color: @menu-dropdown-bg-color;
5580
+ border: @menu-dropdown-border;
5581
+ border-radius: 2px;
5582
+ box-shadow: @menu-dropdown-box-shadow;
5583
+ color: @menu-dropdown-color;
5584
+ font-family: @font-family-sans-serif;
5585
+ font-size: 13px;
5586
+ font-weight: 500;
5587
+ line-height: normal;
5588
+ margin-top: 9px;
5589
+ min-width: 129px;
5590
+ padding: 8px 0 0;
5591
+ position: absolute;
5592
+ z-index: 10;
5593
+ transform: translateX(-100%);
5594
+
5595
+ .actions-list {
5596
+ cursor: default;
5597
+ padding-bottom: 8px;
5598
+
5599
+ .tooltip {
5600
+ // !important used to overwrite third-party's inline style
5601
+ display: none !important;
5602
+ }
5603
+ }
5604
+
5605
+ .igz-action-item {
5606
+ color: @action-item-color;
5607
+ cursor: pointer;
5608
+ font-size: 13px;
5609
+ font-weight: 400;
5610
+ line-height: 32px;
5611
+ padding: 0 18px;
5612
+ text-align: left;
5613
+ white-space: nowrap;
5614
+
5615
+ &:hover,
5616
+ &.subtemplate-show {
5617
+ background-color: @action-item-hover-bg-color;
5618
+ }
5619
+
5620
+ &.inactive {
5621
+ color: @action-item-inactive-color;
5622
+ cursor: default;
5623
+
5624
+ &:hover {
5625
+ background-color: @menu-dropdown-bg-color;
5626
+ }
5627
+ }
5628
+
5629
+ .action-icon {
5630
+ color: @action-icon-color;
5631
+ display: inline-block;
5632
+ padding-right: 14px;
5633
+
5634
+ &.icon-placeholder {
5635
+ &:before {
5636
+ content: '';
5637
+ display: inline-block;
5638
+ }
5639
+ }
5640
+
5641
+ &:before {
5642
+ font-size: 16px;
5643
+ position: relative;
5644
+ text-align: center;
5645
+ width: 20px;
5646
+ top: 2px;
5647
+ }
5648
+ }
5649
+
5650
+ .action-label {
5651
+ display: inline-block;
5652
+ }
5653
+ }
5654
+
5655
+ .shortcuts-list {
5656
+ padding-bottom: 8px;
5657
+
5658
+ &:not(.first-block) {
5659
+ border-top: @shortcuts-list-not-first-block-border;
5660
+ padding-top: 8px;
5661
+ }
5662
+ }
5663
+
5664
+ .shortcuts-header {
5665
+ font-family: @font-family-sans-serif;
5666
+ color: @shortcuts-header-color;
5667
+ line-height: 24px;
5668
+ font-size: 13px;
5669
+ font-weight: 400;
5670
+ padding: 0 15px 4px 22px;
5671
+ text-align: left;
5672
+ }
5673
+
5674
+ .shortcuts-item {
5675
+ color: @shortcuts-item-color;
5676
+ cursor: pointer;
5677
+ font-weight: 400;
5678
+ white-space: nowrap;
5679
+ line-height: 32px;
5680
+ padding: 0 26px 0 32px;
5681
+ text-align: left;
5682
+ transition: @igz-basic-transition-color;
5683
+
5684
+ &:hover {
5685
+ background-color: @shortcuts-item-hover-bg-color;
5686
+ }
5687
+
5688
+ }
5689
+
5690
+ }
5691
+
5692
+ &.small-action-menu {
5693
+ .menu-button {
5694
+ color: @small-action-menu-btn-color;
5695
+ width: auto;
5696
+ font-size: 12px;
5697
+ display: inline-block;
5698
+ height: auto;
5699
+ margin: 0;
5700
+ vertical-align: sub;
5701
+ }
5702
+
5703
+ .menu-dropdown {
5704
+ margin: 0;
5705
+ }
5706
+ }
5707
+
5708
+ .upward-menu {
5709
+ transform: translate(-100%, -100%);
5710
+ }
5711
+ }
5712
+
5713
+ .action-checkbox-all {
5714
+ .action-checkbox-all-color-set();
5715
+
5716
+ text-align: center;
5717
+
5718
+ .check-item {
5719
+ cursor: pointer;
5720
+ color: @check-item-color;
5721
+ font-size: 16px;
5722
+ line-height: 1;
5723
+ vertical-align: middle;
5724
+
5725
+ &.igz-icon-checkbox-checked {
5726
+ color: @check-item-icon-checkbox-checked-color;
5727
+ }
5728
+ }
5729
+ }
5555
5730
  .igz-action-panel {
5556
5731
  .action-panel-color-set();
5557
5732
  .action-icon-color-set();
@@ -5762,198 +5937,40 @@ yx-axis
5762
5937
  }
5763
5938
  }
5764
5939
 
5765
- .igz-action-menu {
5766
- .action-menu-color-set();
5767
- .action-icon-color-set();
5940
+ .auto-complete-wrapper {
5941
+ .auto-complete-color-set();
5768
5942
 
5769
- opacity: 1;
5770
5943
  position: relative;
5771
5944
 
5772
- .menu-button {
5773
- color: @menu-btn-color;
5774
- cursor: pointer;
5775
- font-size: 18px;
5776
- height: 19px;
5777
- text-align: center;
5778
- transition: @igz-basic-transition-color;
5779
- width: 30px;
5945
+ .input-row {
5946
+ display: flex;
5947
+ width: 100%;
5780
5948
 
5781
- &.active,
5782
- &:hover {
5783
- color: @menu-btn-active-hover-color;
5949
+ .auto-complete-input {
5950
+ flex-grow: 3;
5784
5951
  }
5785
- }
5786
-
5787
- .menu-dropdown {
5788
- visibility: hidden;
5789
- background-color: @menu-dropdown-bg-color;
5790
- border: @menu-dropdown-border;
5791
- border-radius: 2px;
5792
- box-shadow: @menu-dropdown-box-shadow;
5793
- color: @menu-dropdown-color;
5794
- font-family: @font-family-sans-serif;
5795
- font-size: 13px;
5796
- font-weight: 500;
5797
- line-height: normal;
5798
- margin-top: 9px;
5799
- min-width: 129px;
5800
- padding: 8px 0 0;
5801
- position: absolute;
5802
- z-index: 10;
5803
- transform: translateX(-100%);
5804
5952
 
5805
- .actions-list {
5806
- cursor: default;
5807
- padding-bottom: 8px;
5808
-
5809
- .tooltip {
5810
- // !important used to overwrite third-party's inline style
5811
- display: none !important;
5812
- }
5953
+ .auto-complete-filters {
5954
+ width: 20%;
5813
5955
  }
5956
+ }
5814
5957
 
5815
- .igz-action-item {
5816
- color: @action-item-color;
5817
- cursor: pointer;
5818
- font-size: 13px;
5819
- font-weight: 400;
5820
- line-height: 32px;
5821
- padding: 0 18px;
5822
- text-align: left;
5823
- white-space: nowrap;
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;
5824
5970
 
5825
- &:hover,
5826
- &.subtemplate-show {
5827
- background-color: @action-item-hover-bg-color;
5828
- }
5829
-
5830
- &.inactive {
5831
- color: @action-item-inactive-color;
5832
- cursor: default;
5833
-
5834
- &:hover {
5835
- background-color: @menu-dropdown-bg-color;
5836
- }
5837
- }
5838
-
5839
- .action-icon {
5840
- color: @action-icon-color;
5841
- display: inline-block;
5842
- padding-right: 14px;
5843
-
5844
- &.icon-placeholder {
5845
- &:before {
5846
- content: '';
5847
- display: inline-block;
5848
- }
5849
- }
5850
-
5851
- &:before {
5852
- font-size: 16px;
5853
- position: relative;
5854
- text-align: center;
5855
- width: 20px;
5856
- top: 2px;
5857
- }
5858
- }
5859
-
5860
- .action-label {
5861
- display: inline-block;
5862
- }
5863
- }
5864
-
5865
- .shortcuts-list {
5866
- padding-bottom: 8px;
5867
-
5868
- &:not(.first-block) {
5869
- border-top: @shortcuts-list-not-first-block-border;
5870
- padding-top: 8px;
5871
- }
5872
- }
5873
-
5874
- .shortcuts-header {
5875
- font-family: @font-family-sans-serif;
5876
- color: @shortcuts-header-color;
5877
- line-height: 24px;
5878
- font-size: 13px;
5879
- font-weight: 400;
5880
- padding: 0 15px 4px 22px;
5881
- text-align: left;
5882
- }
5883
-
5884
- .shortcuts-item {
5885
- color: @shortcuts-item-color;
5886
- cursor: pointer;
5887
- font-weight: 400;
5888
- white-space: nowrap;
5889
- line-height: 32px;
5890
- padding: 0 26px 0 32px;
5891
- text-align: left;
5892
- transition: @igz-basic-transition-color;
5893
-
5894
- &:hover {
5895
- background-color: @shortcuts-item-hover-bg-color;
5896
- }
5897
-
5898
- }
5899
-
5900
- }
5901
-
5902
- &.small-action-menu {
5903
- .menu-button {
5904
- color: @small-action-menu-btn-color;
5905
- width: auto;
5906
- font-size: 12px;
5907
- display: inline-block;
5908
- height: auto;
5909
- margin: 0;
5910
- vertical-align: sub;
5911
- }
5912
-
5913
- .menu-dropdown {
5914
- margin: 0;
5915
- }
5916
- }
5917
-
5918
- .upward-menu {
5919
- transform: translate(-100%, -100%);
5920
- }
5921
- }
5922
-
5923
- .auto-complete-wrapper {
5924
- .auto-complete-color-set();
5925
-
5926
- position: relative;
5927
-
5928
- .input-row {
5929
- display: flex;
5930
- width: 100%;
5931
-
5932
- .auto-complete-input {
5933
- flex-grow: 3;
5934
- }
5935
-
5936
- .auto-complete-filters {
5937
- width: 20%;
5938
- }
5939
- }
5940
-
5941
- .suggestions-row {
5942
- .auto-complete-suggestions-container {
5943
- position: absolute;
5944
- background-color: @auto-complete-suggestions-container-bg-color;
5945
- border-radius: 2px;
5946
- box-shadow: @auto-complete-suggestions-container-box-shadow;
5947
- color: @auto-complete-suggestions-container-color;
5948
- max-height: 220px;
5949
- overflow: auto;
5950
- z-index: 1000;
5951
- width: 100%;
5952
- margin-top: 2px;
5953
-
5954
- .list {
5955
- padding: 0;
5956
- margin: 0;
5971
+ .list {
5972
+ padding: 0;
5973
+ margin: 0;
5957
5974
 
5958
5975
  .list-item {
5959
5976
  color: @auto-complete-list-item-color;
@@ -6019,99 +6036,6 @@ yx-axis
6019
6036
  }
6020
6037
  }
6021
6038
 
6022
- .action-checkbox-all {
6023
- .action-checkbox-all-color-set();
6024
-
6025
- text-align: center;
6026
-
6027
- .check-item {
6028
- cursor: pointer;
6029
- color: @check-item-color;
6030
- font-size: 16px;
6031
- line-height: 1;
6032
- vertical-align: middle;
6033
-
6034
- &.igz-icon-checkbox-checked {
6035
- color: @check-item-icon-checkbox-checked-color;
6036
- }
6037
- }
6038
- }
6039
- .element-loading-status {
6040
- .element-loading-status-color-set();
6041
-
6042
- position: relative;
6043
- width: 100%;
6044
- height: 100%;
6045
-
6046
- .loader-wrapper {
6047
- height: 100%;
6048
- width: 100%;
6049
- position: relative;
6050
-
6051
- .loader-text {
6052
- color: @loading-text-color;
6053
- }
6054
- }
6055
-
6056
- .loading-error {
6057
- text-align: center;
6058
- line-height: 15px;
6059
- width: 100%;
6060
- height: 100%;
6061
- position: relative;
6062
-
6063
- .sad-icon {
6064
- position: absolute;
6065
- left: 32px;
6066
- }
6067
-
6068
- .loading-error-title, .loading-error-message {
6069
- font-size: 13px;
6070
- font-weight: 700;
6071
- padding: 0 15px;
6072
- }
6073
-
6074
- .loading-error-title {
6075
- color: @loading-error-title-color;
6076
- padding-top: 15px;
6077
- }
6078
-
6079
- .refresh-page {
6080
- color: @loading-error-refresh-page-color;
6081
- text-decoration: underline;
6082
- cursor: pointer;
6083
- }
6084
- }
6085
-
6086
- // Small size status
6087
-
6088
- &.loading-status-small {
6089
- .loader-fading-circle {
6090
- width: 20px;
6091
- height: 20px;
6092
- }
6093
-
6094
- .loading-error {
6095
-
6096
- .loading-error-title, .loading-error-message {
6097
- text-overflow: ellipsis;
6098
- overflow: hidden;
6099
- padding: 0;
6100
- }
6101
-
6102
- .loading-error-title {
6103
- padding-top: 8px;
6104
- }
6105
-
6106
- .refresh-page {
6107
- overflow: hidden;
6108
- text-overflow: ellipsis;
6109
- padding: 0;
6110
- }
6111
- }
6112
- }
6113
- }
6114
-
6115
6039
  .default-dropdown {
6116
6040
  .default-dropdown-color-set();
6117
6041
  .severity-icons-color-set();
@@ -6552,32 +6476,108 @@ yx-axis
6552
6476
  }
6553
6477
  }
6554
6478
 
6555
- .more-info-wrapper {
6556
- .more-info-color-set();
6479
+ .element-loading-status {
6480
+ .element-loading-status-color-set();
6557
6481
 
6558
6482
  position: relative;
6559
- display: inline-flex;
6560
- align-items: center;
6561
- height: 36px;
6562
- margin-left: 8px;
6483
+ width: 100%;
6484
+ height: 100%;
6563
6485
 
6564
- .question-mark {
6565
- cursor: default;
6486
+ .loader-wrapper {
6487
+ height: 100%;
6488
+ width: 100%;
6489
+ position: relative;
6566
6490
 
6567
- &::before {
6568
- color: @icon-help-round-before-color;
6569
- background-color: @icon-help-round-before-bg-color;
6491
+ .loader-text {
6492
+ color: @loading-text-color;
6570
6493
  }
6494
+ }
6571
6495
 
6572
- &:hover {
6573
- &::before {
6574
- color: @icon-help-round-hover-before-color;
6575
- }
6496
+ .loading-error {
6497
+ text-align: center;
6498
+ line-height: 15px;
6499
+ width: 100%;
6500
+ height: 100%;
6501
+ position: relative;
6576
6502
 
6577
- + .row-description-wrapper.row-description {
6578
- color: @icon-help-description-hover-color;
6579
- }
6580
- }
6503
+ .sad-icon {
6504
+ position: absolute;
6505
+ left: 32px;
6506
+ }
6507
+
6508
+ .loading-error-title, .loading-error-message {
6509
+ font-size: 13px;
6510
+ font-weight: 700;
6511
+ padding: 0 15px;
6512
+ }
6513
+
6514
+ .loading-error-title {
6515
+ color: @loading-error-title-color;
6516
+ padding-top: 15px;
6517
+ }
6518
+
6519
+ .refresh-page {
6520
+ color: @loading-error-refresh-page-color;
6521
+ text-decoration: underline;
6522
+ cursor: pointer;
6523
+ }
6524
+ }
6525
+
6526
+ // Small size status
6527
+
6528
+ &.loading-status-small {
6529
+ .loader-fading-circle {
6530
+ width: 20px;
6531
+ height: 20px;
6532
+ }
6533
+
6534
+ .loading-error {
6535
+
6536
+ .loading-error-title, .loading-error-message {
6537
+ text-overflow: ellipsis;
6538
+ overflow: hidden;
6539
+ padding: 0;
6540
+ }
6541
+
6542
+ .loading-error-title {
6543
+ padding-top: 8px;
6544
+ }
6545
+
6546
+ .refresh-page {
6547
+ overflow: hidden;
6548
+ text-overflow: ellipsis;
6549
+ padding: 0;
6550
+ }
6551
+ }
6552
+ }
6553
+ }
6554
+
6555
+ .more-info-wrapper {
6556
+ .more-info-color-set();
6557
+
6558
+ position: relative;
6559
+ display: inline-flex;
6560
+ align-items: center;
6561
+ height: 36px;
6562
+ margin-left: 8px;
6563
+
6564
+ .question-mark {
6565
+ cursor: default;
6566
+
6567
+ &::before {
6568
+ color: @icon-help-round-before-color;
6569
+ background-color: @icon-help-round-before-bg-color;
6570
+ }
6571
+
6572
+ &:hover {
6573
+ &::before {
6574
+ color: @icon-help-round-hover-before-color;
6575
+ }
6576
+
6577
+ + .row-description-wrapper.row-description {
6578
+ color: @icon-help-description-hover-color;
6579
+ }
6580
+ }
6581
6581
 
6582
6582
  &.igz-icon-alert-message {
6583
6583
  &::before {
@@ -6711,6 +6711,45 @@ yx-axis
6711
6711
  }
6712
6712
  }
6713
6713
 
6714
+ .igz-navigation-tabs {
6715
+ .navigation-tabs-color-set();
6716
+
6717
+ background-color: @navigation-tabs-bg-color;
6718
+ height: 56px;
6719
+ padding-top: 7px;
6720
+
6721
+ .navigation-tab {
6722
+ float: left;
6723
+ height: 32px;
6724
+ padding: 15px 24px 0;
6725
+ font-family: @font-family-sans-serif;
6726
+ color: @navigation-tab-color;
6727
+ font-size: 14px;
6728
+ text-align: center;
6729
+ cursor: pointer;
6730
+ border-bottom: @navigation-tab-border-bottom;
6731
+ box-sizing: content-box;
6732
+
6733
+ &.active, &.active:hover {
6734
+ background-color: @navigation-tab-active-hover-bg-color;
6735
+ color: @navigation-tab-active-hover-color;
6736
+ border-bottom: @navigation-tab-active-hover-border-bottom;
6737
+ }
6738
+
6739
+ &:hover {
6740
+ background-color: @navigation-tab-hover-bg-color;
6741
+ }
6742
+
6743
+ &.active {
6744
+ background-color: @navigation-tab-active-bg-color;
6745
+ }
6746
+
6747
+ @media screen and (max-width: 940px) {
6748
+ padding: 15px 12px 0;
6749
+ }
6750
+ }
6751
+ }
6752
+
6714
6753
  .igz-multiple-checkboxes {
6715
6754
  .multiple-checkboxes-color-set();
6716
6755
 
@@ -6903,45 +6942,154 @@ yx-axis
6903
6942
  }
6904
6943
  }
6905
6944
 
6906
- .igz-navigation-tabs {
6907
- .navigation-tabs-color-set();
6945
+ .igz-pagination {
6946
+ .pagination-color-set();
6908
6947
 
6909
- background-color: @navigation-tabs-bg-color;
6910
- height: 56px;
6911
- padding-top: 7px;
6948
+ float: right;
6949
+ padding: 24px 36px 5px 30px;
6912
6950
 
6913
- .navigation-tab {
6914
- float: left;
6915
- height: 32px;
6916
- padding: 15px 24px 0;
6951
+ > div {
6952
+ vertical-align: top;
6953
+ }
6954
+
6955
+ .rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
6956
+ display: inline-block;
6957
+ vertical-align: baseline;
6958
+ }
6959
+
6960
+ .rows-title {
6961
+ font-size: 13px;
6962
+ color: @rows-title-color;
6917
6963
  font-family: @font-family-sans-serif;
6918
- color: @navigation-tab-color;
6919
- font-size: 14px;
6920
- text-align: center;
6921
- cursor: pointer;
6922
- border-bottom: @navigation-tab-border-bottom;
6923
- box-sizing: content-box;
6964
+ }
6924
6965
 
6925
- &.active, &.active:hover {
6926
- background-color: @navigation-tab-active-hover-bg-color;
6927
- color: @navigation-tab-active-hover-color;
6928
- border-bottom: @navigation-tab-active-hover-border-bottom;
6966
+ .per-page {
6967
+ width: 66px;
6968
+
6969
+ .default-dropdown-field {
6970
+ background: none;
6971
+ border: none;
6972
+ box-shadow: none;
6973
+ font-size: 14px;
6974
+ height: 36px;
6975
+
6976
+ .dropdown-selected-item {
6977
+ font-size: 14px;
6978
+ }
6979
+
6980
+ .dropdown-arrow {
6981
+ margin-top: 5px;
6982
+
6983
+ span {
6984
+ font-size: 12px;
6985
+ }
6986
+ }
6987
+
6988
+ .dropdown-arrow {
6989
+ border: none;
6990
+
6991
+ &:hover, &:active {
6992
+ border: none;
6993
+ background: none;
6994
+ box-shadow: none;
6995
+ }
6996
+ }
6997
+
6998
+ &:focus {
6999
+ .dropdown-selected-item {
7000
+ border: none;
7001
+ }
7002
+ }
6929
7003
  }
6930
7004
 
6931
- &:hover {
6932
- background-color: @navigation-tab-hover-bg-color;
7005
+ .default-dropdown-container {
7006
+ width: 66px;
7007
+
7008
+ .list-item {
7009
+ padding-left: 15px;
7010
+
7011
+ .list-item-label {
7012
+ margin-right: 10px;
7013
+ }
7014
+ }
6933
7015
  }
7016
+ }
6934
7017
 
6935
- &.active {
6936
- background-color: @navigation-tab-active-bg-color;
7018
+ .jump-to-page {
7019
+ margin-left: 7px;
7020
+
7021
+ & > div, .jump-to-page-input {
7022
+ display: inline-block;
7023
+ vertical-align: baseline;
6937
7024
  }
6938
7025
 
6939
- @media screen and (max-width: 940px) {
6940
- padding: 15px 12px 0;
7026
+ .to-page-prev, .to-page-next {
7027
+ width: 41px;
7028
+ line-height: 34px;
7029
+ height: 36px;
7030
+ vertical-align: top;
7031
+ position: relative;
7032
+
7033
+ &:not(:active) {
7034
+ background-color: transparent;
7035
+ }
7036
+
7037
+ &:not(:hover):not(:active):not(:disabled):not(.disabled) {
7038
+ color: @page-prev-next-color;
7039
+ }
7040
+
7041
+ &:before {
7042
+ line-height: 34px;
7043
+ }
7044
+ }
7045
+
7046
+ .to-page-prev {
7047
+ border-radius: 2px 0 0 2px;
7048
+
7049
+ &::before {
7050
+ margin-left: -2px;
7051
+ }
7052
+ }
7053
+
7054
+ .to-page-next {
7055
+ border-radius: 0 2px 2px 0;
7056
+ }
7057
+
7058
+ .title {
7059
+ margin: 0 0 0 14px;
7060
+ }
7061
+
7062
+ .page-number {
7063
+ min-width: 30px;
7064
+ height: 36px;
7065
+ line-height: 36px;
7066
+ text-align: center;
7067
+ }
7068
+
7069
+ .validating-input-field {
7070
+ background-color: @input-field-bg-color;
7071
+
7072
+ .input-field {
7073
+ width: 43px;
7074
+ height: 36px;
7075
+ border-radius: 0;
7076
+ box-shadow: @input-field-box-shadow;
7077
+ border: 1px solid @input-field-border-color;
7078
+ border-left: 0 none transparent;
7079
+ border-right: 0 none transparent;
7080
+ font-family: @font-family-sans-serif;
7081
+ font-size: 14px;
7082
+ font-weight: 500;
7083
+ color: @input-field-color;
7084
+ text-align: center;
7085
+
7086
+ &:hover {
7087
+ border: @input-field-hover-border;
7088
+ }
7089
+ }
6941
7090
  }
6942
7091
  }
6943
7092
  }
6944
-
6945
7093
  .igz-number-input {
6946
7094
  .number-input-color-set();
6947
7095
 
@@ -7036,213 +7184,65 @@ yx-axis
7036
7184
  font-weight: 700;
7037
7185
  padding-right: 7px;
7038
7186
  }
7039
- }
7040
-
7041
- .suffix-unit-container {
7042
- display: flex;
7043
- align-items: center;
7044
-
7045
- .suffix-unit {
7046
- color: @number-input-suffix-unit-color;
7047
- font-size: 14px;
7048
- font-weight: 400;
7049
- padding-left: 3px;
7050
- }
7051
- }
7052
-
7053
- .arrow-block {
7054
- font-size: 11px;
7055
- display: flex;
7056
- flex-direction: column;
7057
- justify-content: center;
7058
- height: 100%;
7059
- margin-left: 6px;
7060
-
7061
- .igz-icon-dropup, .igz-icon-dropdown {
7062
- color: @number-input-arrow-block-icon-color;
7063
- cursor: pointer;
7064
- display: block;
7065
- line-height: 11px;
7066
- outline: 0;
7067
-
7068
- &:hover {
7069
- color: @number-input-arrow-block-icon-hover-color;
7070
- }
7071
- }
7072
- }
7073
-
7074
- &.disabled {
7075
- background-color: @number-input-disabled-bg-color;
7076
- opacity: 0.5;
7077
-
7078
- .suffix-unit {
7079
- opacity: 0.5;
7080
- }
7081
-
7082
- .igz-icon-dropup, .igz-icon-dropdown {
7083
- &, &:hover {
7084
- color: @number-input-disabled-icon-hover-color;
7085
- opacity: 0.5;
7086
- cursor: default;
7087
- }
7088
- }
7089
- }
7090
- }
7091
-
7092
- .step3, .step4 {
7093
- .additional-right-padding {
7094
- padding-right: 50px;
7095
- }
7096
- }
7097
-
7098
- .igz-pagination {
7099
- .pagination-color-set();
7100
-
7101
- float: right;
7102
- padding: 24px 36px 5px 30px;
7103
-
7104
- > div {
7105
- vertical-align: top;
7106
- }
7107
-
7108
- .rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
7109
- display: inline-block;
7110
- vertical-align: baseline;
7111
- }
7112
-
7113
- .rows-title {
7114
- font-size: 13px;
7115
- color: @rows-title-color;
7116
- font-family: @font-family-sans-serif;
7117
- }
7118
-
7119
- .per-page {
7120
- width: 66px;
7121
-
7122
- .default-dropdown-field {
7123
- background: none;
7124
- border: none;
7125
- box-shadow: none;
7126
- font-size: 14px;
7127
- height: 36px;
7128
-
7129
- .dropdown-selected-item {
7130
- font-size: 14px;
7131
- }
7132
-
7133
- .dropdown-arrow {
7134
- margin-top: 5px;
7135
-
7136
- span {
7137
- font-size: 12px;
7138
- }
7139
- }
7140
-
7141
- .dropdown-arrow {
7142
- border: none;
7143
-
7144
- &:hover, &:active {
7145
- border: none;
7146
- background: none;
7147
- box-shadow: none;
7148
- }
7149
- }
7150
-
7151
- &:focus {
7152
- .dropdown-selected-item {
7153
- border: none;
7154
- }
7155
- }
7156
- }
7157
-
7158
- .default-dropdown-container {
7159
- width: 66px;
7160
-
7161
- .list-item {
7162
- padding-left: 15px;
7163
-
7164
- .list-item-label {
7165
- margin-right: 10px;
7166
- }
7167
- }
7168
- }
7169
- }
7170
-
7171
- .jump-to-page {
7172
- margin-left: 7px;
7173
-
7174
- & > div, .jump-to-page-input {
7175
- display: inline-block;
7176
- vertical-align: baseline;
7177
- }
7178
-
7179
- .to-page-prev, .to-page-next {
7180
- width: 41px;
7181
- line-height: 34px;
7182
- height: 36px;
7183
- vertical-align: top;
7184
- position: relative;
7185
-
7186
- &:not(:active) {
7187
- background-color: transparent;
7188
- }
7189
-
7190
- &:not(:hover):not(:active):not(:disabled):not(.disabled) {
7191
- color: @page-prev-next-color;
7192
- }
7193
-
7194
- &:before {
7195
- line-height: 34px;
7196
- }
7197
- }
7187
+ }
7198
7188
 
7199
- .to-page-prev {
7200
- border-radius: 2px 0 0 2px;
7189
+ .suffix-unit-container {
7190
+ display: flex;
7191
+ align-items: center;
7201
7192
 
7202
- &::before {
7203
- margin-left: -2px;
7204
- }
7193
+ .suffix-unit {
7194
+ color: @number-input-suffix-unit-color;
7195
+ font-size: 14px;
7196
+ font-weight: 400;
7197
+ padding-left: 3px;
7205
7198
  }
7199
+ }
7206
7200
 
7207
- .to-page-next {
7208
- border-radius: 0 2px 2px 0;
7209
- }
7201
+ .arrow-block {
7202
+ font-size: 11px;
7203
+ display: flex;
7204
+ flex-direction: column;
7205
+ justify-content: center;
7206
+ height: 100%;
7207
+ margin-left: 6px;
7210
7208
 
7211
- .title {
7212
- margin: 0 0 0 14px;
7213
- }
7209
+ .igz-icon-dropup, .igz-icon-dropdown {
7210
+ color: @number-input-arrow-block-icon-color;
7211
+ cursor: pointer;
7212
+ display: block;
7213
+ line-height: 11px;
7214
+ outline: 0;
7214
7215
 
7215
- .page-number {
7216
- min-width: 30px;
7217
- height: 36px;
7218
- line-height: 36px;
7219
- text-align: center;
7216
+ &:hover {
7217
+ color: @number-input-arrow-block-icon-hover-color;
7218
+ }
7220
7219
  }
7220
+ }
7221
7221
 
7222
- .validating-input-field {
7223
- background-color: @input-field-bg-color;
7222
+ &.disabled {
7223
+ background-color: @number-input-disabled-bg-color;
7224
+ opacity: 0.5;
7224
7225
 
7225
- .input-field {
7226
- width: 43px;
7227
- height: 36px;
7228
- border-radius: 0;
7229
- box-shadow: @input-field-box-shadow;
7230
- border: 1px solid @input-field-border-color;
7231
- border-left: 0 none transparent;
7232
- border-right: 0 none transparent;
7233
- font-family: @font-family-sans-serif;
7234
- font-size: 14px;
7235
- font-weight: 500;
7236
- color: @input-field-color;
7237
- text-align: center;
7226
+ .suffix-unit {
7227
+ opacity: 0.5;
7228
+ }
7238
7229
 
7239
- &:hover {
7240
- border: @input-field-hover-border;
7241
- }
7230
+ .igz-icon-dropup, .igz-icon-dropdown {
7231
+ &, &:hover {
7232
+ color: @number-input-disabled-icon-hover-color;
7233
+ opacity: 0.5;
7234
+ cursor: default;
7242
7235
  }
7243
7236
  }
7244
7237
  }
7245
7238
  }
7239
+
7240
+ .step3, .step4 {
7241
+ .additional-right-padding {
7242
+ padding-right: 50px;
7243
+ }
7244
+ }
7245
+
7246
7246
  .search-input {
7247
7247
  .search-input-color-set();
7248
7248
 
@@ -7650,6 +7650,113 @@ yx-axis
7650
7650
  }
7651
7651
  }
7652
7652
 
7653
+ .splash-screen {
7654
+ .splash-screen-color-set();
7655
+
7656
+ position: absolute;
7657
+ z-index: 996;
7658
+ width: 100%;
7659
+ height: 100%;
7660
+ background-color: @splash-screen-bg-color;
7661
+ transform-style: preserve-3d;
7662
+
7663
+ // ngAnimate appearance for show/hide
7664
+ transition: opacity linear .25s 0s;
7665
+
7666
+ &.ng-hide-remove {
7667
+ opacity: 0;
7668
+ }
7669
+
7670
+ .loading-splash-screen {
7671
+ position: absolute;
7672
+ top: 50%;
7673
+ left: 50%;
7674
+ transform: translate(-50%, -50%);
7675
+ color: @loading-splash-screen-color;
7676
+ font-size: 20px;
7677
+ text-align: center;
7678
+ font-weight: 500;
7679
+ width: 217px;
7680
+ border-radius: 6px;
7681
+ background-image: @loading-splash-screen-bg-image;
7682
+ padding: 49px 0;
7683
+
7684
+ .splash-logo-wrapper {
7685
+ position: relative;
7686
+ text-align: center;
7687
+
7688
+ .loader-fading-circle {
7689
+ width: 60px;
7690
+ height: 60px;
7691
+ }
7692
+ }
7693
+
7694
+ .loading-text {
7695
+ padding: 31px 0 0 12px;
7696
+ font-family: @font-family-sans-serif;
7697
+ font-size: 20px;
7698
+ color: @loading-splash-screen-text-color;
7699
+ }
7700
+ }
7701
+
7702
+ .alert-splash-screen {
7703
+ position: absolute;
7704
+ top: 50%;
7705
+ left: 50%;
7706
+ transform: translate(-50%, -50%);
7707
+ color: @alert-splash-screen-color;
7708
+ font-size: 20px;
7709
+ font-weight: 500;
7710
+ width: 504px;
7711
+ border-radius: 6px;
7712
+ background-image: @alert-splash-screen-bg-image;
7713
+ box-shadow: none;
7714
+ padding: 0 0 49px;
7715
+
7716
+ .header {
7717
+ background: url('/assets/images/oops.png') no-repeat center;
7718
+ margin: 47px 0 24px;
7719
+ height: 59px;
7720
+ background-size: contain;
7721
+ }
7722
+
7723
+ .notification-text {
7724
+ color: @alert-splash-screen-notification-text-color;
7725
+ padding: 0 60px;
7726
+ text-align: center;
7727
+ margin: 0 0 36px;
7728
+ line-height: 1.5;
7729
+ }
7730
+
7731
+ .buttons {
7732
+ text-align: center;
7733
+ height: 36px;
7734
+
7735
+ .refresh-button {
7736
+ margin: 0 auto;
7737
+ padding-top: 8px;
7738
+ height: 36px;
7739
+ width: 124px;
7740
+ font-size: 12px;
7741
+ border-radius: 2px;
7742
+ background-color: @alert-splash-screen-refresh-btn-bg-color;
7743
+ border: @alert-splash-screen-refresh-btn-border;
7744
+ text-transform: uppercase;
7745
+
7746
+ &:hover {
7747
+ background-color: @alert-splash-screen-refresh-btn-hover-bg-color;
7748
+ box-shadow: @alert-splash-screen-refresh-btn-hover-box-shadow;
7749
+ }
7750
+
7751
+ .igz-icon-refresh {
7752
+ font-size: 16px;
7753
+ margin-right: 8px;
7754
+ vertical-align: middle;
7755
+ }
7756
+ }
7757
+ }
7758
+ }
7759
+ }
7653
7760
  .ngdialog.text-edit {
7654
7761
  .text-edit-color-set();
7655
7762
 
@@ -7727,113 +7834,70 @@ yx-axis
7727
7834
  }
7728
7835
  }
7729
7836
 
7730
- .splash-screen {
7731
- .splash-screen-color-set();
7732
-
7733
- position: absolute;
7734
- z-index: 996;
7735
- width: 100%;
7736
- height: 100%;
7737
- background-color: @splash-screen-bg-color;
7738
- transform-style: preserve-3d;
7837
+ .toast-status-panel {
7838
+ .toast-status-panel-color-set();
7739
7839
 
7740
- // ngAnimate appearance for show/hide
7741
- transition: opacity linear .25s 0s;
7840
+ margin-bottom: 20px;
7841
+ padding: 16px 36px 16px 12px;
7842
+ background-color: @toast-panel-bg-color;
7843
+ border: @toast-panel-border;
7844
+ position: relative;
7742
7845
 
7743
- &.ng-hide-remove {
7744
- opacity: 0;
7846
+ &.in-progress {
7847
+ background-color: @toast-panel-in-progress-bg-color;
7848
+ border: @toast-panel-in-progress-border;
7745
7849
  }
7746
7850
 
7747
- .loading-splash-screen {
7748
- position: absolute;
7749
- top: 50%;
7750
- left: 50%;
7751
- transform: translate(-50%, -50%);
7752
- color: @loading-splash-screen-color;
7753
- font-size: 20px;
7754
- text-align: center;
7755
- font-weight: 500;
7756
- width: 217px;
7757
- border-radius: 6px;
7758
- background-image: @loading-splash-screen-bg-image;
7759
- padding: 49px 0;
7760
-
7761
- .splash-logo-wrapper {
7762
- position: relative;
7763
- text-align: center;
7764
-
7765
- .loader-fading-circle {
7766
- width: 60px;
7767
- height: 60px;
7768
- }
7769
- }
7770
-
7771
- .loading-text {
7772
- padding: 31px 0 0 12px;
7773
- font-family: @font-family-sans-serif;
7774
- font-size: 20px;
7775
- color: @loading-splash-screen-text-color;
7776
- }
7851
+ &.failed {
7852
+ background-color: @toast-panel-failed-bg-color;
7853
+ border: @toast-panel-failed-border;
7777
7854
  }
7778
7855
 
7779
- .alert-splash-screen {
7780
- position: absolute;
7781
- top: 50%;
7782
- left: 50%;
7783
- transform: translate(-50%, -50%);
7784
- color: @alert-splash-screen-color;
7785
- font-size: 20px;
7786
- font-weight: 500;
7787
- width: 504px;
7788
- border-radius: 6px;
7789
- background-image: @alert-splash-screen-bg-image;
7790
- box-shadow: none;
7791
- padding: 0 0 49px;
7856
+ .panel-status {
7857
+ color: @toast-panel-status-color;
7858
+ line-height: 24px;
7859
+ font-size: 14px;
7860
+ font-weight: 700;
7861
+ font-family: @font-family-sans-serif;
7862
+ align-items: center;
7863
+ display: flex;
7864
+ justify-content: center;
7792
7865
 
7793
- .header {
7794
- background: url('/assets/images/oops.png') no-repeat center;
7795
- margin: 47px 0 24px;
7796
- height: 59px;
7797
- background-size: contain;
7866
+ &.in-progress {
7867
+ color: @toast-panel-status-in-progress-color;
7798
7868
  }
7799
7869
 
7800
- .notification-text {
7801
- color: @alert-splash-screen-notification-text-color;
7802
- padding: 0 60px;
7803
- text-align: center;
7804
- margin: 0 0 36px;
7805
- line-height: 1.5;
7870
+ &.failed {
7871
+ color: @toast-panel-status-failed-color;
7806
7872
  }
7807
7873
 
7808
- .buttons {
7809
- text-align: center;
7810
- height: 36px;
7874
+ .panel-status-icon {
7875
+ font-size: 24px;
7811
7876
 
7812
- .refresh-button {
7813
- margin: 0 auto;
7814
- padding-top: 8px;
7815
- height: 36px;
7816
- width: 124px;
7817
- font-size: 12px;
7818
- border-radius: 2px;
7819
- background-color: @alert-splash-screen-refresh-btn-bg-color;
7820
- border: @alert-splash-screen-refresh-btn-border;
7821
- text-transform: uppercase;
7877
+ &.igz-icon-properties {
7878
+ -webkit-animation: rotation 4s infinite linear;
7822
7879
 
7823
- &:hover {
7824
- background-color: @alert-splash-screen-refresh-btn-hover-bg-color;
7825
- box-shadow: @alert-splash-screen-refresh-btn-hover-box-shadow;
7880
+ @-webkit-keyframes rotation {
7881
+ from {
7882
+ -webkit-transform: rotate(0deg);
7883
+ }
7884
+ to {
7885
+ -webkit-transform: rotate(359deg);
7886
+ }
7826
7887
  }
7888
+ }
7889
+ }
7827
7890
 
7828
- .igz-icon-refresh {
7829
- font-size: 16px;
7830
- margin-right: 8px;
7831
- vertical-align: middle;
7832
- }
7891
+ .msg-scrollable-container {
7892
+ max-height: 300px;
7893
+
7894
+ .panel-status-msg {
7895
+ margin: 0 8px;
7833
7896
  }
7834
7897
  }
7835
7898
  }
7836
7899
  }
7900
+
7837
7901
  .validating-input-field {
7838
7902
  .validating-input-field-color-set();
7839
7903
 
@@ -8171,70 +8235,6 @@ form.ng-submitted .validating-input-field {
8171
8235
  }
8172
8236
  }
8173
8237
 
8174
- .toast-status-panel {
8175
- .toast-status-panel-color-set();
8176
-
8177
- margin-bottom: 20px;
8178
- padding: 16px 36px 16px 12px;
8179
- background-color: @toast-panel-bg-color;
8180
- border: @toast-panel-border;
8181
- position: relative;
8182
-
8183
- &.in-progress {
8184
- background-color: @toast-panel-in-progress-bg-color;
8185
- border: @toast-panel-in-progress-border;
8186
- }
8187
-
8188
- &.failed {
8189
- background-color: @toast-panel-failed-bg-color;
8190
- border: @toast-panel-failed-border;
8191
- }
8192
-
8193
- .panel-status {
8194
- color: @toast-panel-status-color;
8195
- line-height: 24px;
8196
- font-size: 14px;
8197
- font-weight: 700;
8198
- font-family: @font-family-sans-serif;
8199
- align-items: center;
8200
- display: flex;
8201
- justify-content: center;
8202
-
8203
- &.in-progress {
8204
- color: @toast-panel-status-in-progress-color;
8205
- }
8206
-
8207
- &.failed {
8208
- color: @toast-panel-status-failed-color;
8209
- }
8210
-
8211
- .panel-status-icon {
8212
- font-size: 24px;
8213
-
8214
- &.igz-icon-properties {
8215
- -webkit-animation: rotation 4s infinite linear;
8216
-
8217
- @-webkit-keyframes rotation {
8218
- from {
8219
- -webkit-transform: rotate(0deg);
8220
- }
8221
- to {
8222
- -webkit-transform: rotate(359deg);
8223
- }
8224
- }
8225
- }
8226
- }
8227
-
8228
- .msg-scrollable-container {
8229
- max-height: 300px;
8230
-
8231
- .panel-status-msg {
8232
- margin: 0 8px;
8233
- }
8234
- }
8235
- }
8236
- }
8237
-
8238
8238
  .ncl-api-gateway-row {
8239
8239
  .common-table-cells-container {
8240
8240
  .common-table-cell {
@@ -8844,44 +8844,193 @@ body {
8844
8844
  color: @silver-chalice-two;
8845
8845
  }
8846
8846
 
8847
- .buttons {
8848
- display: flex;
8849
- justify-content: flex-end;
8850
- }
8851
- }
8847
+ .buttons {
8848
+ display: flex;
8849
+ justify-content: flex-end;
8850
+ }
8851
+ }
8852
+
8853
+ .duplicate-function-dialog-wrapper {
8854
+ .main-content {
8855
+ .field-group {
8856
+ display: flex;
8857
+ flex-wrap: wrap;
8858
+ width: 450px;
8859
+
8860
+ .field-label.function-name-label,
8861
+ .field-input.function-name-input,
8862
+ .field-input.function-configuration-input {
8863
+ width: 100%;
8864
+ }
8865
+
8866
+ .field-label.function-configuration-label {
8867
+ width: 100%;
8868
+ line-height: 30px;
8869
+ }
8870
+
8871
+ .field-input.function-name-input,
8872
+ .field-input.function-configuration-input {
8873
+ .error {
8874
+ top: 38px;
8875
+ }
8876
+ }
8877
+
8878
+ .field-label.function-configuration-path {
8879
+ font-size: 14px;
8880
+ margin-left: 3px;
8881
+ line-height: 30px;
8882
+ }
8883
+ }
8884
+ }
8885
+ }
8886
+
8887
+ .override-function-dialog {
8888
+ .sub-title {
8889
+ font-size: 16px;
8890
+ color: @silver-chalice-two;
8891
+ }
8892
+
8893
+ .buttons {
8894
+ display: flex;
8895
+
8896
+ .function-redirect-button {
8897
+ margin-right: auto;
8898
+ }
8899
+ }
8900
+ }
8901
+
8902
+ .ncl-function-collapsing-row {
8903
+ background-color: @white;
8904
+ margin-bottom: 8px;
8905
+
8906
+ .function-title-block {
8907
+ height: 50px;
8908
+ position: relative;
8909
+ background-color: @white;
8910
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
8911
+ border: solid 1px @pale-grey;
8912
+
8913
+ .common-table-cells-container {
8914
+ cursor: pointer;
8915
+
8916
+ .common-table-cell-content {
8917
+ width: 100%;
8918
+ white-space: nowrap;
8919
+ overflow: hidden;
8920
+ text-overflow: ellipsis;
8921
+ min-width: 0;
8922
+ }
8923
+
8924
+ .description-content {
8925
+ position: relative;
8926
+ white-space: normal;
8927
+ max-height: 40px;
8928
+ }
8929
+
8930
+ .common-table-cell {
8931
+ .status-icon {
8932
+ display: flex;
8933
+ font-size: 20px;
8934
+ cursor: pointer;
8935
+ margin-left: 9px;
8936
+ .duskThree(0.64);
8937
+ color: @color;
8938
+ }
8939
+
8940
+ .version-text {
8941
+ display: block;
8942
+ text-align: left;
8943
+ }
8944
+
8945
+ .ncl-icon-api-gateway {
8946
+ font-size: 20px;
8947
+ position: absolute;
8948
+ right: 10px;
8949
+ }
8950
+
8951
+ .igz-action-panel {
8952
+ &.invocation-tooltip {
8953
+ height: 36px;
8954
+ width: 56px;
8955
+ }
8956
+ }
8957
+ }
8958
+ }
8959
+
8960
+ .function-row-collapse {
8961
+ justify-content: center;
8962
+ cursor: default;
8963
+
8964
+ .collapse-icon {
8965
+ cursor: pointer;
8966
+ background-color: transparent;
8967
+ position: absolute;
8968
+
8969
+ &.igz-icon-right, &.igz-icon-down {
8970
+ font-size: 12px;
8971
+ color: @dusk-three;
8972
+ }
8973
+ }
8974
+ }
8975
+
8976
+ .function-name {
8977
+ display: block;
8978
+ font-weight: bold;
8979
+ width: 90%;
8980
+ }
8852
8981
 
8853
- .duplicate-function-dialog-wrapper {
8854
- .main-content {
8855
- .field-group {
8856
- display: flex;
8857
- flex-wrap: wrap;
8858
- width: 450px;
8982
+ .function-status {
8983
+ min-width: 100px;
8984
+ }
8859
8985
 
8860
- .field-label.function-name-label,
8861
- .field-input.function-name-input,
8862
- .field-input.function-configuration-input {
8863
- width: 100%;
8864
- }
8986
+ .actions-menu {
8987
+ visibility: hidden;
8988
+ }
8865
8989
 
8866
- .field-label.function-configuration-label {
8867
- width: 100%;
8868
- line-height: 30px;
8869
- }
8990
+ &.common-table-row {
8991
+ height: 49px;
8870
8992
 
8871
- .field-input.function-name-input,
8872
- .field-input.function-configuration-input {
8873
- .error {
8874
- top: 38px;
8993
+ &:hover {
8994
+ .function-row-collapse {
8995
+ background-color: @white
8996
+ }
8997
+ .actions-menu {
8998
+ visibility: visible;
8999
+ background-color: @white;
9000
+ }
9001
+ igz-action-checkbox:not(.invisible) {
9002
+ visibility: visible;
8875
9003
  }
8876
9004
  }
8877
9005
 
8878
- .field-label.function-configuration-path {
8879
- font-size: 14px;
8880
- margin-left: 3px;
8881
- line-height: 30px;
9006
+ igz-action-checkbox {
9007
+ visibility: hidden;
9008
+
9009
+ &.visible {
9010
+ visibility: visible;
9011
+ }
8882
9012
  }
8883
9013
  }
8884
9014
  }
9015
+
9016
+ .building-status {
9017
+ color: @pale-orange;
9018
+ }
9019
+
9020
+ .error-status,
9021
+ .unhealthy-status {
9022
+ color: @darkish-pink;
9023
+ }
9024
+
9025
+ .standby-status,
9026
+ .scaled-to-zero-status,
9027
+ .imported-status {
9028
+ color: @solid-grey;
9029
+ }
9030
+
9031
+ .running-status {
9032
+ color: @tealish;
9033
+ }
8885
9034
  }
8886
9035
 
8887
9036
  .ncl-edit-version {
@@ -9142,155 +9291,6 @@ body {
9142
9291
  }
9143
9292
  }
9144
9293
 
9145
- .ncl-function-collapsing-row {
9146
- background-color: @white;
9147
- margin-bottom: 8px;
9148
-
9149
- .function-title-block {
9150
- height: 50px;
9151
- position: relative;
9152
- background-color: @white;
9153
- box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
9154
- border: solid 1px @pale-grey;
9155
-
9156
- .common-table-cells-container {
9157
- cursor: pointer;
9158
-
9159
- .common-table-cell-content {
9160
- width: 100%;
9161
- white-space: nowrap;
9162
- overflow: hidden;
9163
- text-overflow: ellipsis;
9164
- min-width: 0;
9165
- }
9166
-
9167
- .description-content {
9168
- position: relative;
9169
- white-space: normal;
9170
- max-height: 40px;
9171
- }
9172
-
9173
- .common-table-cell {
9174
- .status-icon {
9175
- display: flex;
9176
- font-size: 20px;
9177
- cursor: pointer;
9178
- margin-left: 9px;
9179
- .duskThree(0.64);
9180
- color: @color;
9181
- }
9182
-
9183
- .version-text {
9184
- display: block;
9185
- text-align: left;
9186
- }
9187
-
9188
- .ncl-icon-api-gateway {
9189
- font-size: 20px;
9190
- position: absolute;
9191
- right: 10px;
9192
- }
9193
-
9194
- .igz-action-panel {
9195
- &.invocation-tooltip {
9196
- height: 36px;
9197
- width: 56px;
9198
- }
9199
- }
9200
- }
9201
- }
9202
-
9203
- .function-row-collapse {
9204
- justify-content: center;
9205
- cursor: default;
9206
-
9207
- .collapse-icon {
9208
- cursor: pointer;
9209
- background-color: transparent;
9210
- position: absolute;
9211
-
9212
- &.igz-icon-right, &.igz-icon-down {
9213
- font-size: 12px;
9214
- color: @dusk-three;
9215
- }
9216
- }
9217
- }
9218
-
9219
- .function-name {
9220
- display: block;
9221
- font-weight: bold;
9222
- width: 90%;
9223
- }
9224
-
9225
- .function-status {
9226
- min-width: 100px;
9227
- }
9228
-
9229
- .actions-menu {
9230
- visibility: hidden;
9231
- }
9232
-
9233
- &.common-table-row {
9234
- height: 49px;
9235
-
9236
- &:hover {
9237
- .function-row-collapse {
9238
- background-color: @white
9239
- }
9240
- .actions-menu {
9241
- visibility: visible;
9242
- background-color: @white;
9243
- }
9244
- igz-action-checkbox:not(.invisible) {
9245
- visibility: visible;
9246
- }
9247
- }
9248
-
9249
- igz-action-checkbox {
9250
- visibility: hidden;
9251
-
9252
- &.visible {
9253
- visibility: visible;
9254
- }
9255
- }
9256
- }
9257
- }
9258
-
9259
- .building-status {
9260
- color: @pale-orange;
9261
- }
9262
-
9263
- .error-status,
9264
- .unhealthy-status {
9265
- color: @darkish-pink;
9266
- }
9267
-
9268
- .standby-status,
9269
- .scaled-to-zero-status,
9270
- .imported-status {
9271
- color: @solid-grey;
9272
- }
9273
-
9274
- .running-status {
9275
- color: @tealish;
9276
- }
9277
- }
9278
-
9279
- .override-function-dialog {
9280
- .sub-title {
9281
- font-size: 16px;
9282
- color: @silver-chalice-two;
9283
- }
9284
-
9285
- .buttons {
9286
- display: flex;
9287
-
9288
- .function-redirect-button {
9289
- margin-right: auto;
9290
- }
9291
- }
9292
- }
9293
-
9294
9294
  // Style rules for actions bar
9295
9295
  .border-top > .igz-info-page-actions-bar {
9296
9296
  .info-page-actions-bar-color-set();
@@ -9810,18 +9810,47 @@ igz-info-page-content {
9810
9810
  }
9811
9811
  }
9812
9812
 
9813
- .info-page-filters-footer {
9814
- display: flex;
9815
- justify-content: flex-end;
9816
- position: absolute;
9817
- height: 70px;
9818
- padding: 16px 18px;
9819
- bottom: 0;
9820
- width: 100%;
9813
+ .info-page-filters-footer {
9814
+ display: flex;
9815
+ justify-content: flex-end;
9816
+ position: absolute;
9817
+ height: 70px;
9818
+ padding: 16px 18px;
9819
+ bottom: 0;
9820
+ width: 100%;
9821
+
9822
+ button:not(:first-child) {
9823
+ margin-left: 5px;
9824
+ }
9825
+ }
9826
+ }
9827
+
9828
+ ncl-breadcrumbs {
9829
+ .main-header-title {
9830
+ &:not(.disable-behavior) {
9831
+ &:hover .main-header-title-text {
9832
+ color: @dark-sky-blue;
9833
+ }
9834
+ }
9835
+
9836
+ &.disable-behavior {
9837
+ color: @dusk-three;
9838
+ }
9839
+ }
9840
+
9841
+ .igz-icon-right {
9842
+ font-size: 11px;
9843
+ font-weight: 100;
9844
+ margin: 0 14px;
9845
+ }
9846
+
9847
+ .ncl-header-subtitle {
9848
+ color: @greyish-purple;
9849
+ }
9821
9850
 
9822
- button:not(:first-child) {
9823
- margin-left: 5px;
9824
- }
9851
+ .ncl-bold-subtitle {
9852
+ color: @dusk-three;
9853
+ font-weight: bold;
9825
9854
  }
9826
9855
  }
9827
9856
 
@@ -9965,6 +9994,106 @@ igz-info-page-content {
9965
9994
  }
9966
9995
  }
9967
9996
 
9997
+ .ncl-edit-item {
9998
+ width: 100%;
9999
+ padding: 6px 0;
10000
+
10001
+ .title-field-row {
10002
+ display: flex;
10003
+
10004
+ .name-field {
10005
+ margin-right: 14px;
10006
+ width: 178px;
10007
+
10008
+ .error {
10009
+ color: @darkish-pink;
10010
+ font-size: 12px;
10011
+ white-space: nowrap;
10012
+ }
10013
+ }
10014
+
10015
+ .class-field {
10016
+ margin-right: 14px;
10017
+ width: 154px;
10018
+
10019
+ .default-dropdown {
10020
+ .default-dropdown-container {
10021
+ position: relative;
10022
+ }
10023
+ }
10024
+
10025
+ .error {
10026
+ color: @darkish-pink;
10027
+ font-size: 12px;
10028
+ white-space: nowrap;
10029
+ }
10030
+ }
10031
+
10032
+ &:last-child {
10033
+ padding-bottom: 0;
10034
+ }
10035
+
10036
+ .tooltip-wrapper {
10037
+ .more-info-wrapper {
10038
+ padding-left: 0;
10039
+ }
10040
+ }
10041
+ }
10042
+
10043
+ .attribute-field {
10044
+ margin-right: 1%;
10045
+ padding: 8px 0 6px;
10046
+
10047
+ .field-label {
10048
+ height: 22px;
10049
+ }
10050
+
10051
+ &.attribute-field-checkbox {
10052
+ padding: 35px 0 19px;
10053
+ }
10054
+
10055
+ .more-info-wrapper {
10056
+ height: auto;
10057
+ }
10058
+ }
10059
+
10060
+ .no-class-selected {
10061
+ line-height: 48px;
10062
+ .duskThree(0.64);
10063
+ color: @color;
10064
+ }
10065
+
10066
+ .ingresses-wrapper {
10067
+ .ingresses-table-headers {
10068
+ width: calc(100% - 30px);
10069
+
10070
+ .host-header {
10071
+ width: 38%;
10072
+ padding-left: 16px;
10073
+ }
10074
+
10075
+ .paths-header, .secret-header{
10076
+ width: 31%;
10077
+ padding-left: 16px;
10078
+ }
10079
+ }
10080
+ }
10081
+
10082
+ .advanced-section {
10083
+ .collapsed-block-title {
10084
+ font-size: 15px;
10085
+ font-weight: bold;
10086
+ margin: 15px 0;
10087
+
10088
+ .icon-collapsed {
10089
+ color: .duskThree(0.64)[@color];
10090
+ font-size: 12px;
10091
+ margin: 0 11px 0 4px;
10092
+ }
10093
+ }
10094
+ }
10095
+ }
10096
+
9968
10097
  .ncl-collapsing-row {
9969
10098
  margin-bottom: 9px;
9970
10099
 
@@ -10088,35 +10217,6 @@ igz-info-page-content {
10088
10217
  }
10089
10218
  }
10090
10219
 
10091
- ncl-breadcrumbs {
10092
- .main-header-title {
10093
- &:not(.disable-behavior) {
10094
- &:hover .main-header-title-text {
10095
- color: @dark-sky-blue;
10096
- }
10097
- }
10098
-
10099
- &.disable-behavior {
10100
- color: @dusk-three;
10101
- }
10102
- }
10103
-
10104
- .igz-icon-right {
10105
- font-size: 11px;
10106
- font-weight: 100;
10107
- margin: 0 14px;
10108
- }
10109
-
10110
- .ncl-header-subtitle {
10111
- color: @greyish-purple;
10112
- }
10113
-
10114
- .ncl-bold-subtitle {
10115
- color: @dusk-three;
10116
- font-weight: bold;
10117
- }
10118
- }
10119
-
10120
10220
  .ncl-deploy-log-wrapper {
10121
10221
  .log-panel {
10122
10222
  .logs-common();
@@ -10161,118 +10261,18 @@ ncl-breadcrumbs {
10161
10261
  .title {
10162
10262
  margin-bottom: 10px;
10163
10263
  }
10164
-
10165
- .copy-to-clipboard {
10166
- width: 20px;
10167
- }
10168
- }
10169
-
10170
- .monaco-editor {
10171
- min-width: 700px;
10172
- min-height: 450px;
10173
- }
10174
- }
10175
- }
10176
- .ncl-edit-item {
10177
- width: 100%;
10178
- padding: 6px 0;
10179
-
10180
- .title-field-row {
10181
- display: flex;
10182
-
10183
- .name-field {
10184
- margin-right: 14px;
10185
- width: 178px;
10186
-
10187
- .error {
10188
- color: @darkish-pink;
10189
- font-size: 12px;
10190
- white-space: nowrap;
10191
- }
10192
- }
10193
-
10194
- .class-field {
10195
- margin-right: 14px;
10196
- width: 154px;
10197
-
10198
- .default-dropdown {
10199
- .default-dropdown-container {
10200
- position: relative;
10201
- }
10202
- }
10203
-
10204
- .error {
10205
- color: @darkish-pink;
10206
- font-size: 12px;
10207
- white-space: nowrap;
10208
- }
10209
- }
10210
-
10211
- &:last-child {
10212
- padding-bottom: 0;
10213
- }
10214
-
10215
- .tooltip-wrapper {
10216
- .more-info-wrapper {
10217
- padding-left: 0;
10218
- }
10219
- }
10220
- }
10221
-
10222
- .attribute-field {
10223
- margin-right: 1%;
10224
- padding: 8px 0 6px;
10225
-
10226
- .field-label {
10227
- height: 22px;
10228
- }
10229
-
10230
- &.attribute-field-checkbox {
10231
- padding: 35px 0 19px;
10232
- }
10233
-
10234
- .more-info-wrapper {
10235
- height: auto;
10236
- }
10237
- }
10238
-
10239
- .no-class-selected {
10240
- line-height: 48px;
10241
- .duskThree(0.64);
10242
- color: @color;
10243
- }
10244
-
10245
- .ingresses-wrapper {
10246
- .ingresses-table-headers {
10247
- width: calc(100% - 30px);
10248
-
10249
- .host-header {
10250
- width: 38%;
10251
- padding-left: 16px;
10252
- }
10253
-
10254
- .paths-header, .secret-header{
10255
- width: 31%;
10256
- padding-left: 16px;
10257
- }
10258
- }
10259
- }
10260
-
10261
- .advanced-section {
10262
- .collapsed-block-title {
10263
- font-size: 15px;
10264
- font-weight: bold;
10265
- margin: 15px 0;
10266
-
10267
- .icon-collapsed {
10268
- color: .duskThree(0.64)[@color];
10269
- font-size: 12px;
10270
- margin: 0 11px 0 4px;
10264
+
10265
+ .copy-to-clipboard {
10266
+ width: 20px;
10271
10267
  }
10272
10268
  }
10269
+
10270
+ .monaco-editor {
10271
+ min-width: 700px;
10272
+ min-height: 450px;
10273
+ }
10273
10274
  }
10274
10275
  }
10275
-
10276
10276
  .ncl-key-value-input {
10277
10277
  .input-wrapper {
10278
10278
  width: 100%;
@@ -10487,102 +10487,6 @@ ncl-breadcrumbs {
10487
10487
  }
10488
10488
  }
10489
10489
 
10490
- .ncl-monaco {
10491
- .ncl-monaco-wrapper {
10492
- padding-top: 20px;
10493
- height: 100%;
10494
- border: 1px solid @pale-grey;
10495
- background-color: @white;
10496
-
10497
- &.no-top-padding {
10498
- padding-top: 0;
10499
- }
10500
-
10501
- .ncl-monaco-top-row {
10502
- display: block;
10503
- }
10504
-
10505
- .ncl-monaco-editor {
10506
- height: 100%;
10507
- }
10508
- }
10509
-
10510
- .ncl-monaco-dark {
10511
- background-color: @vs-dark;
10512
- }
10513
- }
10514
-
10515
-
10516
- .ncl-search-input {
10517
- position: relative;
10518
- color: @silver;
10519
-
10520
- .container-search-input {
10521
- background-color: transparent;
10522
- border-bottom: 1px solid @silver;
10523
- font-size: 13px;
10524
- font-weight: 400;
10525
- height: 36px;
10526
- line-height: 36px;
10527
- margin: 0;
10528
- outline: 0;
10529
- padding: 0 0 3px 31px;
10530
- width: 100%;
10531
-
10532
- &::-webkit-input-placeholder {
10533
- color: @silver;
10534
- }
10535
-
10536
- &:-moz-placeholder { /* Firefox 18- */
10537
- color: @silver;
10538
- }
10539
-
10540
- &::-moz-placeholder { /* Firefox 19+ */
10541
- color: @silver;
10542
- }
10543
-
10544
- &:-ms-input-placeholder {
10545
- color: @silver;
10546
- }
10547
-
10548
- &:focus {
10549
- border-bottom: 1px solid @light-blue;
10550
-
10551
- &, & + .igz-icon-search:before {
10552
- color: @dusk-three;
10553
- }
10554
-
10555
- &::-webkit-input-placeholder {
10556
- color: transparent;
10557
- }
10558
-
10559
- &:-moz-placeholder { /* Firefox 18- */
10560
- color: transparent;
10561
- }
10562
-
10563
- &::-moz-placeholder { /* Firefox 19+ */
10564
- color: transparent;
10565
- }
10566
-
10567
- &:-ms-input-placeholder {
10568
- color: transparent;
10569
- }
10570
- }
10571
- }
10572
-
10573
- .igz-icon-search {
10574
- font-size: 18px;
10575
- position: absolute;
10576
- left: 8px;
10577
- top: 5px;
10578
- z-index: 1;
10579
- color: @silver;
10580
- }
10581
-
10582
- input::-ms-clear {
10583
- display: none;
10584
- }
10585
- }
10586
10490
  ncl-navigation-tabs {
10587
10491
  .ncl-navigation-tabs-color-set();
10588
10492
 
@@ -10744,6 +10648,102 @@ ncl-navigation-tabs {
10744
10648
  }
10745
10649
  }
10746
10650
 
10651
+ .ncl-search-input {
10652
+ position: relative;
10653
+ color: @silver;
10654
+
10655
+ .container-search-input {
10656
+ background-color: transparent;
10657
+ border-bottom: 1px solid @silver;
10658
+ font-size: 13px;
10659
+ font-weight: 400;
10660
+ height: 36px;
10661
+ line-height: 36px;
10662
+ margin: 0;
10663
+ outline: 0;
10664
+ padding: 0 0 3px 31px;
10665
+ width: 100%;
10666
+
10667
+ &::-webkit-input-placeholder {
10668
+ color: @silver;
10669
+ }
10670
+
10671
+ &:-moz-placeholder { /* Firefox 18- */
10672
+ color: @silver;
10673
+ }
10674
+
10675
+ &::-moz-placeholder { /* Firefox 19+ */
10676
+ color: @silver;
10677
+ }
10678
+
10679
+ &:-ms-input-placeholder {
10680
+ color: @silver;
10681
+ }
10682
+
10683
+ &:focus {
10684
+ border-bottom: 1px solid @light-blue;
10685
+
10686
+ &, & + .igz-icon-search:before {
10687
+ color: @dusk-three;
10688
+ }
10689
+
10690
+ &::-webkit-input-placeholder {
10691
+ color: transparent;
10692
+ }
10693
+
10694
+ &:-moz-placeholder { /* Firefox 18- */
10695
+ color: transparent;
10696
+ }
10697
+
10698
+ &::-moz-placeholder { /* Firefox 19+ */
10699
+ color: transparent;
10700
+ }
10701
+
10702
+ &:-ms-input-placeholder {
10703
+ color: transparent;
10704
+ }
10705
+ }
10706
+ }
10707
+
10708
+ .igz-icon-search {
10709
+ font-size: 18px;
10710
+ position: absolute;
10711
+ left: 8px;
10712
+ top: 5px;
10713
+ z-index: 1;
10714
+ color: @silver;
10715
+ }
10716
+
10717
+ input::-ms-clear {
10718
+ display: none;
10719
+ }
10720
+ }
10721
+ .ncl-monaco {
10722
+ .ncl-monaco-wrapper {
10723
+ padding-top: 20px;
10724
+ height: 100%;
10725
+ border: 1px solid @pale-grey;
10726
+ background-color: @white;
10727
+
10728
+ &.no-top-padding {
10729
+ padding-top: 0;
10730
+ }
10731
+
10732
+ .ncl-monaco-top-row {
10733
+ display: block;
10734
+ }
10735
+
10736
+ .ncl-monaco-editor {
10737
+ height: 100%;
10738
+ }
10739
+ }
10740
+
10741
+ .ncl-monaco-dark {
10742
+ background-color: @vs-dark;
10743
+ }
10744
+ }
10745
+
10746
+
10747
10747
  .new-function-wrapper {
10748
10748
  .ncl-new-function-color-set();
10749
10749
 
@@ -10960,28 +10960,94 @@ ncl-navigation-tabs {
10960
10960
  justify-content: center;
10961
10961
  color: @darkish-pink;
10962
10962
  }
10963
- }
10963
+ }
10964
+
10965
+ .bottom-bar {
10966
+ height: 64px;
10967
+ display: flex;
10968
+ align-items: center;
10969
+ justify-content: flex-end;
10970
+
10971
+ .igz-button-primary {
10972
+ &.disabled {
10973
+ color: rgba(71, 64, 86, 0.24);
10974
+ border-radius: 2px;
10975
+ border: solid 1px #f3f3f6;
10976
+ background-color: #f3f3f6;
10977
+ cursor: default;
10978
+ display: inline-block;
10979
+
10980
+ &:hover {
10981
+ box-shadow: none;
10982
+ border: none;
10983
+ }
10984
+ }
10985
+ }
10986
+ }
10987
+ }
10988
+
10989
+ .ncl-function-version-row {
10990
+ .actions-menu {
10991
+ visibility: hidden;
10992
+ }
10993
+
10994
+ &.common-table-row {
10995
+ height: 49px;
10996
+
10997
+ &:hover {
10998
+ igz-action-checkbox:not(.invisible) {
10999
+ visibility: visible;
11000
+ }
11001
+
11002
+ .actions-menu {
11003
+ visibility: visible;
11004
+ }
11005
+
11006
+ .check-row {
11007
+ background-color: @pale-grey-three;
11008
+ }
11009
+ }
11010
+
11011
+ igz-action-checkbox {
11012
+ visibility: hidden;
11013
+
11014
+ &.visible {
11015
+ visibility: visible;
11016
+ }
11017
+ }
10964
11018
 
10965
- .bottom-bar {
10966
- height: 64px;
10967
- display: flex;
10968
- align-items: center;
10969
- justify-content: flex-end;
11019
+ .common-table-cells-container {
11020
+ cursor: pointer;
10970
11021
 
10971
- .igz-button-primary {
10972
- &.disabled {
10973
- color: rgba(71, 64, 86, 0.24);
10974
- border-radius: 2px;
10975
- border: solid 1px #f3f3f6;
10976
- background-color: #f3f3f6;
10977
- cursor: default;
10978
- display: inline-block;
11022
+ .common-table-cell {
11023
+ .status-icon {
11024
+ display: flex;
11025
+ font-size: 20px;
11026
+ cursor: pointer;
11027
+ margin-left: 9px;
11028
+ .duskThree(0.64);
11029
+ color: @color;
11030
+ }
10979
11031
 
10980
- &:hover {
10981
- box-shadow: none;
10982
- border: none;
11032
+ .common-table-cell-content {
11033
+ width: 100%;
11034
+ white-space: nowrap;
11035
+ overflow: hidden;
11036
+ text-overflow: ellipsis;
11037
+ min-width: 0;
11038
+ }
11039
+
11040
+ .igz-action-panel {
11041
+ &.invocation-tooltip {
11042
+ height: 36px;
11043
+ width: 56px;
11044
+ }
10983
11045
  }
10984
11046
  }
11047
+
11048
+ .function-status {
11049
+ min-width: 100px;
11050
+ }
10985
11051
  }
10986
11052
  }
10987
11053
  }
@@ -11198,6 +11264,66 @@ ncl-navigation-tabs {
11198
11264
  }
11199
11265
  }
11200
11266
 
11267
+ .ncl-version-configuration {
11268
+ > .igz-scrollable-container {
11269
+ padding: 24px 25px 22px 41px;
11270
+ }
11271
+
11272
+ .ncl-version-configuration-wrapper {
11273
+ > .row {
11274
+ display: flex;
11275
+ justify-content: space-between;
11276
+ flex-wrap: wrap;
11277
+
11278
+ .configuration-block {
11279
+ padding: 16px 23px 16px;
11280
+ background-color: @white;
11281
+ border: solid 1px @pale-grey;
11282
+ flex-grow: 1;
11283
+ flex-basis: 500px;
11284
+ margin-right: 16px;
11285
+ margin-bottom: 16px;
11286
+
11287
+ &.invisible {
11288
+ visibility: hidden;
11289
+ }
11290
+
11291
+ .title {
11292
+ font-size: 16px;
11293
+ font-weight: bold;
11294
+ font-style: normal;
11295
+ font-stretch: normal;
11296
+ letter-spacing: normal;
11297
+ text-align: left;
11298
+ color: @dusk-three;
11299
+ margin-bottom: 12px;
11300
+ }
11301
+
11302
+ .row {
11303
+ .label {
11304
+ display: block;
11305
+ font-family: Roboto, sans-serif;
11306
+ font-size: 14px;
11307
+ font-weight: 500;
11308
+ font-style: normal;
11309
+ font-stretch: normal;
11310
+ letter-spacing: normal;
11311
+ text-align: left;
11312
+ color: @dusk-three;
11313
+ padding: 0;
11314
+ }
11315
+ }
11316
+
11317
+ .ncl-version-configuration-labels, .ncl-version-configuration-annotations {
11318
+ .more-info-wrapper {
11319
+ height: 20px;
11320
+ }
11321
+ }
11322
+ }
11323
+ }
11324
+ }
11325
+ }
11326
+
11201
11327
  .ncl-version-monitoring {
11202
11328
  > .igz-scrollable-container {
11203
11329
  padding: 24px 25px 22px 41px;
@@ -11331,66 +11457,6 @@ ncl-navigation-tabs {
11331
11457
  }
11332
11458
  }
11333
11459
 
11334
- .ncl-version-configuration {
11335
- > .igz-scrollable-container {
11336
- padding: 24px 25px 22px 41px;
11337
- }
11338
-
11339
- .ncl-version-configuration-wrapper {
11340
- > .row {
11341
- display: flex;
11342
- justify-content: space-between;
11343
- flex-wrap: wrap;
11344
-
11345
- .configuration-block {
11346
- padding: 16px 23px 16px;
11347
- background-color: @white;
11348
- border: solid 1px @pale-grey;
11349
- flex-grow: 1;
11350
- flex-basis: 500px;
11351
- margin-right: 16px;
11352
- margin-bottom: 16px;
11353
-
11354
- &.invisible {
11355
- visibility: hidden;
11356
- }
11357
-
11358
- .title {
11359
- font-size: 16px;
11360
- font-weight: bold;
11361
- font-style: normal;
11362
- font-stretch: normal;
11363
- letter-spacing: normal;
11364
- text-align: left;
11365
- color: @dusk-three;
11366
- margin-bottom: 12px;
11367
- }
11368
-
11369
- .row {
11370
- .label {
11371
- display: block;
11372
- font-family: Roboto, sans-serif;
11373
- font-size: 14px;
11374
- font-weight: 500;
11375
- font-style: normal;
11376
- font-stretch: normal;
11377
- letter-spacing: normal;
11378
- text-align: left;
11379
- color: @dusk-three;
11380
- padding: 0;
11381
- }
11382
- }
11383
-
11384
- .ncl-version-configuration-labels, .ncl-version-configuration-annotations {
11385
- .more-info-wrapper {
11386
- height: 20px;
11387
- }
11388
- }
11389
- }
11390
- }
11391
- }
11392
- }
11393
-
11394
11460
  .ncl-version-trigger {
11395
11461
  padding: 11px 24px;
11396
11462
 
@@ -11421,10 +11487,6 @@ ncl-navigation-tabs {
11421
11487
  }
11422
11488
  }
11423
11489
 
11424
- .http-trigger-checkbox {
11425
- display: flex;
11426
- }
11427
-
11428
11490
  .item-row .item-name, .item-row .item-class, .item-row .item-info {
11429
11491
  padding-left: 0;
11430
11492
  }
@@ -11444,72 +11506,6 @@ ncl-navigation-tabs {
11444
11506
  }
11445
11507
  }
11446
11508
 
11447
- .ncl-function-version-row {
11448
- .actions-menu {
11449
- visibility: hidden;
11450
- }
11451
-
11452
- &.common-table-row {
11453
- height: 49px;
11454
-
11455
- &:hover {
11456
- igz-action-checkbox:not(.invisible) {
11457
- visibility: visible;
11458
- }
11459
-
11460
- .actions-menu {
11461
- visibility: visible;
11462
- }
11463
-
11464
- .check-row {
11465
- background-color: @pale-grey-three;
11466
- }
11467
- }
11468
-
11469
- igz-action-checkbox {
11470
- visibility: hidden;
11471
-
11472
- &.visible {
11473
- visibility: visible;
11474
- }
11475
- }
11476
-
11477
- .common-table-cells-container {
11478
- cursor: pointer;
11479
-
11480
- .common-table-cell {
11481
- .status-icon {
11482
- display: flex;
11483
- font-size: 20px;
11484
- cursor: pointer;
11485
- margin-left: 9px;
11486
- .duskThree(0.64);
11487
- color: @color;
11488
- }
11489
-
11490
- .common-table-cell-content {
11491
- width: 100%;
11492
- white-space: nowrap;
11493
- overflow: hidden;
11494
- text-overflow: ellipsis;
11495
- min-width: 0;
11496
- }
11497
-
11498
- .igz-action-panel {
11499
- &.invocation-tooltip {
11500
- height: 36px;
11501
- width: 56px;
11502
- }
11503
- }
11504
- }
11505
-
11506
- .function-status {
11507
- min-width: 100px;
11508
- }
11509
- }
11510
- }
11511
- }
11512
-
11513
11509
  .ncl-text-size-dropdown {
11514
11510
  display: flex;
11515
11511
  justify-content: flex-end;
@@ -13375,6 +13371,17 @@ ncl-navigation-tabs {
13375
13371
  }
13376
13372
  }
13377
13373
 
13374
+ .ncl-version-configuration-logging {
13375
+ .row {
13376
+ display: flex;
13377
+ position: relative;
13378
+
13379
+ .logging-wrapper {
13380
+ width: 100%;
13381
+ }
13382
+ }
13383
+ }
13384
+
13378
13385
  .ncl-version-configuration-runtime-attributes {
13379
13386
  .row:not(.info-row) {
13380
13387
  display: flex;
@@ -13426,17 +13433,6 @@ ncl-navigation-tabs {
13426
13433
  }
13427
13434
  }
13428
13435
 
13429
- .ncl-version-configuration-logging {
13430
- .row {
13431
- display: flex;
13432
- position: relative;
13433
-
13434
- .logging-wrapper {
13435
- width: 100%;
13436
- }
13437
- }
13438
- }
13439
-
13440
13436
  .ncl-version-configuration-volumes {
13441
13437
  .ncl-version-volume {
13442
13438
  .common-table-header {