iguazio.dashboard-controls 1.2.9 → 1.2.10

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.
@@ -3666,6 +3666,149 @@ ncl-functions {
3666
3666
  }
3667
3667
  }
3668
3668
 
3669
+ /**
3670
+ UI.Layout CSS
3671
+ *************************************/
3672
+ .stretch {
3673
+ position: absolute;
3674
+ top: 0;
3675
+ left: 0;
3676
+ right: 0;
3677
+ bottom: 0;
3678
+ /* Can be changed by hand ;)*/
3679
+ overflow: auto;
3680
+ }
3681
+
3682
+ .animate-row, .animate-column {
3683
+ -webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3684
+ -moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3685
+ -ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3686
+ -o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3687
+ transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3688
+ }
3689
+
3690
+ .ui-splitbar {
3691
+ display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
3692
+ display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
3693
+ display: -ms-flexbox; /* TWEENER - IE 10 */
3694
+ display: -webkit-flex; /* NEW - Chrome */
3695
+ display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
3696
+ -webkit-justify-content: center;
3697
+ justify-content: center;
3698
+
3699
+ background-color: #ffffff;
3700
+ right: auto;
3701
+ position: absolute;
3702
+ z-index: 1;
3703
+ }
3704
+
3705
+ .ui-layout-row > .ui-splitbar {
3706
+ height: 8px;
3707
+ width: 100%;
3708
+ cursor: row-resize;
3709
+ text-align: center;
3710
+ justify-content: center;
3711
+ align-items: center;
3712
+ background: linear-gradient(to bottom, #fff 0%, #eee 100%);
3713
+ overflow-y: hidden;
3714
+ }
3715
+
3716
+ .ui-layout-column > .ui-splitbar {
3717
+ width: 8px;
3718
+ height: 100%;
3719
+ cursor: col-resize;
3720
+ -webkit-flex-direction: column;
3721
+ flex-direction: column;
3722
+ background: linear-gradient(to right, #fff 0%, #eee 100%);
3723
+ overflow-x: hidden;
3724
+ }
3725
+
3726
+ .ui-layout-column > .ui-splitbar > a,
3727
+ .ui-layout-row > .ui-splitbar > a {
3728
+ cursor: pointer;
3729
+ text-align: center;
3730
+ font-size: 16px;
3731
+ color: #aaa;
3732
+ }
3733
+
3734
+ .ui-layout-column > .ui-splitbar > a:nth-child(2) {
3735
+ margin-top: 0.35rem;
3736
+ }
3737
+
3738
+ .ui-layout-row > .ui-splitbar > a:nth-child(2) {
3739
+ margin-left: 0.35rem;
3740
+ }
3741
+
3742
+
3743
+ /**
3744
+ * Icons
3745
+ **/
3746
+
3747
+ .ui-splitbar-icon {
3748
+ width: 0;
3749
+ height: 0;
3750
+ display: inline-block;
3751
+ }
3752
+
3753
+ .ui-splitbar-icon-up {
3754
+ border-left: 0.45em solid transparent;
3755
+ border-right: 0.45em solid transparent;
3756
+ border-bottom: 0.45em solid;
3757
+ }
3758
+
3759
+ .ui-splitbar-icon-down {
3760
+ border-left: 0.45em solid transparent;
3761
+ border-right: 0.45em solid transparent;
3762
+ border-top: 0.45em solid;
3763
+ margin-right: 0.45em;
3764
+ }
3765
+
3766
+ .ui-splitbar-icon-right {
3767
+ border-top: 0.45em solid transparent;
3768
+ border-bottom: 0.45em solid transparent;
3769
+ border-left: 0.45em solid;
3770
+
3771
+ }
3772
+
3773
+ .ui-splitbar-icon-left {
3774
+ border-top: 0.45em solid transparent;
3775
+ border-bottom: 0.45em solid transparent;
3776
+ border-right: 0.45em solid;
3777
+ margin-top: 0.45em;
3778
+ }
3779
+
3780
+ /* Allow disabling of icons */
3781
+ .no-toggle .ui-splitbar-icon {
3782
+ display: none;
3783
+ }
3784
+
3785
+ @media only screen and (max-device-width: 480px) {
3786
+ .no-mobile-toggle .ui-splitbar-icon {
3787
+ display: none;
3788
+ }
3789
+ }
3790
+
3791
+ @media print {
3792
+ .ui-splitbar {
3793
+ display: none;
3794
+ }
3795
+
3796
+ .stretch {
3797
+ position: relative;
3798
+ }
3799
+
3800
+ /* The last item can take up any amount of space. */
3801
+ .stretch.ui-layout-container:last-child {
3802
+ position: static;
3803
+ overflow: visible;
3804
+ }
3805
+ }
3806
+
3807
+ /* Make sure hidden elements are in fact not rendered. */
3808
+ .ui-layout-hidden {
3809
+ display: none;
3810
+ }
3811
+
3669
3812
  /*
3670
3813
  == malihu jquery custom scrollbar plugin ==
3671
3814
  Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
@@ -5388,208 +5531,65 @@ yx-axis
5388
5531
 
5389
5532
  /* ---------------------------------------- */
5390
5533
 
5391
- /**
5392
- UI.Layout CSS
5393
- *************************************/
5394
- .stretch {
5395
- position: absolute;
5396
- top: 0;
5397
- left: 0;
5398
- right: 0;
5399
- bottom: 0;
5400
- /* Can be changed by hand ;)*/
5401
- overflow: auto;
5402
- }
5534
+ .action-checkbox {
5535
+ .action-checkbox-color-set();
5403
5536
 
5404
- .animate-row, .animate-column {
5405
- -webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5406
- -moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5407
- -ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5408
- -o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5409
- transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5410
- }
5537
+ line-height: 16px;
5538
+ text-align: center;
5411
5539
 
5412
- .ui-splitbar {
5413
- display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
5414
- display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
5415
- display: -ms-flexbox; /* TWEENER - IE 10 */
5416
- display: -webkit-flex; /* NEW - Chrome */
5417
- display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
5418
- -webkit-justify-content: center;
5419
- justify-content: center;
5540
+ .check-item {
5541
+ font-size: 16px;
5542
+ cursor: pointer;
5543
+ line-height: 1;
5544
+ vertical-align: middle;
5420
5545
 
5421
- background-color: #ffffff;
5422
- right: auto;
5423
- position: absolute;
5424
- z-index: 1;
5425
- }
5546
+ &.igz-icon-checkbox-unchecked {
5547
+ color: @icon-checkbox-unchecked;
5548
+ }
5426
5549
 
5427
- .ui-layout-row > .ui-splitbar {
5428
- height: 8px;
5429
- width: 100%;
5430
- cursor: row-resize;
5431
- text-align: center;
5432
- justify-content: center;
5433
- align-items: center;
5434
- background: linear-gradient(to bottom, #fff 0%, #eee 100%);
5435
- overflow-y: hidden;
5550
+ &.igz-icon-checkbox-checked {
5551
+ color: @icon-checkbox-checked;
5552
+ }
5553
+ }
5436
5554
  }
5555
+ .action-checkbox-all {
5556
+ .action-checkbox-all-color-set();
5437
5557
 
5438
- .ui-layout-column > .ui-splitbar {
5439
- width: 8px;
5440
- height: 100%;
5441
- cursor: col-resize;
5442
- -webkit-flex-direction: column;
5443
- flex-direction: column;
5444
- background: linear-gradient(to right, #fff 0%, #eee 100%);
5445
- overflow-x: hidden;
5446
- }
5558
+ text-align: center;
5447
5559
 
5448
- .ui-layout-column > .ui-splitbar > a,
5449
- .ui-layout-row > .ui-splitbar > a {
5450
- cursor: pointer;
5451
- text-align: center;
5452
- font-size: 16px;
5453
- color: #aaa;
5454
- }
5560
+ .check-item {
5561
+ cursor: pointer;
5562
+ color: @check-item-color;
5563
+ font-size: 16px;
5564
+ line-height: 1;
5565
+ vertical-align: middle;
5455
5566
 
5456
- .ui-layout-column > .ui-splitbar > a:nth-child(2) {
5457
- margin-top: 0.35rem;
5567
+ &.igz-icon-checkbox-checked {
5568
+ color: @check-item-icon-checkbox-checked-color;
5569
+ }
5570
+ }
5458
5571
  }
5572
+ .igz-action-menu {
5573
+ .action-menu-color-set();
5574
+ .action-icon-color-set();
5459
5575
 
5460
- .ui-layout-row > .ui-splitbar > a:nth-child(2) {
5461
- margin-left: 0.35rem;
5462
- }
5576
+ opacity: 1;
5577
+ position: relative;
5463
5578
 
5579
+ .menu-button {
5580
+ color: @menu-btn-color;
5581
+ cursor: pointer;
5582
+ font-size: 18px;
5583
+ height: 19px;
5584
+ text-align: center;
5585
+ transition: @igz-basic-transition-color;
5586
+ width: 30px;
5464
5587
 
5465
- /**
5466
- * Icons
5467
- **/
5468
-
5469
- .ui-splitbar-icon {
5470
- width: 0;
5471
- height: 0;
5472
- display: inline-block;
5473
- }
5474
-
5475
- .ui-splitbar-icon-up {
5476
- border-left: 0.45em solid transparent;
5477
- border-right: 0.45em solid transparent;
5478
- border-bottom: 0.45em solid;
5479
- }
5480
-
5481
- .ui-splitbar-icon-down {
5482
- border-left: 0.45em solid transparent;
5483
- border-right: 0.45em solid transparent;
5484
- border-top: 0.45em solid;
5485
- margin-right: 0.45em;
5486
- }
5487
-
5488
- .ui-splitbar-icon-right {
5489
- border-top: 0.45em solid transparent;
5490
- border-bottom: 0.45em solid transparent;
5491
- border-left: 0.45em solid;
5492
-
5493
- }
5494
-
5495
- .ui-splitbar-icon-left {
5496
- border-top: 0.45em solid transparent;
5497
- border-bottom: 0.45em solid transparent;
5498
- border-right: 0.45em solid;
5499
- margin-top: 0.45em;
5500
- }
5501
-
5502
- /* Allow disabling of icons */
5503
- .no-toggle .ui-splitbar-icon {
5504
- display: none;
5505
- }
5506
-
5507
- @media only screen and (max-device-width: 480px) {
5508
- .no-mobile-toggle .ui-splitbar-icon {
5509
- display: none;
5510
- }
5511
- }
5512
-
5513
- @media print {
5514
- .ui-splitbar {
5515
- display: none;
5516
- }
5517
-
5518
- .stretch {
5519
- position: relative;
5520
- }
5521
-
5522
- /* The last item can take up any amount of space. */
5523
- .stretch.ui-layout-container:last-child {
5524
- position: static;
5525
- overflow: visible;
5526
- }
5527
- }
5528
-
5529
- /* Make sure hidden elements are in fact not rendered. */
5530
- .ui-layout-hidden {
5531
- display: none;
5532
- }
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
- .action-checkbox-all {
5556
- .action-checkbox-all-color-set();
5557
-
5558
- text-align: center;
5559
-
5560
- .check-item {
5561
- cursor: pointer;
5562
- color: @check-item-color;
5563
- font-size: 16px;
5564
- line-height: 1;
5565
- vertical-align: middle;
5566
-
5567
- &.igz-icon-checkbox-checked {
5568
- color: @check-item-icon-checkbox-checked-color;
5569
- }
5570
- }
5571
- }
5572
- .igz-action-menu {
5573
- .action-menu-color-set();
5574
- .action-icon-color-set();
5575
-
5576
- opacity: 1;
5577
- position: relative;
5578
-
5579
- .menu-button {
5580
- color: @menu-btn-color;
5581
- cursor: pointer;
5582
- font-size: 18px;
5583
- height: 19px;
5584
- text-align: center;
5585
- transition: @igz-basic-transition-color;
5586
- width: 30px;
5587
-
5588
- &.active,
5589
- &:hover {
5590
- color: @menu-btn-active-hover-color;
5591
- }
5592
- }
5588
+ &.active,
5589
+ &:hover {
5590
+ color: @menu-btn-active-hover-color;
5591
+ }
5592
+ }
5593
5593
 
5594
5594
  .menu-dropdown {
5595
5595
  visibility: hidden;
@@ -6455,6 +6455,82 @@ yx-axis
6455
6455
  }
6456
6456
  }
6457
6457
 
6458
+ .element-loading-status {
6459
+ .element-loading-status-color-set();
6460
+
6461
+ position: relative;
6462
+ width: 100%;
6463
+ height: 100%;
6464
+
6465
+ .loader-wrapper {
6466
+ height: 100%;
6467
+ width: 100%;
6468
+ position: relative;
6469
+
6470
+ .loader-text {
6471
+ color: @loading-text-color;
6472
+ }
6473
+ }
6474
+
6475
+ .loading-error {
6476
+ text-align: center;
6477
+ line-height: 15px;
6478
+ width: 100%;
6479
+ height: 100%;
6480
+ position: relative;
6481
+
6482
+ .sad-icon {
6483
+ position: absolute;
6484
+ left: 32px;
6485
+ }
6486
+
6487
+ .loading-error-title, .loading-error-message {
6488
+ font-size: 13px;
6489
+ font-weight: 700;
6490
+ padding: 0 15px;
6491
+ }
6492
+
6493
+ .loading-error-title {
6494
+ color: @loading-error-title-color;
6495
+ padding-top: 15px;
6496
+ }
6497
+
6498
+ .refresh-page {
6499
+ color: @loading-error-refresh-page-color;
6500
+ text-decoration: underline;
6501
+ cursor: pointer;
6502
+ }
6503
+ }
6504
+
6505
+ // Small size status
6506
+
6507
+ &.loading-status-small {
6508
+ .loader-fading-circle {
6509
+ width: 20px;
6510
+ height: 20px;
6511
+ }
6512
+
6513
+ .loading-error {
6514
+
6515
+ .loading-error-title, .loading-error-message {
6516
+ text-overflow: ellipsis;
6517
+ overflow: hidden;
6518
+ padding: 0;
6519
+ }
6520
+
6521
+ .loading-error-title {
6522
+ padding-top: 8px;
6523
+ }
6524
+
6525
+ .refresh-page {
6526
+ overflow: hidden;
6527
+ text-overflow: ellipsis;
6528
+ padding: 0;
6529
+ }
6530
+ }
6531
+ }
6532
+ }
6533
+
6458
6534
  .default-dropdown {
6459
6535
  .default-dropdown-color-set();
6460
6536
  .severity-icons-color-set();
@@ -6895,114 +6971,38 @@ yx-axis
6895
6971
  }
6896
6972
  }
6897
6973
 
6898
- .element-loading-status {
6899
- .element-loading-status-color-set();
6900
-
6901
- position: relative;
6902
- width: 100%;
6903
- height: 100%;
6904
-
6905
- .loader-wrapper {
6906
- height: 100%;
6907
- width: 100%;
6908
- position: relative;
6974
+ .control-panel-log-row {
6975
+ .control-panel-log-table-row-color-set();
6909
6976
 
6910
- .loader-text {
6911
- color: @loading-text-color;
6977
+ .log-entry {
6978
+ .log-entry-time {
6979
+ color: @log-entry-time-color;
6912
6980
  }
6913
- }
6914
6981
 
6915
- .loading-error {
6916
- text-align: center;
6917
- line-height: 15px;
6918
- width: 100%;
6919
- height: 100%;
6920
- position: relative;
6982
+ .log-entry-level-debug {
6983
+ color: @log-entry-level-debug-color;
6984
+ }
6921
6985
 
6922
- .sad-icon {
6923
- position: absolute;
6924
- left: 32px;
6986
+ .log-entry-level-info {
6987
+ color: @log-entry-level-info-color;
6925
6988
  }
6926
6989
 
6927
- .loading-error-title, .loading-error-message {
6928
- font-size: 13px;
6929
- font-weight: 700;
6930
- padding: 0 15px;
6990
+ .log-entry-level-warn, .log-entry-level-warning {
6991
+ color: @log-entry-level-warn-color;
6931
6992
  }
6932
6993
 
6933
- .loading-error-title {
6934
- color: @loading-error-title-color;
6935
- padding-top: 15px;
6994
+ .log-entry-level-error {
6995
+ color: @log-entry-level-error-color;
6936
6996
  }
6937
6997
 
6938
- .refresh-page {
6939
- color: @loading-error-refresh-page-color;
6940
- text-decoration: underline;
6941
- cursor: pointer;
6998
+ .log-entry-message {
6999
+ font-weight: 600;
6942
7000
  }
6943
7001
  }
7002
+ }
6944
7003
 
6945
- // Small size status
6946
-
6947
- &.loading-status-small {
6948
- .loader-fading-circle {
6949
- width: 20px;
6950
- height: 20px;
6951
- }
6952
-
6953
- .loading-error {
6954
-
6955
- .loading-error-title, .loading-error-message {
6956
- text-overflow: ellipsis;
6957
- overflow: hidden;
6958
- padding: 0;
6959
- }
6960
-
6961
- .loading-error-title {
6962
- padding-top: 8px;
6963
- }
6964
-
6965
- .refresh-page {
6966
- overflow: hidden;
6967
- text-overflow: ellipsis;
6968
- padding: 0;
6969
- }
6970
- }
6971
- }
6972
- }
6973
-
6974
- .control-panel-log-row {
6975
- .control-panel-log-table-row-color-set();
6976
-
6977
- .log-entry {
6978
- .log-entry-time {
6979
- color: @log-entry-time-color;
6980
- }
6981
-
6982
- .log-entry-level-debug {
6983
- color: @log-entry-level-debug-color;
6984
- }
6985
-
6986
- .log-entry-level-info {
6987
- color: @log-entry-level-info-color;
6988
- }
6989
-
6990
- .log-entry-level-warn, .log-entry-level-warning {
6991
- color: @log-entry-level-warn-color;
6992
- }
6993
-
6994
- .log-entry-level-error {
6995
- color: @log-entry-level-error-color;
6996
- }
6997
-
6998
- .log-entry-message {
6999
- font-weight: 600;
7000
- }
7001
- }
7002
- }
7003
-
7004
- .more-info-wrapper {
7005
- .more-info-color-set();
7004
+ .more-info-wrapper {
7005
+ .more-info-color-set();
7006
7006
 
7007
7007
  position: relative;
7008
7008
  display: inline-flex;
@@ -7395,6 +7395,154 @@ yx-axis
7395
7395
  }
7396
7396
  }
7397
7397
 
7398
+ .igz-pagination {
7399
+ .pagination-color-set();
7400
+
7401
+ float: right;
7402
+ padding: 24px 36px 5px 30px;
7403
+
7404
+ > div {
7405
+ vertical-align: top;
7406
+ }
7407
+
7408
+ .rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
7409
+ display: inline-block;
7410
+ vertical-align: baseline;
7411
+ }
7412
+
7413
+ .rows-title {
7414
+ font-size: 13px;
7415
+ color: @rows-title-color;
7416
+ font-family: @font-family-sans-serif;
7417
+ }
7418
+
7419
+ .per-page {
7420
+ width: 66px;
7421
+
7422
+ .default-dropdown-field {
7423
+ background: none;
7424
+ border: none;
7425
+ box-shadow: none;
7426
+ font-size: 14px;
7427
+ height: 36px;
7428
+
7429
+ .dropdown-selected-item {
7430
+ font-size: 14px;
7431
+ }
7432
+
7433
+ .dropdown-arrow {
7434
+ margin-top: 5px;
7435
+
7436
+ span {
7437
+ font-size: 12px;
7438
+ }
7439
+ }
7440
+
7441
+ .dropdown-arrow {
7442
+ border: none;
7443
+
7444
+ &:hover, &:active {
7445
+ border: none;
7446
+ background: none;
7447
+ box-shadow: none;
7448
+ }
7449
+ }
7450
+
7451
+ &:focus {
7452
+ .dropdown-selected-item {
7453
+ border: none;
7454
+ }
7455
+ }
7456
+ }
7457
+
7458
+ .default-dropdown-container {
7459
+ width: 66px;
7460
+
7461
+ .list-item {
7462
+ padding-left: 15px;
7463
+
7464
+ .list-item-label {
7465
+ margin-right: 10px;
7466
+ }
7467
+ }
7468
+ }
7469
+ }
7470
+
7471
+ .jump-to-page {
7472
+ margin-left: 7px;
7473
+
7474
+ & > div, .jump-to-page-input {
7475
+ display: inline-block;
7476
+ vertical-align: baseline;
7477
+ }
7478
+
7479
+ .to-page-prev, .to-page-next {
7480
+ width: 41px;
7481
+ line-height: 34px;
7482
+ height: 36px;
7483
+ vertical-align: top;
7484
+ position: relative;
7485
+
7486
+ &:not(:active) {
7487
+ background-color: transparent;
7488
+ }
7489
+
7490
+ &:not(:hover):not(:active):not(:disabled):not(.disabled) {
7491
+ color: @page-prev-next-color;
7492
+ }
7493
+
7494
+ &:before {
7495
+ line-height: 34px;
7496
+ }
7497
+ }
7498
+
7499
+ .to-page-prev {
7500
+ border-radius: 2px 0 0 2px;
7501
+
7502
+ &::before {
7503
+ margin-left: -2px;
7504
+ }
7505
+ }
7506
+
7507
+ .to-page-next {
7508
+ border-radius: 0 2px 2px 0;
7509
+ }
7510
+
7511
+ .title {
7512
+ margin: 0 0 0 14px;
7513
+ }
7514
+
7515
+ .page-number {
7516
+ min-width: 30px;
7517
+ height: 36px;
7518
+ line-height: 36px;
7519
+ text-align: center;
7520
+ }
7521
+
7522
+ .validating-input-field {
7523
+ background-color: @input-field-bg-color;
7524
+
7525
+ .input-field {
7526
+ width: 43px;
7527
+ height: 36px;
7528
+ border-radius: 0;
7529
+ box-shadow: @input-field-box-shadow;
7530
+ border: 1px solid @input-field-border-color;
7531
+ border-left: 0 none transparent;
7532
+ border-right: 0 none transparent;
7533
+ font-family: @font-family-sans-serif;
7534
+ font-size: 14px;
7535
+ font-weight: 500;
7536
+ color: @input-field-color;
7537
+ text-align: center;
7538
+
7539
+ &:hover {
7540
+ border: @input-field-hover-border;
7541
+ }
7542
+ }
7543
+ }
7544
+ }
7545
+ }
7398
7546
  .igz-number-input {
7399
7547
  .number-input-color-set();
7400
7548
 
@@ -7548,180 +7696,32 @@ yx-axis
7548
7696
  }
7549
7697
  }
7550
7698
 
7551
- .igz-pagination {
7552
- .pagination-color-set();
7553
-
7554
- float: right;
7555
- padding: 24px 36px 5px 30px;
7556
-
7557
- > div {
7558
- vertical-align: top;
7559
- }
7699
+ .search-input {
7700
+ .search-input-color-set();
7560
7701
 
7561
- .rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
7562
- display: inline-block;
7563
- vertical-align: baseline;
7564
- }
7702
+ position: relative;
7703
+ color: @search-input-color;
7565
7704
 
7566
- .rows-title {
7567
- font-size: 13px;
7568
- color: @rows-title-color;
7705
+ .container-search-input {
7706
+ background-color: @search-input-bg-color;
7707
+ border: 0;
7569
7708
  font-family: @font-family-sans-serif;
7570
- }
7571
-
7572
- .per-page {
7573
- width: 66px;
7709
+ font-size: 15px;
7710
+ font-weight: 400;
7711
+ height: 52px;
7712
+ line-height: 52px;
7713
+ margin: 0;
7714
+ outline: 0;
7715
+ padding-right: 20px;
7716
+ width: 100%;
7574
7717
 
7575
- .default-dropdown-field {
7576
- background: none;
7577
- border: none;
7578
- box-shadow: none;
7579
- font-size: 14px;
7580
- height: 36px;
7718
+ &::-webkit-input-placeholder {
7719
+ color: @search-input-placeholder-color;
7720
+ }
7581
7721
 
7582
- .dropdown-selected-item {
7583
- font-size: 14px;
7584
- }
7585
-
7586
- .dropdown-arrow {
7587
- margin-top: 5px;
7588
-
7589
- span {
7590
- font-size: 12px;
7591
- }
7592
- }
7593
-
7594
- .dropdown-arrow {
7595
- border: none;
7596
-
7597
- &:hover, &:active {
7598
- border: none;
7599
- background: none;
7600
- box-shadow: none;
7601
- }
7602
- }
7603
-
7604
- &:focus {
7605
- .dropdown-selected-item {
7606
- border: none;
7607
- }
7608
- }
7609
- }
7610
-
7611
- .default-dropdown-container {
7612
- width: 66px;
7613
-
7614
- .list-item {
7615
- padding-left: 15px;
7616
-
7617
- .list-item-label {
7618
- margin-right: 10px;
7619
- }
7620
- }
7621
- }
7622
- }
7623
-
7624
- .jump-to-page {
7625
- margin-left: 7px;
7626
-
7627
- & > div, .jump-to-page-input {
7628
- display: inline-block;
7629
- vertical-align: baseline;
7630
- }
7631
-
7632
- .to-page-prev, .to-page-next {
7633
- width: 41px;
7634
- line-height: 34px;
7635
- height: 36px;
7636
- vertical-align: top;
7637
- position: relative;
7638
-
7639
- &:not(:active) {
7640
- background-color: transparent;
7641
- }
7642
-
7643
- &:not(:hover):not(:active):not(:disabled):not(.disabled) {
7644
- color: @page-prev-next-color;
7645
- }
7646
-
7647
- &:before {
7648
- line-height: 34px;
7649
- }
7650
- }
7651
-
7652
- .to-page-prev {
7653
- border-radius: 2px 0 0 2px;
7654
-
7655
- &::before {
7656
- margin-left: -2px;
7657
- }
7658
- }
7659
-
7660
- .to-page-next {
7661
- border-radius: 0 2px 2px 0;
7662
- }
7663
-
7664
- .title {
7665
- margin: 0 0 0 14px;
7666
- }
7667
-
7668
- .page-number {
7669
- min-width: 30px;
7670
- height: 36px;
7671
- line-height: 36px;
7672
- text-align: center;
7673
- }
7674
-
7675
- .validating-input-field {
7676
- background-color: @input-field-bg-color;
7677
-
7678
- .input-field {
7679
- width: 43px;
7680
- height: 36px;
7681
- border-radius: 0;
7682
- box-shadow: @input-field-box-shadow;
7683
- border: 1px solid @input-field-border-color;
7684
- border-left: 0 none transparent;
7685
- border-right: 0 none transparent;
7686
- font-family: @font-family-sans-serif;
7687
- font-size: 14px;
7688
- font-weight: 500;
7689
- color: @input-field-color;
7690
- text-align: center;
7691
-
7692
- &:hover {
7693
- border: @input-field-hover-border;
7694
- }
7695
- }
7696
- }
7697
- }
7698
- }
7699
- .search-input {
7700
- .search-input-color-set();
7701
-
7702
- position: relative;
7703
- color: @search-input-color;
7704
-
7705
- .container-search-input {
7706
- background-color: @search-input-bg-color;
7707
- border: 0;
7708
- font-family: @font-family-sans-serif;
7709
- font-size: 15px;
7710
- font-weight: 400;
7711
- height: 52px;
7712
- line-height: 52px;
7713
- margin: 0;
7714
- outline: 0;
7715
- padding-right: 20px;
7716
- width: 100%;
7717
-
7718
- &::-webkit-input-placeholder {
7719
- color: @search-input-placeholder-color;
7720
- }
7721
-
7722
- &:-moz-placeholder { /* Firefox 18- */
7723
- color: @search-input-placeholder-color;
7724
- }
7722
+ &:-moz-placeholder { /* Firefox 18- */
7723
+ color: @search-input-placeholder-color;
7724
+ }
7725
7725
 
7726
7726
  &::-moz-placeholder { /* Firefox 19+ */
7727
7727
  color: @search-input-placeholder-color;
@@ -8210,70 +8210,6 @@ yx-axis
8210
8210
  }
8211
8211
  }
8212
8212
  }
8213
- .toast-status-panel {
8214
- .toast-status-panel-color-set();
8215
-
8216
- margin-bottom: 20px;
8217
- padding: 16px 36px 16px 12px;
8218
- background-color: @toast-panel-bg-color;
8219
- border: @toast-panel-border;
8220
- position: relative;
8221
-
8222
- &.in-progress {
8223
- background-color: @toast-panel-in-progress-bg-color;
8224
- border: @toast-panel-in-progress-border;
8225
- }
8226
-
8227
- &.failed {
8228
- background-color: @toast-panel-failed-bg-color;
8229
- border: @toast-panel-failed-border;
8230
- }
8231
-
8232
- .panel-status {
8233
- color: @toast-panel-status-color;
8234
- line-height: 24px;
8235
- font-size: 14px;
8236
- font-weight: 700;
8237
- font-family: @font-family-sans-serif;
8238
- align-items: center;
8239
- display: flex;
8240
- justify-content: center;
8241
-
8242
- &.in-progress {
8243
- color: @toast-panel-status-in-progress-color;
8244
- }
8245
-
8246
- &.failed {
8247
- color: @toast-panel-status-failed-color;
8248
- }
8249
-
8250
- .panel-status-icon {
8251
- font-size: 24px;
8252
-
8253
- &.igz-icon-properties {
8254
- -webkit-animation: rotation 4s infinite linear;
8255
-
8256
- @-webkit-keyframes rotation {
8257
- from {
8258
- -webkit-transform: rotate(0deg);
8259
- }
8260
- to {
8261
- -webkit-transform: rotate(359deg);
8262
- }
8263
- }
8264
- }
8265
- }
8266
-
8267
- .msg-scrollable-container {
8268
- max-height: 300px;
8269
-
8270
- .panel-status-msg {
8271
- margin: 0 8px;
8272
- }
8273
- }
8274
- }
8275
- }
8276
-
8277
8213
  .ngdialog.text-edit {
8278
8214
  .text-edit-color-set();
8279
8215
 
@@ -8351,43 +8287,107 @@ yx-axis
8351
8287
  }
8352
8288
  }
8353
8289
 
8354
- .validating-input-field {
8355
- .validating-input-field-color-set();
8290
+ .toast-status-panel {
8291
+ .toast-status-panel-color-set();
8356
8292
 
8357
- background-color: @validating-input-field-bg-color;
8358
- font-family: @font-family-sans-serif;
8359
- font-size: 13px;
8360
- font-weight: 400;
8361
- min-height: 32px;
8362
- line-height: 32px;
8293
+ margin-bottom: 20px;
8294
+ padding: 16px 36px 16px 12px;
8295
+ background-color: @toast-panel-bg-color;
8296
+ border: @toast-panel-border;
8363
8297
  position: relative;
8364
8298
 
8365
- .input-icon {
8366
- position: absolute;
8367
- top: 2px;
8368
- left: 8px;
8369
- z-index: 2;
8370
- color: @validating-input-icon-color;
8299
+ &.in-progress {
8300
+ background-color: @toast-panel-in-progress-bg-color;
8301
+ border: @toast-panel-in-progress-border;
8371
8302
  }
8372
8303
 
8373
- //
8374
- // validation icon
8375
- //
8304
+ &.failed {
8305
+ background-color: @toast-panel-failed-bg-color;
8306
+ border: @toast-panel-failed-border;
8307
+ }
8376
8308
 
8377
- .validation-icon {
8378
- position: absolute;
8379
- right: 9px;
8380
- bottom: 0;
8381
- z-index: 3;
8309
+ .panel-status {
8310
+ color: @toast-panel-status-color;
8311
+ line-height: 24px;
8312
+ font-size: 14px;
8313
+ font-weight: 700;
8314
+ font-family: @font-family-sans-serif;
8315
+ align-items: center;
8316
+ display: flex;
8317
+ justify-content: center;
8382
8318
 
8383
- &.igz-icon-verify-error {
8384
- font-size: 13px;
8385
- color: @validation-icon-error-color;
8319
+ &.in-progress {
8320
+ color: @toast-panel-status-in-progress-color;
8386
8321
  }
8387
8322
 
8388
- &.igz-icon-verify-info {
8389
- font-size: 16px;
8390
- color: @validation-icon-info-color;
8323
+ &.failed {
8324
+ color: @toast-panel-status-failed-color;
8325
+ }
8326
+
8327
+ .panel-status-icon {
8328
+ font-size: 24px;
8329
+
8330
+ &.igz-icon-properties {
8331
+ -webkit-animation: rotation 4s infinite linear;
8332
+
8333
+ @-webkit-keyframes rotation {
8334
+ from {
8335
+ -webkit-transform: rotate(0deg);
8336
+ }
8337
+ to {
8338
+ -webkit-transform: rotate(359deg);
8339
+ }
8340
+ }
8341
+ }
8342
+ }
8343
+
8344
+ .msg-scrollable-container {
8345
+ max-height: 300px;
8346
+
8347
+ .panel-status-msg {
8348
+ margin: 0 8px;
8349
+ }
8350
+ }
8351
+ }
8352
+ }
8353
+
8354
+ .validating-input-field {
8355
+ .validating-input-field-color-set();
8356
+
8357
+ background-color: @validating-input-field-bg-color;
8358
+ font-family: @font-family-sans-serif;
8359
+ font-size: 13px;
8360
+ font-weight: 400;
8361
+ min-height: 32px;
8362
+ line-height: 32px;
8363
+ position: relative;
8364
+
8365
+ .input-icon {
8366
+ position: absolute;
8367
+ top: 2px;
8368
+ left: 8px;
8369
+ z-index: 2;
8370
+ color: @validating-input-icon-color;
8371
+ }
8372
+
8373
+ //
8374
+ // validation icon
8375
+ //
8376
+
8377
+ .validation-icon {
8378
+ position: absolute;
8379
+ right: 9px;
8380
+ bottom: 0;
8381
+ z-index: 3;
8382
+
8383
+ &.igz-icon-verify-error {
8384
+ font-size: 13px;
8385
+ color: @validation-icon-error-color;
8386
+ }
8387
+
8388
+ &.igz-icon-verify-info {
8389
+ font-size: 16px;
8390
+ color: @validation-icon-info-color;
8391
8391
  }
8392
8392
 
8393
8393
  &.borders-focus, &.borders-hover {
@@ -10307,6 +10307,129 @@ ncl-breadcrumbs {
10307
10307
  }
10308
10308
  }
10309
10309
 
10310
+ .ncl-collapsing-row {
10311
+ margin-bottom: 9px;
10312
+
10313
+ .title-block.common-table-row {
10314
+ border: 1px solid @pale-grey;
10315
+ box-shadow: none;
10316
+ min-height: 49px;
10317
+
10318
+ &.collapsed {
10319
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
10320
+
10321
+ &:hover {
10322
+ box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
10323
+ }
10324
+ }
10325
+
10326
+ &:hover {
10327
+ .common-table-cells-container {
10328
+ background-color: @white;
10329
+ }
10330
+
10331
+ .actions-menu {
10332
+ visibility: visible;
10333
+ background-color: @white;
10334
+ }
10335
+
10336
+ .single-action {
10337
+ visibility: visible;
10338
+ }
10339
+ }
10340
+ }
10341
+
10342
+ .row-collapse {
10343
+ width: 40px;
10344
+ flex: none;
10345
+ justify-content: center;
10346
+ align-items: flex-start;
10347
+ line-height: 51px;
10348
+
10349
+ .collapse-icon {
10350
+ background-color: transparent;
10351
+ position: absolute;
10352
+
10353
+ &.igz-icon-right, &.igz-icon-down {
10354
+ font-size: 12px;
10355
+ .duskThree(0.64);
10356
+ color: @color;
10357
+
10358
+ &:hover {
10359
+ color: @dusk-three;
10360
+ }
10361
+ }
10362
+ }
10363
+ }
10364
+
10365
+ .item-row {
10366
+ display: flex;
10367
+ flex-flow: row nowrap;
10368
+ align-items: center;
10369
+
10370
+ .item-name {
10371
+ font-weight: bold;
10372
+ display: flex;
10373
+ flex-flow: row nowrap;
10374
+ align-items: baseline;
10375
+ width: 192px;
10376
+
10377
+ .text-ellipsis {
10378
+ width: auto;
10379
+ }
10380
+ }
10381
+
10382
+ .item-class {
10383
+ width: 168px;
10384
+ padding-left: 16px;
10385
+ }
10386
+
10387
+ .field-label {
10388
+ text-transform: capitalize;
10389
+ }
10390
+ }
10391
+
10392
+ .item-info-row {
10393
+ line-height: 30px;
10394
+ }
10395
+
10396
+ .expanded-item-info-block {
10397
+ width: 100%;
10398
+ height: 100%;
10399
+ top: 0;
10400
+ padding: 10px 0;
10401
+ }
10402
+
10403
+ .collapsed-item-info-block {
10404
+ padding-left: 16px;
10405
+ white-space: nowrap;
10406
+ width: 100%;
10407
+ overflow: hidden;
10408
+ text-overflow: ellipsis;
10409
+ }
10410
+
10411
+ .actions-menu {
10412
+ visibility: hidden;
10413
+ align-items: flex-start;
10414
+ line-height: 51px;
10415
+ }
10416
+
10417
+ .single-action {
10418
+ visibility: hidden;
10419
+ align-items: flex-start;
10420
+ flex: none;
10421
+ padding-right: 4px;
10422
+
10423
+ .igz-action-panel {
10424
+ transition: unset;
10425
+
10426
+ .igz-action-item {
10427
+ margin: 4px 0 0 0;
10428
+ }
10429
+ }
10430
+ }
10431
+ }
10432
+
10310
10433
  .ncl-breadcrumbs-dropdown {
10311
10434
  display: inline-grid;
10312
10435
 
@@ -10447,198 +10570,57 @@ ncl-breadcrumbs {
10447
10570
  }
10448
10571
  }
10449
10572
 
10450
- .ncl-collapsing-row {
10451
- margin-bottom: 9px;
10573
+ .ncl-deploy-log-wrapper {
10574
+ .log-panel {
10575
+ .logs-common();
10576
+ background-color: @dark-grey;
10577
+ color: @light-grey-three;
10578
+ padding: 5px;
10579
+ margin: 21px 0 0 4px;
10580
+ min-height: 280px;
10581
+ max-height: 280px;
10582
+ height: 280px;
10452
10583
 
10453
- .title-block.common-table-row {
10454
- border: 1px solid @pale-grey;
10455
- box-shadow: none;
10456
- min-height: 49px;
10584
+ .log-entry {
10585
+ .log-entry-time {
10586
+ color: @solid-grey;
10587
+ }
10457
10588
 
10458
- &.collapsed {
10459
- box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
10589
+ .log-entry-level-debug{
10590
+ color: @dusty-blue;
10591
+ }
10460
10592
 
10461
- &:hover {
10462
- box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
10593
+ .log-entry-level-info {
10594
+ color: @cloudy-blue;
10463
10595
  }
10464
- }
10465
10596
 
10466
- &:hover {
10467
- .common-table-cells-container {
10468
- background-color: @white;
10597
+ .log-entry-level-warn{
10598
+ color: @sunflower-yellow;
10469
10599
  }
10470
10600
 
10471
- .actions-menu {
10472
- visibility: visible;
10473
- background-color: @white;
10601
+ .log-entry-level-error {
10602
+ color: @darkish-pink;
10474
10603
  }
10475
10604
 
10476
- .single-action {
10477
- visibility: visible;
10605
+ .log-entry-message {
10606
+ font-weight: 600;
10478
10607
  }
10479
10608
  }
10480
10609
  }
10610
+ }
10611
+ .ncl-edit-item {
10612
+ width: 100%;
10613
+ padding: 6px 0;
10481
10614
 
10482
- .row-collapse {
10483
- width: 40px;
10484
- flex: none;
10485
- justify-content: center;
10486
- align-items: flex-start;
10487
- line-height: 51px;
10615
+ .title-field-row {
10616
+ display: flex;
10488
10617
 
10489
- .collapse-icon {
10490
- background-color: transparent;
10491
- position: absolute;
10618
+ .name-field {
10619
+ margin-right: 14px;
10620
+ width: 178px;
10492
10621
 
10493
- &.igz-icon-right, &.igz-icon-down {
10494
- font-size: 12px;
10495
- .duskThree(0.64);
10496
- color: @color;
10497
-
10498
- &:hover {
10499
- color: @dusk-three;
10500
- }
10501
- }
10502
- }
10503
- }
10504
-
10505
- .item-row {
10506
- display: flex;
10507
- flex-flow: row nowrap;
10508
- align-items: center;
10509
-
10510
- .item-name {
10511
- font-weight: bold;
10512
- display: flex;
10513
- flex-flow: row nowrap;
10514
- align-items: baseline;
10515
- width: 192px;
10516
-
10517
- .text-ellipsis {
10518
- width: auto;
10519
- }
10520
- }
10521
-
10522
- .item-class {
10523
- width: 168px;
10524
- padding-left: 16px;
10525
- }
10526
-
10527
- .field-label {
10528
- text-transform: capitalize;
10529
- }
10530
- }
10531
-
10532
- .item-info-row {
10533
- line-height: 30px;
10534
- }
10535
-
10536
- .expanded-item-info-block {
10537
- width: 100%;
10538
- height: 100%;
10539
- top: 0;
10540
- padding: 10px 0;
10541
- }
10542
-
10543
- .collapsed-item-info-block {
10544
- padding-left: 16px;
10545
- white-space: nowrap;
10546
- width: 100%;
10547
- overflow: hidden;
10548
- text-overflow: ellipsis;
10549
- }
10550
-
10551
- .actions-menu {
10552
- visibility: hidden;
10553
- align-items: flex-start;
10554
- line-height: 51px;
10555
- }
10556
-
10557
- .single-action {
10558
- visibility: hidden;
10559
- align-items: flex-start;
10560
- flex: none;
10561
- padding-right: 4px;
10562
-
10563
- .igz-action-panel {
10564
- transition: unset;
10565
-
10566
- .igz-action-item {
10567
- margin: 4px 0 0 0;
10568
- }
10569
- }
10570
- }
10571
- }
10572
-
10573
- .ncl-deploy-log-wrapper {
10574
- .log-panel {
10575
- .logs-common();
10576
- background-color: @dark-grey;
10577
- color: @light-grey-three;
10578
- padding: 5px;
10579
- margin: 21px 0 0 4px;
10580
- min-height: 280px;
10581
- max-height: 280px;
10582
- height: 280px;
10583
-
10584
- .log-entry {
10585
- .log-entry-time {
10586
- color: @solid-grey;
10587
- }
10588
-
10589
- .log-entry-level-debug{
10590
- color: @dusty-blue;
10591
- }
10592
-
10593
- .log-entry-level-info {
10594
- color: @cloudy-blue;
10595
- }
10596
-
10597
- .log-entry-level-warn{
10598
- color: @sunflower-yellow;
10599
- }
10600
-
10601
- .log-entry-level-error {
10602
- color: @darkish-pink;
10603
- }
10604
-
10605
- .log-entry-message {
10606
- font-weight: 600;
10607
- }
10608
- }
10609
- }
10610
- }
10611
- .view-yaml-dialog-wrapper {
10612
- .ngdialog-content {
10613
- .view-yaml-dialog-header {
10614
- .title {
10615
- margin-bottom: 10px;
10616
- }
10617
-
10618
- .copy-to-clipboard {
10619
- width: 20px;
10620
- }
10621
- }
10622
-
10623
- .monaco-editor {
10624
- min-width: 700px;
10625
- min-height: 450px;
10626
- }
10627
- }
10628
- }
10629
- .ncl-edit-item {
10630
- width: 100%;
10631
- padding: 6px 0;
10632
-
10633
- .title-field-row {
10634
- display: flex;
10635
-
10636
- .name-field {
10637
- margin-right: 14px;
10638
- width: 178px;
10639
-
10640
- .error {
10641
- color: @darkish-pink;
10622
+ .error {
10623
+ color: @darkish-pink;
10642
10624
  font-size: 12px;
10643
10625
  white-space: nowrap;
10644
10626
  }
@@ -10726,6 +10708,24 @@ ncl-breadcrumbs {
10726
10708
  }
10727
10709
  }
10728
10710
 
10711
+ .view-yaml-dialog-wrapper {
10712
+ .ngdialog-content {
10713
+ .view-yaml-dialog-header {
10714
+ .title {
10715
+ margin-bottom: 10px;
10716
+ }
10717
+
10718
+ .copy-to-clipboard {
10719
+ width: 20px;
10720
+ }
10721
+ }
10722
+
10723
+ .monaco-editor {
10724
+ min-width: 700px;
10725
+ min-height: 450px;
10726
+ }
10727
+ }
10728
+ }
10729
10729
  .ncl-key-value-input {
10730
10730
  .input-wrapper {
10731
10731
  width: 100%;
@@ -12099,157 +12099,58 @@ ncl-navigation-tabs {
12099
12099
  }
12100
12100
  }
12101
12101
 
12102
- .function-from-scratch-content {
12103
- .splash-screen {
12104
- top: 0;
12105
- }
12106
-
12107
- .title-wrapper {
12108
- margin-left: 50px;
12102
+ .function-from-template-content {
12103
+ .ncl-function-from-template-color-set();
12109
12104
 
12110
- .title {
12111
- color: @dusk-three;
12112
- font-size: 16px;
12113
- font-weight: bold;
12114
- }
12115
- }
12105
+ padding: 0 72px 0 63px;
12116
12106
 
12117
- .function-configuration {
12118
- margin: 28px 0 0 0;
12107
+ .configuration-form {
12108
+ display: flex;
12119
12109
 
12120
- .configuration-form {
12110
+ .function-name-wrapper {
12111
+ width: 50%;
12121
12112
  display: flex;
12113
+ justify-content: flex-end;
12114
+ margin-bottom: 2px;
12122
12115
 
12123
- .function-name-wrapper {
12124
- width: 50%;
12125
- display: flex;
12126
- padding: 0 24px 0 74px;
12127
-
12128
- .projects-drop-down {
12129
- width: 40%;
12130
- margin-right: 48px;
12116
+ .projects-drop-down {
12117
+ width: 40%;
12118
+ margin-right: 48px;
12131
12119
 
12132
- .input-label {
12133
- font-size: 14px;
12134
- font-weight: 600;
12135
- color: @dusk-three;
12136
- }
12120
+ .input-label {
12121
+ font-size: 14px;
12122
+ font-weight: 600;
12123
+ color: @dusk-three;
12124
+ }
12137
12125
 
12138
- igz-default-dropdown {
12139
- .default-dropdown {
12140
- background-color: @white;
12126
+ igz-default-dropdown {
12127
+ .default-dropdown {
12128
+ background-color: @white;
12141
12129
 
12142
- .default-dropdown-field {
12143
- &:focus {
12144
- background-color: inherit;
12145
- }
12130
+ .default-dropdown-field {
12131
+ &:focus {
12132
+ background-color: inherit;
12146
12133
  }
12147
12134
  }
12148
12135
  }
12149
12136
  }
12137
+ }
12150
12138
 
12151
- .function-name {
12152
- width: 100%;
12139
+ .function-name {
12140
+ width: 100%;
12153
12141
 
12154
- .input-label {
12155
- font-size: 14px;
12156
- font-weight: 600;
12157
- color: @dusk-three;
12158
- }
12142
+ .input-label {
12143
+ font-size: 14px;
12144
+ font-weight: 600;
12145
+ color: @dusk-three;
12146
+ }
12159
12147
 
12160
- igz-validating-input-field {
12161
- margin-left: 2px;
12162
- }
12148
+ igz-validating-input-field {
12149
+ margin-left: 2px;
12163
12150
  }
12164
12151
  }
12165
-
12166
- .function-runtime-wrapper {
12167
- width: 50%;
12168
- padding-left: 24px;
12169
- padding-right: 10%;
12170
-
12171
- .function-runtime {
12172
- .input-label {
12173
- font-size: 14px;
12174
- font-weight: 600;
12175
- color: @dusk-three;
12176
- }
12177
-
12178
- igz-default-dropdown {
12179
- .default-dropdown {
12180
- background-color: @white;
12181
-
12182
- .default-dropdown-field {
12183
- &:focus {
12184
- background-color: inherit;
12185
- }
12186
- }
12187
- }
12188
- }
12189
-
12190
- .bottom-bar {
12191
- display: flex;
12192
- justify-content: flex-end;
12193
- margin-top: 48px;
12194
- }
12195
- }
12196
- }
12197
- }
12198
- }
12199
- }
12200
-
12201
- .function-from-template-content {
12202
- .ncl-function-from-template-color-set();
12203
-
12204
- padding: 0 72px 0 63px;
12205
-
12206
- .configuration-form {
12207
- display: flex;
12208
-
12209
- .function-name-wrapper {
12210
- width: 50%;
12211
- display: flex;
12212
- justify-content: flex-end;
12213
- margin-bottom: 2px;
12214
-
12215
- .projects-drop-down {
12216
- width: 40%;
12217
- margin-right: 48px;
12218
-
12219
- .input-label {
12220
- font-size: 14px;
12221
- font-weight: 600;
12222
- color: @dusk-three;
12223
- }
12224
-
12225
- igz-default-dropdown {
12226
- .default-dropdown {
12227
- background-color: @white;
12228
-
12229
- .default-dropdown-field {
12230
- &:focus {
12231
- background-color: inherit;
12232
- }
12233
- }
12234
- }
12235
- }
12236
- }
12237
-
12238
- .function-name {
12239
- width: 100%;
12240
-
12241
- .input-label {
12242
- font-size: 14px;
12243
- font-weight: 600;
12244
- color: @dusk-three;
12245
- }
12246
-
12247
- igz-validating-input-field {
12248
- margin-left: 2px;
12249
- }
12250
- }
12251
- }
12252
- }
12152
+ }
12153
+ }
12253
12154
 
12254
12155
  .templates-wrapper {
12255
12156
  .title {
@@ -12460,6 +12361,105 @@ ncl-navigation-tabs {
12460
12361
  }
12461
12362
  }
12462
12363
 
12364
+ .function-from-scratch-content {
12365
+ .splash-screen {
12366
+ top: 0;
12367
+ }
12368
+
12369
+ .title-wrapper {
12370
+ margin-left: 50px;
12371
+
12372
+ .title {
12373
+ color: @dusk-three;
12374
+ font-size: 16px;
12375
+ font-weight: bold;
12376
+ }
12377
+ }
12378
+
12379
+ .function-configuration {
12380
+ margin: 28px 0 0 0;
12381
+
12382
+ .configuration-form {
12383
+ display: flex;
12384
+
12385
+ .function-name-wrapper {
12386
+ width: 50%;
12387
+ display: flex;
12388
+ padding: 0 24px 0 74px;
12389
+
12390
+ .projects-drop-down {
12391
+ width: 40%;
12392
+ margin-right: 48px;
12393
+
12394
+ .input-label {
12395
+ font-size: 14px;
12396
+ font-weight: 600;
12397
+ color: @dusk-three;
12398
+ }
12399
+
12400
+ igz-default-dropdown {
12401
+ .default-dropdown {
12402
+ background-color: @white;
12403
+
12404
+ .default-dropdown-field {
12405
+ &:focus {
12406
+ background-color: inherit;
12407
+ }
12408
+ }
12409
+ }
12410
+ }
12411
+ }
12412
+
12413
+ .function-name {
12414
+ width: 100%;
12415
+
12416
+ .input-label {
12417
+ font-size: 14px;
12418
+ font-weight: 600;
12419
+ color: @dusk-three;
12420
+ }
12421
+
12422
+ igz-validating-input-field {
12423
+ margin-left: 2px;
12424
+ }
12425
+ }
12426
+ }
12427
+
12428
+ .function-runtime-wrapper {
12429
+ width: 50%;
12430
+ padding-left: 24px;
12431
+ padding-right: 10%;
12432
+
12433
+ .function-runtime {
12434
+ .input-label {
12435
+ font-size: 14px;
12436
+ font-weight: 600;
12437
+ color: @dusk-three;
12438
+ }
12439
+
12440
+ igz-default-dropdown {
12441
+ .default-dropdown {
12442
+ background-color: @white;
12443
+
12444
+ .default-dropdown-field {
12445
+ &:focus {
12446
+ background-color: inherit;
12447
+ }
12448
+ }
12449
+ }
12450
+ }
12451
+
12452
+ .bottom-bar {
12453
+ display: flex;
12454
+ justify-content: flex-end;
12455
+ margin-top: 48px;
12456
+ }
12457
+ }
12458
+ }
12459
+ }
12460
+ }
12461
+ }
12462
+
12463
12463
  .function-import-wrapper-content {
12464
12464
  font-family: @font-family-sans-serif;
12465
12465
  padding-left: 3%;
@@ -13552,102 +13552,6 @@ ncl-navigation-tabs {
13552
13552
  }
13553
13553
  }
13554
13554
 
13555
- @desktop: 1350px;
13556
- @desktop-low: 1202px;
13557
- @desktop-middle: 1550px;
13558
-
13559
- .ncl-version-configuration-basic-settings {
13560
- .row {
13561
- display: flex;
13562
- justify-content: space-between;
13563
-
13564
- &:not(:last-child) {
13565
- margin-bottom: 23px;
13566
- }
13567
-
13568
- &:last-child {
13569
- margin-bottom: 4px;
13570
- }
13571
-
13572
- &.enable-checkbox {
13573
- justify-content: flex-start;
13574
- margin-bottom: 18px;
13575
- }
13576
-
13577
- > div {
13578
- flex: 1;
13579
-
13580
- &:not(:last-child) {
13581
- margin-right: 46px;
13582
- }
13583
-
13584
- .label {
13585
- padding: 0;
13586
- margin-bottom: 5px;
13587
- }
13588
-
13589
- &.timeout-block {
13590
- .label {
13591
- margin-bottom: 3px;
13592
- }
13593
-
13594
- .timeout-values {
13595
- margin-left: 27px;
13596
-
13597
- .inputs {
13598
- display: flex;
13599
- align-items: center;
13600
-
13601
- .values-label {
13602
- .duskThree(0.9);
13603
- margin: 0 17px 0 8px;
13604
- font-size: 14px;
13605
- font-weight: normal;
13606
- font-style: normal;
13607
- letter-spacing: normal;
13608
- text-align: left;
13609
- color: @color;
13610
- }
13611
- }
13612
- }
13613
- }
13614
- }
13615
-
13616
- .logger-block {
13617
- display: flex;
13618
- margin-top: 3px;
13619
-
13620
- .logger-dropdown {
13621
- .default-dropdown {
13622
- position: relative;
13623
- height: 36px;
13624
-
13625
- .dropdown-overlap {
13626
- z-index: 100;
13627
- }
13628
- }
13629
- }
13630
-
13631
- > div {
13632
- flex: 1;
13633
-
13634
- &:not(:last-child) {
13635
- margin-right: 16px;
13636
- }
13637
-
13638
- .label {
13639
- padding: 0;
13640
- margin-bottom: 5px;
13641
- }
13642
-
13643
- &.logger-input {
13644
- flex-grow: 1.95;
13645
- }
13646
- }
13647
- }
13648
- }
13649
- }
13650
-
13651
13555
  .ncl-version-configuration-build {
13652
13556
  &.disabled {
13653
13557
  opacity: .5;
@@ -13887,6 +13791,102 @@ ncl-navigation-tabs {
13887
13791
  }
13888
13792
  }
13889
13793
 
13794
+ @desktop: 1350px;
13795
+ @desktop-low: 1202px;
13796
+ @desktop-middle: 1550px;
13797
+
13798
+ .ncl-version-configuration-basic-settings {
13799
+ .row {
13800
+ display: flex;
13801
+ justify-content: space-between;
13802
+
13803
+ &:not(:last-child) {
13804
+ margin-bottom: 23px;
13805
+ }
13806
+
13807
+ &:last-child {
13808
+ margin-bottom: 4px;
13809
+ }
13810
+
13811
+ &.enable-checkbox {
13812
+ justify-content: flex-start;
13813
+ margin-bottom: 18px;
13814
+ }
13815
+
13816
+ > div {
13817
+ flex: 1;
13818
+
13819
+ &:not(:last-child) {
13820
+ margin-right: 46px;
13821
+ }
13822
+
13823
+ .label {
13824
+ padding: 0;
13825
+ margin-bottom: 5px;
13826
+ }
13827
+
13828
+ &.timeout-block {
13829
+ .label {
13830
+ margin-bottom: 3px;
13831
+ }
13832
+
13833
+ .timeout-values {
13834
+ margin-left: 27px;
13835
+
13836
+ .inputs {
13837
+ display: flex;
13838
+ align-items: center;
13839
+
13840
+ .values-label {
13841
+ .duskThree(0.9);
13842
+ margin: 0 17px 0 8px;
13843
+ font-size: 14px;
13844
+ font-weight: normal;
13845
+ font-style: normal;
13846
+ letter-spacing: normal;
13847
+ text-align: left;
13848
+ color: @color;
13849
+ }
13850
+ }
13851
+ }
13852
+ }
13853
+ }
13854
+
13855
+ .logger-block {
13856
+ display: flex;
13857
+ margin-top: 3px;
13858
+
13859
+ .logger-dropdown {
13860
+ .default-dropdown {
13861
+ position: relative;
13862
+ height: 36px;
13863
+
13864
+ .dropdown-overlap {
13865
+ z-index: 100;
13866
+ }
13867
+ }
13868
+ }
13869
+
13870
+ > div {
13871
+ flex: 1;
13872
+
13873
+ &:not(:last-child) {
13874
+ margin-right: 16px;
13875
+ }
13876
+
13877
+ .label {
13878
+ padding: 0;
13879
+ margin-bottom: 5px;
13880
+ }
13881
+
13882
+ &.logger-input {
13883
+ flex-grow: 1.95;
13884
+ }
13885
+ }
13886
+ }
13887
+ }
13888
+ }
13889
+
13890
13890
  .ncl-version-configuration-logging {
13891
13891
  .row {
13892
13892
  display: flex;
@@ -13955,57 +13955,6 @@ ncl-navigation-tabs {
13955
13955
  }
13956
13956
  }
13957
13957
 
13958
- .ncl-version-configuration-runtime-attributes {
13959
- .row:not(.info-row) {
13960
- display: flex;
13961
- justify-content: space-between;
13962
-
13963
- &:not(:last-child) {
13964
- margin-top: 10px;
13965
- margin-bottom: 25px;
13966
- }
13967
-
13968
- > div {
13969
- flex: 0.65;
13970
-
13971
- &:not(:last-child) {
13972
- margin-right: 16px;
13973
- }
13974
-
13975
- &.arguments-input {
13976
- flex-grow: 2;
13977
- }
13978
- }
13979
- }
13980
-
13981
- .row {
13982
- .runtime {
13983
- height: 36px;
13984
- border-radius: 2px;
13985
- padding: 9px 0 0 14px;
13986
- text-transform: capitalize;
13987
- font-family: @font-family-sans-serif;
13988
- font-size: 14px;
13989
- text-align: left;
13990
- color: @dusk-three;
13991
- }
13992
-
13993
- .textarea-field {
13994
- height: 177px;
13995
- resize: none;
13996
- white-space: pre;
13997
- overflow-x: auto;
13998
- }
13999
- }
14000
-
14001
- .java-attribute {
14002
- .textarea-field {
14003
- height: 70px;
14004
- overflow-y: auto;
14005
- }
14006
- }
14007
- }
14008
-
14009
13958
  .ncl-version-configuration-volumes {
14010
13959
  .ncl-version-volume {
14011
13960
  .common-table-header {
@@ -14070,6 +14019,57 @@ ncl-navigation-tabs {
14070
14019
  }
14071
14020
  }
14072
14021
 
14022
+ .ncl-version-configuration-runtime-attributes {
14023
+ .row:not(.info-row) {
14024
+ display: flex;
14025
+ justify-content: space-between;
14026
+
14027
+ &:not(:last-child) {
14028
+ margin-top: 10px;
14029
+ margin-bottom: 25px;
14030
+ }
14031
+
14032
+ > div {
14033
+ flex: 0.65;
14034
+
14035
+ &:not(:last-child) {
14036
+ margin-right: 16px;
14037
+ }
14038
+
14039
+ &.arguments-input {
14040
+ flex-grow: 2;
14041
+ }
14042
+ }
14043
+ }
14044
+
14045
+ .row {
14046
+ .runtime {
14047
+ height: 36px;
14048
+ border-radius: 2px;
14049
+ padding: 9px 0 0 14px;
14050
+ text-transform: capitalize;
14051
+ font-family: @font-family-sans-serif;
14052
+ font-size: 14px;
14053
+ text-align: left;
14054
+ color: @dusk-three;
14055
+ }
14056
+
14057
+ .textarea-field {
14058
+ height: 177px;
14059
+ resize: none;
14060
+ white-space: pre;
14061
+ overflow-x: auto;
14062
+ }
14063
+ }
14064
+
14065
+ .java-attribute {
14066
+ .textarea-field {
14067
+ height: 70px;
14068
+ overflow-y: auto;
14069
+ }
14070
+ }
14071
+ }
14072
+
14073
14073
  .version-configuration-build-dialog-wrapper {
14074
14074
  font-family: Roboto;
14075
14075