iguazio.dashboard-controls 1.0.15-3.6.2 → 1.0.16-3.6.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.
@@ -5531,27 +5531,6 @@ yx-axis
5531
5531
 
5532
5532
  /* ---------------------------------------- */
5533
5533
 
5534
- .action-checkbox {
5535
- .action-checkbox-color-set();
5536
-
5537
- line-height: 16px;
5538
- text-align: center;
5539
-
5540
- .check-item {
5541
- font-size: 16px;
5542
- cursor: pointer;
5543
- line-height: 1;
5544
- vertical-align: middle;
5545
-
5546
- &.igz-icon-checkbox-unchecked {
5547
- color: @icon-checkbox-unchecked;
5548
- }
5549
-
5550
- &.igz-icon-checkbox-checked {
5551
- color: @icon-checkbox-checked;
5552
- }
5553
- }
5554
- }
5555
5534
  .action-checkbox-all {
5556
5535
  .action-checkbox-all-color-set();
5557
5536
 
@@ -5727,6 +5706,27 @@ yx-axis
5727
5706
  }
5728
5707
  }
5729
5708
 
5709
+ .action-checkbox {
5710
+ .action-checkbox-color-set();
5711
+
5712
+ line-height: 16px;
5713
+ text-align: center;
5714
+
5715
+ .check-item {
5716
+ font-size: 16px;
5717
+ cursor: pointer;
5718
+ line-height: 1;
5719
+ vertical-align: middle;
5720
+
5721
+ &.igz-icon-checkbox-unchecked {
5722
+ color: @icon-checkbox-unchecked;
5723
+ }
5724
+
5725
+ &.igz-icon-checkbox-checked {
5726
+ color: @icon-checkbox-checked;
5727
+ }
5728
+ }
5729
+ }
5730
5730
  .igz-action-panel {
5731
5731
  .action-panel-color-set();
5732
5732
  .action-icon-color-set();
@@ -6711,6 +6711,159 @@ yx-axis
6711
6711
  }
6712
6712
  }
6713
6713
 
6714
+ .igz-number-input {
6715
+ .number-input-color-set();
6716
+
6717
+ min-width: 115px;
6718
+ font-family: @font-family-sans-serif;
6719
+ font-size: 14px;
6720
+ font-weight: 400;
6721
+ height: 36px;
6722
+ position: relative;
6723
+ background-color: @number-input-bg-color;
6724
+ border: @number-input-border;
6725
+ border-radius: 2px;
6726
+ color: @number-input-color;
6727
+ display: flex;
6728
+ justify-content: flex-start;
6729
+ align-items: center;
6730
+ padding: 0 10px 0 11px;
6731
+ z-index: 3;
6732
+
6733
+ &:not(.disabled) {
6734
+ &:focus.ng-invalid:not(.ng-pristine), &.ng-invalid.ng-touched {
6735
+ background-color: @number-input-not-disabled-focus-invalid-bg-color;
6736
+ border: @number-input-not-disabled-focus-invalid-border;
6737
+ box-shadow: none;
6738
+ outline: none;
6739
+ }
6740
+
6741
+ &:focus-within, &.focused {
6742
+ outline: 0;
6743
+ border: @number-input-not-disabled-hover-focus-border;
6744
+ }
6745
+
6746
+ &.invalid:not(.pristine), &.invalid.submitted {
6747
+ background-color: @number-input-not-disabled-invalid-bg-color;
6748
+ border: @number-input-not-disabled-invalid-border;
6749
+ box-shadow: none;
6750
+ }
6751
+
6752
+ &:focus.ng-valid, &:focus.ng-pristine {
6753
+ border: @number-input-not-disabled-valid-border;
6754
+ box-shadow: none;
6755
+ outline: none;
6756
+ }
6757
+ }
6758
+
6759
+ &.additional-left-padding {
6760
+ padding-left: 22px;
6761
+ }
6762
+
6763
+ .input-field {
6764
+ border: none;
6765
+ outline: 0;
6766
+ padding: 0;
6767
+ text-align: left;
6768
+ background-color: @number-input-field-bg-color;
6769
+ }
6770
+
6771
+ //
6772
+ // placeholder
6773
+ //
6774
+
6775
+ ::-webkit-input-placeholder {
6776
+ /* Chrome, Chromium, Edge, Safari, Opera*/
6777
+ color: @number-input-placeholder-color;
6778
+ }
6779
+
6780
+ :-moz-placeholder {
6781
+ /* Firefox 4-18 */
6782
+ color: @number-input-placeholder-color;
6783
+ }
6784
+
6785
+ ::-moz-placeholder {
6786
+ /* Firefox 19+ */
6787
+ color: @number-input-placeholder-color;
6788
+ }
6789
+
6790
+ :-ms-input-placeholder {
6791
+ /* - Internet Explorer 10–11
6792
+ - Internet Explorer Mobile 10-11 */
6793
+ color: @number-input-placeholder-color !important;
6794
+ }
6795
+
6796
+ ::placeholder {
6797
+ /* modern browser versions */
6798
+ color: @number-input-placeholder-color;
6799
+ }
6800
+
6801
+ .additional-left-block {
6802
+ .prefix-unit {
6803
+ color: @number-input-additional-left-block-prefix-unit-color;
6804
+ font-size: 14px;
6805
+ font-weight: 700;
6806
+ padding-right: 7px;
6807
+ }
6808
+ }
6809
+
6810
+ .suffix-unit-container {
6811
+ display: flex;
6812
+ align-items: center;
6813
+
6814
+ .suffix-unit {
6815
+ color: @number-input-suffix-unit-color;
6816
+ font-size: 14px;
6817
+ font-weight: 400;
6818
+ padding-left: 3px;
6819
+ }
6820
+ }
6821
+
6822
+ .arrow-block {
6823
+ font-size: 11px;
6824
+ display: flex;
6825
+ flex-direction: column;
6826
+ justify-content: center;
6827
+ height: 100%;
6828
+ margin-left: 6px;
6829
+
6830
+ .igz-icon-dropup, .igz-icon-dropdown {
6831
+ color: @number-input-arrow-block-icon-color;
6832
+ cursor: pointer;
6833
+ display: block;
6834
+ line-height: 11px;
6835
+ outline: 0;
6836
+
6837
+ &:hover {
6838
+ color: @number-input-arrow-block-icon-hover-color;
6839
+ }
6840
+ }
6841
+ }
6842
+
6843
+ &.disabled {
6844
+ background-color: @number-input-disabled-bg-color;
6845
+ opacity: 0.5;
6846
+
6847
+ .suffix-unit {
6848
+ opacity: 0.5;
6849
+ }
6850
+
6851
+ .igz-icon-dropup, .igz-icon-dropdown {
6852
+ &, &:hover {
6853
+ color: @number-input-disabled-icon-hover-color;
6854
+ opacity: 0.5;
6855
+ cursor: default;
6856
+ }
6857
+ }
6858
+ }
6859
+ }
6860
+
6861
+ .step3, .step4 {
6862
+ .additional-right-padding {
6863
+ padding-right: 50px;
6864
+ }
6865
+ }
6866
+
6714
6867
  .igz-navigation-tabs {
6715
6868
  .navigation-tabs-color-set();
6716
6869
 
@@ -6942,178 +7095,25 @@ yx-axis
6942
7095
  }
6943
7096
  }
6944
7097
 
6945
- .igz-number-input {
6946
- .number-input-color-set();
6947
-
6948
- min-width: 115px;
6949
- font-family: @font-family-sans-serif;
6950
- font-size: 14px;
6951
- font-weight: 400;
6952
- height: 36px;
6953
- position: relative;
6954
- background-color: @number-input-bg-color;
6955
- border: @number-input-border;
6956
- border-radius: 2px;
6957
- color: @number-input-color;
6958
- display: flex;
6959
- justify-content: flex-start;
6960
- align-items: center;
6961
- padding: 0 10px 0 11px;
6962
- z-index: 3;
6963
-
6964
- &:not(.disabled) {
6965
- &:focus.ng-invalid:not(.ng-pristine), &.ng-invalid.ng-touched {
6966
- background-color: @number-input-not-disabled-focus-invalid-bg-color;
6967
- border: @number-input-not-disabled-focus-invalid-border;
6968
- box-shadow: none;
6969
- outline: none;
6970
- }
7098
+ .igz-pagination {
7099
+ .pagination-color-set();
6971
7100
 
6972
- &:focus-within, &.focused {
6973
- outline: 0;
6974
- border: @number-input-not-disabled-hover-focus-border;
6975
- }
7101
+ float: right;
7102
+ padding: 24px 36px 5px 30px;
6976
7103
 
6977
- &.invalid:not(.pristine), &.invalid.submitted {
6978
- background-color: @number-input-not-disabled-invalid-bg-color;
6979
- border: @number-input-not-disabled-invalid-border;
6980
- box-shadow: none;
6981
- }
7104
+ > div {
7105
+ vertical-align: top;
7106
+ }
6982
7107
 
6983
- &:focus.ng-valid, &:focus.ng-pristine {
6984
- border: @number-input-not-disabled-valid-border;
6985
- box-shadow: none;
6986
- outline: none;
6987
- }
7108
+ .rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
7109
+ display: inline-block;
7110
+ vertical-align: baseline;
6988
7111
  }
6989
7112
 
6990
- &.additional-left-padding {
6991
- padding-left: 22px;
6992
- }
6993
-
6994
- .input-field {
6995
- border: none;
6996
- outline: 0;
6997
- padding: 0;
6998
- text-align: left;
6999
- background-color: @number-input-field-bg-color;
7000
- }
7001
-
7002
- //
7003
- // placeholder
7004
- //
7005
-
7006
- ::-webkit-input-placeholder {
7007
- /* Chrome, Chromium, Edge, Safari, Opera*/
7008
- color: @number-input-placeholder-color;
7009
- }
7010
-
7011
- :-moz-placeholder {
7012
- /* Firefox 4-18 */
7013
- color: @number-input-placeholder-color;
7014
- }
7015
-
7016
- ::-moz-placeholder {
7017
- /* Firefox 19+ */
7018
- color: @number-input-placeholder-color;
7019
- }
7020
-
7021
- :-ms-input-placeholder {
7022
- /* - Internet Explorer 10–11
7023
- - Internet Explorer Mobile 10-11 */
7024
- color: @number-input-placeholder-color !important;
7025
- }
7026
-
7027
- ::placeholder {
7028
- /* modern browser versions */
7029
- color: @number-input-placeholder-color;
7030
- }
7031
-
7032
- .additional-left-block {
7033
- .prefix-unit {
7034
- color: @number-input-additional-left-block-prefix-unit-color;
7035
- font-size: 14px;
7036
- font-weight: 700;
7037
- padding-right: 7px;
7038
- }
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;
7113
+ .rows-title {
7114
+ font-size: 13px;
7115
+ color: @rows-title-color;
7116
+ font-family: @font-family-sans-serif;
7117
7117
  }
7118
7118
 
7119
7119
  .per-page {
@@ -7243,6 +7243,97 @@ yx-axis
7243
7243
  }
7244
7244
  }
7245
7245
  }
7246
+ .igz-size {
7247
+ .size-color-set();
7248
+
7249
+ align-items: center;
7250
+ display: flex;
7251
+ justify-content: space-between;
7252
+ min-height: 40px;
7253
+
7254
+ &:after {
7255
+ content: ' ';
7256
+ display: inline-block;
7257
+ vertical-align: middle;
7258
+ }
7259
+
7260
+ .size-value {
7261
+ line-height: 1;
7262
+ flex: 0 0 100px;
7263
+ min-width: 100px;
7264
+
7265
+ > span {
7266
+ line-height: 25px;
7267
+ }
7268
+
7269
+ &.short {
7270
+ flex: 0 0 75px;
7271
+ min-width: 75px;
7272
+ }
7273
+
7274
+ &.shorten {
7275
+ flex: 0 0 60px;
7276
+ min-width: 60px;
7277
+ }
7278
+
7279
+ &.shortest {
7280
+ flex: 0 0 40px;
7281
+ min-width: 40px;
7282
+ }
7283
+ }
7284
+
7285
+ .size-reserved {
7286
+ color: @size-reserved-color;
7287
+ font-size: 12px;
7288
+
7289
+ .icon-font-arrow-right:before {
7290
+ color: @size-reserved-arrow-right-before-color;
7291
+ font-size: 10px;
7292
+ padding: 0 4px 0 4px;
7293
+ }
7294
+
7295
+ .icon-font-infinity:before {
7296
+ color: @size-reserved-infinity-before-color;
7297
+ font-size: 10px;
7298
+ }
7299
+ }
7300
+
7301
+ .size-chart {
7302
+ flex: 1 1 auto;
7303
+ min-width: 0;
7304
+
7305
+ div.highcharts-tooltip {
7306
+ position: fixed !important;
7307
+
7308
+ .igz-tooltip-wrapper {
7309
+ color: @size-chart-tooltip-wrapper-color;
7310
+
7311
+ &.used-capacity-tooltip-wrapper {
7312
+ .igz-row {
7313
+ .tooltip-label,
7314
+ .tooltip-value {
7315
+ text-overflow: unset;
7316
+ }
7317
+ }
7318
+ }
7319
+
7320
+ .tooltip-header {
7321
+ padding-bottom: 6px;
7322
+ margin-bottom: 5px;
7323
+ line-height: 1.1;
7324
+ text-align: center;
7325
+ }
7326
+ }
7327
+ }
7328
+ }
7329
+
7330
+ .igz-highcharts-wrapper {
7331
+ height: 40px;
7332
+ position: relative;
7333
+ width: 100%;
7334
+ }
7335
+ }
7336
+
7246
7337
  .search-input {
7247
7338
  .search-input-color-set();
7248
7339
 
@@ -7559,94 +7650,80 @@ yx-axis
7559
7650
  }
7560
7651
  }
7561
7652
 
7562
- .igz-size {
7563
- .size-color-set();
7564
-
7565
- align-items: center;
7566
- display: flex;
7567
- justify-content: space-between;
7568
- min-height: 40px;
7653
+ .ngdialog.text-edit {
7654
+ .text-edit-color-set();
7569
7655
 
7570
- &:after {
7571
- content: ' ';
7572
- display: inline-block;
7573
- vertical-align: middle;
7574
- }
7656
+ .ngdialog-content {
7657
+ padding: 0;
7658
+ width: 1000px;
7659
+ height: 678px;
7575
7660
 
7576
- .size-value {
7577
- line-height: 1;
7578
- flex: 0 0 100px;
7579
- min-width: 100px;
7661
+ .text-preview-directive-wrapper {
7662
+ .title {
7663
+ margin: 25px 0 0 24px;
7664
+ padding: 0 70px 0 0;
7665
+ }
7580
7666
 
7581
- > span {
7582
- line-height: 25px;
7583
- }
7667
+ .close-button {
7668
+ position: absolute;
7669
+ top: 24px;
7670
+ right: 24px;
7671
+ font-size: 18px;
7672
+ color: @close-btn-color;
7673
+ }
7584
7674
 
7585
- &.short {
7586
- flex: 0 0 75px;
7587
- min-width: 75px;
7588
- }
7675
+ .buttons {
7676
+ margin-right: 24px;
7677
+ }
7589
7678
 
7590
- &.shorten {
7591
- flex: 0 0 60px;
7592
- min-width: 60px;
7593
- }
7594
-
7595
- &.shortest {
7596
- flex: 0 0 40px;
7597
- min-width: 40px;
7598
- }
7599
- }
7600
-
7601
- .size-reserved {
7602
- color: @size-reserved-color;
7603
- font-size: 12px;
7604
-
7605
- .icon-font-arrow-right:before {
7606
- color: @size-reserved-arrow-right-before-color;
7607
- font-size: 10px;
7608
- padding: 0 4px 0 4px;
7609
- }
7679
+ .text-preview-wrapper {
7680
+ background-color: @text-preview-wrapper-bg-color;
7681
+ border-top: @text-preview-wrapper-border-top;
7682
+ border-bottom: @text-preview-wrapper-border-bottom;
7683
+ border-radius: 2px;
7684
+ margin-bottom: 16px;
7685
+ padding: 15px 22px 17px;
7686
+ min-width: 690px;
7687
+ height: 550px;
7610
7688
 
7611
- .icon-font-infinity:before {
7612
- color: @size-reserved-infinity-before-color;
7613
- font-size: 10px;
7614
- }
7615
- }
7689
+ .text-preview-container {
7690
+ width: 100%;
7691
+ line-height: 1.9;
7692
+ text-align: left;
7693
+ padding-right: 22px;
7694
+ font-size: 13px;
7695
+ color: @text-preview-container-color;
7696
+ resize: none;
7697
+ overflow: hidden;
7698
+ border-color: @text-preview-container-border-color;
7699
+ background-color: @text-preview-container-bg-color;
7700
+ cursor: text;
7701
+ }
7616
7702
 
7617
- .size-chart {
7618
- flex: 1 1 auto;
7619
- min-width: 0;
7703
+ .text-preview-container:focus {
7704
+ outline: 0;
7705
+ }
7620
7706
 
7621
- div.highcharts-tooltip {
7622
- position: fixed !important;
7707
+ .word-wrap-checkbox-wrapper {
7708
+ width: 100%;
7709
+ display: flex;
7710
+ justify-content: flex-end;
7623
7711
 
7624
- .igz-tooltip-wrapper {
7625
- color: @size-chart-tooltip-wrapper-color;
7712
+ .col-checkbox {
7713
+ line-height: normal;
7714
+ height: 25px;
7626
7715
 
7627
- &.used-capacity-tooltip-wrapper {
7628
- .igz-row {
7629
- .tooltip-label,
7630
- .tooltip-value {
7631
- text-overflow: unset;
7716
+ label:before {
7717
+ font-size: 16px;
7632
7718
  }
7633
7719
  }
7634
7720
  }
7635
-
7636
- .tooltip-header {
7637
- padding-bottom: 6px;
7638
- margin-bottom: 5px;
7639
- line-height: 1.1;
7640
- text-align: center;
7641
- }
7642
7721
  }
7643
7722
  }
7644
7723
  }
7645
7724
 
7646
- .igz-highcharts-wrapper {
7647
- height: 40px;
7648
- position: relative;
7649
- width: 100%;
7725
+ .ncl-monaco {
7726
+ height: 500px;
7650
7727
  }
7651
7728
  }
7652
7729
 
@@ -7821,83 +7898,6 @@ yx-axis
7821
7898
  }
7822
7899
  }
7823
7900
 
7824
- .ngdialog.text-edit {
7825
- .text-edit-color-set();
7826
-
7827
- .ngdialog-content {
7828
- padding: 0;
7829
- width: 1000px;
7830
- height: 678px;
7831
-
7832
- .text-preview-directive-wrapper {
7833
- .title {
7834
- margin: 25px 0 0 24px;
7835
- padding: 0 70px 0 0;
7836
- }
7837
-
7838
- .close-button {
7839
- position: absolute;
7840
- top: 24px;
7841
- right: 24px;
7842
- font-size: 18px;
7843
- color: @close-btn-color;
7844
- }
7845
-
7846
- .buttons {
7847
- margin-right: 24px;
7848
- }
7849
-
7850
- .text-preview-wrapper {
7851
- background-color: @text-preview-wrapper-bg-color;
7852
- border-top: @text-preview-wrapper-border-top;
7853
- border-bottom: @text-preview-wrapper-border-bottom;
7854
- border-radius: 2px;
7855
- margin-bottom: 16px;
7856
- padding: 15px 22px 17px;
7857
- min-width: 690px;
7858
- height: 550px;
7859
-
7860
- .text-preview-container {
7861
- width: 100%;
7862
- line-height: 1.9;
7863
- text-align: left;
7864
- padding-right: 22px;
7865
- font-size: 13px;
7866
- color: @text-preview-container-color;
7867
- resize: none;
7868
- overflow: hidden;
7869
- border-color: @text-preview-container-border-color;
7870
- background-color: @text-preview-container-bg-color;
7871
- cursor: text;
7872
- }
7873
-
7874
- .text-preview-container:focus {
7875
- outline: 0;
7876
- }
7877
-
7878
- .word-wrap-checkbox-wrapper {
7879
- width: 100%;
7880
- display: flex;
7881
- justify-content: flex-end;
7882
-
7883
- .col-checkbox {
7884
- line-height: normal;
7885
- height: 25px;
7886
-
7887
- label:before {
7888
- font-size: 16px;
7889
- }
7890
- }
7891
- }
7892
- }
7893
- }
7894
- }
7895
-
7896
- .ncl-monaco {
7897
- height: 500px;
7898
- }
7899
- }
7900
-
7901
7901
  .validating-input-field {
7902
7902
  .validating-input-field-color-set();
7903
7903
 
@@ -10155,123 +10155,280 @@ ncl-breadcrumbs {
10155
10155
  }
10156
10156
  }
10157
10157
  }
10158
- .ncl-edit-item {
10159
- width: 100%;
10160
- padding: 6px 0;
10161
-
10162
- .title-field-row {
10163
- display: flex;
10164
-
10165
- .name-field {
10166
- margin-right: 14px;
10167
- width: 178px;
10168
-
10169
- .error {
10170
- color: @darkish-pink;
10171
- font-size: 12px;
10172
- white-space: nowrap;
10173
- }
10174
- }
10175
-
10176
- .class-field {
10177
- margin-right: 14px;
10178
- width: 154px;
10179
-
10180
- .default-dropdown {
10181
- .default-dropdown-container {
10182
- position: relative;
10183
- }
10158
+ .view-yaml-dialog-wrapper {
10159
+ .ngdialog-content {
10160
+ .view-yaml-dialog-header {
10161
+ .title {
10162
+ margin-bottom: 10px;
10184
10163
  }
10185
10164
 
10186
- .error {
10187
- color: @darkish-pink;
10188
- font-size: 12px;
10189
- white-space: nowrap;
10165
+ .copy-to-clipboard {
10166
+ width: 20px;
10190
10167
  }
10191
10168
  }
10192
10169
 
10193
- &:last-child {
10194
- padding-bottom: 0;
10195
- }
10196
-
10197
- .tooltip-wrapper {
10198
- .more-info-wrapper {
10199
- padding-left: 0;
10200
- }
10170
+ .monaco-editor {
10171
+ min-width: 700px;
10172
+ min-height: 450px;
10201
10173
  }
10202
10174
  }
10175
+ }
10176
+ ncl-navigation-tabs {
10177
+ .ncl-navigation-tabs-color-set();
10203
10178
 
10204
- .attribute-field {
10205
- margin-right: 1%;
10206
- padding: 8px 0 6px;
10207
-
10208
- .field-label {
10209
- height: 22px;
10210
- }
10179
+ position: relative;
10180
+ z-index: 999;
10181
+ background: @navigation-tabs-bg-color;
10211
10182
 
10212
- &.attribute-field-checkbox {
10213
- padding: 35px 0 19px;
10214
- }
10183
+ .ncl-navigation-tabs-wrapper {
10184
+ display: flex;
10185
+ align-items: center;
10186
+ justify-content: space-between;
10187
+ border-bottom: 1px solid @mystic-two;
10188
+ border-top: none;
10215
10189
 
10216
- .more-info-wrapper {
10217
- height: auto;
10218
- }
10219
- }
10190
+ .ncl-navigation-tabs {
10191
+ background: @navigation-tabs-bg-color;
10192
+ height: 54px;
10220
10193
 
10221
- .no-class-selected {
10222
- line-height: 48px;
10223
- .duskThree(0.64);
10224
- color: @color;
10225
- }
10194
+ .navigation-tab {
10195
+ position: relative;
10196
+ float: left;
10197
+ height: 32px;
10198
+ padding: 20px 40px 0;
10199
+ font-family: @font-family-sans-serif;
10200
+ color: @navigation-tab-color;
10201
+ font-size: 13px;
10202
+ text-align: center;
10203
+ cursor: pointer;
10204
+ border-bottom: @navigation-tab-border-bottom;
10205
+ box-sizing: content-box;
10226
10206
 
10227
- .ingresses-wrapper {
10228
- .ingresses-table-headers {
10229
- width: calc(100% - 30px);
10207
+ &.active, &.active:hover {
10208
+ background: none;
10209
+ color: @navigation-tab-active-hover-color;
10210
+ border-bottom: @navigation-tab-active-hover-border-bottom;
10211
+ font-weight: bold;
10212
+ }
10230
10213
 
10231
- .host-header {
10232
- width: 38%;
10233
- padding-left: 16px;
10234
- }
10214
+ &.ncl-status-indicator {
10215
+ padding-right: 8px;
10235
10216
 
10236
- .paths-header, .secret-header{
10237
- width: 31%;
10238
- padding-left: 16px;
10217
+ &:hover {
10218
+ .ncl-status-tooltip {
10219
+ display: flex;
10220
+ }
10221
+ }
10222
+ }
10223
+
10224
+ .ncl-status-light {
10225
+ position: relative;
10226
+ display: inline-block;
10227
+ width: 8px;
10228
+ height: 8px;
10229
+ border-radius: 50%;
10230
+ margin-left: 34px;
10231
+ background-color: @solid-grey;
10232
+
10233
+ &.ncl-status-ready {
10234
+ background-color: @tealish;
10235
+ }
10236
+
10237
+ &.ncl-status-building {
10238
+ background-color: @pale-orange;
10239
+ }
10240
+
10241
+ &.ncl-status-error {
10242
+ background-color: @darkish-pink;
10243
+ }
10244
+
10245
+ .ncl-status-tooltip {
10246
+ position: absolute;
10247
+ left: 22px;
10248
+ top: -10px;
10249
+ z-index: 1;
10250
+ display: none;
10251
+ height: 24px;
10252
+ padding: 4px 12px 22px 10px;
10253
+ border-radius: 2px;
10254
+ background-color: @solid-grey;
10255
+ color: @white;
10256
+
10257
+ &:after {
10258
+ content: "";
10259
+ position: absolute;
10260
+ right: 100%;
10261
+ top: 50%;
10262
+ height: 0;
10263
+ width: 0;
10264
+ margin-top: -5px;
10265
+ border: 5px solid transparent;
10266
+ border-right-color: @solid-grey;
10267
+ pointer-events: none;
10268
+ }
10269
+
10270
+ &.ncl-status-tooltip-ready {
10271
+ padding-left: 10px;
10272
+ background-color: @tealish;
10273
+
10274
+ &:after {
10275
+ border-right-color: @tealish;
10276
+ }
10277
+ }
10278
+
10279
+ &.ncl-status-tooltip-building {
10280
+ padding-left: 10px;
10281
+ background-color: @pale-orange;
10282
+
10283
+ &:after {
10284
+ border-right-color: @pale-orange;
10285
+ }
10286
+ }
10287
+
10288
+ &.ncl-status-tooltip-error {
10289
+ padding-left: 10px;
10290
+ background-color: @darkish-pink;
10291
+
10292
+ &:after {
10293
+ border-right-color: @darkish-pink;
10294
+ }
10295
+ }
10296
+
10297
+ .ncl-status-icon {
10298
+ width: 13px;
10299
+ margin-right: 5px;
10300
+
10301
+ &.ncl-icon-ready {
10302
+ margin-top: 3px;
10303
+ font-size: 10px;
10304
+ }
10305
+
10306
+ &.ncl-icon-building {
10307
+ margin-top: 6px;
10308
+ font-size: 5px;
10309
+ }
10310
+
10311
+ &.ncl-icon-error {
10312
+ margin-top: 3px;
10313
+ font-size: 10px;
10314
+ }
10315
+ }
10316
+
10317
+ .ncl-status-title {
10318
+ font-size: 13px;
10319
+ font-weight: normal;
10320
+ white-space: nowrap;
10321
+
10322
+ &::first-letter {
10323
+ text-transform: capitalize;
10324
+ }
10325
+ }
10326
+ }
10327
+ }
10239
10328
  }
10240
10329
  }
10241
10330
  }
10242
10331
 
10243
- .advanced-section {
10244
- .collapsed-block-title {
10245
- font-size: 15px;
10246
- font-weight: bold;
10247
- margin: 15px 0;
10332
+ .test-pane-actions-wrapper {
10333
+ margin-right: 35px;
10334
+ }
10335
+ }
10248
10336
 
10249
- .icon-collapsed {
10250
- color: .duskThree(0.64)[@color];
10251
- font-size: 12px;
10252
- margin: 0 11px 0 4px;
10253
- }
10337
+ .ncl-monaco {
10338
+ .ncl-monaco-wrapper {
10339
+ padding-top: 20px;
10340
+ height: 100%;
10341
+ border: 1px solid @pale-grey;
10342
+ background-color: @white;
10343
+
10344
+ &.no-top-padding {
10345
+ padding-top: 0;
10346
+ }
10347
+
10348
+ .ncl-monaco-top-row {
10349
+ display: block;
10350
+ }
10351
+
10352
+ .ncl-monaco-editor {
10353
+ height: 100%;
10254
10354
  }
10255
10355
  }
10356
+
10357
+ .ncl-monaco-dark {
10358
+ background-color: @vs-dark;
10359
+ }
10256
10360
  }
10257
10361
 
10258
- .view-yaml-dialog-wrapper {
10259
- .ngdialog-content {
10260
- .view-yaml-dialog-header {
10261
- .title {
10262
- margin-bottom: 10px;
10362
+
10363
+ .ncl-search-input {
10364
+ position: relative;
10365
+ color: @silver;
10366
+
10367
+ .container-search-input {
10368
+ background-color: transparent;
10369
+ border-bottom: 1px solid @silver;
10370
+ font-size: 13px;
10371
+ font-weight: 400;
10372
+ height: 36px;
10373
+ line-height: 36px;
10374
+ margin: 0;
10375
+ outline: 0;
10376
+ padding: 0 0 3px 31px;
10377
+ width: 100%;
10378
+
10379
+ &::-webkit-input-placeholder {
10380
+ color: @silver;
10381
+ }
10382
+
10383
+ &:-moz-placeholder { /* Firefox 18- */
10384
+ color: @silver;
10385
+ }
10386
+
10387
+ &::-moz-placeholder { /* Firefox 19+ */
10388
+ color: @silver;
10389
+ }
10390
+
10391
+ &:-ms-input-placeholder {
10392
+ color: @silver;
10393
+ }
10394
+
10395
+ &:focus {
10396
+ border-bottom: 1px solid @light-blue;
10397
+
10398
+ &, & + .igz-icon-search:before {
10399
+ color: @dusk-three;
10263
10400
  }
10264
10401
 
10265
- .copy-to-clipboard {
10266
- width: 20px;
10402
+ &::-webkit-input-placeholder {
10403
+ color: transparent;
10267
10404
  }
10268
- }
10269
10405
 
10270
- .monaco-editor {
10271
- min-width: 700px;
10272
- min-height: 450px;
10406
+ &:-moz-placeholder { /* Firefox 18- */
10407
+ color: transparent;
10408
+ }
10409
+
10410
+ &::-moz-placeholder { /* Firefox 19+ */
10411
+ color: transparent;
10412
+ }
10413
+
10414
+ &:-ms-input-placeholder {
10415
+ color: transparent;
10416
+ }
10273
10417
  }
10274
10418
  }
10419
+
10420
+ .igz-icon-search {
10421
+ font-size: 18px;
10422
+ position: absolute;
10423
+ left: 8px;
10424
+ top: 5px;
10425
+ z-index: 1;
10426
+ color: @silver;
10427
+ }
10428
+
10429
+ input::-ms-clear {
10430
+ display: none;
10431
+ }
10275
10432
  }
10276
10433
  .ncl-key-value-input {
10277
10434
  .input-wrapper {
@@ -10487,193 +10644,106 @@ ncl-breadcrumbs {
10487
10644
  }
10488
10645
  }
10489
10646
 
10490
- ncl-navigation-tabs {
10491
- .ncl-navigation-tabs-color-set();
10492
-
10493
- position: relative;
10494
- z-index: 999;
10495
- background: @navigation-tabs-bg-color;
10647
+ .ncl-edit-item {
10648
+ width: 100%;
10649
+ padding: 6px 0;
10496
10650
 
10497
- .ncl-navigation-tabs-wrapper {
10651
+ .title-field-row {
10498
10652
  display: flex;
10499
- align-items: center;
10500
- justify-content: space-between;
10501
- border-bottom: 1px solid @mystic-two;
10502
- border-top: none;
10503
-
10504
- .ncl-navigation-tabs {
10505
- background: @navigation-tabs-bg-color;
10506
- height: 54px;
10507
10653
 
10508
- .navigation-tab {
10509
- position: relative;
10510
- float: left;
10511
- height: 32px;
10512
- padding: 20px 40px 0;
10513
- font-family: @font-family-sans-serif;
10514
- color: @navigation-tab-color;
10515
- font-size: 13px;
10516
- text-align: center;
10517
- cursor: pointer;
10518
- border-bottom: @navigation-tab-border-bottom;
10519
- box-sizing: content-box;
10520
-
10521
- &.active, &.active:hover {
10522
- background: none;
10523
- color: @navigation-tab-active-hover-color;
10524
- border-bottom: @navigation-tab-active-hover-border-bottom;
10525
- font-weight: bold;
10526
- }
10654
+ .name-field {
10655
+ margin-right: 14px;
10656
+ width: 178px;
10527
10657
 
10528
- &.ncl-status-indicator {
10529
- padding-right: 8px;
10658
+ .error {
10659
+ color: @darkish-pink;
10660
+ font-size: 12px;
10661
+ white-space: nowrap;
10662
+ }
10663
+ }
10530
10664
 
10531
- &:hover {
10532
- .ncl-status-tooltip {
10533
- display: flex;
10534
- }
10535
- }
10536
- }
10665
+ .class-field {
10666
+ margin-right: 14px;
10667
+ width: 154px;
10537
10668
 
10538
- .ncl-status-light {
10669
+ .default-dropdown {
10670
+ .default-dropdown-container {
10539
10671
  position: relative;
10540
- display: inline-block;
10541
- width: 8px;
10542
- height: 8px;
10543
- border-radius: 50%;
10544
- margin-left: 34px;
10545
- background-color: @solid-grey;
10546
-
10547
- &.ncl-status-ready {
10548
- background-color: @tealish;
10549
- }
10550
-
10551
- &.ncl-status-building {
10552
- background-color: @pale-orange;
10553
- }
10554
-
10555
- &.ncl-status-error {
10556
- background-color: @darkish-pink;
10557
- }
10558
-
10559
- .ncl-status-tooltip {
10560
- position: absolute;
10561
- left: 22px;
10562
- top: -10px;
10563
- z-index: 1;
10564
- display: none;
10565
- height: 24px;
10566
- padding: 4px 12px 22px 10px;
10567
- border-radius: 2px;
10568
- background-color: @solid-grey;
10569
- color: @white;
10570
-
10571
- &:after {
10572
- content: "";
10573
- position: absolute;
10574
- right: 100%;
10575
- top: 50%;
10576
- height: 0;
10577
- width: 0;
10578
- margin-top: -5px;
10579
- border: 5px solid transparent;
10580
- border-right-color: @solid-grey;
10581
- pointer-events: none;
10582
- }
10583
-
10584
- &.ncl-status-tooltip-ready {
10585
- padding-left: 10px;
10586
- background-color: @tealish;
10587
-
10588
- &:after {
10589
- border-right-color: @tealish;
10590
- }
10591
- }
10592
-
10593
- &.ncl-status-tooltip-building {
10594
- padding-left: 10px;
10595
- background-color: @pale-orange;
10596
-
10597
- &:after {
10598
- border-right-color: @pale-orange;
10599
- }
10600
- }
10601
-
10602
- &.ncl-status-tooltip-error {
10603
- padding-left: 10px;
10604
- background-color: @darkish-pink;
10672
+ }
10673
+ }
10605
10674
 
10606
- &:after {
10607
- border-right-color: @darkish-pink;
10608
- }
10609
- }
10675
+ .error {
10676
+ color: @darkish-pink;
10677
+ font-size: 12px;
10678
+ white-space: nowrap;
10679
+ }
10680
+ }
10610
10681
 
10611
- .ncl-status-icon {
10612
- width: 13px;
10613
- margin-right: 5px;
10682
+ &:last-child {
10683
+ padding-bottom: 0;
10684
+ }
10614
10685
 
10615
- &.ncl-icon-ready {
10616
- margin-top: 3px;
10617
- font-size: 10px;
10618
- }
10686
+ .tooltip-wrapper {
10687
+ .more-info-wrapper {
10688
+ padding-left: 0;
10689
+ }
10690
+ }
10691
+ }
10619
10692
 
10620
- &.ncl-icon-building {
10621
- margin-top: 6px;
10622
- font-size: 5px;
10623
- }
10693
+ .attribute-field {
10694
+ margin-right: 1%;
10695
+ padding: 8px 0 6px;
10624
10696
 
10625
- &.ncl-icon-error {
10626
- margin-top: 3px;
10627
- font-size: 10px;
10628
- }
10629
- }
10697
+ .field-label {
10698
+ height: 22px;
10699
+ }
10630
10700
 
10631
- .ncl-status-title {
10632
- font-size: 13px;
10633
- font-weight: normal;
10634
- white-space: nowrap;
10701
+ &.attribute-field-checkbox {
10702
+ padding: 35px 0 19px;
10703
+ }
10635
10704
 
10636
- &::first-letter {
10637
- text-transform: capitalize;
10638
- }
10639
- }
10640
- }
10641
- }
10642
- }
10705
+ .more-info-wrapper {
10706
+ height: auto;
10643
10707
  }
10644
10708
  }
10645
10709
 
10646
- .test-pane-actions-wrapper {
10647
- margin-right: 35px;
10710
+ .no-class-selected {
10711
+ line-height: 48px;
10712
+ .duskThree(0.64);
10713
+ color: @color;
10648
10714
  }
10649
- }
10650
-
10651
- .ncl-monaco {
10652
- .ncl-monaco-wrapper {
10653
- padding-top: 20px;
10654
- height: 100%;
10655
- border: 1px solid @pale-grey;
10656
- background-color: @white;
10657
10715
 
10658
- &.no-top-padding {
10659
- padding-top: 0;
10660
- }
10716
+ .ingresses-wrapper {
10717
+ .ingresses-table-headers {
10718
+ width: calc(100% - 30px);
10661
10719
 
10662
- .ncl-monaco-top-row {
10663
- display: block;
10664
- }
10720
+ .host-header {
10721
+ width: 38%;
10722
+ padding-left: 16px;
10723
+ }
10665
10724
 
10666
- .ncl-monaco-editor {
10667
- height: 100%;
10725
+ .paths-header, .secret-header{
10726
+ width: 31%;
10727
+ padding-left: 16px;
10728
+ }
10668
10729
  }
10669
10730
  }
10670
10731
 
10671
- .ncl-monaco-dark {
10672
- background-color: @vs-dark;
10732
+ .advanced-section {
10733
+ .collapsed-block-title {
10734
+ font-size: 15px;
10735
+ font-weight: bold;
10736
+ margin: 15px 0;
10737
+
10738
+ .icon-collapsed {
10739
+ color: .duskThree(0.64)[@color];
10740
+ font-size: 12px;
10741
+ margin: 0 11px 0 4px;
10742
+ }
10743
+ }
10673
10744
  }
10674
10745
  }
10675
10746
 
10676
-
10677
10747
  .new-function-wrapper {
10678
10748
  .ncl-new-function-color-set();
10679
10749
 
@@ -10831,96 +10901,26 @@ ncl-navigation-tabs {
10831
10901
  }
10832
10902
  }
10833
10903
 
10834
- .ncl-search-input {
10835
- position: relative;
10836
- color: @silver;
10837
-
10838
- .container-search-input {
10839
- background-color: transparent;
10840
- border-bottom: 1px solid @silver;
10841
- font-size: 13px;
10842
- font-weight: 400;
10843
- height: 36px;
10844
- line-height: 36px;
10845
- margin: 0;
10846
- outline: 0;
10847
- padding: 0 0 3px 31px;
10848
- width: 100%;
10904
+ .ncl-function-version-row {
10905
+ .actions-menu {
10906
+ visibility: hidden;
10907
+ }
10849
10908
 
10850
- &::-webkit-input-placeholder {
10851
- color: @silver;
10852
- }
10909
+ &.common-table-row {
10910
+ height: 49px;
10853
10911
 
10854
- &:-moz-placeholder { /* Firefox 18- */
10855
- color: @silver;
10856
- }
10912
+ &:hover {
10913
+ igz-action-checkbox:not(.invisible) {
10914
+ visibility: visible;
10915
+ }
10857
10916
 
10858
- &::-moz-placeholder { /* Firefox 19+ */
10859
- color: @silver;
10860
- }
10917
+ .actions-menu {
10918
+ visibility: visible;
10919
+ }
10861
10920
 
10862
- &:-ms-input-placeholder {
10863
- color: @silver;
10864
- }
10865
-
10866
- &:focus {
10867
- border-bottom: 1px solid @light-blue;
10868
-
10869
- &, & + .igz-icon-search:before {
10870
- color: @dusk-three;
10871
- }
10872
-
10873
- &::-webkit-input-placeholder {
10874
- color: transparent;
10875
- }
10876
-
10877
- &:-moz-placeholder { /* Firefox 18- */
10878
- color: transparent;
10879
- }
10880
-
10881
- &::-moz-placeholder { /* Firefox 19+ */
10882
- color: transparent;
10883
- }
10884
-
10885
- &:-ms-input-placeholder {
10886
- color: transparent;
10887
- }
10888
- }
10889
- }
10890
-
10891
- .igz-icon-search {
10892
- font-size: 18px;
10893
- position: absolute;
10894
- left: 8px;
10895
- top: 5px;
10896
- z-index: 1;
10897
- color: @silver;
10898
- }
10899
-
10900
- input::-ms-clear {
10901
- display: none;
10902
- }
10903
- }
10904
- .ncl-function-version-row {
10905
- .actions-menu {
10906
- visibility: hidden;
10907
- }
10908
-
10909
- &.common-table-row {
10910
- height: 49px;
10911
-
10912
- &:hover {
10913
- igz-action-checkbox:not(.invisible) {
10914
- visibility: visible;
10915
- }
10916
-
10917
- .actions-menu {
10918
- visibility: visible;
10919
- }
10920
-
10921
- .check-row {
10922
- background-color: @pale-grey-three;
10923
- }
10921
+ .check-row {
10922
+ background-color: @pale-grey-three;
10923
+ }
10924
10924
  }
10925
10925
 
10926
10926
  igz-action-checkbox {
@@ -10967,91 +10967,6 @@ ncl-navigation-tabs {
10967
10967
  }
10968
10968
  }
10969
10969
 
10970
- .function-event-wrapper {
10971
- width: 600px;
10972
- margin-bottom: -23px;
10973
-
10974
- .header {
10975
- display: flex;
10976
- justify-content: space-between;
10977
- border-bottom: 1px solid @pale-grey;
10978
-
10979
- .title {
10980
- font-size: 18px;
10981
- }
10982
- }
10983
-
10984
- .content {
10985
- border-bottom: 1px solid @pale-grey;
10986
- padding: 16px 0 16px 16px;
10987
-
10988
- .event-form {
10989
- width: 88%;
10990
-
10991
- .field-wrapper {
10992
- display: flex;
10993
- align-items: center;
10994
- margin: 15px 0 0 0;
10995
-
10996
- .field-label {
10997
- font-size: 16px;
10998
- margin-right: 10px;
10999
- width: 195px;
11000
- }
11001
-
11002
- .field-content {
11003
- width: 100%;
11004
-
11005
- .ncl-monaco {
11006
- height: 200px;
11007
- }
11008
-
11009
- .event-body {
11010
- font-size: 13px;
11011
- outline: none;
11012
- border: 1px solid @pale-grey;
11013
- resize: none;
11014
- width: 100%;
11015
- height: 100px;
11016
- padding: 5px 5px 5px 16px;
11017
- }
11018
- }
11019
- }
11020
- }
11021
-
11022
- .event-error {
11023
- display: flex;
11024
- font-size: 13px;
11025
- align-items: center;
11026
- justify-content: center;
11027
- color: @darkish-pink;
11028
- }
11029
- }
11030
-
11031
- .bottom-bar {
11032
- height: 64px;
11033
- display: flex;
11034
- align-items: center;
11035
- justify-content: flex-end;
11036
-
11037
- .igz-button-primary {
11038
- &.disabled {
11039
- color: rgba(71, 64, 86, 0.24);
11040
- border-radius: 2px;
11041
- border: solid 1px #f3f3f6;
11042
- background-color: #f3f3f6;
11043
- cursor: default;
11044
- display: inline-block;
11045
-
11046
- &:hover {
11047
- box-shadow: none;
11048
- border: none;
11049
- }
11050
- }
11051
- }
11052
- }
11053
- }
11054
-
11055
10970
  .ncl-edit-version-code {
11056
10971
  height: 100%;
11057
10972
  display: flex;
@@ -11264,66 +11179,6 @@ ncl-navigation-tabs {
11264
11179
  }
11265
11180
  }
11266
11181
 
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
-
11327
11182
  .ncl-version-monitoring {
11328
11183
  > .igz-scrollable-container {
11329
11184
  padding: 24px 25px 22px 41px;
@@ -11457,35 +11312,95 @@ ncl-navigation-tabs {
11457
11312
  }
11458
11313
  }
11459
11314
 
11460
- .ncl-version-trigger {
11461
- padding: 11px 24px;
11315
+ .ncl-version-configuration {
11316
+ > .igz-scrollable-container {
11317
+ padding: 24px 25px 22px 41px;
11318
+ }
11462
11319
 
11463
- .common-table-header {
11464
- border: none;
11465
- padding-left: 24px;
11320
+ .ncl-version-configuration-wrapper {
11321
+ > .row {
11322
+ display: flex;
11323
+ justify-content: space-between;
11324
+ flex-wrap: wrap;
11466
11325
 
11467
- .common-table-cell {
11468
- font-size: 14px;
11469
- font-weight: bold;
11470
- letter-spacing: normal;
11471
- color: @dusk-three;
11472
- height: 46px;
11473
- }
11474
- }
11326
+ .configuration-block {
11327
+ padding: 16px 23px 16px;
11328
+ background-color: @white;
11329
+ border: solid 1px @pale-grey;
11330
+ flex-grow: 1;
11331
+ flex-basis: 500px;
11332
+ margin-right: 16px;
11333
+ margin-bottom: 16px;
11475
11334
 
11476
- .common-table-body {
11477
- .common-table-row {
11478
- &:not(.read-only):hover {
11479
- .common-table-cells-container {
11480
- background-color: @white;
11335
+ &.invisible {
11336
+ visibility: hidden;
11481
11337
  }
11482
11338
 
11483
- .actions-menu {
11484
- background-color: @white;
11339
+ .title {
11340
+ font-size: 16px;
11341
+ font-weight: bold;
11342
+ font-style: normal;
11343
+ font-stretch: normal;
11344
+ letter-spacing: normal;
11345
+ text-align: left;
11346
+ color: @dusk-three;
11347
+ margin-bottom: 12px;
11485
11348
  }
11486
- }
11487
- }
11488
- }
11349
+
11350
+ .row {
11351
+ .label {
11352
+ display: block;
11353
+ font-family: Roboto, sans-serif;
11354
+ font-size: 14px;
11355
+ font-weight: 500;
11356
+ font-style: normal;
11357
+ font-stretch: normal;
11358
+ letter-spacing: normal;
11359
+ text-align: left;
11360
+ color: @dusk-three;
11361
+ padding: 0;
11362
+ }
11363
+ }
11364
+
11365
+ .ncl-version-configuration-labels, .ncl-version-configuration-annotations {
11366
+ .more-info-wrapper {
11367
+ height: 20px;
11368
+ }
11369
+ }
11370
+ }
11371
+ }
11372
+ }
11373
+ }
11374
+
11375
+ .ncl-version-trigger {
11376
+ padding: 11px 24px;
11377
+
11378
+ .common-table-header {
11379
+ border: none;
11380
+ padding-left: 24px;
11381
+
11382
+ .common-table-cell {
11383
+ font-size: 14px;
11384
+ font-weight: bold;
11385
+ letter-spacing: normal;
11386
+ color: @dusk-three;
11387
+ height: 46px;
11388
+ }
11389
+ }
11390
+
11391
+ .common-table-body {
11392
+ .common-table-row {
11393
+ &:not(.read-only):hover {
11394
+ .common-table-cells-container {
11395
+ background-color: @white;
11396
+ }
11397
+
11398
+ .actions-menu {
11399
+ background-color: @white;
11400
+ }
11401
+ }
11402
+ }
11403
+ }
11489
11404
 
11490
11405
  .item-row .item-name, .item-row .item-class, .item-row .item-info {
11491
11406
  padding-left: 0;
@@ -11506,190 +11421,106 @@ ncl-navigation-tabs {
11506
11421
  }
11507
11422
  }
11508
11423
 
11509
- .ncl-text-size-dropdown {
11510
- display: flex;
11511
- justify-content: flex-end;
11424
+ .function-event-wrapper {
11425
+ width: 600px;
11426
+ margin-bottom: -23px;
11512
11427
 
11513
- .text-size-action-item {
11514
- width: 35px;
11515
- height: 35px;
11516
- margin: 0 8px 0 0;
11428
+ .header {
11517
11429
  display: flex;
11518
- justify-content: space-evenly;
11519
- font-size: 18px;
11520
-
11521
- .action-icon {
11522
- &.igz-icon-decrease {
11523
- font-size: 10px;
11524
- }
11525
- }
11526
- }
11527
- }
11528
-
11529
- .function-from-scratch-content {
11530
- .splash-screen {
11531
- top: 0;
11532
- }
11533
-
11534
- .title-wrapper {
11535
- margin-left: 50px;
11430
+ justify-content: space-between;
11431
+ border-bottom: 1px solid @pale-grey;
11536
11432
 
11537
11433
  .title {
11538
- color: @dusk-three;
11539
- font-size: 16px;
11540
- font-weight: bold;
11434
+ font-size: 18px;
11541
11435
  }
11542
11436
  }
11543
11437
 
11544
- .function-configuration {
11545
- margin: 28px 0 0 0;
11438
+ .content {
11439
+ border-bottom: 1px solid @pale-grey;
11440
+ padding: 16px 0 16px 16px;
11546
11441
 
11547
- .configuration-form {
11548
- display: flex;
11442
+ .event-form {
11443
+ width: 88%;
11549
11444
 
11550
- .function-name-wrapper {
11551
- width: 50%;
11445
+ .field-wrapper {
11552
11446
  display: flex;
11553
- padding: 0 24px 0 74px;
11554
-
11555
- .projects-drop-down {
11556
- width: 40%;
11557
- margin-right: 48px;
11558
-
11559
- .input-label {
11560
- font-size: 14px;
11561
- font-weight: 600;
11562
- color: @dusk-three;
11563
- }
11564
-
11565
- igz-default-dropdown {
11566
- .default-dropdown {
11567
- background-color: @white;
11447
+ align-items: center;
11448
+ margin: 15px 0 0 0;
11568
11449
 
11569
- .default-dropdown-field {
11570
- &:focus {
11571
- background-color: inherit;
11572
- }
11573
- }
11574
- }
11575
- }
11450
+ .field-label {
11451
+ font-size: 16px;
11452
+ margin-right: 10px;
11453
+ width: 195px;
11576
11454
  }
11577
11455
 
11578
- .function-name {
11456
+ .field-content {
11579
11457
  width: 100%;
11580
11458
 
11581
- .input-label {
11582
- font-size: 14px;
11583
- font-weight: 600;
11584
- color: @dusk-three;
11459
+ .ncl-monaco {
11460
+ height: 200px;
11585
11461
  }
11586
11462
 
11587
- igz-validating-input-field {
11588
- margin-left: 2px;
11463
+ .event-body {
11464
+ font-size: 13px;
11465
+ outline: none;
11466
+ border: 1px solid @pale-grey;
11467
+ resize: none;
11468
+ width: 100%;
11469
+ height: 100px;
11470
+ padding: 5px 5px 5px 16px;
11589
11471
  }
11590
11472
  }
11591
11473
  }
11474
+ }
11592
11475
 
11593
- .function-runtime-wrapper {
11594
- width: 50%;
11595
- padding-left: 24px;
11596
- padding-right: 10%;
11597
-
11598
- .function-runtime {
11599
- .input-label {
11600
- font-size: 14px;
11601
- font-weight: 600;
11602
- color: @dusk-three;
11603
- }
11604
-
11605
- igz-default-dropdown {
11606
- .default-dropdown {
11607
- background-color: @white;
11608
-
11609
- .default-dropdown-field {
11610
- &:focus {
11611
- background-color: inherit;
11612
- }
11613
- }
11614
- }
11615
- }
11616
-
11617
- .bottom-bar {
11618
- display: flex;
11619
- justify-content: flex-end;
11620
- margin-top: 48px;
11621
- }
11622
- }
11623
- }
11476
+ .event-error {
11477
+ display: flex;
11478
+ font-size: 13px;
11479
+ align-items: center;
11480
+ justify-content: center;
11481
+ color: @darkish-pink;
11624
11482
  }
11625
11483
  }
11626
- }
11627
-
11628
- .function-import-wrapper-content {
11629
- font-family: @font-family-sans-serif;
11630
- padding-left: 3%;
11631
- width: 96%;
11632
11484
 
11633
- .function-import-form {
11485
+ .bottom-bar {
11486
+ height: 64px;
11634
11487
  display: flex;
11635
- align-items: flex-end;
11636
- margin-bottom: 10px;
11637
-
11638
- .projects-drop-down {
11639
- margin-right: 48px;
11640
-
11641
- .input-label {
11642
- font-size: 14px;
11643
- font-weight: 600;
11644
- color: @dusk-three;
11645
- }
11646
-
11647
- igz-default-dropdown {
11648
- .default-dropdown {
11649
- background-color: @white;
11650
-
11651
- .default-dropdown-field {
11652
- &:focus {
11653
- background-color: inherit;
11654
- }
11655
- }
11656
- }
11657
- }
11658
- }
11659
-
11660
- .function-import-actions-bar {
11661
- display: flex;
11662
-
11663
- .function-import-file-picker {
11664
- .file-picker-wrapper {
11665
- margin: 0;
11666
- line-height: 34px;
11488
+ align-items: center;
11489
+ justify-content: flex-end;
11667
11490
 
11668
- .igz-icon-upload {
11669
- margin-right: 10px;
11670
- }
11671
- }
11491
+ .igz-button-primary {
11492
+ &.disabled {
11493
+ color: rgba(71, 64, 86, 0.24);
11494
+ border-radius: 2px;
11495
+ border: solid 1px #f3f3f6;
11496
+ background-color: #f3f3f6;
11497
+ cursor: default;
11498
+ display: inline-block;
11672
11499
 
11673
- .function-import-input {
11674
- opacity: 0;
11675
- position: absolute;
11676
- z-index: -1;
11500
+ &:hover {
11501
+ box-shadow: none;
11502
+ border: none;
11677
11503
  }
11678
11504
  }
11679
11505
  }
11680
11506
  }
11507
+ }
11681
11508
 
11682
- .splash-screen {
11683
- top: 0;
11684
- }
11509
+ .ncl-text-size-dropdown {
11510
+ display: flex;
11511
+ justify-content: flex-end;
11685
11512
 
11686
- .function-import-monaco {
11687
- .ncl-monaco {
11688
- height: 370px;
11689
- width: 100%;
11513
+ .text-size-action-item {
11514
+ width: 35px;
11515
+ height: 35px;
11516
+ margin: 0 8px 0 0;
11517
+ display: flex;
11518
+ justify-content: space-evenly;
11519
+ font-size: 18px;
11690
11520
 
11691
- .monaco-code-editor {
11692
- height: 100%;
11521
+ .action-icon {
11522
+ &.igz-icon-decrease {
11523
+ font-size: 10px;
11693
11524
  }
11694
11525
  }
11695
11526
  }
@@ -11957,6 +11788,175 @@ ncl-navigation-tabs {
11957
11788
  }
11958
11789
  }
11959
11790
 
11791
+ .function-from-scratch-content {
11792
+ .splash-screen {
11793
+ top: 0;
11794
+ }
11795
+
11796
+ .title-wrapper {
11797
+ margin-left: 50px;
11798
+
11799
+ .title {
11800
+ color: @dusk-three;
11801
+ font-size: 16px;
11802
+ font-weight: bold;
11803
+ }
11804
+ }
11805
+
11806
+ .function-configuration {
11807
+ margin: 28px 0 0 0;
11808
+
11809
+ .configuration-form {
11810
+ display: flex;
11811
+
11812
+ .function-name-wrapper {
11813
+ width: 50%;
11814
+ display: flex;
11815
+ padding: 0 24px 0 74px;
11816
+
11817
+ .projects-drop-down {
11818
+ width: 40%;
11819
+ margin-right: 48px;
11820
+
11821
+ .input-label {
11822
+ font-size: 14px;
11823
+ font-weight: 600;
11824
+ color: @dusk-three;
11825
+ }
11826
+
11827
+ igz-default-dropdown {
11828
+ .default-dropdown {
11829
+ background-color: @white;
11830
+
11831
+ .default-dropdown-field {
11832
+ &:focus {
11833
+ background-color: inherit;
11834
+ }
11835
+ }
11836
+ }
11837
+ }
11838
+ }
11839
+
11840
+ .function-name {
11841
+ width: 100%;
11842
+
11843
+ .input-label {
11844
+ font-size: 14px;
11845
+ font-weight: 600;
11846
+ color: @dusk-three;
11847
+ }
11848
+
11849
+ igz-validating-input-field {
11850
+ margin-left: 2px;
11851
+ }
11852
+ }
11853
+ }
11854
+
11855
+ .function-runtime-wrapper {
11856
+ width: 50%;
11857
+ padding-left: 24px;
11858
+ padding-right: 10%;
11859
+
11860
+ .function-runtime {
11861
+ .input-label {
11862
+ font-size: 14px;
11863
+ font-weight: 600;
11864
+ color: @dusk-three;
11865
+ }
11866
+
11867
+ igz-default-dropdown {
11868
+ .default-dropdown {
11869
+ background-color: @white;
11870
+
11871
+ .default-dropdown-field {
11872
+ &:focus {
11873
+ background-color: inherit;
11874
+ }
11875
+ }
11876
+ }
11877
+ }
11878
+
11879
+ .bottom-bar {
11880
+ display: flex;
11881
+ justify-content: flex-end;
11882
+ margin-top: 48px;
11883
+ }
11884
+ }
11885
+ }
11886
+ }
11887
+ }
11888
+ }
11889
+
11890
+ .function-import-wrapper-content {
11891
+ font-family: @font-family-sans-serif;
11892
+ padding-left: 3%;
11893
+ width: 96%;
11894
+
11895
+ .function-import-form {
11896
+ display: flex;
11897
+ align-items: flex-end;
11898
+ margin-bottom: 10px;
11899
+
11900
+ .projects-drop-down {
11901
+ margin-right: 48px;
11902
+
11903
+ .input-label {
11904
+ font-size: 14px;
11905
+ font-weight: 600;
11906
+ color: @dusk-three;
11907
+ }
11908
+
11909
+ igz-default-dropdown {
11910
+ .default-dropdown {
11911
+ background-color: @white;
11912
+
11913
+ .default-dropdown-field {
11914
+ &:focus {
11915
+ background-color: inherit;
11916
+ }
11917
+ }
11918
+ }
11919
+ }
11920
+ }
11921
+
11922
+ .function-import-actions-bar {
11923
+ display: flex;
11924
+
11925
+ .function-import-file-picker {
11926
+ .file-picker-wrapper {
11927
+ margin: 0;
11928
+ line-height: 34px;
11929
+
11930
+ .igz-icon-upload {
11931
+ margin-right: 10px;
11932
+ }
11933
+ }
11934
+
11935
+ .function-import-input {
11936
+ opacity: 0;
11937
+ position: absolute;
11938
+ z-index: -1;
11939
+ }
11940
+ }
11941
+ }
11942
+ }
11943
+
11944
+ .splash-screen {
11945
+ top: 0;
11946
+ }
11947
+
11948
+ .function-import-monaco {
11949
+ .ncl-monaco {
11950
+ height: 370px;
11951
+ width: 100%;
11952
+
11953
+ .monaco-code-editor {
11954
+ height: 100%;
11955
+ }
11956
+ }
11957
+ }
11958
+ }
11959
+
11960
11960
  .test-events-pane-wrapper {
11961
11961
  position: absolute;
11962
11962
  height: 100%;
@@ -12560,73 +12560,332 @@ ncl-navigation-tabs {
12560
12560
  }
12561
12561
  }
12562
12562
 
12563
- .image-section {
12564
- text-align: center;
12563
+ .image-section {
12564
+ text-align: center;
12565
+
12566
+ img {
12567
+ width: 100%;
12568
+ }
12569
+ }
12570
+
12571
+ .no-content-section {
12572
+ margin: 10px auto;
12573
+ font-size: 14px;
12574
+ color: @pale-grey;
12575
+ text-align: center;
12576
+ }
12577
+
12578
+ .testing {
12579
+ margin: 80px 0;
12580
+ text-align: center;
12581
+ font-size: 14px;
12582
+ color: @greyish-purple;
12583
+
12584
+ .loader-wrapper {
12585
+ margin: 20px 0;
12586
+ }
12587
+ }
12588
+
12589
+ .no-response {
12590
+ margin: 80px 0;
12591
+ text-align: center;
12592
+
12593
+ .circle {
12594
+ position: relative;
12595
+ background-color: @pale-grey-two;
12596
+ height: 130px;
12597
+ width: 130px;
12598
+ border-radius: 50%;
12599
+ margin: 0 auto;
12600
+
12601
+ .ncl-icon-test {
12602
+ position: absolute;
12603
+ top: 12px;
12604
+ left: 31px;
12605
+ color: @dark-sky-blue;
12606
+ font-size: 43px;
12607
+ }
12608
+
12609
+ .ncl-icon-hand {
12610
+ position: absolute;
12611
+ top: 47px;
12612
+ left: 42px;
12613
+ color: .greyishPurple(0.64)[@color];
12614
+ font-size: 58px;
12615
+ }
12616
+ }
12617
+
12618
+ .message {
12619
+ margin-top: 14px;
12620
+ width: 245px;
12621
+ font-size: 16px;
12622
+ color: @greyish-purple;
12623
+ line-height: 1.5;
12624
+ }
12625
+ }
12626
+ }
12627
+
12628
+ .headers {
12629
+ padding: 28px 41px;
12630
+
12631
+ > div {
12632
+ display: flex;
12633
+ line-height: 2;
12634
+
12635
+ .labels {
12636
+ color: @greyish-purple;
12637
+ font-size: 14px;
12638
+ width: 43%;
12639
+ }
12640
+
12641
+ .values {
12642
+ color: @dusk-three;
12643
+ font-size: 14px;
12644
+ width: 57%;
12645
+ }
12646
+ }
12647
+ }
12648
+ }
12649
+ }
12650
+ }
12651
+
12652
+ .function-from-template-dialog-wrapper {
12653
+ .title {
12654
+ font-size: 20px;
12655
+ font-weight: 500;
12656
+ text-align: left;
12657
+ color: @dusk-three;
12658
+ }
12659
+
12660
+ .main-content {
12661
+ width: 500px;
12662
+ max-height: 500px;
12663
+
12664
+ form {
12665
+ margin: 0 20px 0 0;
12666
+
12667
+ .field-label {
12668
+ font-size: 14px;
12669
+ text-align: left;
12670
+ color: @dusk-three;
12671
+ }
12672
+
12673
+ .validating-input-field {
12674
+ .input-field {
12675
+ padding: 0 10px 0 17px;
12676
+ }
12677
+
12678
+ .input-placeholder {
12679
+ left: 18px;
12680
+ font-style: italic;
12681
+ font-size: 14px;
12682
+ }
12683
+ }
12684
+ }
12685
+ }
12686
+ }
12687
+
12688
+ .ncl-test-events-logs {
12689
+ padding: 6px 17px 25px;
12690
+ background-color: @white;
12691
+
12692
+ .functional-buttons {
12693
+ .duskThree(0.64);
12694
+ display: flex;
12695
+ justify-content: flex-end;
12696
+ color: @color;
12697
+ font-size: 16px;
12698
+
12699
+ > div {
12700
+ margin-right: 24px;
12701
+
12702
+ &:hover {
12703
+ color: @dusk-three;
12704
+ }
12705
+ }
12706
+ }
12707
+
12708
+ .collapsed-row {
12709
+ .black(0.2);
12710
+ display: flex;
12711
+ align-items: center;
12712
+ position: relative;
12713
+ height: 36px;
12714
+ background-color: @white;
12715
+ color: @dusk-three;
12716
+ box-shadow: 1.7px 1.1px 4px 0 @color;
12717
+ border: solid 1px @pale-grey;
12718
+ margin-bottom: 10px;
12719
+
12720
+ .igz-icon-right {
12721
+ .duskThree(0.64);
12722
+ font-size: 12px;
12723
+ color: @color;
12724
+ margin: 0 8px 0 12px;
12725
+
12726
+ &::before {
12727
+ vertical-align: text-bottom;
12728
+ }
12729
+ }
12730
+
12731
+ .level-icon {
12732
+ display: inline-block;
12733
+ margin-right: 8px;
12734
+ width: 20px;
12735
+ text-align: center;
12736
+
12737
+ &::before {
12738
+ font-size: 16px;
12739
+ vertical-align: text-bottom;
12740
+ }
12741
+
12742
+ &.ncl-icon-debug {
12743
+ color: @orangish;
12744
+
12745
+ &::before {
12746
+ font-size: 18px;
12747
+ }
12748
+ }
12749
+
12750
+ &.igz-icon-info-round {
12751
+ color: @orangish;
12752
+ }
12753
+
12754
+ &.igz-icon-warning {
12755
+ color: @orangish;
12756
+ }
12757
+
12758
+ &.igz-icon-cancel-path {
12759
+ color: @orangish;
12760
+ }
12761
+ }
12762
+
12763
+ .date {
12764
+ display: inline-block;
12765
+ width: 230px;
12766
+ font-size: 14px;
12767
+ font-weight: bold;
12768
+ margin-right: 15px;
12769
+ }
12770
+
12771
+ .message {
12772
+ display: inline-block;
12773
+ width: 200px;
12774
+ margin-right: 30px;
12775
+ }
12776
+
12777
+ .ncl-icon-parameters {
12778
+ .duskThree(0.64);
12779
+ color: @color;
12780
+ font-size: 14px;
12781
+ position: absolute;
12782
+ top: 9px;
12783
+ right: 9px;
12784
+ }
12785
+ }
12786
+
12787
+ .expanded-row {
12788
+ background-color: @white;
12789
+ color: @dusk-three;
12790
+ border: solid 1px @pale-grey;
12791
+ margin-bottom: 10px;
12792
+
12793
+ .header {
12794
+ position: relative;
12795
+ display: flex;
12796
+ align-items: center;
12797
+ height: 34px;
12798
+
12799
+ .igz-icon-down {
12800
+ .duskThree(0.64);
12801
+ font-size: 12px;
12802
+ color: @color;
12803
+ margin: 0 8px 0 12px;
12804
+
12805
+ &::before {
12806
+ vertical-align: text-bottom;
12807
+ }
12808
+ }
12809
+
12810
+ .level-icon {
12811
+ display: inline-block;
12812
+ margin-right: 8px;
12813
+ width: 20px;
12814
+ text-align: center;
12815
+
12816
+ &::before {
12817
+ font-size: 16px;
12818
+ vertical-align: text-bottom;
12819
+ }
12820
+
12821
+ &.ncl-icon-debug {
12822
+ color: @orangish;
12565
12823
 
12566
- img {
12567
- width: 100%;
12824
+ &::before {
12825
+ font-size: 18px;
12568
12826
  }
12569
12827
  }
12570
12828
 
12571
- .no-content-section {
12572
- margin: 10px auto;
12573
- font-size: 14px;
12574
- color: @pale-grey;
12575
- text-align: center;
12829
+ &.igz-icon-info-round {
12830
+ color: @orangish;
12576
12831
  }
12577
12832
 
12578
- .testing {
12579
- margin: 80px 0;
12580
- text-align: center;
12581
- font-size: 14px;
12582
- color: @greyish-purple;
12833
+ &.igz-icon-warning {
12834
+ color: @orangish;
12835
+ }
12583
12836
 
12584
- .loader-wrapper {
12585
- margin: 20px 0;
12586
- }
12837
+ &.igz-icon-cancel-path {
12838
+ color: @orangish;
12587
12839
  }
12840
+ }
12588
12841
 
12589
- .no-response {
12590
- margin: 80px 0;
12591
- text-align: center;
12842
+ .date {
12843
+ display: inline-block;
12844
+ width: 230px;
12845
+ font-size: 14px;
12846
+ font-weight: bold;
12847
+ margin-right: 15px;
12848
+ }
12592
12849
 
12593
- .circle {
12594
- position: relative;
12595
- background-color: @pale-grey-two;
12596
- height: 130px;
12597
- width: 130px;
12598
- border-radius: 50%;
12599
- margin: 0 auto;
12850
+ .ncl-icon-parameters {
12851
+ .duskThree(0.64);
12852
+ position: absolute;
12853
+ top: 9px;
12854
+ right: 9px;
12855
+ color: @color;
12856
+ font-size: 14px;
12857
+ }
12858
+ }
12600
12859
 
12601
- .ncl-icon-test {
12602
- position: absolute;
12603
- top: 12px;
12604
- left: 31px;
12605
- color: @dark-sky-blue;
12606
- font-size: 43px;
12607
- }
12860
+ .expanded-body {
12861
+ font-size: 14px;
12862
+ color: @dusk-three;
12608
12863
 
12609
- .ncl-icon-hand {
12610
- position: absolute;
12611
- top: 47px;
12612
- left: 42px;
12613
- color: .greyishPurple(0.64)[@color];
12614
- font-size: 58px;
12615
- }
12616
- }
12864
+ .error {
12865
+ width: 71%;
12866
+ border-radius: 3px;
12867
+ background-color: #fbe5e8;
12868
+ border: solid 1px @darkish-pink;
12869
+ color: @darkish-pink;
12870
+ word-wrap: break-word;
12871
+ margin-left: 62px;
12872
+ padding: 12px;
12873
+ margin-bottom: 16px;
12874
+ }
12617
12875
 
12618
- .message {
12619
- margin-top: 14px;
12620
- width: 245px;
12621
- font-size: 16px;
12622
- color: @greyish-purple;
12623
- line-height: 1.5;
12624
- }
12625
- }
12876
+ .message {
12877
+ display: inline-block;
12878
+ width: 70%;
12879
+ word-wrap: break-word;
12880
+ margin: 0 0 16px 62px;
12626
12881
  }
12627
12882
 
12628
- .headers {
12629
- padding: 28px 41px;
12883
+ .parameters {
12884
+ padding: 0 62px 16px;
12885
+
12886
+ .parameters-header {
12887
+ font-weight: bold;
12888
+ }
12630
12889
 
12631
12890
  > div {
12632
12891
  display: flex;
@@ -12635,56 +12894,26 @@ ncl-navigation-tabs {
12635
12894
  .labels {
12636
12895
  color: @greyish-purple;
12637
12896
  font-size: 14px;
12638
- width: 43%;
12897
+ width: 30%;
12639
12898
  }
12640
12899
 
12641
12900
  .values {
12642
12901
  color: @dusk-three;
12643
12902
  font-size: 14px;
12644
- width: 57%;
12903
+ width: 70%;
12645
12904
  }
12646
12905
  }
12647
12906
  }
12648
12907
  }
12649
12908
  }
12650
- }
12651
-
12652
- .function-from-template-dialog-wrapper {
12653
- .title {
12654
- font-size: 20px;
12655
- font-weight: 500;
12656
- text-align: left;
12657
- color: @dusk-three;
12658
- }
12659
-
12660
- .main-content {
12661
- width: 500px;
12662
- max-height: 500px;
12663
12909
 
12664
- form {
12665
- margin: 0 20px 0 0;
12666
-
12667
- .field-label {
12668
- font-size: 14px;
12669
- text-align: left;
12670
- color: @dusk-three;
12671
- }
12672
-
12673
- .validating-input-field {
12674
- .input-field {
12675
- padding: 0 10px 0 17px;
12676
- }
12677
-
12678
- .input-placeholder {
12679
- left: 18px;
12680
- font-style: italic;
12681
- font-size: 14px;
12682
- }
12683
- }
12684
- }
12910
+ .no-logs {
12911
+ margin: 10px auto 0;
12912
+ font-size: 14px;
12913
+ color: @pale-grey;
12914
+ text-align: center;
12685
12915
  }
12686
12916
  }
12687
-
12688
12917
  .ncl-test-events-navigation-tabs {
12689
12918
  display: flex;
12690
12919
  background: #f8f8fb;
@@ -12750,235 +12979,102 @@ ncl-navigation-tabs {
12750
12979
  }
12751
12980
  }
12752
12981
 
12753
- .ncl-test-events-logs {
12754
- padding: 6px 17px 25px;
12755
- background-color: @white;
12756
-
12757
- .functional-buttons {
12758
- .duskThree(0.64);
12759
- display: flex;
12760
- justify-content: flex-end;
12761
- color: @color;
12762
- font-size: 16px;
12763
-
12764
- > div {
12765
- margin-right: 24px;
12766
-
12767
- &:hover {
12768
- color: @dusk-three;
12769
- }
12770
- }
12771
- }
12982
+ @desktop: 1350px;
12983
+ @desktop-low: 1202px;
12984
+ @desktop-middle: 1550px;
12772
12985
 
12773
- .collapsed-row {
12774
- .black(0.2);
12986
+ .ncl-version-configuration-basic-settings {
12987
+ .row {
12775
12988
  display: flex;
12776
- align-items: center;
12777
- position: relative;
12778
- height: 36px;
12779
- background-color: @white;
12780
- color: @dusk-three;
12781
- box-shadow: 1.7px 1.1px 4px 0 @color;
12782
- border: solid 1px @pale-grey;
12783
- margin-bottom: 10px;
12784
-
12785
- .igz-icon-right {
12786
- .duskThree(0.64);
12787
- font-size: 12px;
12788
- color: @color;
12789
- margin: 0 8px 0 12px;
12790
-
12791
- &::before {
12792
- vertical-align: text-bottom;
12793
- }
12794
- }
12795
-
12796
- .level-icon {
12797
- display: inline-block;
12798
- margin-right: 8px;
12799
- width: 20px;
12800
- text-align: center;
12801
-
12802
- &::before {
12803
- font-size: 16px;
12804
- vertical-align: text-bottom;
12805
- }
12806
-
12807
- &.ncl-icon-debug {
12808
- color: @orangish;
12809
-
12810
- &::before {
12811
- font-size: 18px;
12812
- }
12813
- }
12814
-
12815
- &.igz-icon-info-round {
12816
- color: @orangish;
12817
- }
12818
-
12819
- &.igz-icon-warning {
12820
- color: @orangish;
12821
- }
12822
-
12823
- &.igz-icon-cancel-path {
12824
- color: @orangish;
12825
- }
12826
- }
12827
-
12828
- .date {
12829
- display: inline-block;
12830
- width: 230px;
12831
- font-size: 14px;
12832
- font-weight: bold;
12833
- margin-right: 15px;
12834
- }
12835
-
12836
- .message {
12837
- display: inline-block;
12838
- width: 200px;
12839
- margin-right: 30px;
12840
- }
12989
+ justify-content: space-between;
12841
12990
 
12842
- .ncl-icon-parameters {
12843
- .duskThree(0.64);
12844
- color: @color;
12845
- font-size: 14px;
12846
- position: absolute;
12847
- top: 9px;
12848
- right: 9px;
12991
+ &:not(:last-child) {
12992
+ margin-bottom: 23px;
12849
12993
  }
12850
- }
12851
12994
 
12852
- .expanded-row {
12853
- background-color: @white;
12854
- color: @dusk-three;
12855
- border: solid 1px @pale-grey;
12856
- margin-bottom: 10px;
12995
+ &:last-child {
12996
+ margin-bottom: 4px;
12997
+ }
12857
12998
 
12858
- .header {
12859
- position: relative;
12860
- display: flex;
12861
- align-items: center;
12862
- height: 34px;
12999
+ &.enable-checkbox {
13000
+ justify-content: flex-start;
13001
+ margin-bottom: 18px;
13002
+ }
12863
13003
 
12864
- .igz-icon-down {
12865
- .duskThree(0.64);
12866
- font-size: 12px;
12867
- color: @color;
12868
- margin: 0 8px 0 12px;
13004
+ > div {
13005
+ flex: 1;
12869
13006
 
12870
- &::before {
12871
- vertical-align: text-bottom;
12872
- }
13007
+ &:not(:last-child) {
13008
+ margin-right: 46px;
12873
13009
  }
12874
13010
 
12875
- .level-icon {
12876
- display: inline-block;
12877
- margin-right: 8px;
12878
- width: 20px;
12879
- text-align: center;
12880
-
12881
- &::before {
12882
- font-size: 16px;
12883
- vertical-align: text-bottom;
12884
- }
12885
-
12886
- &.ncl-icon-debug {
12887
- color: @orangish;
13011
+ .label {
13012
+ padding: 0;
13013
+ margin-bottom: 5px;
13014
+ }
12888
13015
 
12889
- &::before {
12890
- font-size: 18px;
12891
- }
13016
+ &.timeout-block {
13017
+ .label {
13018
+ margin-bottom: 3px;
12892
13019
  }
12893
13020
 
12894
- &.igz-icon-info-round {
12895
- color: @orangish;
12896
- }
13021
+ .timeout-values {
13022
+ margin-left: 27px;
12897
13023
 
12898
- &.igz-icon-warning {
12899
- color: @orangish;
12900
- }
13024
+ .inputs {
13025
+ display: flex;
13026
+ align-items: center;
12901
13027
 
12902
- &.igz-icon-cancel-path {
12903
- color: @orangish;
13028
+ .values-label {
13029
+ .duskThree(0.9);
13030
+ margin: 0 17px 0 8px;
13031
+ font-size: 14px;
13032
+ font-weight: normal;
13033
+ font-style: normal;
13034
+ letter-spacing: normal;
13035
+ text-align: left;
13036
+ color: @color;
13037
+ }
13038
+ }
12904
13039
  }
12905
13040
  }
12906
-
12907
- .date {
12908
- display: inline-block;
12909
- width: 230px;
12910
- font-size: 14px;
12911
- font-weight: bold;
12912
- margin-right: 15px;
12913
- }
12914
-
12915
- .ncl-icon-parameters {
12916
- .duskThree(0.64);
12917
- position: absolute;
12918
- top: 9px;
12919
- right: 9px;
12920
- color: @color;
12921
- font-size: 14px;
12922
- }
12923
13041
  }
12924
13042
 
12925
- .expanded-body {
12926
- font-size: 14px;
12927
- color: @dusk-three;
13043
+ .logger-block {
13044
+ display: flex;
13045
+ margin-top: 3px;
12928
13046
 
12929
- .error {
12930
- width: 71%;
12931
- border-radius: 3px;
12932
- background-color: #fbe5e8;
12933
- border: solid 1px @darkish-pink;
12934
- color: @darkish-pink;
12935
- word-wrap: break-word;
12936
- margin-left: 62px;
12937
- padding: 12px;
12938
- margin-bottom: 16px;
12939
- }
13047
+ .logger-dropdown {
13048
+ .default-dropdown {
13049
+ position: relative;
13050
+ height: 36px;
12940
13051
 
12941
- .message {
12942
- display: inline-block;
12943
- width: 70%;
12944
- word-wrap: break-word;
12945
- margin: 0 0 16px 62px;
13052
+ .dropdown-overlap {
13053
+ z-index: 100;
13054
+ }
13055
+ }
12946
13056
  }
12947
13057
 
12948
- .parameters {
12949
- padding: 0 62px 16px;
13058
+ > div {
13059
+ flex: 1;
12950
13060
 
12951
- .parameters-header {
12952
- font-weight: bold;
13061
+ &:not(:last-child) {
13062
+ margin-right: 16px;
12953
13063
  }
12954
13064
 
12955
- > div {
12956
- display: flex;
12957
- line-height: 2;
12958
-
12959
- .labels {
12960
- color: @greyish-purple;
12961
- font-size: 14px;
12962
- width: 30%;
12963
- }
13065
+ .label {
13066
+ padding: 0;
13067
+ margin-bottom: 5px;
13068
+ }
12964
13069
 
12965
- .values {
12966
- color: @dusk-three;
12967
- font-size: 14px;
12968
- width: 70%;
12969
- }
13070
+ &.logger-input {
13071
+ flex-grow: 1.95;
12970
13072
  }
12971
13073
  }
12972
13074
  }
12973
13075
  }
12974
-
12975
- .no-logs {
12976
- margin: 10px auto 0;
12977
- font-size: 14px;
12978
- color: @pale-grey;
12979
- text-align: center;
12980
- }
12981
13076
  }
13077
+
12982
13078
  .ncl-version-configuration-build {
12983
13079
  &.disabled {
12984
13080
  opacity: .5;
@@ -13218,102 +13314,6 @@ ncl-navigation-tabs {
13218
13314
  }
13219
13315
  }
13220
13316
 
13221
- @desktop: 1350px;
13222
- @desktop-low: 1202px;
13223
- @desktop-middle: 1550px;
13224
-
13225
- .ncl-version-configuration-basic-settings {
13226
- .row {
13227
- display: flex;
13228
- justify-content: space-between;
13229
-
13230
- &:not(:last-child) {
13231
- margin-bottom: 23px;
13232
- }
13233
-
13234
- &:last-child {
13235
- margin-bottom: 4px;
13236
- }
13237
-
13238
- &.enable-checkbox {
13239
- justify-content: flex-start;
13240
- margin-bottom: 18px;
13241
- }
13242
-
13243
- > div {
13244
- flex: 1;
13245
-
13246
- &:not(:last-child) {
13247
- margin-right: 46px;
13248
- }
13249
-
13250
- .label {
13251
- padding: 0;
13252
- margin-bottom: 5px;
13253
- }
13254
-
13255
- &.timeout-block {
13256
- .label {
13257
- margin-bottom: 3px;
13258
- }
13259
-
13260
- .timeout-values {
13261
- margin-left: 27px;
13262
-
13263
- .inputs {
13264
- display: flex;
13265
- align-items: center;
13266
-
13267
- .values-label {
13268
- .duskThree(0.9);
13269
- margin: 0 17px 0 8px;
13270
- font-size: 14px;
13271
- font-weight: normal;
13272
- font-style: normal;
13273
- letter-spacing: normal;
13274
- text-align: left;
13275
- color: @color;
13276
- }
13277
- }
13278
- }
13279
- }
13280
- }
13281
-
13282
- .logger-block {
13283
- display: flex;
13284
- margin-top: 3px;
13285
-
13286
- .logger-dropdown {
13287
- .default-dropdown {
13288
- position: relative;
13289
- height: 36px;
13290
-
13291
- .dropdown-overlap {
13292
- z-index: 100;
13293
- }
13294
- }
13295
- }
13296
-
13297
- > div {
13298
- flex: 1;
13299
-
13300
- &:not(:last-child) {
13301
- margin-right: 16px;
13302
- }
13303
-
13304
- .label {
13305
- padding: 0;
13306
- margin-bottom: 5px;
13307
- }
13308
-
13309
- &.logger-input {
13310
- flex-grow: 1.95;
13311
- }
13312
- }
13313
- }
13314
- }
13315
- }
13316
-
13317
13317
  .ncl-version-configuration-logging {
13318
13318
  .row {
13319
13319
  display: flex;