iguazio.dashboard-controls 0.37.22 → 0.38.2

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.
@@ -6522,6 +6522,164 @@ yx-axis
6522
6522
  }
6523
6523
  }
6524
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
+ }
6568
+
6569
+ &+ .row-description-wrapper {
6570
+ display: none;
6571
+ }
6572
+
6573
+ &:not(.click-trigger):hover + .row-description-wrapper,
6574
+ &.open + .row-description-wrapper {
6575
+ display: block;
6576
+ }
6577
+ }
6578
+
6579
+ .row-description-wrapper {
6580
+ position: fixed;
6581
+ z-index: 4;
6582
+ }
6583
+
6584
+ .row-description {
6585
+ width: 240px;
6586
+ padding: 16px 19px;
6587
+ position: absolute;
6588
+ border-radius: 2px;
6589
+ box-shadow: @row-description-box-shadow;
6590
+ background-color: @row-description-bg-color;
6591
+ color: @row-description-color;
6592
+ font-family: @font-family-sans-serif;
6593
+ font-size: 12px;
6594
+ font-weight: 400;
6595
+ white-space: pre-line;
6596
+ line-height: normal;
6597
+
6598
+ &::before {
6599
+ position: absolute;
6600
+ content: '';
6601
+ }
6602
+
6603
+ &.top,
6604
+ &.bottom {
6605
+ left: -114px;
6606
+
6607
+ &::before {
6608
+ right: calc(50% - 9px);
6609
+ }
6610
+
6611
+ &-left {
6612
+ left: -220px;
6613
+
6614
+ &::before {
6615
+ right: 4px;
6616
+ }
6617
+ }
6618
+
6619
+ &-right {
6620
+ left: -6px;
6621
+
6622
+ &::before {
6623
+ right: calc(100% - 22px);
6624
+ }
6625
+ }
6626
+ }
6627
+
6628
+ &.top,
6629
+ &.top-left,
6630
+ &.top-right {
6631
+ bottom: 35px;
6632
+
6633
+ &::before {
6634
+ .triangle-arrow(down; @row-description-triangle-color; 8px; 10px);
6635
+
6636
+ bottom: -10px;
6637
+ }
6638
+ }
6639
+
6640
+ &.bottom,
6641
+ &.bottom-left,
6642
+ &.bottom-right {
6643
+ top: 8px;
6644
+
6645
+ &::before {
6646
+ .triangle-arrow(up; @row-description-triangle-color; 8px; 10px);
6647
+
6648
+ top: -10px;
6649
+ }
6650
+ }
6651
+
6652
+ &.right,
6653
+ &.left {
6654
+ top: -30px;
6655
+
6656
+ &::before {
6657
+ top: 7px;
6658
+ }
6659
+ }
6660
+
6661
+ &.right {
6662
+ left: 26px;
6663
+
6664
+ &::before {
6665
+ .triangle-arrow(right; @row-description-triangle-color; 8px; 10px);
6666
+
6667
+ left: -8px;
6668
+ }
6669
+ }
6670
+
6671
+ &.left {
6672
+ left: -250px;
6673
+
6674
+ &::before {
6675
+ .triangle-arrow(left; @row-description-triangle-color; 8px; 10px);
6676
+
6677
+ right: -8px;
6678
+ }
6679
+ }
6680
+ }
6681
+ }
6682
+
6525
6683
  .igz-multiple-checkboxes {
6526
6684
  .multiple-checkboxes-color-set();
6527
6685
 
@@ -6714,164 +6872,6 @@ yx-axis
6714
6872
  }
6715
6873
  }
6716
6874
 
6717
- .more-info-wrapper {
6718
- .more-info-color-set();
6719
-
6720
- position: relative;
6721
- display: inline-flex;
6722
- align-items: center;
6723
- height: 36px;
6724
- margin-left: 8px;
6725
-
6726
- .question-mark {
6727
- cursor: default;
6728
-
6729
- &::before {
6730
- color: @icon-help-round-before-color;
6731
- background-color: @icon-help-round-before-bg-color;
6732
- }
6733
-
6734
- &:hover {
6735
- &::before {
6736
- color: @icon-help-round-hover-before-color;
6737
- }
6738
-
6739
- + .row-description-wrapper.row-description {
6740
- color: @icon-help-description-hover-color;
6741
- }
6742
- }
6743
-
6744
- &.igz-icon-alert-message {
6745
- &::before {
6746
- color: @icon-warn-hover-before-color;
6747
- background-color: @icon-warn-before-bg-color;
6748
- }
6749
-
6750
- &:hover {
6751
- &::before {
6752
- color: @icon-warn-before-color;
6753
- }
6754
- }
6755
- }
6756
-
6757
- &.click-trigger {
6758
- cursor: pointer;
6759
- }
6760
-
6761
- &+ .row-description-wrapper {
6762
- display: none;
6763
- }
6764
-
6765
- &:not(.click-trigger):hover + .row-description-wrapper,
6766
- &.open + .row-description-wrapper {
6767
- display: block;
6768
- }
6769
- }
6770
-
6771
- .row-description-wrapper {
6772
- position: fixed;
6773
- z-index: 4;
6774
- }
6775
-
6776
- .row-description {
6777
- width: 240px;
6778
- padding: 16px 19px;
6779
- position: absolute;
6780
- border-radius: 2px;
6781
- box-shadow: @row-description-box-shadow;
6782
- background-color: @row-description-bg-color;
6783
- color: @row-description-color;
6784
- font-family: @font-family-sans-serif;
6785
- font-size: 12px;
6786
- font-weight: 400;
6787
- white-space: pre-line;
6788
- line-height: normal;
6789
-
6790
- &::before {
6791
- position: absolute;
6792
- content: '';
6793
- }
6794
-
6795
- &.top,
6796
- &.bottom {
6797
- left: -114px;
6798
-
6799
- &::before {
6800
- right: calc(50% - 9px);
6801
- }
6802
-
6803
- &-left {
6804
- left: -220px;
6805
-
6806
- &::before {
6807
- right: 4px;
6808
- }
6809
- }
6810
-
6811
- &-right {
6812
- left: -6px;
6813
-
6814
- &::before {
6815
- right: calc(100% - 22px);
6816
- }
6817
- }
6818
- }
6819
-
6820
- &.top,
6821
- &.top-left,
6822
- &.top-right {
6823
- bottom: 35px;
6824
-
6825
- &::before {
6826
- .triangle-arrow(down; @row-description-triangle-color; 8px; 10px);
6827
-
6828
- bottom: -10px;
6829
- }
6830
- }
6831
-
6832
- &.bottom,
6833
- &.bottom-left,
6834
- &.bottom-right {
6835
- top: 8px;
6836
-
6837
- &::before {
6838
- .triangle-arrow(up; @row-description-triangle-color; 8px; 10px);
6839
-
6840
- top: -10px;
6841
- }
6842
- }
6843
-
6844
- &.right,
6845
- &.left {
6846
- top: -30px;
6847
-
6848
- &::before {
6849
- top: 7px;
6850
- }
6851
- }
6852
-
6853
- &.right {
6854
- left: 26px;
6855
-
6856
- &::before {
6857
- .triangle-arrow(right; @row-description-triangle-color; 8px; 10px);
6858
-
6859
- left: -8px;
6860
- }
6861
- }
6862
-
6863
- &.left {
6864
- left: -250px;
6865
-
6866
- &::before {
6867
- .triangle-arrow(left; @row-description-triangle-color; 8px; 10px);
6868
-
6869
- right: -8px;
6870
- }
6871
- }
6872
- }
6873
- }
6874
-
6875
6875
  .igz-navigation-tabs {
6876
6876
  .navigation-tabs-color-set();
6877
6877
 
@@ -7177,132 +7177,41 @@ yx-axis
7177
7177
  border-radius: 0 2px 2px 0;
7178
7178
  }
7179
7179
 
7180
- .title {
7181
- margin: 0 0 0 14px;
7182
- }
7183
-
7184
- .page-number {
7185
- min-width: 30px;
7186
- height: 36px;
7187
- line-height: 36px;
7188
- text-align: center;
7189
- }
7190
-
7191
- .validating-input-field {
7192
- background-color: @input-field-bg-color;
7193
-
7194
- .input-field {
7195
- width: 43px;
7196
- height: 36px;
7197
- border-radius: 0;
7198
- box-shadow: @input-field-box-shadow;
7199
- border: 1px solid @input-field-border-color;
7200
- border-left: 0 none transparent;
7201
- border-right: 0 none transparent;
7202
- font-family: @font-family-sans-serif;
7203
- font-size: 14px;
7204
- font-weight: 500;
7205
- color: @input-field-color;
7206
- text-align: center;
7207
-
7208
- &:hover {
7209
- border: @input-field-hover-border;
7210
- }
7211
- }
7212
- }
7213
- }
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;
7180
+ .title {
7181
+ margin: 0 0 0 14px;
7267
7182
  }
7268
- }
7269
-
7270
- .size-chart {
7271
- flex: 1 1 auto;
7272
- min-width: 0;
7273
7183
 
7274
- div.highcharts-tooltip {
7275
- position: fixed !important;
7184
+ .page-number {
7185
+ min-width: 30px;
7186
+ height: 36px;
7187
+ line-height: 36px;
7188
+ text-align: center;
7189
+ }
7276
7190
 
7277
- .igz-tooltip-wrapper {
7278
- color: @size-chart-tooltip-wrapper-color;
7191
+ .validating-input-field {
7192
+ background-color: @input-field-bg-color;
7279
7193
 
7280
- &.used-capacity-tooltip-wrapper {
7281
- .igz-row {
7282
- .tooltip-label,
7283
- .tooltip-value {
7284
- text-overflow: unset;
7285
- }
7286
- }
7287
- }
7194
+ .input-field {
7195
+ width: 43px;
7196
+ height: 36px;
7197
+ border-radius: 0;
7198
+ box-shadow: @input-field-box-shadow;
7199
+ border: 1px solid @input-field-border-color;
7200
+ border-left: 0 none transparent;
7201
+ border-right: 0 none transparent;
7202
+ font-family: @font-family-sans-serif;
7203
+ font-size: 14px;
7204
+ font-weight: 500;
7205
+ color: @input-field-color;
7206
+ text-align: center;
7288
7207
 
7289
- .tooltip-header {
7290
- padding-bottom: 6px;
7291
- margin-bottom: 5px;
7292
- line-height: 1.1;
7293
- text-align: center;
7208
+ &:hover {
7209
+ border: @input-field-hover-border;
7294
7210
  }
7295
7211
  }
7296
7212
  }
7297
7213
  }
7298
-
7299
- .igz-highcharts-wrapper {
7300
- height: 40px;
7301
- position: relative;
7302
- width: 100%;
7303
- }
7304
7214
  }
7305
-
7306
7215
  .search-input {
7307
7216
  .search-input-color-set();
7308
7217
 
@@ -7490,6 +7399,97 @@ yx-axis
7490
7399
  }
7491
7400
  }
7492
7401
  }
7402
+ .igz-size {
7403
+ .size-color-set();
7404
+
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
7493
  .igz-slider-input-block {
7494
7494
  .igz-slider-input-block-color-set();
7495
7495
 
@@ -9770,44 +9770,175 @@ igz-info-page-content {
9770
9770
  }
9771
9771
 
9772
9772
 
9773
- .ncl-deploy-log-wrapper {
9774
- .log-panel {
9775
- .logs-common();
9776
- background-color: @dark-grey;
9777
- color: @light-grey-three;
9778
- padding: 5px;
9779
- margin: 21px 0 0 4px;
9780
- min-height: 280px;
9781
- max-height: 280px;
9782
- height: 280px;
9773
+ ncl-breadcrumbs {
9774
+ .main-header-title {
9775
+ &:not(.disable-behavior) {
9776
+ &:hover .main-header-title-text {
9777
+ color: @dark-sky-blue;
9778
+ }
9779
+ }
9780
+
9781
+ &.disable-behavior {
9782
+ color: @dusk-three;
9783
+ }
9784
+ }
9785
+
9786
+ .igz-icon-right {
9787
+ font-size: 11px;
9788
+ font-weight: 100;
9789
+ margin: 0 14px;
9790
+ }
9791
+
9792
+ .ncl-header-subtitle {
9793
+ color: @greyish-purple;
9794
+ }
9795
+
9796
+ .ncl-bold-subtitle {
9797
+ color: @dusk-three;
9798
+ font-weight: bold;
9799
+ }
9800
+ }
9801
+
9802
+ .ncl-breadcrumbs-dropdown {
9803
+ display: inline-grid;
9804
+
9805
+ .breadcrumb-toggle {
9806
+ cursor: pointer;
9807
+ font-weight: bold;
9808
+
9809
+ .igz-icon-right {
9810
+ display: block;
9811
+ margin: 1.5px 0 0 7px;
9812
+ }
9813
+
9814
+ .breadcrumb-arrow {
9815
+ display: inline-block;
9816
+ width: 24px;
9817
+ height: 24px;
9818
+ margin: 0 8px;
9819
+ border-radius: 50%;
9820
+ background-color: transparent;
9821
+
9822
+ &:hover {
9823
+ background-color: @pale-grey;
9824
+ transition: transform .2s linear;
9825
+ }
9826
+ }
9827
+
9828
+ .ncl-dropdown-expanded {
9829
+ background-color: @pale-grey;
9830
+ transform: rotate(90deg);
9831
+
9832
+ .igz-icon-right {
9833
+ color: @dusk-three;
9834
+ }
9835
+ }
9836
+ }
9837
+
9838
+ .dropdown-menu {
9839
+ margin: 0;
9840
+ border: none;
9841
+ min-width: inherit;
9842
+ padding: 5px 0 8px;
9843
+ width: 230px;
9844
+ box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
9845
+
9846
+ .search-input {
9847
+ text-align: center;
9848
+ margin-top: 3px;
9849
+
9850
+ .igz-icon-search {
9851
+ .greyishPurple(0.34);
9852
+ font-size: 18px;
9853
+ color: @color;
9854
+ position: absolute;
9855
+ top: 6px;
9856
+ left: 16px;
9857
+ }
9858
+
9859
+ input {
9860
+ width: 210px;
9861
+ height: 32px;
9862
+ border: solid 1px @pale-grey;
9863
+ outline: none;
9864
+ padding-left: 29px;
9865
+ color: @dusk-three;
9866
+ font-size: 13px;
9867
+
9868
+ &::-webkit-input-placeholder {
9869
+ color: @pale-grey;
9870
+ }
9871
+
9872
+ &::-moz-placeholder {
9873
+ color: @pale-grey;
9874
+ }
9875
+
9876
+ &:focus, &:active {
9877
+ outline: none;
9878
+ border: solid 1px @dark-sky-blue;
9879
+
9880
+ + .igz-icon-search {
9881
+ color: @greyish-purple;
9882
+ }
9883
+
9884
+ &::-webkit-input-placeholder {
9885
+ color: transparent;
9886
+ }
9783
9887
 
9784
- .log-entry {
9785
- .log-entry-time {
9786
- color: @solid-grey;
9888
+ &::-moz-placeholder {
9889
+ color: transparent;
9890
+ }
9891
+ }
9787
9892
  }
9893
+ }
9894
+ }
9788
9895
 
9789
- .log-entry-level-debug{
9790
- color: @dusty-blue;
9791
- }
9896
+ .dropdown-list {
9897
+ font-size: 13px;
9898
+ font-weight: 500;
9899
+ text-align: left;
9900
+ max-height: 375px;
9901
+ list-style: none;
9902
+ padding: 8px 0 0;
9903
+ margin: 0;
9904
+ border-radius: 2px;
9905
+ background-color: @white;
9792
9906
 
9793
- .log-entry-level-info {
9794
- color: @cloudy-blue;
9795
- }
9907
+ li {
9908
+ height: 32px;
9909
+ line-height: 32px;
9910
+ width: 239px;
9796
9911
 
9797
- .log-entry-level-warn{
9798
- color: @sunflower-yellow;
9912
+ .item-name {
9913
+ display: inline-block;
9914
+ width: 170px;
9915
+ overflow: hidden;
9916
+ white-space: nowrap;
9917
+ text-overflow: ellipsis;
9918
+ margin-left: 16px;
9919
+ color: @dusk-three;
9920
+ vertical-align:top;
9921
+ text-decoration: none;
9922
+ height: 32px;
9799
9923
  }
9800
9924
 
9801
- .log-entry-level-error {
9802
- color: @darkish-pink;
9925
+ .igz-icon-tick {
9926
+ display: inline-block;
9927
+ font-size: 16px;
9928
+ width: 41px;
9929
+ height: 32px;
9930
+ padding: 0 19px 0 12px;
9931
+ vertical-align: top;
9803
9932
  }
9804
9933
 
9805
- .log-entry-message {
9806
- font-weight: 600;
9934
+ &:hover {
9935
+ height: 32px;
9936
+ background-color: @pale-grey-two;
9807
9937
  }
9808
9938
  }
9809
9939
  }
9810
9940
  }
9941
+
9811
9942
  .ncl-collapsing-row {
9812
9943
  margin-bottom: 9px;
9813
9944
 
@@ -9931,21 +10062,41 @@ igz-info-page-content {
9931
10062
  }
9932
10063
  }
9933
10064
 
9934
- .view-yaml-dialog-wrapper {
9935
- .ngdialog-content {
9936
- .view-yaml-dialog-header {
9937
- .title {
9938
- margin-bottom: 10px;
10065
+ .ncl-deploy-log-wrapper {
10066
+ .log-panel {
10067
+ .logs-common();
10068
+ background-color: @dark-grey;
10069
+ color: @light-grey-three;
10070
+ padding: 5px;
10071
+ margin: 21px 0 0 4px;
10072
+ min-height: 280px;
10073
+ max-height: 280px;
10074
+ height: 280px;
10075
+
10076
+ .log-entry {
10077
+ .log-entry-time {
10078
+ color: @solid-grey;
9939
10079
  }
9940
10080
 
9941
- .copy-to-clipboard {
9942
- width: 20px;
10081
+ .log-entry-level-debug{
10082
+ color: @dusty-blue;
9943
10083
  }
9944
- }
9945
10084
 
9946
- .monaco-editor {
9947
- min-width: 700px;
9948
- min-height: 450px;
10085
+ .log-entry-level-info {
10086
+ color: @cloudy-blue;
10087
+ }
10088
+
10089
+ .log-entry-level-warn{
10090
+ color: @sunflower-yellow;
10091
+ }
10092
+
10093
+ .log-entry-level-error {
10094
+ color: @darkish-pink;
10095
+ }
10096
+
10097
+ .log-entry-message {
10098
+ font-weight: 600;
10099
+ }
9949
10100
  }
9950
10101
  }
9951
10102
  }
@@ -10049,6 +10200,24 @@ igz-info-page-content {
10049
10200
  }
10050
10201
  }
10051
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
+ }
10052
10221
  .ncl-key-value-input {
10053
10222
  .input-wrapper {
10054
10223
  width: 100%;
@@ -10212,212 +10381,72 @@ igz-info-page-content {
10212
10381
  .input-value-key-wrapper {
10213
10382
  width: 29%;
10214
10383
 
10215
- .input-value-key {
10216
- flex-grow: 1;
10217
- }
10218
-
10219
- &:not(.use-type) {
10220
- width: 61%;
10221
- }
10222
- }
10223
-
10224
- .input-type-wrapper {
10225
- width: 13%;
10226
-
10227
- .type-label {
10228
- width: 60px;
10229
- padding-left: 7px;
10230
- }
10231
-
10232
- &.all-value-types {
10233
- width: 20%;
10234
- }
10235
-
10236
- .input-type {
10237
- flex-grow: 1;
10238
-
10239
- .default-dropdown {
10240
- .default-dropdown-field {
10241
- background-color: @white;
10242
- border-radius: 0;
10243
- }
10244
-
10245
- .default-dropdown-container {
10246
- z-index: 100;
10247
- }
10248
- }
10249
- }
10250
- }
10251
- }
10252
- }
10253
- }
10254
-
10255
- .ncl-monaco {
10256
- .ncl-monaco-wrapper {
10257
- padding-top: 20px;
10258
- height: 100%;
10259
- border: 1px solid @pale-grey;
10260
- background-color: @white;
10261
-
10262
- &.no-top-padding {
10263
- padding-top: 0;
10264
- }
10265
-
10266
- .ncl-monaco-top-row {
10267
- display: block;
10268
- }
10269
-
10270
- .ncl-monaco-editor {
10271
- height: 100%;
10272
- }
10273
- }
10274
-
10275
- .ncl-monaco-dark {
10276
- background-color: @vs-dark;
10277
- }
10278
- }
10279
-
10280
-
10281
- .ncl-breadcrumbs-dropdown {
10282
- display: inline-grid;
10283
-
10284
- .breadcrumb-toggle {
10285
- cursor: pointer;
10286
- font-weight: bold;
10287
-
10288
- .igz-icon-right {
10289
- display: block;
10290
- margin: 1.5px 0 0 7px;
10291
- }
10292
-
10293
- .breadcrumb-arrow {
10294
- display: inline-block;
10295
- width: 24px;
10296
- height: 24px;
10297
- margin: 0 8px;
10298
- border-radius: 50%;
10299
- background-color: transparent;
10300
-
10301
- &:hover {
10302
- background-color: @pale-grey;
10303
- transition: transform .2s linear;
10304
- }
10305
- }
10306
-
10307
- .ncl-dropdown-expanded {
10308
- background-color: @pale-grey;
10309
- transform: rotate(90deg);
10310
-
10311
- .igz-icon-right {
10312
- color: @dusk-three;
10313
- }
10314
- }
10315
- }
10316
-
10317
- .dropdown-menu {
10318
- margin: 0;
10319
- border: none;
10320
- min-width: inherit;
10321
- padding: 5px 0 8px;
10322
- width: 230px;
10323
- box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
10324
-
10325
- .search-input {
10326
- text-align: center;
10327
- margin-top: 3px;
10328
-
10329
- .igz-icon-search {
10330
- .greyishPurple(0.34);
10331
- font-size: 18px;
10332
- color: @color;
10333
- position: absolute;
10334
- top: 6px;
10335
- left: 16px;
10336
- }
10337
-
10338
- input {
10339
- width: 210px;
10340
- height: 32px;
10341
- border: solid 1px @pale-grey;
10342
- outline: none;
10343
- padding-left: 29px;
10344
- color: @dusk-three;
10345
- font-size: 13px;
10384
+ .input-value-key {
10385
+ flex-grow: 1;
10386
+ }
10346
10387
 
10347
- &::-webkit-input-placeholder {
10348
- color: @pale-grey;
10388
+ &:not(.use-type) {
10389
+ width: 61%;
10349
10390
  }
10391
+ }
10350
10392
 
10351
- &::-moz-placeholder {
10352
- color: @pale-grey;
10393
+ .input-type-wrapper {
10394
+ width: 13%;
10395
+
10396
+ .type-label {
10397
+ width: 60px;
10398
+ padding-left: 7px;
10353
10399
  }
10354
10400
 
10355
- &:focus, &:active {
10356
- outline: none;
10357
- border: solid 1px @dark-sky-blue;
10401
+ &.all-value-types {
10402
+ width: 20%;
10403
+ }
10358
10404
 
10359
- + .igz-icon-search {
10360
- color: @greyish-purple;
10361
- }
10405
+ .input-type {
10406
+ flex-grow: 1;
10362
10407
 
10363
- &::-webkit-input-placeholder {
10364
- color: transparent;
10365
- }
10408
+ .default-dropdown {
10409
+ .default-dropdown-field {
10410
+ background-color: @white;
10411
+ border-radius: 0;
10412
+ }
10366
10413
 
10367
- &::-moz-placeholder {
10368
- color: transparent;
10414
+ .default-dropdown-container {
10415
+ z-index: 100;
10416
+ }
10369
10417
  }
10370
10418
  }
10371
10419
  }
10372
10420
  }
10373
10421
  }
10422
+ }
10374
10423
 
10375
- .dropdown-list {
10376
- font-size: 13px;
10377
- font-weight: 500;
10378
- text-align: left;
10379
- max-height: 375px;
10380
- list-style: none;
10381
- padding: 8px 0 0;
10382
- margin: 0;
10383
- border-radius: 2px;
10424
+ .ncl-monaco {
10425
+ .ncl-monaco-wrapper {
10426
+ padding-top: 20px;
10427
+ height: 100%;
10428
+ border: 1px solid @pale-grey;
10384
10429
  background-color: @white;
10385
10430
 
10386
- li {
10387
- height: 32px;
10388
- line-height: 32px;
10389
- width: 239px;
10390
-
10391
- .item-name {
10392
- display: inline-block;
10393
- width: 170px;
10394
- overflow: hidden;
10395
- white-space: nowrap;
10396
- text-overflow: ellipsis;
10397
- margin-left: 16px;
10398
- color: @dusk-three;
10399
- vertical-align:top;
10400
- text-decoration: none;
10401
- height: 32px;
10402
- }
10431
+ &.no-top-padding {
10432
+ padding-top: 0;
10433
+ }
10403
10434
 
10404
- .igz-icon-tick {
10405
- display: inline-block;
10406
- font-size: 16px;
10407
- width: 41px;
10408
- height: 32px;
10409
- padding: 0 19px 0 12px;
10410
- vertical-align: top;
10411
- }
10435
+ .ncl-monaco-top-row {
10436
+ display: block;
10437
+ }
10412
10438
 
10413
- &:hover {
10414
- height: 32px;
10415
- background-color: @pale-grey-two;
10416
- }
10439
+ .ncl-monaco-editor {
10440
+ height: 100%;
10417
10441
  }
10418
10442
  }
10443
+
10444
+ .ncl-monaco-dark {
10445
+ background-color: @vs-dark;
10446
+ }
10419
10447
  }
10420
10448
 
10449
+
10421
10450
  ncl-navigation-tabs {
10422
10451
  .ncl-navigation-tabs-color-set();
10423
10452
 
@@ -10579,35 +10608,6 @@ ncl-navigation-tabs {
10579
10608
  }
10580
10609
  }
10581
10610
 
10582
- ncl-breadcrumbs {
10583
- .main-header-title {
10584
- &:not(.disable-behavior) {
10585
- &:hover .main-header-title-text {
10586
- color: @dark-sky-blue;
10587
- }
10588
- }
10589
-
10590
- &.disable-behavior {
10591
- color: @dusk-three;
10592
- }
10593
- }
10594
-
10595
- .igz-icon-right {
10596
- font-size: 11px;
10597
- font-weight: 100;
10598
- margin: 0 14px;
10599
- }
10600
-
10601
- .ncl-header-subtitle {
10602
- color: @greyish-purple;
10603
- }
10604
-
10605
- .ncl-bold-subtitle {
10606
- color: @dusk-three;
10607
- font-weight: bold;
10608
- }
10609
- }
10610
-
10611
10611
  .ncl-search-input {
10612
10612
  position: relative;
10613
10613
  color: @silver;
@@ -10778,59 +10778,210 @@ ncl-breadcrumbs {
10778
10778
  opacity: 1;
10779
10779
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.35);
10780
10780
 
10781
- .function-type-icon {
10782
- display: flex;
10783
- align-items: center;
10784
- justify-content: center;
10785
- border-radius: 50%;
10786
- background-color: @dark-sky-blue;
10781
+ .function-type-icon {
10782
+ display: flex;
10783
+ align-items: center;
10784
+ justify-content: center;
10785
+ border-radius: 50%;
10786
+ background-color: @dark-sky-blue;
10787
+
10788
+ .icon {
10789
+ color: @white;
10790
+ }
10791
+ }
10792
+ }
10793
+ }
10794
+ };
10795
+ }
10796
+ }
10797
+ }
10798
+
10799
+ .function-type-content-wrapper {
10800
+ padding: 25px 0 0 0;
10801
+ margin: 0 0 20px 0;
10802
+ }
10803
+
10804
+ @media screen and (max-width: 1280px) {
10805
+ .new-function-wrapper {
10806
+ .new-function-header {
10807
+ height: 380px;
10808
+
10809
+ .new-function-types {
10810
+ padding: 0 77px;
10811
+
10812
+ .type-wrapper {
10813
+ .type-template {
10814
+ height: 276px;
10815
+ width: 288px;
10816
+ flex-direction: column;
10817
+
10818
+ .function-type-icon {
10819
+ margin: 0 auto;
10820
+ }
10821
+
10822
+ .function-type-info {
10823
+ margin-right: 0;
10824
+ margin-top: 10px;
10825
+ text-align: center;
10826
+
10827
+ .type-title {
10828
+ margin-bottom: 4px;
10829
+ }
10830
+ }
10831
+ }
10832
+ }
10833
+ }
10834
+ }
10835
+ }
10836
+ }
10837
+
10838
+ .function-event-wrapper {
10839
+ width: 600px;
10840
+ margin-bottom: -23px;
10841
+
10842
+ .header {
10843
+ display: flex;
10844
+ justify-content: space-between;
10845
+ border-bottom: 1px solid @pale-grey;
10846
+
10847
+ .title {
10848
+ font-size: 18px;
10849
+ }
10850
+ }
10851
+
10852
+ .content {
10853
+ border-bottom: 1px solid @pale-grey;
10854
+ padding: 16px 0 16px 16px;
10855
+
10856
+ .event-form {
10857
+ width: 88%;
10858
+
10859
+ .field-wrapper {
10860
+ display: flex;
10861
+ align-items: center;
10862
+ margin: 15px 0 0 0;
10863
+
10864
+ .field-label {
10865
+ font-size: 16px;
10866
+ margin-right: 10px;
10867
+ width: 195px;
10868
+ }
10869
+
10870
+ .field-content {
10871
+ width: 100%;
10872
+
10873
+ .ncl-monaco {
10874
+ height: 200px;
10875
+ }
10876
+
10877
+ .event-body {
10878
+ font-size: 13px;
10879
+ outline: none;
10880
+ border: 1px solid @pale-grey;
10881
+ resize: none;
10882
+ width: 100%;
10883
+ height: 100px;
10884
+ padding: 5px 5px 5px 16px;
10885
+ }
10886
+ }
10887
+ }
10888
+ }
10889
+
10890
+ .event-error {
10891
+ display: flex;
10892
+ font-size: 13px;
10893
+ align-items: center;
10894
+ justify-content: center;
10895
+ color: @darkish-pink;
10896
+ }
10897
+ }
10898
+
10899
+ .bottom-bar {
10900
+ height: 64px;
10901
+ display: flex;
10902
+ align-items: center;
10903
+ justify-content: flex-end;
10904
+
10905
+ .igz-button-primary {
10906
+ &.disabled {
10907
+ color: rgba(71, 64, 86, 0.24);
10908
+ border-radius: 2px;
10909
+ border: solid 1px #f3f3f6;
10910
+ background-color: #f3f3f6;
10911
+ cursor: default;
10912
+ display: inline-block;
10787
10913
 
10788
- .icon {
10789
- color: @white;
10790
- }
10791
- }
10792
- }
10914
+ &:hover {
10915
+ box-shadow: none;
10916
+ border: none;
10793
10917
  }
10794
- };
10918
+ }
10795
10919
  }
10796
10920
  }
10797
10921
  }
10798
10922
 
10799
- .function-type-content-wrapper {
10800
- padding: 25px 0 0 0;
10801
- margin: 0 0 20px 0;
10802
- }
10923
+ .ncl-function-version-row {
10924
+ .actions-menu {
10925
+ visibility: hidden;
10926
+ }
10803
10927
 
10804
- @media screen and (max-width: 1280px) {
10805
- .new-function-wrapper {
10806
- .new-function-header {
10807
- height: 380px;
10928
+ &.common-table-row {
10929
+ height: 49px;
10808
10930
 
10809
- .new-function-types {
10810
- padding: 0 77px;
10931
+ &:hover {
10932
+ igz-action-checkbox:not(.invisible) {
10933
+ visibility: visible;
10934
+ }
10811
10935
 
10812
- .type-wrapper {
10813
- .type-template {
10814
- height: 276px;
10815
- width: 288px;
10816
- flex-direction: column;
10936
+ .actions-menu {
10937
+ visibility: visible;
10938
+ }
10817
10939
 
10818
- .function-type-icon {
10819
- margin: 0 auto;
10820
- }
10940
+ .check-row {
10941
+ background-color: @pale-grey-three;
10942
+ }
10943
+ }
10821
10944
 
10822
- .function-type-info {
10823
- margin-right: 0;
10824
- margin-top: 10px;
10825
- text-align: center;
10945
+ igz-action-checkbox {
10946
+ visibility: hidden;
10826
10947
 
10827
- .type-title {
10828
- margin-bottom: 4px;
10829
- }
10830
- }
10948
+ &.visible {
10949
+ visibility: visible;
10950
+ }
10951
+ }
10952
+
10953
+ .common-table-cells-container {
10954
+ cursor: pointer;
10955
+
10956
+ .common-table-cell {
10957
+ .status-icon {
10958
+ display: flex;
10959
+ font-size: 20px;
10960
+ cursor: pointer;
10961
+ margin-left: 9px;
10962
+ .duskThree(0.64);
10963
+ color: @color;
10964
+ }
10965
+
10966
+ .common-table-cell-content {
10967
+ width: 100%;
10968
+ white-space: nowrap;
10969
+ overflow: hidden;
10970
+ text-overflow: ellipsis;
10971
+ min-width: 0;
10972
+ }
10973
+
10974
+ .igz-action-panel {
10975
+ &.invocation-tooltip {
10976
+ height: 36px;
10977
+ width: 56px;
10831
10978
  }
10832
10979
  }
10833
10980
  }
10981
+
10982
+ .function-status {
10983
+ min-width: 100px;
10984
+ }
10834
10985
  }
10835
10986
  }
10836
10987
  }
@@ -11107,157 +11258,6 @@ ncl-breadcrumbs {
11107
11258
  }
11108
11259
  }
11109
11260
 
11110
- .function-event-wrapper {
11111
- width: 600px;
11112
- margin-bottom: -23px;
11113
-
11114
- .header {
11115
- display: flex;
11116
- justify-content: space-between;
11117
- border-bottom: 1px solid @pale-grey;
11118
-
11119
- .title {
11120
- font-size: 18px;
11121
- }
11122
- }
11123
-
11124
- .content {
11125
- border-bottom: 1px solid @pale-grey;
11126
- padding: 16px 0 16px 16px;
11127
-
11128
- .event-form {
11129
- width: 88%;
11130
-
11131
- .field-wrapper {
11132
- display: flex;
11133
- align-items: center;
11134
- margin: 15px 0 0 0;
11135
-
11136
- .field-label {
11137
- font-size: 16px;
11138
- margin-right: 10px;
11139
- width: 195px;
11140
- }
11141
-
11142
- .field-content {
11143
- width: 100%;
11144
-
11145
- .ncl-monaco {
11146
- height: 200px;
11147
- }
11148
-
11149
- .event-body {
11150
- font-size: 13px;
11151
- outline: none;
11152
- border: 1px solid @pale-grey;
11153
- resize: none;
11154
- width: 100%;
11155
- height: 100px;
11156
- padding: 5px 5px 5px 16px;
11157
- }
11158
- }
11159
- }
11160
- }
11161
-
11162
- .event-error {
11163
- display: flex;
11164
- font-size: 13px;
11165
- align-items: center;
11166
- justify-content: center;
11167
- color: @darkish-pink;
11168
- }
11169
- }
11170
-
11171
- .bottom-bar {
11172
- height: 64px;
11173
- display: flex;
11174
- align-items: center;
11175
- justify-content: flex-end;
11176
-
11177
- .igz-button-primary {
11178
- &.disabled {
11179
- color: rgba(71, 64, 86, 0.24);
11180
- border-radius: 2px;
11181
- border: solid 1px #f3f3f6;
11182
- background-color: #f3f3f6;
11183
- cursor: default;
11184
- display: inline-block;
11185
-
11186
- &:hover {
11187
- box-shadow: none;
11188
- border: none;
11189
- }
11190
- }
11191
- }
11192
- }
11193
- }
11194
-
11195
- .ncl-function-version-row {
11196
- .actions-menu {
11197
- visibility: hidden;
11198
- }
11199
-
11200
- &.common-table-row {
11201
- height: 49px;
11202
-
11203
- &:hover {
11204
- igz-action-checkbox:not(.invisible) {
11205
- visibility: visible;
11206
- }
11207
-
11208
- .actions-menu {
11209
- visibility: visible;
11210
- }
11211
-
11212
- .check-row {
11213
- background-color: @pale-grey-three;
11214
- }
11215
- }
11216
-
11217
- igz-action-checkbox {
11218
- visibility: hidden;
11219
-
11220
- &.visible {
11221
- visibility: visible;
11222
- }
11223
- }
11224
-
11225
- .common-table-cells-container {
11226
- cursor: pointer;
11227
-
11228
- .common-table-cell {
11229
- .status-icon {
11230
- display: flex;
11231
- font-size: 20px;
11232
- cursor: pointer;
11233
- margin-left: 9px;
11234
- .duskThree(0.64);
11235
- color: @color;
11236
- }
11237
-
11238
- .common-table-cell-content {
11239
- width: 100%;
11240
- white-space: nowrap;
11241
- overflow: hidden;
11242
- text-overflow: ellipsis;
11243
- min-width: 0;
11244
- }
11245
-
11246
- .igz-action-panel {
11247
- &.invocation-tooltip {
11248
- height: 36px;
11249
- width: 56px;
11250
- }
11251
- }
11252
- }
11253
-
11254
- .function-status {
11255
- min-width: 100px;
11256
- }
11257
- }
11258
- }
11259
- }
11260
-
11261
11261
  .ncl-version-monitoring {
11262
11262
  > .igz-scrollable-container {
11263
11263
  padding: 24px 25px 22px 41px;
@@ -12242,76 +12242,6 @@ ncl-breadcrumbs {
12242
12242
  }
12243
12243
  }
12244
12244
 
12245
- .function-import-wrapper-content {
12246
- font-family: @font-family-sans-serif;
12247
- padding-left: 3%;
12248
- width: 96%;
12249
-
12250
- .function-import-form {
12251
- display: flex;
12252
- align-items: flex-end;
12253
- margin-bottom: 10px;
12254
-
12255
- .projects-drop-down {
12256
- margin-right: 48px;
12257
-
12258
- .input-label {
12259
- font-size: 14px;
12260
- font-weight: 600;
12261
- color: @dusk-three;
12262
- }
12263
-
12264
- igz-default-dropdown {
12265
- .default-dropdown {
12266
- background-color: @white;
12267
-
12268
- .default-dropdown-field {
12269
- &:focus {
12270
- background-color: inherit;
12271
- }
12272
- }
12273
- }
12274
- }
12275
- }
12276
-
12277
- .function-import-actions-bar {
12278
- display: flex;
12279
-
12280
- .function-import-file-picker {
12281
- .file-picker-wrapper {
12282
- margin: 0;
12283
- line-height: 34px;
12284
-
12285
- .igz-icon-upload {
12286
- margin-right: 10px;
12287
- }
12288
- }
12289
-
12290
- .function-import-input {
12291
- opacity: 0;
12292
- position: absolute;
12293
- z-index: -1;
12294
- }
12295
- }
12296
- }
12297
- }
12298
-
12299
- .splash-screen {
12300
- top: 0;
12301
- }
12302
-
12303
- .function-import-monaco {
12304
- .ncl-monaco {
12305
- height: 370px;
12306
- width: 100%;
12307
-
12308
- .monaco-code-editor {
12309
- height: 100%;
12310
- }
12311
- }
12312
- }
12313
- }
12314
-
12315
12245
  .function-from-template-content {
12316
12246
  .ncl-function-from-template-color-set();
12317
12247
 
@@ -12574,6 +12504,76 @@ ncl-breadcrumbs {
12574
12504
  }
12575
12505
  }
12576
12506
 
12507
+ .function-import-wrapper-content {
12508
+ font-family: @font-family-sans-serif;
12509
+ padding-left: 3%;
12510
+ width: 96%;
12511
+
12512
+ .function-import-form {
12513
+ display: flex;
12514
+ align-items: flex-end;
12515
+ margin-bottom: 10px;
12516
+
12517
+ .projects-drop-down {
12518
+ margin-right: 48px;
12519
+
12520
+ .input-label {
12521
+ font-size: 14px;
12522
+ font-weight: 600;
12523
+ color: @dusk-three;
12524
+ }
12525
+
12526
+ igz-default-dropdown {
12527
+ .default-dropdown {
12528
+ background-color: @white;
12529
+
12530
+ .default-dropdown-field {
12531
+ &:focus {
12532
+ background-color: inherit;
12533
+ }
12534
+ }
12535
+ }
12536
+ }
12537
+ }
12538
+
12539
+ .function-import-actions-bar {
12540
+ display: flex;
12541
+
12542
+ .function-import-file-picker {
12543
+ .file-picker-wrapper {
12544
+ margin: 0;
12545
+ line-height: 34px;
12546
+
12547
+ .igz-icon-upload {
12548
+ margin-right: 10px;
12549
+ }
12550
+ }
12551
+
12552
+ .function-import-input {
12553
+ opacity: 0;
12554
+ position: absolute;
12555
+ z-index: -1;
12556
+ }
12557
+ }
12558
+ }
12559
+ }
12560
+
12561
+ .splash-screen {
12562
+ top: 0;
12563
+ }
12564
+
12565
+ .function-import-monaco {
12566
+ .ncl-monaco {
12567
+ height: 370px;
12568
+ width: 100%;
12569
+
12570
+ .monaco-code-editor {
12571
+ height: 100%;
12572
+ }
12573
+ }
12574
+ }
12575
+ }
12576
+
12577
12577
  .ncl-test-events-logs {
12578
12578
  padding: 6px 17px 25px;
12579
12579
  background-color: @white;
@@ -12821,145 +12821,49 @@ ncl-breadcrumbs {
12821
12821
  font-size: 13px;
12822
12822
  text-align: center;
12823
12823
  cursor: pointer;
12824
- border-bottom: none;
12825
- box-sizing: content-box;
12826
-
12827
- &.active, &.active:hover {
12828
- background: none;
12829
- color: @dusk-three;
12830
- border-bottom: 2px solid @dusk-three;
12831
- font-weight: bold;
12832
-
12833
- .badge {
12834
- color: @white;
12835
- background-color: @light-grey-blue;
12836
- }
12837
- }
12838
-
12839
- .badge {
12840
- display: inline-block;
12841
- min-width: 22px;
12842
- padding: 3px 7px;
12843
- font-size: 12px;
12844
- font-weight: 500;
12845
- color: @greyish-purple;
12846
- line-height: 1;
12847
- vertical-align: middle;
12848
- white-space: nowrap;
12849
- text-align: center;
12850
- background-color: @pale-grey;
12851
- border-radius: 7.5px;
12852
- margin-left: 7px;
12853
- margin-top: -4px;
12854
- }
12855
- }
12856
-
12857
- .default-dropdown {
12858
- float: left;
12859
- width: 105px;
12860
-
12861
- .default-dropdown-field:not(:hover) {
12862
- border-color: transparent;
12863
- }
12864
-
12865
- .default-dropdown-container {
12866
- z-index: 3;
12867
- }
12868
- }
12869
- }
12870
-
12871
- @desktop: 1350px;
12872
- @desktop-low: 1202px;
12873
- @desktop-middle: 1550px;
12874
-
12875
- .ncl-version-configuration-basic-settings {
12876
- .row {
12877
- display: flex;
12878
- justify-content: space-between;
12879
-
12880
- &:not(:last-child) {
12881
- margin-bottom: 23px;
12882
- }
12883
-
12884
- &:last-child {
12885
- margin-bottom: 4px;
12886
- }
12887
-
12888
- &.enable-checkbox {
12889
- justify-content: flex-start;
12890
- margin-bottom: 18px;
12891
- }
12892
-
12893
- > div {
12894
- flex: 1;
12895
-
12896
- &:not(:last-child) {
12897
- margin-right: 46px;
12898
- }
12899
-
12900
- .label {
12901
- padding: 0;
12902
- margin-bottom: 5px;
12903
- }
12904
-
12905
- &.timeout-block {
12906
- .label {
12907
- margin-bottom: 3px;
12908
- }
12909
-
12910
- .timeout-values {
12911
- margin-left: 27px;
12912
-
12913
- .inputs {
12914
- display: flex;
12915
- align-items: center;
12916
-
12917
- .values-label {
12918
- .duskThree(0.9);
12919
- margin: 0 17px 0 8px;
12920
- font-size: 14px;
12921
- font-weight: normal;
12922
- font-style: normal;
12923
- letter-spacing: normal;
12924
- text-align: left;
12925
- color: @color;
12926
- }
12927
- }
12928
- }
12929
- }
12930
- }
12931
-
12932
- .logger-block {
12933
- display: flex;
12934
- margin-top: 3px;
12935
-
12936
- .logger-dropdown {
12937
- .default-dropdown {
12938
- position: relative;
12939
- height: 36px;
12824
+ border-bottom: none;
12825
+ box-sizing: content-box;
12940
12826
 
12941
- .dropdown-overlap {
12942
- z-index: 100;
12943
- }
12944
- }
12827
+ &.active, &.active:hover {
12828
+ background: none;
12829
+ color: @dusk-three;
12830
+ border-bottom: 2px solid @dusk-three;
12831
+ font-weight: bold;
12832
+
12833
+ .badge {
12834
+ color: @white;
12835
+ background-color: @light-grey-blue;
12945
12836
  }
12837
+ }
12946
12838
 
12947
- > div {
12948
- flex: 1;
12839
+ .badge {
12840
+ display: inline-block;
12841
+ min-width: 22px;
12842
+ padding: 3px 7px;
12843
+ font-size: 12px;
12844
+ font-weight: 500;
12845
+ color: @greyish-purple;
12846
+ line-height: 1;
12847
+ vertical-align: middle;
12848
+ white-space: nowrap;
12849
+ text-align: center;
12850
+ background-color: @pale-grey;
12851
+ border-radius: 7.5px;
12852
+ margin-left: 7px;
12853
+ margin-top: -4px;
12854
+ }
12855
+ }
12949
12856
 
12950
- &:not(:last-child) {
12951
- margin-right: 16px;
12952
- }
12857
+ .default-dropdown {
12858
+ float: left;
12859
+ width: 105px;
12953
12860
 
12954
- .label {
12955
- padding: 0;
12956
- margin-bottom: 5px;
12957
- }
12861
+ .default-dropdown-field:not(:hover) {
12862
+ border-color: transparent;
12863
+ }
12958
12864
 
12959
- &.logger-input {
12960
- flex-grow: 1.95;
12961
- }
12962
- }
12865
+ .default-dropdown-container {
12866
+ z-index: 3;
12963
12867
  }
12964
12868
  }
12965
12869
  }
@@ -13203,58 +13107,97 @@ ncl-breadcrumbs {
13203
13107
  }
13204
13108
  }
13205
13109
 
13110
+ @desktop: 1350px;
13111
+ @desktop-low: 1202px;
13206
13112
  @desktop-middle: 1550px;
13207
13113
 
13208
- .ncl-version-configuration-resources {
13114
+ .ncl-version-configuration-basic-settings {
13209
13115
  .row {
13210
- .range-inputs-row {
13211
- display: flex;
13212
- align-items: flex-end;
13116
+ display: flex;
13117
+ justify-content: space-between;
13213
13118
 
13214
- .row-title {
13215
- margin-bottom: 8px;
13216
- }
13119
+ &:not(:last-child) {
13120
+ margin-bottom: 23px;
13217
13121
  }
13218
13122
 
13219
- .form-row {
13220
- padding: 12px 0;
13123
+ &:last-child {
13124
+ margin-bottom: 4px;
13125
+ }
13221
13126
 
13222
- .row-title, .input-title {
13223
- font-size: 14px;
13224
- }
13127
+ &.enable-checkbox {
13128
+ justify-content: flex-start;
13129
+ margin-bottom: 18px;
13130
+ }
13225
13131
 
13226
- .row-title {
13227
- font-weight: 500;
13132
+ > div {
13133
+ flex: 1;
13134
+
13135
+ &:not(:last-child) {
13136
+ margin-right: 46px;
13228
13137
  }
13229
13138
 
13230
- .input-wrapper {
13231
- display: flex;
13232
- flex-wrap: wrap;
13139
+ .label {
13140
+ padding: 0;
13141
+ margin-bottom: 5px;
13142
+ }
13233
13143
 
13234
- .input-title {
13235
- width: 100%;
13144
+ &.timeout-block {
13145
+ .label {
13146
+ margin-bottom: 3px;
13236
13147
  }
13237
13148
 
13238
- .memory-number-input, .cpu-number-input {
13239
- width: 50%;
13240
- }
13149
+ .timeout-values {
13150
+ margin-left: 27px;
13241
13151
 
13242
- .memory-size-dropdown, .cpu-dropdown {
13243
- width: 35%
13244
- }
13152
+ .inputs {
13153
+ display: flex;
13154
+ align-items: center;
13245
13155
 
13246
- .gpu-number-input, .replicas-number-input {
13247
- width: 85%;
13156
+ .values-label {
13157
+ .duskThree(0.9);
13158
+ margin: 0 17px 0 8px;
13159
+ font-size: 14px;
13160
+ font-weight: normal;
13161
+ font-style: normal;
13162
+ letter-spacing: normal;
13163
+ text-align: left;
13164
+ color: @color;
13165
+ }
13166
+ }
13248
13167
  }
13249
13168
  }
13250
13169
  }
13251
13170
 
13252
- .slider-block {
13253
- padding-top: 0;
13254
- margin-bottom: 10px;
13171
+ .logger-block {
13172
+ display: flex;
13173
+ margin-top: 3px;
13255
13174
 
13256
- .slider {
13257
- width: 70%;
13175
+ .logger-dropdown {
13176
+ .default-dropdown {
13177
+ position: relative;
13178
+ height: 36px;
13179
+
13180
+ .dropdown-overlap {
13181
+ z-index: 100;
13182
+ }
13183
+ }
13184
+ }
13185
+
13186
+ > div {
13187
+ flex: 1;
13188
+
13189
+ &:not(:last-child) {
13190
+ margin-right: 16px;
13191
+ }
13192
+
13193
+ .label {
13194
+ padding: 0;
13195
+ margin-bottom: 5px;
13196
+ }
13197
+
13198
+ &.logger-input {
13199
+ flex-grow: 1.95;
13200
+ }
13258
13201
  }
13259
13202
  }
13260
13203
  }
@@ -13322,37 +13265,58 @@ ncl-breadcrumbs {
13322
13265
  }
13323
13266
  }
13324
13267
 
13325
- .function-from-template-dialog-wrapper {
13326
- .title {
13327
- font-size: 20px;
13328
- font-weight: 500;
13329
- text-align: left;
13330
- color: @dusk-three;
13331
- }
13268
+ @desktop-middle: 1550px;
13332
13269
 
13333
- .main-content {
13334
- width: 500px;
13335
- max-height: 500px;
13270
+ .ncl-version-configuration-resources {
13271
+ .row {
13272
+ .range-inputs-row {
13273
+ display: flex;
13274
+ align-items: flex-end;
13336
13275
 
13337
- form {
13338
- margin: 0 20px 0 0;
13276
+ .row-title {
13277
+ margin-bottom: 8px;
13278
+ }
13279
+ }
13339
13280
 
13340
- .field-label {
13281
+ .form-row {
13282
+ padding: 12px 0;
13283
+
13284
+ .row-title, .input-title {
13341
13285
  font-size: 14px;
13342
- text-align: left;
13343
- color: @dusk-three;
13344
13286
  }
13345
13287
 
13346
- .validating-input-field {
13347
- .input-field {
13348
- padding: 0 10px 0 17px;
13288
+ .row-title {
13289
+ font-weight: 500;
13290
+ }
13291
+
13292
+ .input-wrapper {
13293
+ display: flex;
13294
+ flex-wrap: wrap;
13295
+
13296
+ .input-title {
13297
+ width: 100%;
13349
13298
  }
13350
13299
 
13351
- .input-placeholder {
13352
- left: 18px;
13353
- font-style: italic;
13354
- font-size: 14px;
13300
+ .memory-number-input, .cpu-number-input {
13301
+ width: 50%;
13302
+ }
13303
+
13304
+ .memory-size-dropdown, .cpu-dropdown {
13305
+ width: 35%
13355
13306
  }
13307
+
13308
+ .gpu-number-input, .replicas-number-input, .preemtion-mode-input {
13309
+ width: 85%;
13310
+ }
13311
+ }
13312
+ }
13313
+
13314
+ .slider-block {
13315
+ padding-top: 0;
13316
+ margin-bottom: 10px;
13317
+
13318
+ .slider {
13319
+ width: 70%;
13356
13320
  }
13357
13321
  }
13358
13322
  }
@@ -13422,6 +13386,42 @@ ncl-breadcrumbs {
13422
13386
  }
13423
13387
  }
13424
13388
 
13389
+ .function-from-template-dialog-wrapper {
13390
+ .title {
13391
+ font-size: 20px;
13392
+ font-weight: 500;
13393
+ text-align: left;
13394
+ color: @dusk-three;
13395
+ }
13396
+
13397
+ .main-content {
13398
+ width: 500px;
13399
+ max-height: 500px;
13400
+
13401
+ form {
13402
+ margin: 0 20px 0 0;
13403
+
13404
+ .field-label {
13405
+ font-size: 14px;
13406
+ text-align: left;
13407
+ color: @dusk-three;
13408
+ }
13409
+
13410
+ .validating-input-field {
13411
+ .input-field {
13412
+ padding: 0 10px 0 17px;
13413
+ }
13414
+
13415
+ .input-placeholder {
13416
+ left: 18px;
13417
+ font-style: italic;
13418
+ font-size: 14px;
13419
+ }
13420
+ }
13421
+ }
13422
+ }
13423
+ }
13424
+
13425
13425
  .version-configuration-build-dialog-wrapper {
13426
13426
  font-family: Roboto;
13427
13427