iguazio.dashboard-controls 0.38.10-patch1 → 0.38.10-patch2

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.
@@ -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
  //
@@ -3584,6 +3578,12 @@ html input[disabled], html textarea[disabled] {
3584
3578
 
3585
3579
  // Media Query
3586
3580
  @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)";
3581
+ .common-table-cell {
3582
+ &.status {
3583
+ min-width: 95px;
3584
+ }
3585
+ }
3586
+
3587
3587
  ncl-functions {
3588
3588
  igz-info-page-actions-bar {
3589
3589
  .igz-info-page-actions-bar {
@@ -5539,6 +5539,164 @@ yx-axis
5539
5539
  }
5540
5540
  }
5541
5541
  }
5542
+ .igz-action-menu {
5543
+ .action-menu-color-set();
5544
+ .action-icon-color-set();
5545
+
5546
+ opacity: 1;
5547
+ position: relative;
5548
+
5549
+ .menu-button {
5550
+ color: @menu-btn-color;
5551
+ cursor: pointer;
5552
+ font-size: 18px;
5553
+ height: 19px;
5554
+ text-align: center;
5555
+ transition: @igz-basic-transition-color;
5556
+ width: 30px;
5557
+
5558
+ &.active,
5559
+ &:hover {
5560
+ color: @menu-btn-active-hover-color;
5561
+ }
5562
+ }
5563
+
5564
+ .menu-dropdown {
5565
+ visibility: hidden;
5566
+ background-color: @menu-dropdown-bg-color;
5567
+ border: @menu-dropdown-border;
5568
+ border-radius: 2px;
5569
+ box-shadow: @menu-dropdown-box-shadow;
5570
+ color: @menu-dropdown-color;
5571
+ font-family: @font-family-sans-serif;
5572
+ font-size: 13px;
5573
+ font-weight: 500;
5574
+ line-height: normal;
5575
+ margin-top: 9px;
5576
+ min-width: 129px;
5577
+ padding: 8px 0 0;
5578
+ position: absolute;
5579
+ z-index: 10;
5580
+ transform: translateX(-100%);
5581
+
5582
+ .actions-list {
5583
+ cursor: default;
5584
+ padding-bottom: 8px;
5585
+
5586
+ .tooltip {
5587
+ // !important used to overwrite third-party's inline style
5588
+ display: none !important;
5589
+ }
5590
+ }
5591
+
5592
+ .igz-action-item {
5593
+ color: @action-item-color;
5594
+ cursor: pointer;
5595
+ font-size: 13px;
5596
+ font-weight: 400;
5597
+ line-height: 32px;
5598
+ padding: 0 18px;
5599
+ text-align: left;
5600
+ white-space: nowrap;
5601
+
5602
+ &:hover,
5603
+ &.subtemplate-show {
5604
+ background-color: @action-item-hover-bg-color;
5605
+ }
5606
+
5607
+ &.inactive {
5608
+ color: @action-item-inactive-color;
5609
+ cursor: default;
5610
+
5611
+ &:hover {
5612
+ background-color: @menu-dropdown-bg-color;
5613
+ }
5614
+ }
5615
+
5616
+ .action-icon {
5617
+ color: @action-icon-color;
5618
+ display: inline-block;
5619
+ padding-right: 14px;
5620
+
5621
+ &.icon-placeholder {
5622
+ &:before {
5623
+ content: '';
5624
+ display: inline-block;
5625
+ }
5626
+ }
5627
+
5628
+ &:before {
5629
+ font-size: 16px;
5630
+ position: relative;
5631
+ text-align: center;
5632
+ width: 20px;
5633
+ top: 2px;
5634
+ }
5635
+ }
5636
+
5637
+ .action-label {
5638
+ display: inline-block;
5639
+ }
5640
+ }
5641
+
5642
+ .shortcuts-list {
5643
+ padding-bottom: 8px;
5644
+
5645
+ &:not(.first-block) {
5646
+ border-top: @shortcuts-list-not-first-block-border;
5647
+ padding-top: 8px;
5648
+ }
5649
+ }
5650
+
5651
+ .shortcuts-header {
5652
+ font-family: @font-family-sans-serif;
5653
+ color: @shortcuts-header-color;
5654
+ line-height: 24px;
5655
+ font-size: 13px;
5656
+ font-weight: 400;
5657
+ padding: 0 15px 4px 22px;
5658
+ text-align: left;
5659
+ }
5660
+
5661
+ .shortcuts-item {
5662
+ color: @shortcuts-item-color;
5663
+ cursor: pointer;
5664
+ font-weight: 400;
5665
+ white-space: nowrap;
5666
+ line-height: 32px;
5667
+ padding: 0 26px 0 32px;
5668
+ text-align: left;
5669
+ transition: @igz-basic-transition-color;
5670
+
5671
+ &:hover {
5672
+ background-color: @shortcuts-item-hover-bg-color;
5673
+ }
5674
+
5675
+ }
5676
+
5677
+ }
5678
+
5679
+ &.small-action-menu {
5680
+ .menu-button {
5681
+ color: @small-action-menu-btn-color;
5682
+ width: auto;
5683
+ font-size: 12px;
5684
+ display: inline-block;
5685
+ height: auto;
5686
+ margin: 0;
5687
+ vertical-align: sub;
5688
+ }
5689
+
5690
+ .menu-dropdown {
5691
+ margin: 0;
5692
+ }
5693
+ }
5694
+
5695
+ .upward-menu {
5696
+ transform: translate(-100%, -100%);
5697
+ }
5698
+ }
5699
+
5542
5700
  .igz-action-panel {
5543
5701
  .action-panel-color-set();
5544
5702
  .action-icon-color-set();
@@ -5749,198 +5907,40 @@ yx-axis
5749
5907
  }
5750
5908
  }
5751
5909
 
5752
- .igz-action-menu {
5753
- .action-menu-color-set();
5754
- .action-icon-color-set();
5910
+ .auto-complete-wrapper {
5911
+ .auto-complete-color-set();
5755
5912
 
5756
- opacity: 1;
5757
5913
  position: relative;
5758
5914
 
5759
- .menu-button {
5760
- color: @menu-btn-color;
5761
- cursor: pointer;
5762
- font-size: 18px;
5763
- height: 19px;
5764
- text-align: center;
5765
- transition: @igz-basic-transition-color;
5766
- width: 30px;
5915
+ .input-row {
5916
+ display: flex;
5917
+ width: 100%;
5767
5918
 
5768
- &.active,
5769
- &:hover {
5770
- color: @menu-btn-active-hover-color;
5919
+ .auto-complete-input {
5920
+ flex-grow: 3;
5771
5921
  }
5772
- }
5773
-
5774
- .menu-dropdown {
5775
- visibility: hidden;
5776
- background-color: @menu-dropdown-bg-color;
5777
- border: @menu-dropdown-border;
5778
- border-radius: 2px;
5779
- box-shadow: @menu-dropdown-box-shadow;
5780
- color: @menu-dropdown-color;
5781
- font-family: @font-family-sans-serif;
5782
- font-size: 13px;
5783
- font-weight: 500;
5784
- line-height: normal;
5785
- margin-top: 9px;
5786
- min-width: 129px;
5787
- padding: 8px 0 0;
5788
- position: absolute;
5789
- z-index: 10;
5790
- transform: translateX(-100%);
5791
-
5792
- .actions-list {
5793
- cursor: default;
5794
- padding-bottom: 8px;
5795
5922
 
5796
- .tooltip {
5797
- // !important used to overwrite third-party's inline style
5798
- display: none !important;
5799
- }
5923
+ .auto-complete-filters {
5924
+ width: 20%;
5800
5925
  }
5926
+ }
5801
5927
 
5802
- .igz-action-item {
5803
- color: @action-item-color;
5804
- cursor: pointer;
5805
- font-size: 13px;
5806
- font-weight: 400;
5807
- line-height: 32px;
5808
- padding: 0 18px;
5809
- text-align: left;
5810
- white-space: nowrap;
5811
-
5812
- &:hover,
5813
- &.subtemplate-show {
5814
- background-color: @action-item-hover-bg-color;
5815
- }
5928
+ .suggestions-row {
5929
+ .auto-complete-suggestions-container {
5930
+ position: absolute;
5931
+ background-color: @auto-complete-suggestions-container-bg-color;
5932
+ border-radius: 2px;
5933
+ box-shadow: @auto-complete-suggestions-container-box-shadow;
5934
+ color: @auto-complete-suggestions-container-color;
5935
+ max-height: 220px;
5936
+ overflow: auto;
5937
+ z-index: 1000;
5938
+ width: 100%;
5939
+ margin-top: 2px;
5816
5940
 
5817
- &.inactive {
5818
- color: @action-item-inactive-color;
5819
- cursor: default;
5820
-
5821
- &:hover {
5822
- background-color: @menu-dropdown-bg-color;
5823
- }
5824
- }
5825
-
5826
- .action-icon {
5827
- color: @action-icon-color;
5828
- display: inline-block;
5829
- padding-right: 14px;
5830
-
5831
- &.icon-placeholder {
5832
- &:before {
5833
- content: '';
5834
- display: inline-block;
5835
- }
5836
- }
5837
-
5838
- &:before {
5839
- font-size: 16px;
5840
- position: relative;
5841
- text-align: center;
5842
- width: 20px;
5843
- top: 2px;
5844
- }
5845
- }
5846
-
5847
- .action-label {
5848
- display: inline-block;
5849
- }
5850
- }
5851
-
5852
- .shortcuts-list {
5853
- padding-bottom: 8px;
5854
-
5855
- &:not(.first-block) {
5856
- border-top: @shortcuts-list-not-first-block-border;
5857
- padding-top: 8px;
5858
- }
5859
- }
5860
-
5861
- .shortcuts-header {
5862
- font-family: @font-family-sans-serif;
5863
- color: @shortcuts-header-color;
5864
- line-height: 24px;
5865
- font-size: 13px;
5866
- font-weight: 400;
5867
- padding: 0 15px 4px 22px;
5868
- text-align: left;
5869
- }
5870
-
5871
- .shortcuts-item {
5872
- color: @shortcuts-item-color;
5873
- cursor: pointer;
5874
- font-weight: 400;
5875
- white-space: nowrap;
5876
- line-height: 32px;
5877
- padding: 0 26px 0 32px;
5878
- text-align: left;
5879
- transition: @igz-basic-transition-color;
5880
-
5881
- &:hover {
5882
- background-color: @shortcuts-item-hover-bg-color;
5883
- }
5884
-
5885
- }
5886
-
5887
- }
5888
-
5889
- &.small-action-menu {
5890
- .menu-button {
5891
- color: @small-action-menu-btn-color;
5892
- width: auto;
5893
- font-size: 12px;
5894
- display: inline-block;
5895
- height: auto;
5896
- margin: 0;
5897
- vertical-align: sub;
5898
- }
5899
-
5900
- .menu-dropdown {
5901
- margin: 0;
5902
- }
5903
- }
5904
-
5905
- .upward-menu {
5906
- transform: translate(-100%, -100%);
5907
- }
5908
- }
5909
-
5910
- .auto-complete-wrapper {
5911
- .auto-complete-color-set();
5912
-
5913
- position: relative;
5914
-
5915
- .input-row {
5916
- display: flex;
5917
- width: 100%;
5918
-
5919
- .auto-complete-input {
5920
- flex-grow: 3;
5921
- }
5922
-
5923
- .auto-complete-filters {
5924
- width: 20%;
5925
- }
5926
- }
5927
-
5928
- .suggestions-row {
5929
- .auto-complete-suggestions-container {
5930
- position: absolute;
5931
- background-color: @auto-complete-suggestions-container-bg-color;
5932
- border-radius: 2px;
5933
- box-shadow: @auto-complete-suggestions-container-box-shadow;
5934
- color: @auto-complete-suggestions-container-color;
5935
- max-height: 220px;
5936
- overflow: auto;
5937
- z-index: 1000;
5938
- width: 100%;
5939
- margin-top: 2px;
5940
-
5941
- .list {
5942
- padding: 0;
5943
- margin: 0;
5941
+ .list {
5942
+ padding: 0;
5943
+ margin: 0;
5944
5944
 
5945
5945
  .list-item {
5946
5946
  color: @auto-complete-list-item-color;
@@ -6006,82 +6006,6 @@ yx-axis
6006
6006
  }
6007
6007
  }
6008
6008
 
6009
- .element-loading-status {
6010
- .element-loading-status-color-set();
6011
-
6012
- position: relative;
6013
- width: 100%;
6014
- height: 100%;
6015
-
6016
- .loader-wrapper {
6017
- height: 100%;
6018
- width: 100%;
6019
- position: relative;
6020
-
6021
- .loader-text {
6022
- color: @loading-text-color;
6023
- }
6024
- }
6025
-
6026
- .loading-error {
6027
- text-align: center;
6028
- line-height: 15px;
6029
- width: 100%;
6030
- height: 100%;
6031
- position: relative;
6032
-
6033
- .sad-icon {
6034
- position: absolute;
6035
- left: 32px;
6036
- }
6037
-
6038
- .loading-error-title, .loading-error-message {
6039
- font-size: 13px;
6040
- font-weight: 700;
6041
- padding: 0 15px;
6042
- }
6043
-
6044
- .loading-error-title {
6045
- color: @loading-error-title-color;
6046
- padding-top: 15px;
6047
- }
6048
-
6049
- .refresh-page {
6050
- color: @loading-error-refresh-page-color;
6051
- text-decoration: underline;
6052
- cursor: pointer;
6053
- }
6054
- }
6055
-
6056
- // Small size status
6057
-
6058
- &.loading-status-small {
6059
- .loader-fading-circle {
6060
- width: 20px;
6061
- height: 20px;
6062
- }
6063
-
6064
- .loading-error {
6065
-
6066
- .loading-error-title, .loading-error-message {
6067
- text-overflow: ellipsis;
6068
- overflow: hidden;
6069
- padding: 0;
6070
- }
6071
-
6072
- .loading-error-title {
6073
- padding-top: 8px;
6074
- }
6075
-
6076
- .refresh-page {
6077
- overflow: hidden;
6078
- text-overflow: ellipsis;
6079
- padding: 0;
6080
- }
6081
- }
6082
- }
6083
- }
6084
-
6085
6009
  .default-dropdown {
6086
6010
  .default-dropdown-color-set();
6087
6011
  .severity-icons-color-set();
@@ -6522,48 +6446,124 @@ yx-axis
6522
6446
  }
6523
6447
  }
6524
6448
 
6525
- .more-info-wrapper {
6526
- .more-info-color-set();
6449
+ .element-loading-status {
6450
+ .element-loading-status-color-set();
6527
6451
 
6528
6452
  position: relative;
6529
- display: inline-flex;
6530
- align-items: center;
6531
- height: 36px;
6532
- margin-left: 8px;
6453
+ width: 100%;
6454
+ height: 100%;
6533
6455
 
6534
- .question-mark {
6535
- cursor: default;
6456
+ .loader-wrapper {
6457
+ height: 100%;
6458
+ width: 100%;
6459
+ position: relative;
6536
6460
 
6537
- &::before {
6538
- color: @icon-help-round-before-color;
6539
- background-color: @icon-help-round-before-bg-color;
6461
+ .loader-text {
6462
+ color: @loading-text-color;
6540
6463
  }
6464
+ }
6541
6465
 
6542
- &:hover {
6543
- &::before {
6544
- color: @icon-help-round-hover-before-color;
6545
- }
6466
+ .loading-error {
6467
+ text-align: center;
6468
+ line-height: 15px;
6469
+ width: 100%;
6470
+ height: 100%;
6471
+ position: relative;
6546
6472
 
6547
- + .row-description-wrapper.row-description {
6548
- color: @icon-help-description-hover-color;
6549
- }
6473
+ .sad-icon {
6474
+ position: absolute;
6475
+ left: 32px;
6550
6476
  }
6551
6477
 
6552
- &.igz-icon-alert-message {
6553
- &::before {
6554
- color: @icon-warn-hover-before-color;
6555
- background-color: @icon-warn-before-bg-color;
6556
- }
6557
-
6558
- &:hover {
6559
- &::before {
6560
- color: @icon-warn-before-color;
6561
- }
6562
- }
6478
+ .loading-error-title, .loading-error-message {
6479
+ font-size: 13px;
6480
+ font-weight: 700;
6481
+ padding: 0 15px;
6563
6482
  }
6564
6483
 
6565
- &.click-trigger {
6566
- cursor: pointer;
6484
+ .loading-error-title {
6485
+ color: @loading-error-title-color;
6486
+ padding-top: 15px;
6487
+ }
6488
+
6489
+ .refresh-page {
6490
+ color: @loading-error-refresh-page-color;
6491
+ text-decoration: underline;
6492
+ cursor: pointer;
6493
+ }
6494
+ }
6495
+
6496
+ // Small size status
6497
+
6498
+ &.loading-status-small {
6499
+ .loader-fading-circle {
6500
+ width: 20px;
6501
+ height: 20px;
6502
+ }
6503
+
6504
+ .loading-error {
6505
+
6506
+ .loading-error-title, .loading-error-message {
6507
+ text-overflow: ellipsis;
6508
+ overflow: hidden;
6509
+ padding: 0;
6510
+ }
6511
+
6512
+ .loading-error-title {
6513
+ padding-top: 8px;
6514
+ }
6515
+
6516
+ .refresh-page {
6517
+ overflow: hidden;
6518
+ text-overflow: ellipsis;
6519
+ padding: 0;
6520
+ }
6521
+ }
6522
+ }
6523
+ }
6524
+
6525
+ .more-info-wrapper {
6526
+ .more-info-color-set();
6527
+
6528
+ position: relative;
6529
+ display: inline-flex;
6530
+ align-items: center;
6531
+ height: 36px;
6532
+ margin-left: 8px;
6533
+
6534
+ .question-mark {
6535
+ cursor: default;
6536
+
6537
+ &::before {
6538
+ color: @icon-help-round-before-color;
6539
+ background-color: @icon-help-round-before-bg-color;
6540
+ }
6541
+
6542
+ &:hover {
6543
+ &::before {
6544
+ color: @icon-help-round-hover-before-color;
6545
+ }
6546
+
6547
+ + .row-description-wrapper.row-description {
6548
+ color: @icon-help-description-hover-color;
6549
+ }
6550
+ }
6551
+
6552
+ &.igz-icon-alert-message {
6553
+ &::before {
6554
+ color: @icon-warn-hover-before-color;
6555
+ background-color: @icon-warn-before-bg-color;
6556
+ }
6557
+
6558
+ &:hover {
6559
+ &::before {
6560
+ color: @icon-warn-before-color;
6561
+ }
6562
+ }
6563
+ }
6564
+
6565
+ &.click-trigger {
6566
+ cursor: pointer;
6567
6567
  }
6568
6568
 
6569
6569
  &+ .row-description-wrapper {
@@ -6872,45 +6872,6 @@ yx-axis
6872
6872
  }
6873
6873
  }
6874
6874
 
6875
- .igz-navigation-tabs {
6876
- .navigation-tabs-color-set();
6877
-
6878
- background-color: @navigation-tabs-bg-color;
6879
- height: 56px;
6880
- padding-top: 7px;
6881
-
6882
- .navigation-tab {
6883
- float: left;
6884
- height: 32px;
6885
- padding: 15px 24px 0;
6886
- font-family: @font-family-sans-serif;
6887
- color: @navigation-tab-color;
6888
- font-size: 14px;
6889
- text-align: center;
6890
- cursor: pointer;
6891
- border-bottom: @navigation-tab-border-bottom;
6892
- box-sizing: content-box;
6893
-
6894
- &.active, &.active:hover {
6895
- background-color: @navigation-tab-active-hover-bg-color;
6896
- color: @navigation-tab-active-hover-color;
6897
- border-bottom: @navigation-tab-active-hover-border-bottom;
6898
- }
6899
-
6900
- &:hover {
6901
- background-color: @navigation-tab-hover-bg-color;
6902
- }
6903
-
6904
- &.active {
6905
- background-color: @navigation-tab-active-bg-color;
6906
- }
6907
-
6908
- @media screen and (max-width: 940px) {
6909
- padding: 15px 12px 0;
6910
- }
6911
- }
6912
- }
6913
-
6914
6875
  .igz-number-input {
6915
6876
  .number-input-color-set();
6916
6877
 
@@ -7064,6 +7025,45 @@ yx-axis
7064
7025
  }
7065
7026
  }
7066
7027
 
7028
+ .igz-navigation-tabs {
7029
+ .navigation-tabs-color-set();
7030
+
7031
+ background-color: @navigation-tabs-bg-color;
7032
+ height: 56px;
7033
+ padding-top: 7px;
7034
+
7035
+ .navigation-tab {
7036
+ float: left;
7037
+ height: 32px;
7038
+ padding: 15px 24px 0;
7039
+ font-family: @font-family-sans-serif;
7040
+ color: @navigation-tab-color;
7041
+ font-size: 14px;
7042
+ text-align: center;
7043
+ cursor: pointer;
7044
+ border-bottom: @navigation-tab-border-bottom;
7045
+ box-sizing: content-box;
7046
+
7047
+ &.active, &.active:hover {
7048
+ background-color: @navigation-tab-active-hover-bg-color;
7049
+ color: @navigation-tab-active-hover-color;
7050
+ border-bottom: @navigation-tab-active-hover-border-bottom;
7051
+ }
7052
+
7053
+ &:hover {
7054
+ background-color: @navigation-tab-hover-bg-color;
7055
+ }
7056
+
7057
+ &.active {
7058
+ background-color: @navigation-tab-active-bg-color;
7059
+ }
7060
+
7061
+ @media screen and (max-width: 940px) {
7062
+ padding: 15px 12px 0;
7063
+ }
7064
+ }
7065
+ }
7066
+
7067
7067
  .igz-pagination {
7068
7068
  .pagination-color-set();
7069
7069
 
@@ -7212,97 +7212,6 @@ yx-axis
7212
7212
  }
7213
7213
  }
7214
7214
  }
7215
- .igz-size {
7216
- .size-color-set();
7217
-
7218
- align-items: center;
7219
- display: flex;
7220
- justify-content: space-between;
7221
- min-height: 40px;
7222
-
7223
- &:after {
7224
- content: ' ';
7225
- display: inline-block;
7226
- vertical-align: middle;
7227
- }
7228
-
7229
- .size-value {
7230
- line-height: 1;
7231
- flex: 0 0 100px;
7232
- min-width: 100px;
7233
-
7234
- > span {
7235
- line-height: 25px;
7236
- }
7237
-
7238
- &.short {
7239
- flex: 0 0 75px;
7240
- min-width: 75px;
7241
- }
7242
-
7243
- &.shorten {
7244
- flex: 0 0 60px;
7245
- min-width: 60px;
7246
- }
7247
-
7248
- &.shortest {
7249
- flex: 0 0 40px;
7250
- min-width: 40px;
7251
- }
7252
- }
7253
-
7254
- .size-reserved {
7255
- color: @size-reserved-color;
7256
- font-size: 12px;
7257
-
7258
- .icon-font-arrow-right:before {
7259
- color: @size-reserved-arrow-right-before-color;
7260
- font-size: 10px;
7261
- padding: 0 4px 0 4px;
7262
- }
7263
-
7264
- .icon-font-infinity:before {
7265
- color: @size-reserved-infinity-before-color;
7266
- font-size: 10px;
7267
- }
7268
- }
7269
-
7270
- .size-chart {
7271
- flex: 1 1 auto;
7272
- min-width: 0;
7273
-
7274
- div.highcharts-tooltip {
7275
- position: fixed !important;
7276
-
7277
- .igz-tooltip-wrapper {
7278
- color: @size-chart-tooltip-wrapper-color;
7279
-
7280
- &.used-capacity-tooltip-wrapper {
7281
- .igz-row {
7282
- .tooltip-label,
7283
- .tooltip-value {
7284
- text-overflow: unset;
7285
- }
7286
- }
7287
- }
7288
-
7289
- .tooltip-header {
7290
- padding-bottom: 6px;
7291
- margin-bottom: 5px;
7292
- line-height: 1.1;
7293
- text-align: center;
7294
- }
7295
- }
7296
- }
7297
- }
7298
-
7299
- .igz-highcharts-wrapper {
7300
- height: 40px;
7301
- position: relative;
7302
- width: 100%;
7303
- }
7304
- }
7305
-
7306
7215
  .search-input {
7307
7216
  .search-input-color-set();
7308
7217
 
@@ -7490,12 +7399,103 @@ yx-axis
7490
7399
  }
7491
7400
  }
7492
7401
  }
7493
- .igz-slider-input-block {
7494
- .igz-slider-input-block-color-set();
7495
-
7496
- position: relative;
7402
+ .igz-size {
7403
+ .size-color-set();
7497
7404
 
7498
- .igz-slider-input-title {
7405
+ align-items: center;
7406
+ display: flex;
7407
+ justify-content: space-between;
7408
+ min-height: 40px;
7409
+
7410
+ &:after {
7411
+ content: ' ';
7412
+ display: inline-block;
7413
+ vertical-align: middle;
7414
+ }
7415
+
7416
+ .size-value {
7417
+ line-height: 1;
7418
+ flex: 0 0 100px;
7419
+ min-width: 100px;
7420
+
7421
+ > span {
7422
+ line-height: 25px;
7423
+ }
7424
+
7425
+ &.short {
7426
+ flex: 0 0 75px;
7427
+ min-width: 75px;
7428
+ }
7429
+
7430
+ &.shorten {
7431
+ flex: 0 0 60px;
7432
+ min-width: 60px;
7433
+ }
7434
+
7435
+ &.shortest {
7436
+ flex: 0 0 40px;
7437
+ min-width: 40px;
7438
+ }
7439
+ }
7440
+
7441
+ .size-reserved {
7442
+ color: @size-reserved-color;
7443
+ font-size: 12px;
7444
+
7445
+ .icon-font-arrow-right:before {
7446
+ color: @size-reserved-arrow-right-before-color;
7447
+ font-size: 10px;
7448
+ padding: 0 4px 0 4px;
7449
+ }
7450
+
7451
+ .icon-font-infinity:before {
7452
+ color: @size-reserved-infinity-before-color;
7453
+ font-size: 10px;
7454
+ }
7455
+ }
7456
+
7457
+ .size-chart {
7458
+ flex: 1 1 auto;
7459
+ min-width: 0;
7460
+
7461
+ div.highcharts-tooltip {
7462
+ position: fixed !important;
7463
+
7464
+ .igz-tooltip-wrapper {
7465
+ color: @size-chart-tooltip-wrapper-color;
7466
+
7467
+ &.used-capacity-tooltip-wrapper {
7468
+ .igz-row {
7469
+ .tooltip-label,
7470
+ .tooltip-value {
7471
+ text-overflow: unset;
7472
+ }
7473
+ }
7474
+ }
7475
+
7476
+ .tooltip-header {
7477
+ padding-bottom: 6px;
7478
+ margin-bottom: 5px;
7479
+ line-height: 1.1;
7480
+ text-align: center;
7481
+ }
7482
+ }
7483
+ }
7484
+ }
7485
+
7486
+ .igz-highcharts-wrapper {
7487
+ height: 40px;
7488
+ position: relative;
7489
+ width: 100%;
7490
+ }
7491
+ }
7492
+
7493
+ .igz-slider-input-block {
7494
+ .igz-slider-input-block-color-set();
7495
+
7496
+ position: relative;
7497
+
7498
+ .igz-slider-input-title {
7499
7499
  float: left;
7500
7500
  display: table;
7501
7501
  min-height: 30px;
@@ -7619,83 +7619,6 @@ yx-axis
7619
7619
  }
7620
7620
  }
7621
7621
 
7622
- .ngdialog.text-edit {
7623
- .text-edit-color-set();
7624
-
7625
- .ngdialog-content {
7626
- padding: 0;
7627
- width: 1000px;
7628
- height: 678px;
7629
-
7630
- .text-preview-directive-wrapper {
7631
- .title {
7632
- margin: 25px 0 0 24px;
7633
- padding: 0 70px 0 0;
7634
- }
7635
-
7636
- .close-button {
7637
- position: absolute;
7638
- top: 24px;
7639
- right: 24px;
7640
- font-size: 18px;
7641
- color: @close-btn-color;
7642
- }
7643
-
7644
- .buttons {
7645
- margin-right: 24px;
7646
- }
7647
-
7648
- .text-preview-wrapper {
7649
- background-color: @text-preview-wrapper-bg-color;
7650
- border-top: @text-preview-wrapper-border-top;
7651
- border-bottom: @text-preview-wrapper-border-bottom;
7652
- border-radius: 2px;
7653
- margin-bottom: 16px;
7654
- padding: 15px 22px 17px;
7655
- min-width: 690px;
7656
- height: 550px;
7657
-
7658
- .text-preview-container {
7659
- width: 100%;
7660
- line-height: 1.9;
7661
- text-align: left;
7662
- padding-right: 22px;
7663
- font-size: 13px;
7664
- color: @text-preview-container-color;
7665
- resize: none;
7666
- overflow: hidden;
7667
- border-color: @text-preview-container-border-color;
7668
- background-color: @text-preview-container-bg-color;
7669
- cursor: text;
7670
- }
7671
-
7672
- .text-preview-container:focus {
7673
- outline: 0;
7674
- }
7675
-
7676
- .word-wrap-checkbox-wrapper {
7677
- width: 100%;
7678
- display: flex;
7679
- justify-content: flex-end;
7680
-
7681
- .col-checkbox {
7682
- line-height: normal;
7683
- height: 25px;
7684
-
7685
- label:before {
7686
- font-size: 16px;
7687
- }
7688
- }
7689
- }
7690
- }
7691
- }
7692
- }
7693
-
7694
- .ncl-monaco {
7695
- height: 500px;
7696
- }
7697
- }
7698
-
7699
7622
  .splash-screen {
7700
7623
  .splash-screen-color-set();
7701
7624
 
@@ -7803,6 +7726,83 @@ yx-axis
7803
7726
  }
7804
7727
  }
7805
7728
  }
7729
+ .ngdialog.text-edit {
7730
+ .text-edit-color-set();
7731
+
7732
+ .ngdialog-content {
7733
+ padding: 0;
7734
+ width: 1000px;
7735
+ height: 678px;
7736
+
7737
+ .text-preview-directive-wrapper {
7738
+ .title {
7739
+ margin: 25px 0 0 24px;
7740
+ padding: 0 70px 0 0;
7741
+ }
7742
+
7743
+ .close-button {
7744
+ position: absolute;
7745
+ top: 24px;
7746
+ right: 24px;
7747
+ font-size: 18px;
7748
+ color: @close-btn-color;
7749
+ }
7750
+
7751
+ .buttons {
7752
+ margin-right: 24px;
7753
+ }
7754
+
7755
+ .text-preview-wrapper {
7756
+ background-color: @text-preview-wrapper-bg-color;
7757
+ border-top: @text-preview-wrapper-border-top;
7758
+ border-bottom: @text-preview-wrapper-border-bottom;
7759
+ border-radius: 2px;
7760
+ margin-bottom: 16px;
7761
+ padding: 15px 22px 17px;
7762
+ min-width: 690px;
7763
+ height: 550px;
7764
+
7765
+ .text-preview-container {
7766
+ width: 100%;
7767
+ line-height: 1.9;
7768
+ text-align: left;
7769
+ padding-right: 22px;
7770
+ font-size: 13px;
7771
+ color: @text-preview-container-color;
7772
+ resize: none;
7773
+ overflow: hidden;
7774
+ border-color: @text-preview-container-border-color;
7775
+ background-color: @text-preview-container-bg-color;
7776
+ cursor: text;
7777
+ }
7778
+
7779
+ .text-preview-container:focus {
7780
+ outline: 0;
7781
+ }
7782
+
7783
+ .word-wrap-checkbox-wrapper {
7784
+ width: 100%;
7785
+ display: flex;
7786
+ justify-content: flex-end;
7787
+
7788
+ .col-checkbox {
7789
+ line-height: normal;
7790
+ height: 25px;
7791
+
7792
+ label:before {
7793
+ font-size: 16px;
7794
+ }
7795
+ }
7796
+ }
7797
+ }
7798
+ }
7799
+ }
7800
+
7801
+ .ncl-monaco {
7802
+ height: 500px;
7803
+ }
7804
+ }
7805
+
7806
7806
  .toast-status-panel {
7807
7807
  .toast-status-panel-color-set();
7808
7808
 
@@ -8829,24 +8829,9 @@ body {
8829
8829
  }
8830
8830
  }
8831
8831
 
8832
- .override-function-dialog {
8833
- .sub-title {
8834
- font-size: 16px;
8835
- color: @silver-chalice-two;
8836
- }
8837
-
8838
- .buttons {
8839
- display: flex;
8840
-
8841
- .function-redirect-button {
8842
- margin-right: auto;
8843
- }
8844
- }
8845
- }
8846
-
8847
- .ncl-function-collapsing-row {
8848
- background-color: @white;
8849
- margin-bottom: 8px;
8832
+ .ncl-function-collapsing-row {
8833
+ background-color: @white;
8834
+ margin-bottom: 8px;
8850
8835
 
8851
8836
  .function-title-block {
8852
8837
  height: 50px;
@@ -9236,76 +9221,19 @@ body {
9236
9221
  }
9237
9222
  }
9238
9223
 
9239
- // Style rules for actions bar
9240
- .border-top > .igz-info-page-actions-bar {
9241
- .info-page-actions-bar-color-set();
9242
-
9243
- border-top: @info-page-actions-bar-border-top;
9244
- }
9245
-
9246
- .igz-info-page-actions-bar {
9247
- .info-page-actions-bar-color-set();
9248
-
9249
- background-color: @info-page-actions-bar-bg-color;
9250
- position: absolute;
9251
- top: 0;
9252
- right: 0;
9253
- left: 0;
9254
- height: 56px;
9255
- padding: 8px 20px 8px 16px;
9256
- border-bottom: @info-page-actions-bar-border-bottom;
9257
- transition: @igz-basic-transition;
9258
-
9259
- &.upper-pane-opened {
9260
- top: 150px;
9261
- }
9262
-
9263
- &.filters-opened {
9264
- right: 376px;
9265
- padding-right: 8px;
9266
- }
9267
-
9268
- &.info-pane-opened {
9269
- right: 379px;
9270
- padding-right: 8px;
9271
- }
9272
-
9273
- .actions-bar-left {
9274
- float: left;
9275
- height: 100%;
9276
- }
9277
-
9278
- .actions-bar-right {
9279
- float: right;
9280
- height: 100%;
9281
- text-align: right;
9282
- }
9283
-
9284
- &:before, &:after {
9285
- content: " ";
9286
- display: table;
9287
- }
9288
- &:after {
9289
- clear: both;
9290
- }
9291
-
9292
- .actions-panes-block {
9293
- padding-left: 16px;
9294
- border-left: @actions-panes-block-border-left;
9295
- }
9296
-
9297
- .actions-content-block {
9298
- margin: 0 8px 0 32px;
9299
- }
9224
+ .override-function-dialog {
9225
+ .sub-title {
9226
+ font-size: 16px;
9227
+ color: @silver-chalice-two;
9228
+ }
9300
9229
 
9301
- .actions-buttons-block {
9302
- margin-left: 16px;
9303
- margin-top: 1px;
9230
+ .buttons {
9231
+ display: flex;
9304
9232
 
9305
- [class^="igz-button"]:not(:first-child), [class*="igz-button"]:not(:first-child) {
9306
- margin-left: 8px;
9307
- }
9233
+ .function-redirect-button {
9234
+ margin-right: auto;
9308
9235
  }
9236
+ }
9309
9237
  }
9310
9238
 
9311
9239
  .igz-info-page-content-wrapper {
@@ -9430,6 +9358,78 @@ igz-info-page-content {
9430
9358
  }
9431
9359
 
9432
9360
 
9361
+ // Style rules for actions bar
9362
+ .border-top > .igz-info-page-actions-bar {
9363
+ .info-page-actions-bar-color-set();
9364
+
9365
+ border-top: @info-page-actions-bar-border-top;
9366
+ }
9367
+
9368
+ .igz-info-page-actions-bar {
9369
+ .info-page-actions-bar-color-set();
9370
+
9371
+ background-color: @info-page-actions-bar-bg-color;
9372
+ position: absolute;
9373
+ top: 0;
9374
+ right: 0;
9375
+ left: 0;
9376
+ height: 56px;
9377
+ padding: 8px 20px 8px 16px;
9378
+ border-bottom: @info-page-actions-bar-border-bottom;
9379
+ transition: @igz-basic-transition;
9380
+
9381
+ &.upper-pane-opened {
9382
+ top: 150px;
9383
+ }
9384
+
9385
+ &.filters-opened {
9386
+ right: 376px;
9387
+ padding-right: 8px;
9388
+ }
9389
+
9390
+ &.info-pane-opened {
9391
+ right: 379px;
9392
+ padding-right: 8px;
9393
+ }
9394
+
9395
+ .actions-bar-left {
9396
+ float: left;
9397
+ height: 100%;
9398
+ }
9399
+
9400
+ .actions-bar-right {
9401
+ float: right;
9402
+ height: 100%;
9403
+ text-align: right;
9404
+ }
9405
+
9406
+ &:before, &:after {
9407
+ content: " ";
9408
+ display: table;
9409
+ }
9410
+ &:after {
9411
+ clear: both;
9412
+ }
9413
+
9414
+ .actions-panes-block {
9415
+ padding-left: 16px;
9416
+ border-left: @actions-panes-block-border-left;
9417
+ }
9418
+
9419
+ .actions-content-block {
9420
+ margin: 0 8px 0 32px;
9421
+ }
9422
+
9423
+ .actions-buttons-block {
9424
+ margin-left: 16px;
9425
+ margin-top: 1px;
9426
+
9427
+ [class^="igz-button"]:not(:first-child), [class*="igz-button"]:not(:first-child) {
9428
+ margin-left: 8px;
9429
+ }
9430
+ }
9431
+ }
9432
+
9433
9433
  .info-page-filters-bookmark {
9434
9434
  .info-page-filters-color-set();
9435
9435
 
@@ -10200,24 +10200,6 @@ ncl-breadcrumbs {
10200
10200
  }
10201
10201
  }
10202
10202
 
10203
- .view-yaml-dialog-wrapper {
10204
- .ngdialog-content {
10205
- .view-yaml-dialog-header {
10206
- .title {
10207
- margin-bottom: 10px;
10208
- }
10209
-
10210
- .copy-to-clipboard {
10211
- width: 20px;
10212
- }
10213
- }
10214
-
10215
- .monaco-editor {
10216
- min-width: 700px;
10217
- min-height: 450px;
10218
- }
10219
- }
10220
- }
10221
10203
  .ncl-key-value-input {
10222
10204
  .input-wrapper {
10223
10205
  width: 100%;
@@ -10421,6 +10403,24 @@ ncl-breadcrumbs {
10421
10403
  }
10422
10404
  }
10423
10405
 
10406
+ .view-yaml-dialog-wrapper {
10407
+ .ngdialog-content {
10408
+ .view-yaml-dialog-header {
10409
+ .title {
10410
+ margin-bottom: 10px;
10411
+ }
10412
+
10413
+ .copy-to-clipboard {
10414
+ width: 20px;
10415
+ }
10416
+ }
10417
+
10418
+ .monaco-editor {
10419
+ min-width: 700px;
10420
+ min-height: 450px;
10421
+ }
10422
+ }
10423
+ }
10424
10424
  .ncl-monaco {
10425
10425
  .ncl-monaco-wrapper {
10426
10426
  padding-top: 20px;
@@ -11554,53 +11554,123 @@ ncl-navigation-tabs {
11554
11554
  }
11555
11555
  }
11556
11556
 
11557
- .function-from-template-content {
11558
- .ncl-function-from-template-color-set();
11559
-
11560
- padding: 0 72px 0 63px;
11557
+ .function-import-wrapper-content {
11558
+ font-family: @font-family-sans-serif;
11559
+ padding-left: 3%;
11560
+ width: 96%;
11561
11561
 
11562
- .configuration-form {
11562
+ .function-import-form {
11563
11563
  display: flex;
11564
+ align-items: flex-end;
11565
+ margin-bottom: 10px;
11564
11566
 
11565
- .function-name-wrapper {
11566
- width: 50%;
11567
- display: flex;
11568
- justify-content: flex-end;
11569
- margin-bottom: 2px;
11570
-
11571
- .projects-drop-down {
11572
- width: 40%;
11573
- margin-right: 48px;
11567
+ .projects-drop-down {
11568
+ margin-right: 48px;
11574
11569
 
11575
- .input-label {
11576
- font-size: 14px;
11577
- font-weight: 600;
11578
- color: @dusk-three;
11579
- }
11570
+ .input-label {
11571
+ font-size: 14px;
11572
+ font-weight: 600;
11573
+ color: @dusk-three;
11574
+ }
11580
11575
 
11581
- igz-default-dropdown {
11582
- .default-dropdown {
11583
- background-color: @white;
11576
+ igz-default-dropdown {
11577
+ .default-dropdown {
11578
+ background-color: @white;
11584
11579
 
11585
- .default-dropdown-field {
11586
- &:focus {
11587
- background-color: inherit;
11588
- }
11580
+ .default-dropdown-field {
11581
+ &:focus {
11582
+ background-color: inherit;
11589
11583
  }
11590
11584
  }
11591
11585
  }
11592
11586
  }
11587
+ }
11593
11588
 
11594
- .function-name {
11595
- width: 100%;
11596
-
11597
- .input-label {
11598
- font-size: 14px;
11599
- font-weight: 600;
11600
- color: @dusk-three;
11601
- }
11589
+ .function-import-actions-bar {
11590
+ display: flex;
11602
11591
 
11603
- igz-validating-input-field {
11592
+ .function-import-file-picker {
11593
+ .file-picker-wrapper {
11594
+ margin: 0;
11595
+ line-height: 34px;
11596
+
11597
+ .igz-icon-upload {
11598
+ margin-right: 10px;
11599
+ }
11600
+ }
11601
+
11602
+ .function-import-input {
11603
+ opacity: 0;
11604
+ position: absolute;
11605
+ z-index: -1;
11606
+ }
11607
+ }
11608
+ }
11609
+ }
11610
+
11611
+ .splash-screen {
11612
+ top: 0;
11613
+ }
11614
+
11615
+ .function-import-monaco {
11616
+ .ncl-monaco {
11617
+ height: 370px;
11618
+ width: 100%;
11619
+
11620
+ .monaco-code-editor {
11621
+ height: 100%;
11622
+ }
11623
+ }
11624
+ }
11625
+ }
11626
+
11627
+ .function-from-template-content {
11628
+ .ncl-function-from-template-color-set();
11629
+
11630
+ padding: 0 72px 0 63px;
11631
+
11632
+ .configuration-form {
11633
+ display: flex;
11634
+
11635
+ .function-name-wrapper {
11636
+ width: 50%;
11637
+ display: flex;
11638
+ justify-content: flex-end;
11639
+ margin-bottom: 2px;
11640
+
11641
+ .projects-drop-down {
11642
+ width: 40%;
11643
+ margin-right: 48px;
11644
+
11645
+ .input-label {
11646
+ font-size: 14px;
11647
+ font-weight: 600;
11648
+ color: @dusk-three;
11649
+ }
11650
+
11651
+ igz-default-dropdown {
11652
+ .default-dropdown {
11653
+ background-color: @white;
11654
+
11655
+ .default-dropdown-field {
11656
+ &:focus {
11657
+ background-color: inherit;
11658
+ }
11659
+ }
11660
+ }
11661
+ }
11662
+ }
11663
+
11664
+ .function-name {
11665
+ width: 100%;
11666
+
11667
+ .input-label {
11668
+ font-size: 14px;
11669
+ font-weight: 600;
11670
+ color: @dusk-three;
11671
+ }
11672
+
11673
+ igz-validating-input-field {
11604
11674
  margin-left: 2px;
11605
11675
  }
11606
11676
  }
@@ -11816,76 +11886,6 @@ ncl-navigation-tabs {
11816
11886
  }
11817
11887
  }
11818
11888
 
11819
- .function-import-wrapper-content {
11820
- font-family: @font-family-sans-serif;
11821
- padding-left: 3%;
11822
- width: 96%;
11823
-
11824
- .function-import-form {
11825
- display: flex;
11826
- align-items: flex-end;
11827
- margin-bottom: 10px;
11828
-
11829
- .projects-drop-down {
11830
- margin-right: 48px;
11831
-
11832
- .input-label {
11833
- font-size: 14px;
11834
- font-weight: 600;
11835
- color: @dusk-three;
11836
- }
11837
-
11838
- igz-default-dropdown {
11839
- .default-dropdown {
11840
- background-color: @white;
11841
-
11842
- .default-dropdown-field {
11843
- &:focus {
11844
- background-color: inherit;
11845
- }
11846
- }
11847
- }
11848
- }
11849
- }
11850
-
11851
- .function-import-actions-bar {
11852
- display: flex;
11853
-
11854
- .function-import-file-picker {
11855
- .file-picker-wrapper {
11856
- margin: 0;
11857
- line-height: 34px;
11858
-
11859
- .igz-icon-upload {
11860
- margin-right: 10px;
11861
- }
11862
- }
11863
-
11864
- .function-import-input {
11865
- opacity: 0;
11866
- position: absolute;
11867
- z-index: -1;
11868
- }
11869
- }
11870
- }
11871
- }
11872
-
11873
- .splash-screen {
11874
- top: 0;
11875
- }
11876
-
11877
- .function-import-monaco {
11878
- .ncl-monaco {
11879
- height: 370px;
11880
- width: 100%;
11881
-
11882
- .monaco-code-editor {
11883
- height: 100%;
11884
- }
11885
- }
11886
- }
11887
- }
11888
-
11889
11889
  .test-events-pane-wrapper {
11890
11890
  position: absolute;
11891
11891
  height: 100%;
@@ -12610,71 +12610,6 @@ ncl-navigation-tabs {
12610
12610
  }
12611
12611
  }
12612
12612
 
12613
- .ncl-test-events-navigation-tabs {
12614
- display: flex;
12615
- background: #f8f8fb;
12616
- height: 40px;
12617
- border-top: 1px solid @pale-grey;
12618
- border-bottom: 1px solid @pale-grey;
12619
-
12620
- .test-events-navigation-tab {
12621
- .duskThree(0.64);
12622
- position: relative;
12623
- float: left;
12624
- height: 27px;
12625
- padding: 10px 40px 0;
12626
- font-family: @font-family-sans-serif;
12627
- color: @color;
12628
- font-size: 13px;
12629
- text-align: center;
12630
- cursor: pointer;
12631
- border-bottom: none;
12632
- box-sizing: content-box;
12633
-
12634
- &.active, &.active:hover {
12635
- background: none;
12636
- color: @dusk-three;
12637
- border-bottom: 2px solid @dusk-three;
12638
- font-weight: bold;
12639
-
12640
- .badge {
12641
- color: @white;
12642
- background-color: @light-grey-blue;
12643
- }
12644
- }
12645
-
12646
- .badge {
12647
- display: inline-block;
12648
- min-width: 22px;
12649
- padding: 3px 7px;
12650
- font-size: 12px;
12651
- font-weight: 500;
12652
- color: @greyish-purple;
12653
- line-height: 1;
12654
- vertical-align: middle;
12655
- white-space: nowrap;
12656
- text-align: center;
12657
- background-color: @pale-grey;
12658
- border-radius: 7.5px;
12659
- margin-left: 7px;
12660
- margin-top: -4px;
12661
- }
12662
- }
12663
-
12664
- .default-dropdown {
12665
- float: left;
12666
- width: 105px;
12667
-
12668
- .default-dropdown-field:not(:hover) {
12669
- border-color: transparent;
12670
- }
12671
-
12672
- .default-dropdown-container {
12673
- z-index: 3;
12674
- }
12675
- }
12676
- }
12677
-
12678
12613
  .ncl-test-events-logs {
12679
12614
  padding: 6px 17px 25px;
12680
12615
  background-color: @white;
@@ -12904,6 +12839,167 @@ ncl-navigation-tabs {
12904
12839
  text-align: center;
12905
12840
  }
12906
12841
  }
12842
+ .ncl-test-events-navigation-tabs {
12843
+ display: flex;
12844
+ background: #f8f8fb;
12845
+ height: 40px;
12846
+ border-top: 1px solid @pale-grey;
12847
+ border-bottom: 1px solid @pale-grey;
12848
+
12849
+ .test-events-navigation-tab {
12850
+ .duskThree(0.64);
12851
+ position: relative;
12852
+ float: left;
12853
+ height: 27px;
12854
+ padding: 10px 40px 0;
12855
+ font-family: @font-family-sans-serif;
12856
+ color: @color;
12857
+ font-size: 13px;
12858
+ text-align: center;
12859
+ cursor: pointer;
12860
+ border-bottom: none;
12861
+ box-sizing: content-box;
12862
+
12863
+ &.active, &.active:hover {
12864
+ background: none;
12865
+ color: @dusk-three;
12866
+ border-bottom: 2px solid @dusk-three;
12867
+ font-weight: bold;
12868
+
12869
+ .badge {
12870
+ color: @white;
12871
+ background-color: @light-grey-blue;
12872
+ }
12873
+ }
12874
+
12875
+ .badge {
12876
+ display: inline-block;
12877
+ min-width: 22px;
12878
+ padding: 3px 7px;
12879
+ font-size: 12px;
12880
+ font-weight: 500;
12881
+ color: @greyish-purple;
12882
+ line-height: 1;
12883
+ vertical-align: middle;
12884
+ white-space: nowrap;
12885
+ text-align: center;
12886
+ background-color: @pale-grey;
12887
+ border-radius: 7.5px;
12888
+ margin-left: 7px;
12889
+ margin-top: -4px;
12890
+ }
12891
+ }
12892
+
12893
+ .default-dropdown {
12894
+ float: left;
12895
+ width: 105px;
12896
+
12897
+ .default-dropdown-field:not(:hover) {
12898
+ border-color: transparent;
12899
+ }
12900
+
12901
+ .default-dropdown-container {
12902
+ z-index: 3;
12903
+ }
12904
+ }
12905
+ }
12906
+
12907
+ @desktop: 1350px;
12908
+ @desktop-low: 1202px;
12909
+ @desktop-middle: 1550px;
12910
+
12911
+ .ncl-version-configuration-basic-settings {
12912
+ .row {
12913
+ display: flex;
12914
+ justify-content: space-between;
12915
+
12916
+ &:not(:last-child) {
12917
+ margin-bottom: 23px;
12918
+ }
12919
+
12920
+ &:last-child {
12921
+ margin-bottom: 4px;
12922
+ }
12923
+
12924
+ &.enable-checkbox {
12925
+ justify-content: flex-start;
12926
+ margin-bottom: 18px;
12927
+ }
12928
+
12929
+ > div {
12930
+ flex: 1;
12931
+
12932
+ &:not(:last-child) {
12933
+ margin-right: 46px;
12934
+ }
12935
+
12936
+ .label {
12937
+ padding: 0;
12938
+ margin-bottom: 5px;
12939
+ }
12940
+
12941
+ &.timeout-block {
12942
+ .label {
12943
+ margin-bottom: 3px;
12944
+ }
12945
+
12946
+ .timeout-values {
12947
+ margin-left: 27px;
12948
+
12949
+ .inputs {
12950
+ display: flex;
12951
+ align-items: center;
12952
+
12953
+ .values-label {
12954
+ .duskThree(0.9);
12955
+ margin: 0 17px 0 8px;
12956
+ font-size: 14px;
12957
+ font-weight: normal;
12958
+ font-style: normal;
12959
+ letter-spacing: normal;
12960
+ text-align: left;
12961
+ color: @color;
12962
+ }
12963
+ }
12964
+ }
12965
+ }
12966
+ }
12967
+
12968
+ .logger-block {
12969
+ display: flex;
12970
+ margin-top: 3px;
12971
+
12972
+ .logger-dropdown {
12973
+ .default-dropdown {
12974
+ position: relative;
12975
+ height: 36px;
12976
+
12977
+ .dropdown-overlap {
12978
+ z-index: 100;
12979
+ }
12980
+ }
12981
+ }
12982
+
12983
+ > div {
12984
+ flex: 1;
12985
+
12986
+ &:not(:last-child) {
12987
+ margin-right: 16px;
12988
+ }
12989
+
12990
+ .label {
12991
+ padding: 0;
12992
+ margin-bottom: 5px;
12993
+ }
12994
+
12995
+ &.logger-input {
12996
+ flex-grow: 1.95;
12997
+ }
12998
+ }
12999
+ }
13000
+ }
13001
+ }
13002
+
12907
13003
  .ncl-version-configuration-build {
12908
13004
  &.disabled {
12909
13005
  opacity: .5;
@@ -13143,102 +13239,6 @@ ncl-navigation-tabs {
13143
13239
  }
13144
13240
  }
13145
13241
 
13146
- @desktop: 1350px;
13147
- @desktop-low: 1202px;
13148
- @desktop-middle: 1550px;
13149
-
13150
- .ncl-version-configuration-basic-settings {
13151
- .row {
13152
- display: flex;
13153
- justify-content: space-between;
13154
-
13155
- &:not(:last-child) {
13156
- margin-bottom: 23px;
13157
- }
13158
-
13159
- &:last-child {
13160
- margin-bottom: 4px;
13161
- }
13162
-
13163
- &.enable-checkbox {
13164
- justify-content: flex-start;
13165
- margin-bottom: 18px;
13166
- }
13167
-
13168
- > div {
13169
- flex: 1;
13170
-
13171
- &:not(:last-child) {
13172
- margin-right: 46px;
13173
- }
13174
-
13175
- .label {
13176
- padding: 0;
13177
- margin-bottom: 5px;
13178
- }
13179
-
13180
- &.timeout-block {
13181
- .label {
13182
- margin-bottom: 3px;
13183
- }
13184
-
13185
- .timeout-values {
13186
- margin-left: 27px;
13187
-
13188
- .inputs {
13189
- display: flex;
13190
- align-items: center;
13191
-
13192
- .values-label {
13193
- .duskThree(0.9);
13194
- margin: 0 17px 0 8px;
13195
- font-size: 14px;
13196
- font-weight: normal;
13197
- font-style: normal;
13198
- letter-spacing: normal;
13199
- text-align: left;
13200
- color: @color;
13201
- }
13202
- }
13203
- }
13204
- }
13205
- }
13206
-
13207
- .logger-block {
13208
- display: flex;
13209
- margin-top: 3px;
13210
-
13211
- .logger-dropdown {
13212
- .default-dropdown {
13213
- position: relative;
13214
- height: 36px;
13215
-
13216
- .dropdown-overlap {
13217
- z-index: 100;
13218
- }
13219
- }
13220
- }
13221
-
13222
- > div {
13223
- flex: 1;
13224
-
13225
- &:not(:last-child) {
13226
- margin-right: 16px;
13227
- }
13228
-
13229
- .label {
13230
- padding: 0;
13231
- margin-bottom: 5px;
13232
- }
13233
-
13234
- &.logger-input {
13235
- flex-grow: 1.95;
13236
- }
13237
- }
13238
- }
13239
- }
13240
- }
13241
-
13242
13242
  .ncl-version-configuration-logging {
13243
13243
  .row {
13244
13244
  display: flex;