iguazio.dashboard-controls 0.37.11 → 0.37.12-patch1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,9 @@
1
+ .common-table-cell {
2
+ &.status {
3
+ min-width: 95px;
4
+ }
5
+ }
6
+
1
7
  //
2
8
  // Common styles for buttons
3
9
  //
@@ -3577,12 +3583,6 @@ html input[disabled], html textarea[disabled] {
3577
3583
 
3578
3584
  // Media Query
3579
3585
  @retina-display: ~"only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx)";
3580
- .common-table-cell {
3581
- &.status {
3582
- min-width: 95px;
3583
- }
3584
- }
3585
-
3586
3586
  ncl-functions {
3587
3587
  igz-info-page-actions-bar {
3588
3588
  .igz-info-page-actions-bar {
@@ -3628,149 +3628,6 @@ ncl-functions {
3628
3628
  }
3629
3629
  }
3630
3630
 
3631
- /**
3632
- UI.Layout CSS
3633
- *************************************/
3634
- .stretch {
3635
- position: absolute;
3636
- top: 0;
3637
- left: 0;
3638
- right: 0;
3639
- bottom: 0;
3640
- /* Can be changed by hand ;)*/
3641
- overflow: auto;
3642
- }
3643
-
3644
- .animate-row, .animate-column {
3645
- -webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3646
- -moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3647
- -ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3648
- -o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3649
- transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3650
- }
3651
-
3652
- .ui-splitbar {
3653
- display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
3654
- display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
3655
- display: -ms-flexbox; /* TWEENER - IE 10 */
3656
- display: -webkit-flex; /* NEW - Chrome */
3657
- display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
3658
- -webkit-justify-content: center;
3659
- justify-content: center;
3660
-
3661
- background-color: #ffffff;
3662
- right: auto;
3663
- position: absolute;
3664
- z-index: 1;
3665
- }
3666
-
3667
- .ui-layout-row > .ui-splitbar {
3668
- height: 8px;
3669
- width: 100%;
3670
- cursor: row-resize;
3671
- text-align: center;
3672
- justify-content: center;
3673
- align-items: center;
3674
- background: linear-gradient(to bottom, #fff 0%, #eee 100%);
3675
- overflow-y: hidden;
3676
- }
3677
-
3678
- .ui-layout-column > .ui-splitbar {
3679
- width: 8px;
3680
- height: 100%;
3681
- cursor: col-resize;
3682
- -webkit-flex-direction: column;
3683
- flex-direction: column;
3684
- background: linear-gradient(to right, #fff 0%, #eee 100%);
3685
- overflow-x: hidden;
3686
- }
3687
-
3688
- .ui-layout-column > .ui-splitbar > a,
3689
- .ui-layout-row > .ui-splitbar > a {
3690
- cursor: pointer;
3691
- text-align: center;
3692
- font-size: 16px;
3693
- color: #aaa;
3694
- }
3695
-
3696
- .ui-layout-column > .ui-splitbar > a:nth-child(2) {
3697
- margin-top: 0.35rem;
3698
- }
3699
-
3700
- .ui-layout-row > .ui-splitbar > a:nth-child(2) {
3701
- margin-left: 0.35rem;
3702
- }
3703
-
3704
-
3705
- /**
3706
- * Icons
3707
- **/
3708
-
3709
- .ui-splitbar-icon {
3710
- width: 0;
3711
- height: 0;
3712
- display: inline-block;
3713
- }
3714
-
3715
- .ui-splitbar-icon-up {
3716
- border-left: 0.45em solid transparent;
3717
- border-right: 0.45em solid transparent;
3718
- border-bottom: 0.45em solid;
3719
- }
3720
-
3721
- .ui-splitbar-icon-down {
3722
- border-left: 0.45em solid transparent;
3723
- border-right: 0.45em solid transparent;
3724
- border-top: 0.45em solid;
3725
- margin-right: 0.45em;
3726
- }
3727
-
3728
- .ui-splitbar-icon-right {
3729
- border-top: 0.45em solid transparent;
3730
- border-bottom: 0.45em solid transparent;
3731
- border-left: 0.45em solid;
3732
-
3733
- }
3734
-
3735
- .ui-splitbar-icon-left {
3736
- border-top: 0.45em solid transparent;
3737
- border-bottom: 0.45em solid transparent;
3738
- border-right: 0.45em solid;
3739
- margin-top: 0.45em;
3740
- }
3741
-
3742
- /* Allow disabling of icons */
3743
- .no-toggle .ui-splitbar-icon {
3744
- display: none;
3745
- }
3746
-
3747
- @media only screen and (max-device-width: 480px) {
3748
- .no-mobile-toggle .ui-splitbar-icon {
3749
- display: none;
3750
- }
3751
- }
3752
-
3753
- @media print {
3754
- .ui-splitbar {
3755
- display: none;
3756
- }
3757
-
3758
- .stretch {
3759
- position: relative;
3760
- }
3761
-
3762
- /* The last item can take up any amount of space. */
3763
- .stretch.ui-layout-container:last-child {
3764
- position: static;
3765
- overflow: visible;
3766
- }
3767
- }
3768
-
3769
- /* Make sure hidden elements are in fact not rendered. */
3770
- .ui-layout-hidden {
3771
- display: none;
3772
- }
3773
-
3774
3631
  /*
3775
3632
  == malihu jquery custom scrollbar plugin ==
3776
3633
  Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
@@ -5493,56 +5350,182 @@ yx-axis
5493
5350
 
5494
5351
  /* ---------------------------------------- */
5495
5352
 
5496
- .action-checkbox {
5497
- .action-checkbox-color-set();
5353
+ /**
5354
+ UI.Layout CSS
5355
+ *************************************/
5356
+ .stretch {
5357
+ position: absolute;
5358
+ top: 0;
5359
+ left: 0;
5360
+ right: 0;
5361
+ bottom: 0;
5362
+ /* Can be changed by hand ;)*/
5363
+ overflow: auto;
5364
+ }
5498
5365
 
5499
- line-height: 16px;
5500
- text-align: center;
5366
+ .animate-row, .animate-column {
5367
+ -webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5368
+ -moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5369
+ -ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5370
+ -o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5371
+ transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5372
+ }
5501
5373
 
5502
- .check-item {
5503
- font-size: 16px;
5504
- cursor: pointer;
5505
- line-height: 1;
5506
- vertical-align: middle;
5374
+ .ui-splitbar {
5375
+ display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
5376
+ display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
5377
+ display: -ms-flexbox; /* TWEENER - IE 10 */
5378
+ display: -webkit-flex; /* NEW - Chrome */
5379
+ display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
5380
+ -webkit-justify-content: center;
5381
+ justify-content: center;
5507
5382
 
5508
- &.igz-icon-checkbox-unchecked {
5509
- color: @icon-checkbox-unchecked;
5510
- }
5383
+ background-color: #ffffff;
5384
+ right: auto;
5385
+ position: absolute;
5386
+ z-index: 1;
5387
+ }
5511
5388
 
5512
- &.igz-icon-checkbox-checked {
5513
- color: @icon-checkbox-checked;
5514
- }
5515
- }
5389
+ .ui-layout-row > .ui-splitbar {
5390
+ height: 8px;
5391
+ width: 100%;
5392
+ cursor: row-resize;
5393
+ text-align: center;
5394
+ justify-content: center;
5395
+ align-items: center;
5396
+ background: linear-gradient(to bottom, #fff 0%, #eee 100%);
5397
+ overflow-y: hidden;
5516
5398
  }
5517
- .action-checkbox-all {
5518
- .action-checkbox-all-color-set();
5519
5399
 
5520
- text-align: center;
5400
+ .ui-layout-column > .ui-splitbar {
5401
+ width: 8px;
5402
+ height: 100%;
5403
+ cursor: col-resize;
5404
+ -webkit-flex-direction: column;
5405
+ flex-direction: column;
5406
+ background: linear-gradient(to right, #fff 0%, #eee 100%);
5407
+ overflow-x: hidden;
5408
+ }
5521
5409
 
5522
- .check-item {
5523
- cursor: pointer;
5524
- color: @check-item-color;
5525
- font-size: 16px;
5526
- line-height: 1;
5527
- vertical-align: middle;
5410
+ .ui-layout-column > .ui-splitbar > a,
5411
+ .ui-layout-row > .ui-splitbar > a {
5412
+ cursor: pointer;
5413
+ text-align: center;
5414
+ font-size: 16px;
5415
+ color: #aaa;
5416
+ }
5528
5417
 
5529
- &.igz-icon-checkbox-checked {
5530
- color: @check-item-icon-checkbox-checked-color;
5531
- }
5532
- }
5418
+ .ui-layout-column > .ui-splitbar > a:nth-child(2) {
5419
+ margin-top: 0.35rem;
5533
5420
  }
5534
- .igz-action-menu {
5535
- .action-menu-color-set();
5536
- .action-icon-color-set();
5537
5421
 
5538
- opacity: 1;
5539
- position: relative;
5422
+ .ui-layout-row > .ui-splitbar > a:nth-child(2) {
5423
+ margin-left: 0.35rem;
5424
+ }
5540
5425
 
5541
- .menu-button {
5542
- color: @menu-btn-color;
5543
- cursor: pointer;
5544
- font-size: 18px;
5545
- height: 19px;
5426
+
5427
+ /**
5428
+ * Icons
5429
+ **/
5430
+
5431
+ .ui-splitbar-icon {
5432
+ width: 0;
5433
+ height: 0;
5434
+ display: inline-block;
5435
+ }
5436
+
5437
+ .ui-splitbar-icon-up {
5438
+ border-left: 0.45em solid transparent;
5439
+ border-right: 0.45em solid transparent;
5440
+ border-bottom: 0.45em solid;
5441
+ }
5442
+
5443
+ .ui-splitbar-icon-down {
5444
+ border-left: 0.45em solid transparent;
5445
+ border-right: 0.45em solid transparent;
5446
+ border-top: 0.45em solid;
5447
+ margin-right: 0.45em;
5448
+ }
5449
+
5450
+ .ui-splitbar-icon-right {
5451
+ border-top: 0.45em solid transparent;
5452
+ border-bottom: 0.45em solid transparent;
5453
+ border-left: 0.45em solid;
5454
+
5455
+ }
5456
+
5457
+ .ui-splitbar-icon-left {
5458
+ border-top: 0.45em solid transparent;
5459
+ border-bottom: 0.45em solid transparent;
5460
+ border-right: 0.45em solid;
5461
+ margin-top: 0.45em;
5462
+ }
5463
+
5464
+ /* Allow disabling of icons */
5465
+ .no-toggle .ui-splitbar-icon {
5466
+ display: none;
5467
+ }
5468
+
5469
+ @media only screen and (max-device-width: 480px) {
5470
+ .no-mobile-toggle .ui-splitbar-icon {
5471
+ display: none;
5472
+ }
5473
+ }
5474
+
5475
+ @media print {
5476
+ .ui-splitbar {
5477
+ display: none;
5478
+ }
5479
+
5480
+ .stretch {
5481
+ position: relative;
5482
+ }
5483
+
5484
+ /* The last item can take up any amount of space. */
5485
+ .stretch.ui-layout-container:last-child {
5486
+ position: static;
5487
+ overflow: visible;
5488
+ }
5489
+ }
5490
+
5491
+ /* Make sure hidden elements are in fact not rendered. */
5492
+ .ui-layout-hidden {
5493
+ display: none;
5494
+ }
5495
+
5496
+ .action-checkbox {
5497
+ .action-checkbox-color-set();
5498
+
5499
+ line-height: 16px;
5500
+ text-align: center;
5501
+
5502
+ .check-item {
5503
+ font-size: 16px;
5504
+ cursor: pointer;
5505
+ line-height: 1;
5506
+ vertical-align: middle;
5507
+
5508
+ &.igz-icon-checkbox-unchecked {
5509
+ color: @icon-checkbox-unchecked;
5510
+ }
5511
+
5512
+ &.igz-icon-checkbox-checked {
5513
+ color: @icon-checkbox-checked;
5514
+ }
5515
+ }
5516
+ }
5517
+ .igz-action-menu {
5518
+ .action-menu-color-set();
5519
+ .action-icon-color-set();
5520
+
5521
+ opacity: 1;
5522
+ position: relative;
5523
+
5524
+ .menu-button {
5525
+ color: @menu-btn-color;
5526
+ cursor: pointer;
5527
+ font-size: 18px;
5528
+ height: 19px;
5546
5529
  text-align: center;
5547
5530
  transition: @igz-basic-transition-color;
5548
5531
  width: 30px;
@@ -5689,6 +5672,23 @@ yx-axis
5689
5672
  }
5690
5673
  }
5691
5674
 
5675
+ .action-checkbox-all {
5676
+ .action-checkbox-all-color-set();
5677
+
5678
+ text-align: center;
5679
+
5680
+ .check-item {
5681
+ cursor: pointer;
5682
+ color: @check-item-color;
5683
+ font-size: 16px;
5684
+ line-height: 1;
5685
+ vertical-align: middle;
5686
+
5687
+ &.igz-icon-checkbox-checked {
5688
+ color: @check-item-icon-checkbox-checked-color;
5689
+ }
5690
+ }
5691
+ }
5692
5692
  .igz-action-panel {
5693
5693
  .action-panel-color-set();
5694
5694
  .action-icon-color-set();
@@ -6855,45 +6855,6 @@ yx-axis
6855
6855
  }
6856
6856
  }
6857
6857
 
6858
- .igz-navigation-tabs {
6859
- .navigation-tabs-color-set();
6860
-
6861
- background-color: @navigation-tabs-bg-color;
6862
- height: 56px;
6863
- padding-top: 7px;
6864
-
6865
- .navigation-tab {
6866
- float: left;
6867
- height: 32px;
6868
- padding: 15px 24px 0;
6869
- font-family: @font-family-sans-serif;
6870
- color: @navigation-tab-color;
6871
- font-size: 14px;
6872
- text-align: center;
6873
- cursor: pointer;
6874
- border-bottom: @navigation-tab-border-bottom;
6875
- box-sizing: content-box;
6876
-
6877
- &.active, &.active:hover {
6878
- background-color: @navigation-tab-active-hover-bg-color;
6879
- color: @navigation-tab-active-hover-color;
6880
- border-bottom: @navigation-tab-active-hover-border-bottom;
6881
- }
6882
-
6883
- &:hover {
6884
- background-color: @navigation-tab-hover-bg-color;
6885
- }
6886
-
6887
- &.active {
6888
- background-color: @navigation-tab-active-bg-color;
6889
- }
6890
-
6891
- @media screen and (max-width: 940px) {
6892
- padding: 15px 12px 0;
6893
- }
6894
- }
6895
- }
6896
-
6897
6858
  .igz-number-input {
6898
6859
  .number-input-color-set();
6899
6860
 
@@ -7047,6 +7008,45 @@ yx-axis
7047
7008
  }
7048
7009
  }
7049
7010
 
7011
+ .igz-navigation-tabs {
7012
+ .navigation-tabs-color-set();
7013
+
7014
+ background-color: @navigation-tabs-bg-color;
7015
+ height: 56px;
7016
+ padding-top: 7px;
7017
+
7018
+ .navigation-tab {
7019
+ float: left;
7020
+ height: 32px;
7021
+ padding: 15px 24px 0;
7022
+ font-family: @font-family-sans-serif;
7023
+ color: @navigation-tab-color;
7024
+ font-size: 14px;
7025
+ text-align: center;
7026
+ cursor: pointer;
7027
+ border-bottom: @navigation-tab-border-bottom;
7028
+ box-sizing: content-box;
7029
+
7030
+ &.active, &.active:hover {
7031
+ background-color: @navigation-tab-active-hover-bg-color;
7032
+ color: @navigation-tab-active-hover-color;
7033
+ border-bottom: @navigation-tab-active-hover-border-bottom;
7034
+ }
7035
+
7036
+ &:hover {
7037
+ background-color: @navigation-tab-hover-bg-color;
7038
+ }
7039
+
7040
+ &.active {
7041
+ background-color: @navigation-tab-active-bg-color;
7042
+ }
7043
+
7044
+ @media screen and (max-width: 940px) {
7045
+ padding: 15px 12px 0;
7046
+ }
7047
+ }
7048
+ }
7049
+
7050
7050
  .igz-pagination {
7051
7051
  .pagination-color-set();
7052
7052
 
@@ -7324,45 +7324,135 @@ yx-axis
7324
7324
  }
7325
7325
  }
7326
7326
 
7327
- .search-input {
7328
- .search-input-color-set();
7327
+ .igz-size {
7328
+ .size-color-set();
7329
7329
 
7330
- position: relative;
7331
- color: @search-input-color;
7330
+ align-items: center;
7331
+ display: flex;
7332
+ justify-content: space-between;
7332
7333
 
7333
- .container-search-input {
7334
- background-color: @search-input-bg-color;
7335
- border: 0;
7336
- font-family: @font-family-sans-serif;
7337
- font-size: 15px;
7338
- font-weight: 400;
7339
- height: 52px;
7340
- line-height: 52px;
7341
- margin: 0;
7342
- outline: 0;
7343
- padding-right: 20px;
7344
- width: 100%;
7334
+ &:after {
7335
+ content: ' ';
7336
+ display: inline-block;
7337
+ vertical-align: middle;
7338
+ }
7345
7339
 
7346
- &::-webkit-input-placeholder {
7347
- color: @search-input-placeholder-color;
7340
+ .size-value {
7341
+ line-height: 1;
7342
+ flex: 0 0 100px;
7343
+ min-width: 100px;
7344
+
7345
+ > span {
7346
+ line-height: 25px;
7348
7347
  }
7349
7348
 
7350
- &:-moz-placeholder { /* Firefox 18- */
7351
- color: @search-input-placeholder-color;
7349
+ &.short {
7350
+ flex: 0 0 75px;
7351
+ min-width: 75px;
7352
7352
  }
7353
7353
 
7354
- &::-moz-placeholder { /* Firefox 19+ */
7355
- color: @search-input-placeholder-color;
7354
+ &.shorten {
7355
+ flex: 0 0 60px;
7356
+ min-width: 60px;
7356
7357
  }
7357
7358
 
7358
- &:-ms-input-placeholder {
7359
- color: @search-input-placeholder-color;
7359
+ &.shortest {
7360
+ flex: 0 0 40px;
7361
+ min-width: 40px;
7360
7362
  }
7363
+ }
7361
7364
 
7362
- &:focus {
7363
- &, & + .igz-icon-search:before {
7364
- color: @search-input-focus-icon-search-before-color;
7365
- }
7365
+ .size-reserved {
7366
+ color: @size-reserved-color;
7367
+ font-size: 12px;
7368
+
7369
+ .icon-font-arrow-right:before {
7370
+ color: @size-reserved-arrow-right-before-color;
7371
+ font-size: 10px;
7372
+ padding: 0 4px 0 4px;
7373
+ }
7374
+
7375
+ .icon-font-infinity:before {
7376
+ color: @size-reserved-infinity-before-color;
7377
+ font-size: 10px;
7378
+ }
7379
+ }
7380
+
7381
+ .size-chart {
7382
+ flex: 1 1 auto;
7383
+ min-width: 0;
7384
+
7385
+ div.highcharts-tooltip {
7386
+ position: fixed !important;
7387
+
7388
+ .igz-tooltip-wrapper {
7389
+ color: @size-chart-tooltip-wrapper-color;
7390
+
7391
+ &.used-capacity-tooltip-wrapper {
7392
+ .igz-row {
7393
+ .tooltip-label,
7394
+ .tooltip-value {
7395
+ text-overflow: unset;
7396
+ }
7397
+ }
7398
+ }
7399
+
7400
+ .tooltip-header {
7401
+ padding-bottom: 6px;
7402
+ margin-bottom: 5px;
7403
+ line-height: 1.1;
7404
+ text-align: center;
7405
+ }
7406
+ }
7407
+ }
7408
+ }
7409
+
7410
+ .igz-highcharts-wrapper {
7411
+ height: 40px;
7412
+ position: relative;
7413
+ width: 100%;
7414
+ }
7415
+ }
7416
+
7417
+ .search-input {
7418
+ .search-input-color-set();
7419
+
7420
+ position: relative;
7421
+ color: @search-input-color;
7422
+
7423
+ .container-search-input {
7424
+ background-color: @search-input-bg-color;
7425
+ border: 0;
7426
+ font-family: @font-family-sans-serif;
7427
+ font-size: 15px;
7428
+ font-weight: 400;
7429
+ height: 52px;
7430
+ line-height: 52px;
7431
+ margin: 0;
7432
+ outline: 0;
7433
+ padding-right: 20px;
7434
+ width: 100%;
7435
+
7436
+ &::-webkit-input-placeholder {
7437
+ color: @search-input-placeholder-color;
7438
+ }
7439
+
7440
+ &:-moz-placeholder { /* Firefox 18- */
7441
+ color: @search-input-placeholder-color;
7442
+ }
7443
+
7444
+ &::-moz-placeholder { /* Firefox 19+ */
7445
+ color: @search-input-placeholder-color;
7446
+ }
7447
+
7448
+ &:-ms-input-placeholder {
7449
+ color: @search-input-placeholder-color;
7450
+ }
7451
+
7452
+ &:focus {
7453
+ &, & + .igz-icon-search:before {
7454
+ color: @search-input-focus-icon-search-before-color;
7455
+ }
7366
7456
 
7367
7457
  &::-webkit-input-placeholder {
7368
7458
  color: @search-input-focus-placeholder-color;
@@ -7511,96 +7601,113 @@ yx-axis
7511
7601
  }
7512
7602
  }
7513
7603
  }
7514
- .igz-size {
7515
- .size-color-set();
7604
+ .splash-screen {
7605
+ .splash-screen-color-set();
7516
7606
 
7517
- align-items: center;
7518
- display: flex;
7519
- justify-content: space-between;
7607
+ position: absolute;
7608
+ z-index: 996;
7609
+ width: 100%;
7610
+ height: 100%;
7611
+ background-color: @splash-screen-bg-color;
7612
+ transform-style: preserve-3d;
7520
7613
 
7521
- &:after {
7522
- content: ' ';
7523
- display: inline-block;
7524
- vertical-align: middle;
7525
- }
7614
+ // ngAnimate appearance for show/hide
7615
+ transition: opacity linear .25s 0s;
7526
7616
 
7527
- .size-value {
7528
- line-height: 1;
7529
- flex: 0 0 100px;
7530
- min-width: 100px;
7617
+ &.ng-hide-remove {
7618
+ opacity: 0;
7619
+ }
7531
7620
 
7532
- > span {
7533
- line-height: 25px;
7534
- }
7621
+ .loading-splash-screen {
7622
+ position: absolute;
7623
+ top: 50%;
7624
+ left: 50%;
7625
+ transform: translate(-50%, -50%);
7626
+ color: @loading-splash-screen-color;
7627
+ font-size: 20px;
7628
+ text-align: center;
7629
+ font-weight: 500;
7630
+ width: 217px;
7631
+ border-radius: 6px;
7632
+ background-image: @loading-splash-screen-bg-image;
7633
+ padding: 49px 0;
7535
7634
 
7536
- &.short {
7537
- flex: 0 0 75px;
7538
- min-width: 75px;
7539
- }
7635
+ .splash-logo-wrapper {
7636
+ position: relative;
7637
+ text-align: center;
7540
7638
 
7541
- &.shorten {
7542
- flex: 0 0 60px;
7543
- min-width: 60px;
7639
+ .loader-fading-circle {
7640
+ width: 60px;
7641
+ height: 60px;
7642
+ }
7544
7643
  }
7545
7644
 
7546
- &.shortest {
7547
- flex: 0 0 40px;
7548
- min-width: 40px;
7645
+ .loading-text {
7646
+ padding: 31px 0 0 12px;
7647
+ font-family: @font-family-sans-serif;
7648
+ font-size: 20px;
7649
+ color: @loading-splash-screen-text-color;
7549
7650
  }
7550
7651
  }
7551
7652
 
7552
- .size-reserved {
7553
- color: @size-reserved-color;
7554
- font-size: 12px;
7653
+ .alert-splash-screen {
7654
+ position: absolute;
7655
+ top: 50%;
7656
+ left: 50%;
7657
+ transform: translate(-50%, -50%);
7658
+ color: @alert-splash-screen-color;
7659
+ font-size: 20px;
7660
+ font-weight: 500;
7661
+ width: 504px;
7662
+ border-radius: 6px;
7663
+ background-image: @alert-splash-screen-bg-image;
7664
+ box-shadow: none;
7665
+ padding: 0 0 49px;
7555
7666
 
7556
- .icon-font-arrow-right:before {
7557
- color: @size-reserved-arrow-right-before-color;
7558
- font-size: 10px;
7559
- padding: 0 4px 0 4px;
7667
+ .header {
7668
+ background: url('/assets/images/oops.png') no-repeat center;
7669
+ margin: 47px 0 24px;
7670
+ height: 59px;
7671
+ background-size: contain;
7560
7672
  }
7561
7673
 
7562
- .icon-font-infinity:before {
7563
- color: @size-reserved-infinity-before-color;
7564
- font-size: 10px;
7674
+ .notification-text {
7675
+ color: @alert-splash-screen-notification-text-color;
7676
+ padding: 0 60px;
7677
+ text-align: center;
7678
+ margin: 0 0 36px;
7679
+ line-height: 1.5;
7565
7680
  }
7566
- }
7567
-
7568
- .size-chart {
7569
- flex: 1 1 auto;
7570
- min-width: 0;
7571
7681
 
7572
- div.highcharts-tooltip {
7573
- position: fixed !important;
7682
+ .buttons {
7683
+ text-align: center;
7684
+ height: 36px;
7574
7685
 
7575
- .igz-tooltip-wrapper {
7576
- color: @size-chart-tooltip-wrapper-color;
7686
+ .refresh-button {
7687
+ margin: 0 auto;
7688
+ padding-top: 8px;
7689
+ height: 36px;
7690
+ width: 124px;
7691
+ font-size: 12px;
7692
+ border-radius: 2px;
7693
+ background-color: @alert-splash-screen-refresh-btn-bg-color;
7694
+ border: @alert-splash-screen-refresh-btn-border;
7695
+ text-transform: uppercase;
7577
7696
 
7578
- &.used-capacity-tooltip-wrapper {
7579
- .igz-row {
7580
- .tooltip-label,
7581
- .tooltip-value {
7582
- text-overflow: unset;
7583
- }
7584
- }
7697
+ &:hover {
7698
+ background-color: @alert-splash-screen-refresh-btn-hover-bg-color;
7699
+ box-shadow: @alert-splash-screen-refresh-btn-hover-box-shadow;
7585
7700
  }
7586
7701
 
7587
- .tooltip-header {
7588
- padding-bottom: 6px;
7589
- margin-bottom: 5px;
7590
- line-height: 1.1;
7591
- text-align: center;
7702
+ .igz-icon-refresh {
7703
+ font-size: 16px;
7704
+ margin-right: 8px;
7705
+ vertical-align: middle;
7592
7706
  }
7593
7707
  }
7594
7708
  }
7595
7709
  }
7596
-
7597
- .igz-highcharts-wrapper {
7598
- height: 40px;
7599
- position: relative;
7600
- width: 100%;
7601
- }
7602
7710
  }
7603
-
7604
7711
  .ngdialog.text-edit {
7605
7712
  .text-edit-color-set();
7606
7713
 
@@ -7738,123 +7845,16 @@ yx-axis
7738
7845
  }
7739
7846
  }
7740
7847
 
7741
- .splash-screen {
7742
- .splash-screen-color-set();
7743
-
7744
- position: absolute;
7745
- z-index: 996;
7746
- width: 100%;
7747
- height: 100%;
7748
- background-color: @splash-screen-bg-color;
7749
- transform-style: preserve-3d;
7848
+ .validating-input-field {
7849
+ .validating-input-field-color-set();
7750
7850
 
7751
- // ngAnimate appearance for show/hide
7752
- transition: opacity linear .25s 0s;
7753
-
7754
- &.ng-hide-remove {
7755
- opacity: 0;
7756
- }
7757
-
7758
- .loading-splash-screen {
7759
- position: absolute;
7760
- top: 50%;
7761
- left: 50%;
7762
- transform: translate(-50%, -50%);
7763
- color: @loading-splash-screen-color;
7764
- font-size: 20px;
7765
- text-align: center;
7766
- font-weight: 500;
7767
- width: 217px;
7768
- border-radius: 6px;
7769
- background-image: @loading-splash-screen-bg-image;
7770
- padding: 49px 0;
7771
-
7772
- .splash-logo-wrapper {
7773
- position: relative;
7774
- text-align: center;
7775
-
7776
- .loader-fading-circle {
7777
- width: 60px;
7778
- height: 60px;
7779
- }
7780
- }
7781
-
7782
- .loading-text {
7783
- padding: 31px 0 0 12px;
7784
- font-family: @font-family-sans-serif;
7785
- font-size: 20px;
7786
- color: @loading-splash-screen-text-color;
7787
- }
7788
- }
7789
-
7790
- .alert-splash-screen {
7791
- position: absolute;
7792
- top: 50%;
7793
- left: 50%;
7794
- transform: translate(-50%, -50%);
7795
- color: @alert-splash-screen-color;
7796
- font-size: 20px;
7797
- font-weight: 500;
7798
- width: 504px;
7799
- border-radius: 6px;
7800
- background-image: @alert-splash-screen-bg-image;
7801
- box-shadow: none;
7802
- padding: 0 0 49px;
7803
-
7804
- .header {
7805
- background: url('/assets/images/oops.png') no-repeat center;
7806
- margin: 47px 0 24px;
7807
- height: 59px;
7808
- background-size: contain;
7809
- }
7810
-
7811
- .notification-text {
7812
- color: @alert-splash-screen-notification-text-color;
7813
- padding: 0 60px;
7814
- text-align: center;
7815
- margin: 0 0 36px;
7816
- line-height: 1.5;
7817
- }
7818
-
7819
- .buttons {
7820
- text-align: center;
7821
- height: 36px;
7822
-
7823
- .refresh-button {
7824
- margin: 0 auto;
7825
- padding-top: 8px;
7826
- height: 36px;
7827
- width: 124px;
7828
- font-size: 12px;
7829
- border-radius: 2px;
7830
- background-color: @alert-splash-screen-refresh-btn-bg-color;
7831
- border: @alert-splash-screen-refresh-btn-border;
7832
- text-transform: uppercase;
7833
-
7834
- &:hover {
7835
- background-color: @alert-splash-screen-refresh-btn-hover-bg-color;
7836
- box-shadow: @alert-splash-screen-refresh-btn-hover-box-shadow;
7837
- }
7838
-
7839
- .igz-icon-refresh {
7840
- font-size: 16px;
7841
- margin-right: 8px;
7842
- vertical-align: middle;
7843
- }
7844
- }
7845
- }
7846
- }
7847
- }
7848
- .validating-input-field {
7849
- .validating-input-field-color-set();
7850
-
7851
- background-color: @validating-input-field-bg-color;
7852
- font-family: @font-family-sans-serif;
7853
- font-size: 13px;
7854
- font-weight: 400;
7855
- min-height: 32px;
7856
- line-height: 32px;
7857
- position: relative;
7851
+ background-color: @validating-input-field-bg-color;
7852
+ font-family: @font-family-sans-serif;
7853
+ font-size: 13px;
7854
+ font-weight: 400;
7855
+ min-height: 32px;
7856
+ line-height: 32px;
7857
+ position: relative;
7858
7858
 
7859
7859
  .input-icon {
7860
7860
  position: absolute;
@@ -8175,609 +8175,609 @@ form.ng-submitted .validating-input-field {
8175
8175
  }
8176
8176
  }
8177
8177
 
8178
- .igz-info-page-actions-bar {
8179
- .actions-buttons-block {
8180
- margin-top: 3px;
8181
- margin-right: 17px;
8182
- }
8183
- }
8184
- .ncl-primary-button {
8185
- margin-left: 9px;
8186
- }
8178
+ .ncl-api-gateway-row {
8179
+ .common-table-cells-container {
8180
+ .common-table-cell {
8181
+ &.status {
8182
+ text-transform: capitalize;
8187
8183
 
8188
- .ncl-secondary-button {
8189
- vertical-align: top;
8190
- position: relative;
8191
- }
8184
+ &.ready {
8185
+ color: @tealish;
8186
+ }
8192
8187
 
8193
- .btn-close {
8194
- color: .duskThree(0.64)[@color];
8195
- right: 0;
8196
- position: absolute;
8197
- margin-top: 6px;
8198
- margin-right: 24px;
8199
- font-size: 14px;
8200
- line-height: 14px;
8201
- z-index: 11;
8188
+ // just in case - for now these statuses will not be shown because there will be a loader
8189
+ &.provisioning, &.waitingForProvisioning {
8190
+ color: @pale-orange;
8191
+ }
8202
8192
 
8203
- &:hover {
8204
- color: .duskThree(1)[@color];
8193
+ &.error {
8194
+ color: @darkish-pink;
8195
+ }
8196
+ }
8197
+ }
8205
8198
  }
8206
- }
8207
8199
 
8208
- .ncl-new-entity-button {
8209
- display: inline-block;
8210
- vertical-align: top;
8211
- position: relative;
8212
- margin-left: 15px;
8213
- }
8200
+ .actions-menu {
8201
+ visibility: hidden;
8202
+ }
8214
8203
 
8215
- .ngdialog {
8216
- z-index: 10000;
8204
+ &.common-table-row {
8205
+ &:hover {
8206
+ .actions-menu {
8207
+ visibility: visible;
8208
+ }
8209
+ }
8210
+ }
8217
8211
  }
8218
8212
 
8219
- .ngdialog-theme-nuclio {
8220
- @animation-duration: 0.2s;
8221
- @animation-function: ease;
8222
- display: flex;
8223
- height: 100%;
8224
- padding: 0 50px;
8225
- min-width: 500px;
8226
- align-items: center;
8227
- justify-content: center;
8213
+ .new-api-gateway-wizard {
8214
+ .new-api-gateway-wizard-color-set();
8228
8215
 
8229
- .ngdialog-content {
8230
- box-shadow: 0 10px 20px 0 .black(0.25)[@color];
8231
- animation-duration: @animation-duration;
8232
- animation-timing-function: @animation-function;
8233
- font-family: @font-family-sans-serif;
8234
- font-size: 16px;
8235
- border-radius: 2px;
8236
- max-width: 900px;
8237
- background-color: @white;
8238
- z-index: 5;
8239
- position: relative;
8240
- padding: 19px 24px 23px 24px;
8216
+ .content-wrapper {
8217
+ .content {
8218
+ .toast-status-panel {
8219
+ max-width: 90vw;
8220
+ margin: 16px auto 20px;
8221
+ }
8241
8222
 
8242
- /*
8243
- * Confirms, alerts
8244
- */
8245
- .notification-text {
8246
- margin: 30px 30px 0 0;
8247
- max-height: 70vh;
8248
- overflow: auto;
8223
+ .api-gateway-form {
8224
+ .content-body {
8225
+ margin: 0 auto;
8226
+ height: 400px;
8227
+ display: flex;
8228
+ flex-flow: row nowrap;
8229
+ justify-content: center;
8230
+ align-items: center;
8249
8231
 
8250
- .error-list {
8251
- list-style-type: none;
8232
+ .api-gateway-block {
8233
+ flex: none;
8234
+ position: relative;
8235
+ max-width: 320px;
8236
+ padding: 16px 24px;
8237
+ border: @api-gateway-block-border;
8238
+ border-radius: 2px;
8239
+ background-color: @api-gateway-block-bg-color;
8240
+ box-shadow: 0 3px 4px rgba(0, 0, 0, 0.18);
8241
+ transition: box-shadow .3s ease-in-out 0s;
8252
8242
 
8253
- .error-list-item {
8254
- margin-bottom: 5px;
8255
- }
8256
- }
8257
- }
8243
+ // important for not waiting to animation to finish when removing/promoting canary function
8244
+ // (`ng-leave` and `ng-leave-active` are assigned by the `ng-if` directive when its scope
8245
+ // expression evaluates to a falsy value) see https://docs.angularjs.org/api/ng/directive/ngIf
8246
+ &.ng-leave.ng-leave-active {
8247
+ transition: none 0s 0s;
8248
+ }
8258
8249
 
8259
- .notification-text.description {
8260
- margin: 10px 30px;
8261
- }
8250
+ &:hover, &:focus-within {
8251
+ box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
8252
+ }
8262
8253
 
8263
- .buttons {
8264
- text-align: right;
8254
+ .block-title {
8255
+ text-align: center;
8256
+ font-weight: bold;
8257
+ font-size: 16px;
8258
+ color: @api-gateway-block-title-font-color;
8259
+ margin-bottom: 16px;
8260
+ }
8261
+ }
8265
8262
 
8266
- button:not(:first-child) {
8267
- margin-left: 8px;
8268
- }
8269
- }
8263
+ .connector, .connector-split {
8264
+ flex: 1 1 0;
8265
+ border-top: 1px solid @connector-line-stroke-color;
8266
+ }
8270
8267
 
8271
- /*
8272
- * Create/edit dialogs
8273
- */
8274
- .close-button {
8275
- position: absolute;
8276
- right: 24px;
8277
- top: 26px;
8278
- line-height: 10px;
8279
- font-size: 14px;
8280
- color: .duskThree(0.64)[@color];
8281
- cursor: pointer;
8282
- }
8283
-
8284
- .title {
8285
- color: @dusk-three;
8286
- font-family: @font-family-sans-serif;
8287
- font-size: 20px;
8288
- font-weight: 500;
8289
- margin: 0 0 21px 0;
8290
- padding-right: 24px;
8291
- }
8268
+ .connector-split {
8269
+ border-left: 1px solid @connector-line-stroke-color;
8270
+ border-bottom: 1px solid @connector-line-stroke-color;
8271
+ border-radius: 50px 0 0 50px;
8272
+ height: 280px;
8273
+ }
8292
8274
 
8293
- .main-content {
8294
- margin: 0 0 4px;
8275
+ .api-gateway-globe {
8276
+ flex: none;
8277
+ width: 128px;
8278
+ height: 128px;
8279
+ background: url('/assets/images/globe.png') center center / cover no-repeat transparent;
8280
+ }
8295
8281
 
8296
- .field-group {
8297
- padding: 0 0 20px;
8282
+ .api-gateway-authentication,
8283
+ .api-gateway-basic-settings {
8284
+ .fields-wrapper {
8285
+ display: flex;
8286
+ flex-flow: column nowrap;
8287
+ justify-content: space-around;
8298
8288
 
8299
- .field-label {
8300
- color: @dusk-three;
8301
- font-size: 14px;
8302
- font-weight: 500;
8303
- padding: 0;
8304
- min-width: 50px;
8305
- margin: 0 0 2px;
8306
- }
8289
+ .field-wrapper {
8290
+ display: flex;
8291
+ flex-flow: row nowrap;
8292
+ justify-content: space-between;
8293
+ line-height: 36px;
8294
+ margin-top: 16px;
8307
8295
 
8308
- .field-input {
8309
- position: relative;
8310
- width: 400px;
8296
+ &:first-child {
8297
+ margin-top: 0;
8298
+ }
8311
8299
 
8312
- .validating-input-field {
8313
- .input-field {
8314
- padding-left: 17px;
8315
- }
8300
+ .field-label {
8301
+ width: 35%;
8302
+ }
8316
8303
 
8317
- .input-placeholder {
8318
- left: 18px;
8319
- font-style: italic;
8304
+ .field-input {
8305
+ width: 60%;
8306
+ }
8307
+ }
8320
8308
  }
8321
8309
  }
8322
8310
 
8323
- .error {
8324
- color: @darkish-pink;
8325
- font-size: 12px;
8326
- white-space: nowrap;
8327
- }
8328
- }
8329
- }
8330
- }
8331
- }
8332
-
8333
- &.delete-entity-dialog-wrapper {
8334
- .ngdialog-content {
8335
- padding: 30px 24px 23px 24px;
8311
+ .api-gateway-basic-settings {
8312
+ .end-point-block {
8313
+ margin-top: 8px;
8336
8314
 
8337
- .notification-text.title {
8338
- text-align: center;
8339
- padding-right: 0;
8340
- color: @darkish-pink;
8341
- font-size: 20px;
8342
- font-weight: 500;
8343
- letter-spacing: normal;
8344
- margin: 11px 0 2px;
8345
- }
8315
+ .end-point-title {
8316
+ font-weight: bold;
8317
+ }
8346
8318
 
8347
- .notification-text.description {
8348
- text-align: center;
8349
- margin: 0 37px;
8350
- font-size: 16px;
8351
- font-weight: normal;
8352
- letter-spacing: normal;
8353
- color: @dusk-three;
8354
- }
8319
+ .end-point-host {
8320
+ display: flex;
8321
+ flex-flow: row nowrap;
8322
+ align-items: center;
8355
8323
 
8356
- .nuclio-alert-icon {
8357
- background: url('/assets/images/ic-alert-message.svg');
8358
- height: 29px;
8359
- width: 34px;
8360
- margin: 0 auto;
8361
- }
8324
+ .host {
8325
+ flex: auto;
8326
+ word-break: break-all;
8327
+ max-height: 80px;
8328
+ overflow-y: auto;
8329
+ }
8362
8330
 
8363
- .buttons {
8364
- margin-top: 30px;
8365
- }
8366
- }
8367
- }
8331
+ .copy-to-clipboard {
8332
+ flex: none;
8333
+ }
8334
+ }
8335
+ }
8336
+ }
8368
8337
 
8369
- &.ngdialog.ngdialog-closing .ngdialog-content {
8370
- animation-duration: @animation-duration;
8371
- animation-timing-function: @animation-function;
8372
- }
8338
+ .api-gateway-circles {
8339
+ display: flex;
8340
+ flex-flow: column nowrap;
8341
+ justify-content: space-between;
8342
+ align-items: center;
8343
+ position: relative;
8373
8344
 
8374
- .ngdialog-overlay {
8375
- background: .black(0.6)[@color];
8376
- border: 2px solid @black;
8377
- animation-duration: @animation-duration;
8378
- animation-timing-function: @animation-function;
8379
- }
8345
+ &.only-primary {
8346
+ justify-content: center;
8347
+ }
8380
8348
 
8381
- &.ngdialog.ngdialog-closing .ngdialog-overlay {
8382
- animation-duration: @animation-duration;
8383
- animation-timing-function: @animation-function;
8384
- }
8349
+ .api-gateway-block {
8350
+ border-radius: 35px;
8385
8351
 
8386
- &.ngdialog.ng-login-modal .ngdialog-content {
8387
- padding: 0;
8388
- }
8389
- }
8352
+ &.function-circle {
8353
+ width: 320px;
8390
8354
 
8391
- body {
8392
- .ncl-main-wrapper {
8393
- padding: 64px 0 0 215px;
8394
- width: 100%;
8395
- height: 100%;
8396
- }
8355
+ &.canary-function {
8356
+ .canary-title {
8357
+ margin-top: 20px;
8358
+ margin-bottom: 0;
8359
+ }
8397
8360
 
8398
- .table-headers {
8399
- display: flex;
8400
- font-size: 14px;
8401
- font-weight: bold;
8402
- font-style: normal;
8403
- font-stretch: normal;
8404
- letter-spacing: normal;
8405
- color: @dusk-three;
8406
- margin-bottom: 2px;
8361
+ .canary-action-menu {
8362
+ position: absolute;
8363
+ top: 24px;
8364
+ right: 0;
8365
+ }
8366
+ }
8407
8367
 
8408
- .key-header {
8409
- width: 34%;
8410
- margin-left: 16px;
8368
+ .function-name {
8369
+ position: relative;
8411
8370
 
8412
- &:not(.use-type) {
8413
- width: 36%;
8414
- }
8415
- }
8371
+ &.percentage-exists {
8372
+ padding-left: 36px;
8373
+ }
8416
8374
 
8417
- .type-header {
8418
- width: 12%;
8419
- }
8375
+ .percentage {
8376
+ position: absolute;
8377
+ left: -17px;
8378
+ top: -4px;
8379
+ width: 44px;
8380
+ height: 44px;
8420
8381
 
8421
- .value-header {
8422
- width: 52%;
8382
+ .percentage-background {
8383
+ position: absolute;
8384
+ width: 110%;
8385
+ height: 110%;
8386
+ background-color: @api-gateway-percentage-background-color;
8387
+ border-radius: 50% 50% 0 50%;
8388
+ transform: rotate(45deg);
8389
+ }
8423
8390
 
8424
- &:not(.use-type) {
8425
- width: 61%;
8426
- }
8427
- }
8428
- }
8391
+ &.swap {
8392
+ top: -8px;
8429
8393
 
8430
- .table-body:not(:last-child) {
8431
- margin-bottom: 5px;
8432
- }
8433
- }
8394
+ .percentage-background {
8395
+ border-radius: 50% 0 50% 50%;
8396
+ transform: rotate(-45deg);
8397
+ }
8398
+ }
8434
8399
 
8400
+ .percentage-value {
8401
+ position: absolute;
8402
+ top: 5px;
8403
+ left: 2px;
8404
+ width: 100%;
8405
+ height: 36px;
8406
+ line-height: 36px;
8407
+ text-align: center;
8408
+ color: @api-gateway-percentage-value-font-color;
8435
8409
 
8436
- .logs-common {
8437
- font-family: "Source Code Pro", "Courier New", monospace;
8438
- font-size: 14px;
8439
- line-height: 1.1;
8440
- text-align: left;
8441
- white-space: pre-wrap;
8442
- }
8443
- .tooltip.custom-tooltip {
8444
- transition-duration: 0s;
8445
- z-index: 10001;
8446
- opacity: 1;
8410
+ &:after {
8411
+ content: '%';
8412
+ }
8413
+ }
8414
+ }
8415
+ }
8447
8416
 
8448
- .tooltip-arrow {
8449
- display: block;
8450
- margin-left: 0;
8451
- position: absolute;
8452
- top: -1px;
8453
- width: 13px;
8454
- height: 13px;
8455
- transform: rotate(226deg);
8456
- border-right: 1px solid @pale-grey;
8457
- border-bottom: 1px solid @pale-grey;
8458
- border-width: 1px;
8459
- background-color: @white;
8460
- }
8417
+ .function-name-title {
8418
+ vertical-align: middle;
8419
+ line-height: normal;
8420
+ }
8421
+ }
8422
+ }
8461
8423
 
8462
- &.bottom {
8463
- margin-top: 8px;
8464
- }
8424
+ .create-canary-button {
8425
+ position: absolute;
8426
+ bottom: -40px;
8427
+ .igz-icon-add-round {
8428
+ margin: 0 8px 0 0;
8429
+ }
8430
+ }
8465
8431
 
8466
- &.top {
8467
- margin-top: 4px;
8468
- }
8432
+ .primary-canary-slider {
8433
+ z-index: 1;
8434
+ height: 175px;
8435
+ width: 100%;
8436
+ display: flex;
8437
+ justify-content: flex-start;
8438
+ margin-left: 20px;
8469
8439
 
8470
- .tooltip-inner {
8471
- background-color: @white;
8472
- color: @dusk-three;
8473
- border-radius: 2px;
8474
- font-size: 14px;
8475
- word-wrap: break-word;
8476
- max-width: 280px;
8477
- padding: 29px 30px;
8478
- box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
8479
- border: solid 1px @pale-grey;
8480
- }
8481
- }
8482
- .new-api-gateway-wizard {
8483
- .new-api-gateway-wizard-color-set();
8440
+ .rzslider:not([disabled]).rz-vertical {
8441
+ .rz-bar {
8442
+ background-color: @dark-sky-blue;
8443
+ border-radius: 0;
8444
+ }
8484
8445
 
8485
- .content-wrapper {
8486
- .content {
8487
- .toast-status-panel {
8488
- max-width: 90vw;
8489
- margin: 16px auto 20px;
8490
- }
8446
+ .rz-pointer {
8447
+ width: 27px;
8448
+ height: 27px;
8449
+ background-color: @white;
8450
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.24);
8451
+ border-radius: 50%;
8452
+ left: -11px !important;
8453
+ outline: 0 none transparent;
8491
8454
 
8492
- .api-gateway-form {
8493
- .content-body {
8494
- margin: 0 auto;
8495
- height: 400px;
8496
- display: flex;
8497
- flex-flow: row nowrap;
8498
- justify-content: center;
8499
- align-items: center;
8455
+ &::after {
8456
+ top: 11px;
8457
+ left: 11px;
8458
+ width: 5px;
8459
+ height: 5px;
8460
+ }
8461
+ }
8462
+ }
8463
+ }
8464
+ }
8465
+ }
8466
+ }
8500
8467
 
8501
- .api-gateway-block {
8502
- flex: none;
8503
- position: relative;
8504
- max-width: 320px;
8505
- padding: 16px 24px;
8506
- border: @api-gateway-block-border;
8507
- border-radius: 2px;
8508
- background-color: @api-gateway-block-bg-color;
8509
- box-shadow: 0 3px 4px rgba(0, 0, 0, 0.18);
8510
- transition: box-shadow .3s ease-in-out 0s;
8468
+ .buttons-wrapper {
8469
+ position: relative;
8470
+ width: 100%;
8471
+ margin-top: 32px;
8472
+ }
8473
+ }
8474
+ }
8475
+ }
8511
8476
 
8512
- // important for not waiting to animation to finish when removing/promoting canary function
8513
- // (`ng-leave` and `ng-leave-active` are assigned by the `ng-if` directive when its scope
8514
- // expression evaluates to a falsy value) see https://docs.angularjs.org/api/ng/directive/ngIf
8515
- &.ng-leave.ng-leave-active {
8516
- transition: none 0s 0s;
8517
- }
8477
+ .igz-info-page-actions-bar {
8478
+ .actions-buttons-block {
8479
+ margin-top: 3px;
8480
+ margin-right: 17px;
8481
+ }
8482
+ }
8483
+ .ncl-primary-button {
8484
+ margin-left: 9px;
8485
+ }
8518
8486
 
8519
- &:hover, &:focus-within {
8520
- box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
8521
- }
8487
+ .ncl-secondary-button {
8488
+ vertical-align: top;
8489
+ position: relative;
8490
+ }
8522
8491
 
8523
- .block-title {
8524
- text-align: center;
8525
- font-weight: bold;
8526
- font-size: 16px;
8527
- color: @api-gateway-block-title-font-color;
8528
- margin-bottom: 16px;
8529
- }
8530
- }
8492
+ .btn-close {
8493
+ color: .duskThree(0.64)[@color];
8494
+ right: 0;
8495
+ position: absolute;
8496
+ margin-top: 6px;
8497
+ margin-right: 24px;
8498
+ font-size: 14px;
8499
+ line-height: 14px;
8500
+ z-index: 11;
8531
8501
 
8532
- .connector, .connector-split {
8533
- flex: 1 1 0;
8534
- border-top: 1px solid @connector-line-stroke-color;
8535
- }
8502
+ &:hover {
8503
+ color: .duskThree(1)[@color];
8504
+ }
8505
+ }
8536
8506
 
8537
- .connector-split {
8538
- border-left: 1px solid @connector-line-stroke-color;
8539
- border-bottom: 1px solid @connector-line-stroke-color;
8540
- border-radius: 50px 0 0 50px;
8541
- height: 280px;
8542
- }
8507
+ .ncl-new-entity-button {
8508
+ display: inline-block;
8509
+ vertical-align: top;
8510
+ position: relative;
8511
+ margin-left: 15px;
8512
+ }
8543
8513
 
8544
- .api-gateway-globe {
8545
- flex: none;
8546
- width: 128px;
8547
- height: 128px;
8548
- background: url('/assets/images/globe.png') center center / cover no-repeat transparent;
8549
- }
8514
+ .ngdialog {
8515
+ z-index: 10000;
8516
+ }
8550
8517
 
8551
- .api-gateway-authentication,
8552
- .api-gateway-basic-settings {
8553
- .fields-wrapper {
8554
- display: flex;
8555
- flex-flow: column nowrap;
8556
- justify-content: space-around;
8518
+ .ngdialog-theme-nuclio {
8519
+ @animation-duration: 0.2s;
8520
+ @animation-function: ease;
8521
+ display: flex;
8522
+ height: 100%;
8523
+ padding: 0 50px;
8524
+ min-width: 500px;
8525
+ align-items: center;
8526
+ justify-content: center;
8557
8527
 
8558
- .field-wrapper {
8559
- display: flex;
8560
- flex-flow: row nowrap;
8561
- justify-content: space-between;
8562
- line-height: 36px;
8563
- margin-top: 16px;
8528
+ .ngdialog-content {
8529
+ box-shadow: 0 10px 20px 0 .black(0.25)[@color];
8530
+ animation-duration: @animation-duration;
8531
+ animation-timing-function: @animation-function;
8532
+ font-family: @font-family-sans-serif;
8533
+ font-size: 16px;
8534
+ border-radius: 2px;
8535
+ max-width: 900px;
8536
+ background-color: @white;
8537
+ z-index: 5;
8538
+ position: relative;
8539
+ padding: 19px 24px 23px 24px;
8564
8540
 
8565
- &:first-child {
8566
- margin-top: 0;
8567
- }
8541
+ /*
8542
+ * Confirms, alerts
8543
+ */
8544
+ .notification-text {
8545
+ margin: 30px 30px 0 0;
8546
+ max-height: 70vh;
8547
+ overflow: auto;
8568
8548
 
8569
- .field-label {
8570
- width: 35%;
8571
- }
8549
+ .error-list {
8550
+ list-style-type: none;
8572
8551
 
8573
- .field-input {
8574
- width: 60%;
8575
- }
8576
- }
8577
- }
8578
- }
8552
+ .error-list-item {
8553
+ margin-bottom: 5px;
8554
+ }
8555
+ }
8556
+ }
8579
8557
 
8580
- .api-gateway-basic-settings {
8581
- .end-point-block {
8582
- margin-top: 8px;
8558
+ .notification-text.description {
8559
+ margin: 10px 30px;
8560
+ }
8583
8561
 
8584
- .end-point-title {
8585
- font-weight: bold;
8586
- }
8562
+ .buttons {
8563
+ text-align: right;
8587
8564
 
8588
- .end-point-host {
8589
- display: flex;
8590
- flex-flow: row nowrap;
8591
- align-items: center;
8565
+ button:not(:first-child) {
8566
+ margin-left: 8px;
8567
+ }
8568
+ }
8592
8569
 
8593
- .host {
8594
- flex: auto;
8595
- word-break: break-all;
8596
- max-height: 80px;
8597
- overflow-y: auto;
8598
- }
8570
+ /*
8571
+ * Create/edit dialogs
8572
+ */
8573
+ .close-button {
8574
+ position: absolute;
8575
+ right: 24px;
8576
+ top: 26px;
8577
+ line-height: 10px;
8578
+ font-size: 14px;
8579
+ color: .duskThree(0.64)[@color];
8580
+ cursor: pointer;
8581
+ }
8599
8582
 
8600
- .copy-to-clipboard {
8601
- flex: none;
8602
- }
8603
- }
8604
- }
8605
- }
8583
+ .title {
8584
+ color: @dusk-three;
8585
+ font-family: @font-family-sans-serif;
8586
+ font-size: 20px;
8587
+ font-weight: 500;
8588
+ margin: 0 0 21px 0;
8589
+ padding-right: 24px;
8590
+ }
8606
8591
 
8607
- .api-gateway-circles {
8608
- display: flex;
8609
- flex-flow: column nowrap;
8610
- justify-content: space-between;
8611
- align-items: center;
8612
- position: relative;
8592
+ .main-content {
8593
+ margin: 0 0 4px;
8613
8594
 
8614
- &.only-primary {
8615
- justify-content: center;
8616
- }
8595
+ .field-group {
8596
+ padding: 0 0 20px;
8617
8597
 
8618
- .api-gateway-block {
8619
- border-radius: 35px;
8598
+ .field-label {
8599
+ color: @dusk-three;
8600
+ font-size: 14px;
8601
+ font-weight: 500;
8602
+ padding: 0;
8603
+ min-width: 50px;
8604
+ margin: 0 0 2px;
8605
+ }
8620
8606
 
8621
- &.function-circle {
8622
- width: 320px;
8607
+ .field-input {
8608
+ position: relative;
8609
+ width: 400px;
8623
8610
 
8624
- &.canary-function {
8625
- .canary-title {
8626
- margin-top: 20px;
8627
- margin-bottom: 0;
8628
- }
8611
+ .validating-input-field {
8612
+ .input-field {
8613
+ padding-left: 17px;
8614
+ }
8629
8615
 
8630
- .canary-action-menu {
8631
- position: absolute;
8632
- top: 24px;
8633
- right: 0;
8634
- }
8635
- }
8616
+ .input-placeholder {
8617
+ left: 18px;
8618
+ font-style: italic;
8619
+ }
8620
+ }
8636
8621
 
8637
- .function-name {
8638
- position: relative;
8622
+ .error {
8623
+ color: @darkish-pink;
8624
+ font-size: 12px;
8625
+ white-space: nowrap;
8626
+ }
8627
+ }
8628
+ }
8629
+ }
8630
+ }
8639
8631
 
8640
- &.percentage-exists {
8641
- padding-left: 36px;
8642
- }
8632
+ &.delete-entity-dialog-wrapper {
8633
+ .ngdialog-content {
8634
+ padding: 30px 24px 23px 24px;
8643
8635
 
8644
- .percentage {
8645
- position: absolute;
8646
- left: -17px;
8647
- top: -4px;
8648
- width: 44px;
8649
- height: 44px;
8636
+ .notification-text.title {
8637
+ text-align: center;
8638
+ padding-right: 0;
8639
+ color: @darkish-pink;
8640
+ font-size: 20px;
8641
+ font-weight: 500;
8642
+ letter-spacing: normal;
8643
+ margin: 11px 0 2px;
8644
+ }
8650
8645
 
8651
- .percentage-background {
8652
- position: absolute;
8653
- width: 110%;
8654
- height: 110%;
8655
- background-color: @api-gateway-percentage-background-color;
8656
- border-radius: 50% 50% 0 50%;
8657
- transform: rotate(45deg);
8658
- }
8646
+ .notification-text.description {
8647
+ text-align: center;
8648
+ margin: 0 37px;
8649
+ font-size: 16px;
8650
+ font-weight: normal;
8651
+ letter-spacing: normal;
8652
+ color: @dusk-three;
8653
+ }
8659
8654
 
8660
- &.swap {
8661
- top: -8px;
8655
+ .nuclio-alert-icon {
8656
+ background: url('/assets/images/ic-alert-message.svg');
8657
+ height: 29px;
8658
+ width: 34px;
8659
+ margin: 0 auto;
8660
+ }
8662
8661
 
8663
- .percentage-background {
8664
- border-radius: 50% 0 50% 50%;
8665
- transform: rotate(-45deg);
8666
- }
8667
- }
8662
+ .buttons {
8663
+ margin-top: 30px;
8664
+ }
8665
+ }
8666
+ }
8668
8667
 
8669
- .percentage-value {
8670
- position: absolute;
8671
- top: 5px;
8672
- left: 2px;
8673
- width: 100%;
8674
- height: 36px;
8675
- line-height: 36px;
8676
- text-align: center;
8677
- color: @api-gateway-percentage-value-font-color;
8668
+ &.ngdialog.ngdialog-closing .ngdialog-content {
8669
+ animation-duration: @animation-duration;
8670
+ animation-timing-function: @animation-function;
8671
+ }
8678
8672
 
8679
- &:after {
8680
- content: '%';
8681
- }
8682
- }
8683
- }
8684
- }
8673
+ .ngdialog-overlay {
8674
+ background: .black(0.6)[@color];
8675
+ border: 2px solid @black;
8676
+ animation-duration: @animation-duration;
8677
+ animation-timing-function: @animation-function;
8678
+ }
8685
8679
 
8686
- .function-name-title {
8687
- vertical-align: middle;
8688
- line-height: normal;
8689
- }
8690
- }
8691
- }
8680
+ &.ngdialog.ngdialog-closing .ngdialog-overlay {
8681
+ animation-duration: @animation-duration;
8682
+ animation-timing-function: @animation-function;
8683
+ }
8692
8684
 
8693
- .create-canary-button {
8694
- position: absolute;
8695
- bottom: -40px;
8696
- .igz-icon-add-round {
8697
- margin: 0 8px 0 0;
8698
- }
8699
- }
8685
+ &.ngdialog.ng-login-modal .ngdialog-content {
8686
+ padding: 0;
8687
+ }
8688
+ }
8700
8689
 
8701
- .primary-canary-slider {
8702
- z-index: 1;
8703
- height: 175px;
8704
- width: 100%;
8705
- display: flex;
8706
- justify-content: flex-start;
8707
- margin-left: 20px;
8690
+ body {
8691
+ .ncl-main-wrapper {
8692
+ padding: 64px 0 0 215px;
8693
+ width: 100%;
8694
+ height: 100%;
8695
+ }
8708
8696
 
8709
- .rzslider:not([disabled]).rz-vertical {
8710
- .rz-bar {
8711
- background-color: @dark-sky-blue;
8712
- border-radius: 0;
8713
- }
8697
+ .table-headers {
8698
+ display: flex;
8699
+ font-size: 14px;
8700
+ font-weight: bold;
8701
+ font-style: normal;
8702
+ font-stretch: normal;
8703
+ letter-spacing: normal;
8704
+ color: @dusk-three;
8705
+ margin-bottom: 2px;
8714
8706
 
8715
- .rz-pointer {
8716
- width: 27px;
8717
- height: 27px;
8718
- background-color: @white;
8719
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.24);
8720
- border-radius: 50%;
8721
- left: -11px !important;
8722
- outline: 0 none transparent;
8707
+ .key-header {
8708
+ width: 34%;
8709
+ margin-left: 16px;
8723
8710
 
8724
- &::after {
8725
- top: 11px;
8726
- left: 11px;
8727
- width: 5px;
8728
- height: 5px;
8729
- }
8730
- }
8731
- }
8732
- }
8733
- }
8734
- }
8711
+ &:not(.use-type) {
8712
+ width: 36%;
8735
8713
  }
8714
+ }
8736
8715
 
8737
- .buttons-wrapper {
8738
- position: relative;
8739
- width: 100%;
8740
- margin-top: 32px;
8716
+ .type-header {
8717
+ width: 12%;
8718
+ }
8719
+
8720
+ .value-header {
8721
+ width: 52%;
8722
+
8723
+ &:not(.use-type) {
8724
+ width: 61%;
8741
8725
  }
8742
8726
  }
8743
8727
  }
8728
+
8729
+ .table-body:not(:last-child) {
8730
+ margin-bottom: 5px;
8731
+ }
8744
8732
  }
8745
8733
 
8746
- .ncl-api-gateway-row {
8747
- .common-table-cells-container {
8748
- .common-table-cell {
8749
- &.status {
8750
- text-transform: capitalize;
8751
8734
 
8752
- &.ready {
8753
- color: @tealish;
8754
- }
8735
+ .logs-common {
8736
+ font-family: "Source Code Pro", "Courier New", monospace;
8737
+ font-size: 14px;
8738
+ line-height: 1.1;
8739
+ text-align: left;
8740
+ white-space: pre-wrap;
8741
+ }
8742
+ .tooltip.custom-tooltip {
8743
+ transition-duration: 0s;
8744
+ z-index: 10001;
8745
+ opacity: 1;
8755
8746
 
8756
- // just in case - for now these statuses will not be shown because there will be a loader
8757
- &.provisioning, &.waitingForProvisioning {
8758
- color: @pale-orange;
8759
- }
8747
+ .tooltip-arrow {
8748
+ display: block;
8749
+ margin-left: 0;
8750
+ position: absolute;
8751
+ top: -1px;
8752
+ width: 13px;
8753
+ height: 13px;
8754
+ transform: rotate(226deg);
8755
+ border-right: 1px solid @pale-grey;
8756
+ border-bottom: 1px solid @pale-grey;
8757
+ border-width: 1px;
8758
+ background-color: @white;
8759
+ }
8760
8760
 
8761
- &.error {
8762
- color: @darkish-pink;
8763
- }
8764
- }
8765
- }
8761
+ &.bottom {
8762
+ margin-top: 8px;
8766
8763
  }
8767
8764
 
8768
- .actions-menu {
8769
- visibility: hidden;
8765
+ &.top {
8766
+ margin-top: 4px;
8770
8767
  }
8771
8768
 
8772
- &.common-table-row {
8773
- &:hover {
8774
- .actions-menu {
8775
- visibility: visible;
8776
- }
8777
- }
8769
+ .tooltip-inner {
8770
+ background-color: @white;
8771
+ color: @dusk-three;
8772
+ border-radius: 2px;
8773
+ font-size: 14px;
8774
+ word-wrap: break-word;
8775
+ max-width: 280px;
8776
+ padding: 29px 30px;
8777
+ box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
8778
+ border: solid 1px @pale-grey;
8778
8779
  }
8779
8780
  }
8780
-
8781
8781
  .duplicate-function-dialog-wrapper {
8782
8782
  .main-content {
8783
8783
  .field-group {
@@ -8811,21 +8811,6 @@ body {
8811
8811
  }
8812
8812
  }
8813
8813
 
8814
- .override-function-dialog {
8815
- .sub-title {
8816
- font-size: 16px;
8817
- color: @silver-chalice-two;
8818
- }
8819
-
8820
- .buttons {
8821
- display: flex;
8822
-
8823
- .function-redirect-button {
8824
- margin-right: auto;
8825
- }
8826
- }
8827
- }
8828
-
8829
8814
  .ncl-function-collapsing-row {
8830
8815
  background-color: @white;
8831
8816
  margin-bottom: 8px;
@@ -8960,6 +8945,21 @@ body {
8960
8945
  }
8961
8946
  }
8962
8947
 
8948
+ .override-function-dialog {
8949
+ .sub-title {
8950
+ font-size: 16px;
8951
+ color: @silver-chalice-two;
8952
+ }
8953
+
8954
+ .buttons {
8955
+ display: flex;
8956
+
8957
+ .function-redirect-button {
8958
+ margin-right: auto;
8959
+ }
8960
+ }
8961
+ }
8962
+
8963
8963
  .ncl-edit-version {
8964
8964
  background: #f2f2f6;
8965
8965
  position: relative;
@@ -9752,6 +9752,35 @@ igz-info-page-content {
9752
9752
  }
9753
9753
 
9754
9754
 
9755
+ ncl-breadcrumbs {
9756
+ .main-header-title {
9757
+ &:not(.disable-behavior) {
9758
+ &:hover .main-header-title-text {
9759
+ color: @dark-sky-blue;
9760
+ }
9761
+ }
9762
+
9763
+ &.disable-behavior {
9764
+ color: @dusk-three;
9765
+ }
9766
+ }
9767
+
9768
+ .igz-icon-right {
9769
+ font-size: 11px;
9770
+ font-weight: 100;
9771
+ margin: 0 14px;
9772
+ }
9773
+
9774
+ .ncl-header-subtitle {
9775
+ color: @greyish-purple;
9776
+ }
9777
+
9778
+ .ncl-bold-subtitle {
9779
+ color: @dusk-three;
9780
+ font-weight: bold;
9781
+ }
9782
+ }
9783
+
9755
9784
  .ncl-breadcrumbs-dropdown {
9756
9785
  display: inline-grid;
9757
9786
 
@@ -9892,35 +9921,44 @@ igz-info-page-content {
9892
9921
  }
9893
9922
  }
9894
9923
 
9895
- ncl-breadcrumbs {
9896
- .main-header-title {
9897
- &:not(.disable-behavior) {
9898
- &:hover .main-header-title-text {
9899
- color: @dark-sky-blue;
9924
+ .ncl-deploy-log-wrapper {
9925
+ .log-panel {
9926
+ .logs-common();
9927
+ background-color: @dark-grey;
9928
+ color: @light-grey-three;
9929
+ padding: 5px;
9930
+ margin: 21px 0 0 4px;
9931
+ min-height: 280px;
9932
+ max-height: 280px;
9933
+ height: 280px;
9934
+
9935
+ .log-entry {
9936
+ .log-entry-time {
9937
+ color: @solid-grey;
9900
9938
  }
9901
- }
9902
9939
 
9903
- &.disable-behavior {
9904
- color: @dusk-three;
9905
- }
9906
- }
9940
+ .log-entry-level-debug{
9941
+ color: @dusty-blue;
9942
+ }
9907
9943
 
9908
- .igz-icon-right {
9909
- font-size: 11px;
9910
- font-weight: 100;
9911
- margin: 0 14px;
9912
- }
9944
+ .log-entry-level-info {
9945
+ color: @cloudy-blue;
9946
+ }
9913
9947
 
9914
- .ncl-header-subtitle {
9915
- color: @greyish-purple;
9916
- }
9948
+ .log-entry-level-warn{
9949
+ color: @sunflower-yellow;
9950
+ }
9917
9951
 
9918
- .ncl-bold-subtitle {
9919
- color: @dusk-three;
9920
- font-weight: bold;
9952
+ .log-entry-level-error {
9953
+ color: @darkish-pink;
9954
+ }
9955
+
9956
+ .log-entry-message {
9957
+ font-weight: 600;
9958
+ }
9959
+ }
9921
9960
  }
9922
9961
  }
9923
-
9924
9962
  .ncl-collapsing-row {
9925
9963
  margin-bottom: 9px;
9926
9964
 
@@ -10044,41 +10082,21 @@ ncl-breadcrumbs {
10044
10082
  }
10045
10083
  }
10046
10084
 
10047
- .ncl-deploy-log-wrapper {
10048
- .log-panel {
10049
- .logs-common();
10050
- background-color: @dark-grey;
10051
- color: @light-grey-three;
10052
- padding: 5px;
10053
- margin: 21px 0 0 4px;
10054
- min-height: 280px;
10055
- max-height: 280px;
10056
- height: 280px;
10057
-
10058
- .log-entry {
10059
- .log-entry-time {
10060
- color: @solid-grey;
10061
- }
10062
-
10063
- .log-entry-level-debug{
10064
- color: @dusty-blue;
10065
- }
10066
-
10067
- .log-entry-level-info {
10068
- color: @cloudy-blue;
10069
- }
10070
-
10071
- .log-entry-level-warn{
10072
- color: @sunflower-yellow;
10085
+ .view-yaml-dialog-wrapper {
10086
+ .ngdialog-content {
10087
+ .view-yaml-dialog-header {
10088
+ .title {
10089
+ margin-bottom: 10px;
10073
10090
  }
10074
10091
 
10075
- .log-entry-level-error {
10076
- color: @darkish-pink;
10092
+ .copy-to-clipboard {
10093
+ width: 20px;
10077
10094
  }
10095
+ }
10078
10096
 
10079
- .log-entry-message {
10080
- font-weight: 600;
10081
- }
10097
+ .monaco-editor {
10098
+ min-width: 700px;
10099
+ min-height: 450px;
10082
10100
  }
10083
10101
  }
10084
10102
  }
@@ -10120,273 +10138,68 @@ ncl-breadcrumbs {
10120
10138
  &:last-child {
10121
10139
  padding-bottom: 0;
10122
10140
  }
10123
-
10124
- .tooltip-wrapper {
10125
- .more-info-wrapper {
10126
- padding-left: 0;
10127
- }
10128
- }
10129
- }
10130
-
10131
- .attribute-field {
10132
- margin-right: 1%;
10133
- padding: 8px 0 6px;
10134
-
10135
- .field-label {
10136
- height: 22px;
10137
- }
10138
-
10139
- &.attribute-field-checkbox {
10140
- padding: 35px 0 19px;
10141
- }
10142
-
10143
- .more-info-wrapper {
10144
- height: auto;
10145
- }
10146
- }
10147
-
10148
- .no-class-selected {
10149
- line-height: 48px;
10150
- .duskThree(0.64);
10151
- color: @color;
10152
- }
10153
-
10154
- .ingresses-wrapper {
10155
- .ingresses-table-headers {
10156
- width: calc(100% - 30px);
10157
-
10158
- .host-header {
10159
- width: 38%;
10160
- padding-left: 16px;
10161
- }
10162
-
10163
- .paths-header, .secret-header{
10164
- width: 31%;
10165
- padding-left: 16px;
10166
- }
10167
- }
10168
- }
10169
-
10170
- .advanced-section {
10171
- .collapsed-block-title {
10172
- font-size: 15px;
10173
- font-weight: bold;
10174
- margin: 15px 0;
10175
-
10176
- .icon-collapsed {
10177
- color: .duskThree(0.64)[@color];
10178
- font-size: 12px;
10179
- margin: 0 11px 0 4px;
10180
- }
10181
- }
10182
- }
10183
- }
10184
-
10185
- ncl-navigation-tabs {
10186
- .ncl-navigation-tabs-color-set();
10187
-
10188
- position: relative;
10189
- z-index: 999;
10190
- background: @navigation-tabs-bg-color;
10191
-
10192
- .ncl-navigation-tabs-wrapper {
10193
- display: flex;
10194
- align-items: center;
10195
- justify-content: space-between;
10196
- border-bottom: 1px solid @mystic-two;
10197
- border-top: none;
10198
-
10199
- .ncl-navigation-tabs {
10200
- background: @navigation-tabs-bg-color;
10201
- height: 54px;
10202
-
10203
- .navigation-tab {
10204
- position: relative;
10205
- float: left;
10206
- height: 32px;
10207
- padding: 20px 40px 0;
10208
- font-family: @font-family-sans-serif;
10209
- color: @navigation-tab-color;
10210
- font-size: 13px;
10211
- text-align: center;
10212
- cursor: pointer;
10213
- border-bottom: @navigation-tab-border-bottom;
10214
- box-sizing: content-box;
10215
-
10216
- &.active, &.active:hover {
10217
- background: none;
10218
- color: @navigation-tab-active-hover-color;
10219
- border-bottom: @navigation-tab-active-hover-border-bottom;
10220
- font-weight: bold;
10221
- }
10222
-
10223
- &.ncl-status-indicator {
10224
- padding-right: 8px;
10225
-
10226
- &:hover {
10227
- .ncl-status-tooltip {
10228
- display: flex;
10229
- }
10230
- }
10231
- }
10232
-
10233
- .ncl-status-light {
10234
- position: relative;
10235
- display: inline-block;
10236
- width: 8px;
10237
- height: 8px;
10238
- border-radius: 50%;
10239
- margin-left: 34px;
10240
- background-color: @solid-grey;
10241
-
10242
- &.ncl-status-ready {
10243
- background-color: @tealish;
10244
- }
10245
-
10246
- &.ncl-status-building {
10247
- background-color: @pale-orange;
10248
- }
10249
-
10250
- &.ncl-status-error {
10251
- background-color: @darkish-pink;
10252
- }
10253
-
10254
- .ncl-status-tooltip {
10255
- position: absolute;
10256
- left: 22px;
10257
- top: -10px;
10258
- z-index: 1;
10259
- display: none;
10260
- height: 24px;
10261
- padding: 4px 12px 22px 10px;
10262
- border-radius: 2px;
10263
- background-color: @solid-grey;
10264
- color: @white;
10265
-
10266
- &:after {
10267
- content: "";
10268
- position: absolute;
10269
- right: 100%;
10270
- top: 50%;
10271
- height: 0;
10272
- width: 0;
10273
- margin-top: -5px;
10274
- border: 5px solid transparent;
10275
- border-right-color: @solid-grey;
10276
- pointer-events: none;
10277
- }
10278
-
10279
- &.ncl-status-tooltip-ready {
10280
- padding-left: 10px;
10281
- background-color: @tealish;
10282
-
10283
- &:after {
10284
- border-right-color: @tealish;
10285
- }
10286
- }
10287
-
10288
- &.ncl-status-tooltip-building {
10289
- padding-left: 10px;
10290
- background-color: @pale-orange;
10291
-
10292
- &:after {
10293
- border-right-color: @pale-orange;
10294
- }
10295
- }
10296
-
10297
- &.ncl-status-tooltip-error {
10298
- padding-left: 10px;
10299
- background-color: @darkish-pink;
10300
-
10301
- &:after {
10302
- border-right-color: @darkish-pink;
10303
- }
10304
- }
10305
-
10306
- .ncl-status-icon {
10307
- width: 13px;
10308
- margin-right: 5px;
10309
-
10310
- &.ncl-icon-ready {
10311
- margin-top: 3px;
10312
- font-size: 10px;
10313
- }
10314
-
10315
- &.ncl-icon-building {
10316
- margin-top: 6px;
10317
- font-size: 5px;
10318
- }
10319
-
10320
- &.ncl-icon-error {
10321
- margin-top: 3px;
10322
- font-size: 10px;
10323
- }
10324
- }
10325
-
10326
- .ncl-status-title {
10327
- font-size: 13px;
10328
- font-weight: normal;
10329
- white-space: nowrap;
10330
-
10331
- &::first-letter {
10332
- text-transform: capitalize;
10333
- }
10334
- }
10335
- }
10336
- }
10141
+
10142
+ .tooltip-wrapper {
10143
+ .more-info-wrapper {
10144
+ padding-left: 0;
10337
10145
  }
10338
10146
  }
10339
10147
  }
10340
10148
 
10341
- .test-pane-actions-wrapper {
10342
- margin-right: 35px;
10343
- }
10344
- }
10149
+ .attribute-field {
10150
+ margin-right: 1%;
10151
+ padding: 8px 0 6px;
10345
10152
 
10346
- .view-yaml-dialog-wrapper {
10347
- .ngdialog-content {
10348
- .view-yaml-dialog-header {
10349
- .title {
10350
- margin-bottom: 10px;
10351
- }
10153
+ .field-label {
10154
+ height: 22px;
10155
+ }
10352
10156
 
10353
- .copy-to-clipboard {
10354
- width: 20px;
10355
- }
10157
+ &.attribute-field-checkbox {
10158
+ padding: 35px 0 19px;
10356
10159
  }
10357
10160
 
10358
- .monaco-editor {
10359
- min-width: 700px;
10360
- min-height: 450px;
10161
+ .more-info-wrapper {
10162
+ height: auto;
10361
10163
  }
10362
10164
  }
10363
- }
10364
- .ncl-monaco {
10365
- .ncl-monaco-wrapper {
10366
- padding-top: 20px;
10367
- height: 100%;
10368
- border: 1px solid @pale-grey;
10369
- background-color: @white;
10370
10165
 
10371
- &.no-top-padding {
10372
- padding-top: 0;
10373
- }
10166
+ .no-class-selected {
10167
+ line-height: 48px;
10168
+ .duskThree(0.64);
10169
+ color: @color;
10170
+ }
10374
10171
 
10375
- .ncl-monaco-top-row {
10376
- display: block;
10377
- }
10172
+ .ingresses-wrapper {
10173
+ .ingresses-table-headers {
10174
+ width: calc(100% - 30px);
10378
10175
 
10379
- .ncl-monaco-editor {
10380
- height: 100%;
10176
+ .host-header {
10177
+ width: 38%;
10178
+ padding-left: 16px;
10179
+ }
10180
+
10181
+ .paths-header, .secret-header{
10182
+ width: 31%;
10183
+ padding-left: 16px;
10184
+ }
10381
10185
  }
10382
10186
  }
10383
10187
 
10384
- .ncl-monaco-dark {
10385
- background-color: @vs-dark;
10188
+ .advanced-section {
10189
+ .collapsed-block-title {
10190
+ font-size: 15px;
10191
+ font-weight: bold;
10192
+ margin: 15px 0;
10193
+
10194
+ .icon-collapsed {
10195
+ color: .duskThree(0.64)[@color];
10196
+ font-size: 12px;
10197
+ margin: 0 11px 0 4px;
10198
+ }
10199
+ }
10386
10200
  }
10387
10201
  }
10388
10202
 
10389
-
10390
10203
  .ncl-key-value-input {
10391
10204
  .input-wrapper {
10392
10205
  width: 100%;
@@ -10590,6 +10403,193 @@ ncl-navigation-tabs {
10590
10403
  }
10591
10404
  }
10592
10405
 
10406
+ .ncl-monaco {
10407
+ .ncl-monaco-wrapper {
10408
+ padding-top: 20px;
10409
+ height: 100%;
10410
+ border: 1px solid @pale-grey;
10411
+ background-color: @white;
10412
+
10413
+ &.no-top-padding {
10414
+ padding-top: 0;
10415
+ }
10416
+
10417
+ .ncl-monaco-top-row {
10418
+ display: block;
10419
+ }
10420
+
10421
+ .ncl-monaco-editor {
10422
+ height: 100%;
10423
+ }
10424
+ }
10425
+
10426
+ .ncl-monaco-dark {
10427
+ background-color: @vs-dark;
10428
+ }
10429
+ }
10430
+
10431
+
10432
+ ncl-navigation-tabs {
10433
+ .ncl-navigation-tabs-color-set();
10434
+
10435
+ position: relative;
10436
+ z-index: 999;
10437
+ background: @navigation-tabs-bg-color;
10438
+
10439
+ .ncl-navigation-tabs-wrapper {
10440
+ display: flex;
10441
+ align-items: center;
10442
+ justify-content: space-between;
10443
+ border-bottom: 1px solid @mystic-two;
10444
+ border-top: none;
10445
+
10446
+ .ncl-navigation-tabs {
10447
+ background: @navigation-tabs-bg-color;
10448
+ height: 54px;
10449
+
10450
+ .navigation-tab {
10451
+ position: relative;
10452
+ float: left;
10453
+ height: 32px;
10454
+ padding: 20px 40px 0;
10455
+ font-family: @font-family-sans-serif;
10456
+ color: @navigation-tab-color;
10457
+ font-size: 13px;
10458
+ text-align: center;
10459
+ cursor: pointer;
10460
+ border-bottom: @navigation-tab-border-bottom;
10461
+ box-sizing: content-box;
10462
+
10463
+ &.active, &.active:hover {
10464
+ background: none;
10465
+ color: @navigation-tab-active-hover-color;
10466
+ border-bottom: @navigation-tab-active-hover-border-bottom;
10467
+ font-weight: bold;
10468
+ }
10469
+
10470
+ &.ncl-status-indicator {
10471
+ padding-right: 8px;
10472
+
10473
+ &:hover {
10474
+ .ncl-status-tooltip {
10475
+ display: flex;
10476
+ }
10477
+ }
10478
+ }
10479
+
10480
+ .ncl-status-light {
10481
+ position: relative;
10482
+ display: inline-block;
10483
+ width: 8px;
10484
+ height: 8px;
10485
+ border-radius: 50%;
10486
+ margin-left: 34px;
10487
+ background-color: @solid-grey;
10488
+
10489
+ &.ncl-status-ready {
10490
+ background-color: @tealish;
10491
+ }
10492
+
10493
+ &.ncl-status-building {
10494
+ background-color: @pale-orange;
10495
+ }
10496
+
10497
+ &.ncl-status-error {
10498
+ background-color: @darkish-pink;
10499
+ }
10500
+
10501
+ .ncl-status-tooltip {
10502
+ position: absolute;
10503
+ left: 22px;
10504
+ top: -10px;
10505
+ z-index: 1;
10506
+ display: none;
10507
+ height: 24px;
10508
+ padding: 4px 12px 22px 10px;
10509
+ border-radius: 2px;
10510
+ background-color: @solid-grey;
10511
+ color: @white;
10512
+
10513
+ &:after {
10514
+ content: "";
10515
+ position: absolute;
10516
+ right: 100%;
10517
+ top: 50%;
10518
+ height: 0;
10519
+ width: 0;
10520
+ margin-top: -5px;
10521
+ border: 5px solid transparent;
10522
+ border-right-color: @solid-grey;
10523
+ pointer-events: none;
10524
+ }
10525
+
10526
+ &.ncl-status-tooltip-ready {
10527
+ padding-left: 10px;
10528
+ background-color: @tealish;
10529
+
10530
+ &:after {
10531
+ border-right-color: @tealish;
10532
+ }
10533
+ }
10534
+
10535
+ &.ncl-status-tooltip-building {
10536
+ padding-left: 10px;
10537
+ background-color: @pale-orange;
10538
+
10539
+ &:after {
10540
+ border-right-color: @pale-orange;
10541
+ }
10542
+ }
10543
+
10544
+ &.ncl-status-tooltip-error {
10545
+ padding-left: 10px;
10546
+ background-color: @darkish-pink;
10547
+
10548
+ &:after {
10549
+ border-right-color: @darkish-pink;
10550
+ }
10551
+ }
10552
+
10553
+ .ncl-status-icon {
10554
+ width: 13px;
10555
+ margin-right: 5px;
10556
+
10557
+ &.ncl-icon-ready {
10558
+ margin-top: 3px;
10559
+ font-size: 10px;
10560
+ }
10561
+
10562
+ &.ncl-icon-building {
10563
+ margin-top: 6px;
10564
+ font-size: 5px;
10565
+ }
10566
+
10567
+ &.ncl-icon-error {
10568
+ margin-top: 3px;
10569
+ font-size: 10px;
10570
+ }
10571
+ }
10572
+
10573
+ .ncl-status-title {
10574
+ font-size: 13px;
10575
+ font-weight: normal;
10576
+ white-space: nowrap;
10577
+
10578
+ &::first-letter {
10579
+ text-transform: capitalize;
10580
+ }
10581
+ }
10582
+ }
10583
+ }
10584
+ }
10585
+ }
10586
+ }
10587
+
10588
+ .test-pane-actions-wrapper {
10589
+ margin-right: 35px;
10590
+ }
10591
+ }
10592
+
10593
10593
  .ncl-search-input {
10594
10594
  position: relative;
10595
10595
  color: @silver;
@@ -10883,91 +10883,6 @@ ncl-navigation-tabs {
10883
10883
  }
10884
10884
  }
10885
10885
 
10886
- .function-event-wrapper {
10887
- width: 600px;
10888
- margin-bottom: -23px;
10889
-
10890
- .header {
10891
- display: flex;
10892
- justify-content: space-between;
10893
- border-bottom: 1px solid @pale-grey;
10894
-
10895
- .title {
10896
- font-size: 18px;
10897
- }
10898
- }
10899
-
10900
- .content {
10901
- border-bottom: 1px solid @pale-grey;
10902
- padding: 16px 0 16px 16px;
10903
-
10904
- .event-form {
10905
- width: 88%;
10906
-
10907
- .field-wrapper {
10908
- display: flex;
10909
- align-items: center;
10910
- margin: 15px 0 0 0;
10911
-
10912
- .field-label {
10913
- font-size: 16px;
10914
- margin-right: 10px;
10915
- width: 195px;
10916
- }
10917
-
10918
- .field-content {
10919
- width: 100%;
10920
-
10921
- .ncl-monaco {
10922
- height: 200px;
10923
- }
10924
-
10925
- .event-body {
10926
- font-size: 13px;
10927
- outline: none;
10928
- border: 1px solid @pale-grey;
10929
- resize: none;
10930
- width: 100%;
10931
- height: 100px;
10932
- padding: 5px 5px 5px 16px;
10933
- }
10934
- }
10935
- }
10936
- }
10937
-
10938
- .event-error {
10939
- display: flex;
10940
- font-size: 13px;
10941
- align-items: center;
10942
- justify-content: center;
10943
- color: @darkish-pink;
10944
- }
10945
- }
10946
-
10947
- .bottom-bar {
10948
- height: 64px;
10949
- display: flex;
10950
- align-items: center;
10951
- justify-content: flex-end;
10952
-
10953
- .igz-button-primary {
10954
- &.disabled {
10955
- color: rgba(71, 64, 86, 0.24);
10956
- border-radius: 2px;
10957
- border: solid 1px #f3f3f6;
10958
- background-color: #f3f3f6;
10959
- cursor: default;
10960
- display: inline-block;
10961
-
10962
- &:hover {
10963
- box-shadow: none;
10964
- border: none;
10965
- }
10966
- }
10967
- }
10968
- }
10969
- }
10970
-
10971
10886
  .ncl-edit-version-code {
10972
10887
  height: 100%;
10973
10888
  display: flex;
@@ -11368,169 +11283,155 @@ ncl-navigation-tabs {
11368
11283
  }
11369
11284
  }
11370
11285
 
11371
- .ncl-version-trigger {
11372
- padding: 11px 24px;
11373
-
11374
- .common-table-header {
11375
- border: none;
11376
- padding-left: 24px;
11377
-
11378
- .common-table-cell {
11379
- font-size: 14px;
11380
- font-weight: bold;
11381
- letter-spacing: normal;
11382
- color: @dusk-three;
11383
- height: 46px;
11384
- }
11385
- }
11286
+ .function-event-wrapper {
11287
+ width: 600px;
11288
+ margin-bottom: -23px;
11386
11289
 
11387
- .common-table-body {
11388
- .common-table-row {
11389
- &:not(.read-only):hover {
11390
- .common-table-cells-container {
11391
- background-color: @white;
11392
- }
11290
+ .header {
11291
+ display: flex;
11292
+ justify-content: space-between;
11293
+ border-bottom: 1px solid @pale-grey;
11393
11294
 
11394
- .actions-menu {
11395
- background-color: @white;
11396
- }
11397
- }
11295
+ .title {
11296
+ font-size: 18px;
11398
11297
  }
11399
11298
  }
11400
11299
 
11401
- .item-row .item-name, .item-row .item-class, .item-row .item-info {
11402
- padding-left: 0;
11403
- }
11300
+ .content {
11301
+ border-bottom: 1px solid @pale-grey;
11302
+ padding: 16px 0 16px 16px;
11404
11303
 
11405
- .title-field-row .name-field, .item-row .item-name, .header-name {
11406
- margin-right: 16px;
11407
- width: 15%;
11408
- }
11304
+ .event-form {
11305
+ width: 88%;
11409
11306
 
11410
- .title-field-row .class-field, .item-row .item-class, .header-class {
11411
- margin-right: 16px;
11412
- width: 10%;
11413
- }
11307
+ .field-wrapper {
11308
+ display: flex;
11309
+ align-items: center;
11310
+ margin: 15px 0 0 0;
11414
11311
 
11415
- .title-field-row .class-field {
11416
- width: auto;
11417
- }
11418
- }
11312
+ .field-label {
11313
+ font-size: 16px;
11314
+ margin-right: 10px;
11315
+ width: 195px;
11316
+ }
11419
11317
 
11420
- .ncl-text-size-dropdown {
11421
- display: flex;
11422
- justify-content: flex-end;
11318
+ .field-content {
11319
+ width: 100%;
11423
11320
 
11424
- .text-size-action-item {
11425
- width: 35px;
11426
- height: 35px;
11427
- margin: 0 8px 0 0;
11428
- display: flex;
11429
- justify-content: space-evenly;
11430
- font-size: 18px;
11321
+ .ncl-monaco {
11322
+ height: 200px;
11323
+ }
11431
11324
 
11432
- .action-icon {
11433
- &.igz-icon-decrease {
11434
- font-size: 10px;
11325
+ .event-body {
11326
+ font-size: 13px;
11327
+ outline: none;
11328
+ border: 1px solid @pale-grey;
11329
+ resize: none;
11330
+ width: 100%;
11331
+ height: 100px;
11332
+ padding: 5px 5px 5px 16px;
11333
+ }
11334
+ }
11435
11335
  }
11436
11336
  }
11437
- }
11438
- }
11439
-
11440
- .function-from-scratch-content {
11441
- .splash-screen {
11442
- top: 0;
11443
- }
11444
-
11445
- .title-wrapper {
11446
- margin-left: 50px;
11447
11337
 
11448
- .title {
11449
- color: @dusk-three;
11450
- font-size: 16px;
11451
- font-weight: bold;
11338
+ .event-error {
11339
+ display: flex;
11340
+ font-size: 13px;
11341
+ align-items: center;
11342
+ justify-content: center;
11343
+ color: @darkish-pink;
11452
11344
  }
11453
11345
  }
11454
11346
 
11455
- .function-configuration {
11456
- margin: 28px 0 0 0;
11457
-
11458
- .configuration-form {
11459
- display: flex;
11460
-
11461
- .function-name-wrapper {
11462
- width: 50%;
11463
- display: flex;
11464
- padding: 0 24px 0 74px;
11465
-
11466
- .projects-drop-down {
11467
- width: 40%;
11468
- margin-right: 48px;
11469
-
11470
- .input-label {
11471
- font-size: 14px;
11472
- font-weight: 600;
11473
- color: @dusk-three;
11474
- }
11347
+ .bottom-bar {
11348
+ height: 64px;
11349
+ display: flex;
11350
+ align-items: center;
11351
+ justify-content: flex-end;
11475
11352
 
11476
- igz-default-dropdown {
11477
- .default-dropdown {
11478
- background-color: @white;
11353
+ .igz-button-primary {
11354
+ &.disabled {
11355
+ color: rgba(71, 64, 86, 0.24);
11356
+ border-radius: 2px;
11357
+ border: solid 1px #f3f3f6;
11358
+ background-color: #f3f3f6;
11359
+ cursor: default;
11360
+ display: inline-block;
11479
11361
 
11480
- .default-dropdown-field {
11481
- &:focus {
11482
- background-color: inherit;
11483
- }
11484
- }
11485
- }
11486
- }
11362
+ &:hover {
11363
+ box-shadow: none;
11364
+ border: none;
11487
11365
  }
11366
+ }
11367
+ }
11368
+ }
11369
+ }
11370
+
11371
+ .ncl-version-trigger {
11372
+ padding: 11px 24px;
11488
11373
 
11489
- .function-name {
11490
- width: 100%;
11374
+ .common-table-header {
11375
+ border: none;
11376
+ padding-left: 24px;
11491
11377
 
11492
- .input-label {
11493
- font-size: 14px;
11494
- font-weight: 600;
11495
- color: @dusk-three;
11496
- }
11378
+ .common-table-cell {
11379
+ font-size: 14px;
11380
+ font-weight: bold;
11381
+ letter-spacing: normal;
11382
+ color: @dusk-three;
11383
+ height: 46px;
11384
+ }
11385
+ }
11497
11386
 
11498
- igz-validating-input-field {
11499
- margin-left: 2px;
11500
- }
11387
+ .common-table-body {
11388
+ .common-table-row {
11389
+ &:not(.read-only):hover {
11390
+ .common-table-cells-container {
11391
+ background-color: @white;
11392
+ }
11393
+
11394
+ .actions-menu {
11395
+ background-color: @white;
11501
11396
  }
11502
11397
  }
11398
+ }
11399
+ }
11503
11400
 
11504
- .function-runtime-wrapper {
11505
- width: 50%;
11506
- padding-left: 24px;
11507
- padding-right: 10%;
11401
+ .item-row .item-name, .item-row .item-class, .item-row .item-info {
11402
+ padding-left: 0;
11403
+ }
11508
11404
 
11509
- .function-runtime {
11510
- .input-label {
11511
- font-size: 14px;
11512
- font-weight: 600;
11513
- color: @dusk-three;
11514
- }
11405
+ .title-field-row .name-field, .item-row .item-name, .header-name {
11406
+ margin-right: 16px;
11407
+ width: 15%;
11408
+ }
11515
11409
 
11516
- igz-default-dropdown {
11517
- .default-dropdown {
11518
- background-color: @white;
11410
+ .title-field-row .class-field, .item-row .item-class, .header-class {
11411
+ margin-right: 16px;
11412
+ width: 10%;
11413
+ }
11519
11414
 
11520
- .default-dropdown-field {
11521
- &:focus {
11522
- background-color: inherit;
11523
- }
11524
- }
11525
- }
11526
- }
11415
+ .title-field-row .class-field {
11416
+ width: auto;
11417
+ }
11418
+ }
11527
11419
 
11528
- .bottom-bar {
11529
- display: flex;
11530
- justify-content: flex-end;
11531
- margin-top: 48px;
11532
- }
11533
- }
11420
+ .ncl-text-size-dropdown {
11421
+ display: flex;
11422
+ justify-content: flex-end;
11423
+
11424
+ .text-size-action-item {
11425
+ width: 35px;
11426
+ height: 35px;
11427
+ margin: 0 8px 0 0;
11428
+ display: flex;
11429
+ justify-content: space-evenly;
11430
+ font-size: 18px;
11431
+
11432
+ .action-icon {
11433
+ &.igz-icon-decrease {
11434
+ font-size: 10px;
11534
11435
  }
11535
11436
  }
11536
11437
  }
@@ -11798,6 +11699,105 @@ ncl-navigation-tabs {
11798
11699
  }
11799
11700
  }
11800
11701
 
11702
+ .function-from-scratch-content {
11703
+ .splash-screen {
11704
+ top: 0;
11705
+ }
11706
+
11707
+ .title-wrapper {
11708
+ margin-left: 50px;
11709
+
11710
+ .title {
11711
+ color: @dusk-three;
11712
+ font-size: 16px;
11713
+ font-weight: bold;
11714
+ }
11715
+ }
11716
+
11717
+ .function-configuration {
11718
+ margin: 28px 0 0 0;
11719
+
11720
+ .configuration-form {
11721
+ display: flex;
11722
+
11723
+ .function-name-wrapper {
11724
+ width: 50%;
11725
+ display: flex;
11726
+ padding: 0 24px 0 74px;
11727
+
11728
+ .projects-drop-down {
11729
+ width: 40%;
11730
+ margin-right: 48px;
11731
+
11732
+ .input-label {
11733
+ font-size: 14px;
11734
+ font-weight: 600;
11735
+ color: @dusk-three;
11736
+ }
11737
+
11738
+ igz-default-dropdown {
11739
+ .default-dropdown {
11740
+ background-color: @white;
11741
+
11742
+ .default-dropdown-field {
11743
+ &:focus {
11744
+ background-color: inherit;
11745
+ }
11746
+ }
11747
+ }
11748
+ }
11749
+ }
11750
+
11751
+ .function-name {
11752
+ width: 100%;
11753
+
11754
+ .input-label {
11755
+ font-size: 14px;
11756
+ font-weight: 600;
11757
+ color: @dusk-three;
11758
+ }
11759
+
11760
+ igz-validating-input-field {
11761
+ margin-left: 2px;
11762
+ }
11763
+ }
11764
+ }
11765
+
11766
+ .function-runtime-wrapper {
11767
+ width: 50%;
11768
+ padding-left: 24px;
11769
+ padding-right: 10%;
11770
+
11771
+ .function-runtime {
11772
+ .input-label {
11773
+ font-size: 14px;
11774
+ font-weight: 600;
11775
+ color: @dusk-three;
11776
+ }
11777
+
11778
+ igz-default-dropdown {
11779
+ .default-dropdown {
11780
+ background-color: @white;
11781
+
11782
+ .default-dropdown-field {
11783
+ &:focus {
11784
+ background-color: inherit;
11785
+ }
11786
+ }
11787
+ }
11788
+ }
11789
+
11790
+ .bottom-bar {
11791
+ display: flex;
11792
+ justify-content: flex-end;
11793
+ margin-top: 48px;
11794
+ }
11795
+ }
11796
+ }
11797
+ }
11798
+ }
11799
+ }
11800
+
11801
11801
  .function-import-wrapper-content {
11802
11802
  font-family: @font-family-sans-serif;
11803
11803
  padding-left: 3%;
@@ -12553,41 +12553,106 @@ ncl-navigation-tabs {
12553
12553
  }
12554
12554
  }
12555
12555
  }
12556
- }
12557
- }
12556
+ }
12557
+ }
12558
+
12559
+ .function-from-template-dialog-wrapper {
12560
+ .title {
12561
+ font-size: 20px;
12562
+ font-weight: 500;
12563
+ text-align: left;
12564
+ color: @dusk-three;
12565
+ }
12566
+
12567
+ .main-content {
12568
+ width: 500px;
12569
+ max-height: 500px;
12570
+
12571
+ form {
12572
+ margin: 0 20px 0 0;
12573
+
12574
+ .field-label {
12575
+ font-size: 14px;
12576
+ text-align: left;
12577
+ color: @dusk-three;
12578
+ }
12579
+
12580
+ .validating-input-field {
12581
+ .input-field {
12582
+ padding: 0 10px 0 17px;
12583
+ }
12584
+
12585
+ .input-placeholder {
12586
+ left: 18px;
12587
+ font-style: italic;
12588
+ font-size: 14px;
12589
+ }
12590
+ }
12591
+ }
12592
+ }
12593
+ }
12594
+
12595
+ .ncl-test-events-navigation-tabs {
12596
+ display: flex;
12597
+ background: #f8f8fb;
12598
+ height: 40px;
12599
+ border-top: 1px solid @pale-grey;
12600
+ border-bottom: 1px solid @pale-grey;
12601
+
12602
+ .test-events-navigation-tab {
12603
+ .duskThree(0.64);
12604
+ position: relative;
12605
+ float: left;
12606
+ height: 27px;
12607
+ padding: 10px 40px 0;
12608
+ font-family: @font-family-sans-serif;
12609
+ color: @color;
12610
+ font-size: 13px;
12611
+ text-align: center;
12612
+ cursor: pointer;
12613
+ border-bottom: none;
12614
+ box-sizing: content-box;
12615
+
12616
+ &.active, &.active:hover {
12617
+ background: none;
12618
+ color: @dusk-three;
12619
+ border-bottom: 2px solid @dusk-three;
12620
+ font-weight: bold;
12621
+
12622
+ .badge {
12623
+ color: @white;
12624
+ background-color: @light-grey-blue;
12625
+ }
12626
+ }
12558
12627
 
12559
- .function-from-template-dialog-wrapper {
12560
- .title {
12561
- font-size: 20px;
12562
- font-weight: 500;
12563
- text-align: left;
12564
- color: @dusk-three;
12628
+ .badge {
12629
+ display: inline-block;
12630
+ min-width: 22px;
12631
+ padding: 3px 7px;
12632
+ font-size: 12px;
12633
+ font-weight: 500;
12634
+ color: @greyish-purple;
12635
+ line-height: 1;
12636
+ vertical-align: middle;
12637
+ white-space: nowrap;
12638
+ text-align: center;
12639
+ background-color: @pale-grey;
12640
+ border-radius: 7.5px;
12641
+ margin-left: 7px;
12642
+ margin-top: -4px;
12643
+ }
12565
12644
  }
12566
12645
 
12567
- .main-content {
12568
- width: 500px;
12569
- max-height: 500px;
12570
-
12571
- form {
12572
- margin: 0 20px 0 0;
12573
-
12574
- .field-label {
12575
- font-size: 14px;
12576
- text-align: left;
12577
- color: @dusk-three;
12578
- }
12646
+ .default-dropdown {
12647
+ float: left;
12648
+ width: 105px;
12579
12649
 
12580
- .validating-input-field {
12581
- .input-field {
12582
- padding: 0 10px 0 17px;
12583
- }
12650
+ .default-dropdown-field:not(:hover) {
12651
+ border-color: transparent;
12652
+ }
12584
12653
 
12585
- .input-placeholder {
12586
- left: 18px;
12587
- font-style: italic;
12588
- font-size: 14px;
12589
- }
12590
- }
12654
+ .default-dropdown-container {
12655
+ z-index: 3;
12591
12656
  }
12592
12657
  }
12593
12658
  }
@@ -12745,243 +12810,82 @@ ncl-navigation-tabs {
12745
12810
  color: @orangish;
12746
12811
  }
12747
12812
  }
12748
-
12749
- .date {
12750
- display: inline-block;
12751
- width: 230px;
12752
- font-size: 14px;
12753
- font-weight: bold;
12754
- margin-right: 15px;
12755
- }
12756
-
12757
- .ncl-icon-parameters {
12758
- .duskThree(0.64);
12759
- position: absolute;
12760
- top: 9px;
12761
- right: 9px;
12762
- color: @color;
12763
- font-size: 14px;
12764
- }
12765
- }
12766
-
12767
- .expanded-body {
12768
- font-size: 14px;
12769
- color: @dusk-three;
12770
-
12771
- .error {
12772
- width: 71%;
12773
- border-radius: 3px;
12774
- background-color: #fbe5e8;
12775
- border: solid 1px @darkish-pink;
12776
- color: @darkish-pink;
12777
- word-wrap: break-word;
12778
- margin-left: 62px;
12779
- padding: 12px;
12780
- margin-bottom: 16px;
12781
- }
12782
-
12783
- .message {
12784
- display: inline-block;
12785
- width: 70%;
12786
- word-wrap: break-word;
12787
- margin: 0 0 16px 62px;
12788
- }
12789
-
12790
- .parameters {
12791
- padding: 0 62px 16px;
12792
-
12793
- .parameters-header {
12794
- font-weight: bold;
12795
- }
12796
-
12797
- > div {
12798
- display: flex;
12799
- line-height: 2;
12800
-
12801
- .labels {
12802
- color: @greyish-purple;
12803
- font-size: 14px;
12804
- width: 30%;
12805
- }
12806
-
12807
- .values {
12808
- color: @dusk-three;
12809
- font-size: 14px;
12810
- width: 70%;
12811
- }
12812
- }
12813
- }
12814
- }
12815
- }
12816
-
12817
- .no-logs {
12818
- margin: 10px auto 0;
12819
- font-size: 14px;
12820
- color: @pale-grey;
12821
- text-align: center;
12822
- }
12823
- }
12824
- .ncl-test-events-navigation-tabs {
12825
- display: flex;
12826
- background: #f8f8fb;
12827
- height: 40px;
12828
- border-top: 1px solid @pale-grey;
12829
- border-bottom: 1px solid @pale-grey;
12830
-
12831
- .test-events-navigation-tab {
12832
- .duskThree(0.64);
12833
- position: relative;
12834
- float: left;
12835
- height: 27px;
12836
- padding: 10px 40px 0;
12837
- font-family: @font-family-sans-serif;
12838
- color: @color;
12839
- font-size: 13px;
12840
- text-align: center;
12841
- cursor: pointer;
12842
- border-bottom: none;
12843
- box-sizing: content-box;
12844
-
12845
- &.active, &.active:hover {
12846
- background: none;
12847
- color: @dusk-three;
12848
- border-bottom: 2px solid @dusk-three;
12849
- font-weight: bold;
12850
-
12851
- .badge {
12852
- color: @white;
12853
- background-color: @light-grey-blue;
12854
- }
12855
- }
12856
-
12857
- .badge {
12858
- display: inline-block;
12859
- min-width: 22px;
12860
- padding: 3px 7px;
12861
- font-size: 12px;
12862
- font-weight: 500;
12863
- color: @greyish-purple;
12864
- line-height: 1;
12865
- vertical-align: middle;
12866
- white-space: nowrap;
12867
- text-align: center;
12868
- background-color: @pale-grey;
12869
- border-radius: 7.5px;
12870
- margin-left: 7px;
12871
- margin-top: -4px;
12872
- }
12873
- }
12874
-
12875
- .default-dropdown {
12876
- float: left;
12877
- width: 105px;
12878
-
12879
- .default-dropdown-field:not(:hover) {
12880
- border-color: transparent;
12881
- }
12882
-
12883
- .default-dropdown-container {
12884
- z-index: 3;
12885
- }
12886
- }
12887
- }
12888
-
12889
- @desktop: 1350px;
12890
- @desktop-low: 1202px;
12891
- @desktop-middle: 1550px;
12892
-
12893
- .ncl-version-configuration-basic-settings {
12894
- .row {
12895
- display: flex;
12896
- justify-content: space-between;
12897
-
12898
- &:not(:last-child) {
12899
- margin-bottom: 23px;
12900
- }
12901
-
12902
- &:last-child {
12903
- margin-bottom: 4px;
12904
- }
12905
-
12906
- &.enable-checkbox {
12907
- justify-content: flex-start;
12908
- margin-bottom: 18px;
12909
- }
12910
-
12911
- > div {
12912
- flex: 1;
12913
-
12914
- &:not(:last-child) {
12915
- margin-right: 46px;
12916
- }
12917
-
12918
- .label {
12919
- padding: 0;
12920
- margin-bottom: 5px;
12921
- }
12922
-
12923
- &.timeout-block {
12924
- .label {
12925
- margin-bottom: 3px;
12926
- }
12927
-
12928
- .timeout-values {
12929
- margin-left: 27px;
12930
-
12931
- .inputs {
12932
- display: flex;
12933
- align-items: center;
12934
-
12935
- .values-label {
12936
- .duskThree(0.9);
12937
- margin: 0 17px 0 8px;
12938
- font-size: 14px;
12939
- font-weight: normal;
12940
- font-style: normal;
12941
- letter-spacing: normal;
12942
- text-align: left;
12943
- color: @color;
12944
- }
12945
- }
12946
- }
12813
+
12814
+ .date {
12815
+ display: inline-block;
12816
+ width: 230px;
12817
+ font-size: 14px;
12818
+ font-weight: bold;
12819
+ margin-right: 15px;
12820
+ }
12821
+
12822
+ .ncl-icon-parameters {
12823
+ .duskThree(0.64);
12824
+ position: absolute;
12825
+ top: 9px;
12826
+ right: 9px;
12827
+ color: @color;
12828
+ font-size: 14px;
12947
12829
  }
12948
12830
  }
12949
12831
 
12950
- .logger-block {
12951
- display: flex;
12952
- margin-top: 3px;
12832
+ .expanded-body {
12833
+ font-size: 14px;
12834
+ color: @dusk-three;
12953
12835
 
12954
- .logger-dropdown {
12955
- .default-dropdown {
12956
- position: relative;
12957
- height: 36px;
12836
+ .error {
12837
+ width: 71%;
12838
+ border-radius: 3px;
12839
+ background-color: #fbe5e8;
12840
+ border: solid 1px @darkish-pink;
12841
+ color: @darkish-pink;
12842
+ word-wrap: break-word;
12843
+ margin-left: 62px;
12844
+ padding: 12px;
12845
+ margin-bottom: 16px;
12846
+ }
12958
12847
 
12959
- .dropdown-overlap {
12960
- z-index: 100;
12961
- }
12962
- }
12848
+ .message {
12849
+ display: inline-block;
12850
+ width: 70%;
12851
+ word-wrap: break-word;
12852
+ margin: 0 0 16px 62px;
12963
12853
  }
12964
12854
 
12965
- > div {
12966
- flex: 1;
12855
+ .parameters {
12856
+ padding: 0 62px 16px;
12967
12857
 
12968
- &:not(:last-child) {
12969
- margin-right: 16px;
12858
+ .parameters-header {
12859
+ font-weight: bold;
12970
12860
  }
12971
12861
 
12972
- .label {
12973
- padding: 0;
12974
- margin-bottom: 5px;
12975
- }
12862
+ > div {
12863
+ display: flex;
12864
+ line-height: 2;
12976
12865
 
12977
- &.logger-input {
12978
- flex-grow: 1.95;
12866
+ .labels {
12867
+ color: @greyish-purple;
12868
+ font-size: 14px;
12869
+ width: 30%;
12870
+ }
12871
+
12872
+ .values {
12873
+ color: @dusk-three;
12874
+ font-size: 14px;
12875
+ width: 70%;
12876
+ }
12979
12877
  }
12980
12878
  }
12981
12879
  }
12982
12880
  }
12983
- }
12984
12881
 
12882
+ .no-logs {
12883
+ margin: 10px auto 0;
12884
+ font-size: 14px;
12885
+ color: @pale-grey;
12886
+ text-align: center;
12887
+ }
12888
+ }
12985
12889
  .ncl-version-configuration-build {
12986
12890
  &.disabled {
12987
12891
  opacity: .5;
@@ -13221,70 +13125,109 @@ ncl-navigation-tabs {
13221
13125
  }
13222
13126
  }
13223
13127
 
13224
- .ncl-version-configuration-logging {
13128
+ @desktop: 1350px;
13129
+ @desktop-low: 1202px;
13130
+ @desktop-middle: 1550px;
13131
+
13132
+ .ncl-version-configuration-basic-settings {
13225
13133
  .row {
13226
13134
  display: flex;
13227
- position: relative;
13135
+ justify-content: space-between;
13228
13136
 
13229
- .logging-wrapper {
13230
- width: 100%;
13137
+ &:not(:last-child) {
13138
+ margin-bottom: 23px;
13231
13139
  }
13232
- }
13233
- }
13234
13140
 
13235
- @desktop-middle: 1550px;
13236
-
13237
- .ncl-version-configuration-resources {
13238
- .row {
13239
- .range-inputs-row {
13240
- display: flex;
13241
- align-items: flex-end;
13141
+ &:last-child {
13142
+ margin-bottom: 4px;
13143
+ }
13242
13144
 
13243
- .row-title {
13244
- margin-bottom: 8px;
13245
- }
13145
+ &.enable-checkbox {
13146
+ justify-content: flex-start;
13147
+ margin-bottom: 18px;
13246
13148
  }
13247
13149
 
13248
- .form-row {
13249
- padding: 12px 0;
13150
+ > div {
13151
+ flex: 1;
13250
13152
 
13251
- .row-title, .input-title {
13252
- font-size: 14px;
13153
+ &:not(:last-child) {
13154
+ margin-right: 46px;
13253
13155
  }
13254
13156
 
13255
- .row-title {
13256
- font-weight: 500;
13157
+ .label {
13158
+ padding: 0;
13159
+ margin-bottom: 5px;
13257
13160
  }
13258
13161
 
13259
- .input-wrapper {
13260
- display: flex;
13261
- flex-wrap: wrap;
13162
+ &.timeout-block {
13163
+ .label {
13164
+ margin-bottom: 3px;
13165
+ }
13262
13166
 
13263
- .input-title {
13264
- width: 100%;
13167
+ .timeout-values {
13168
+ margin-left: 27px;
13169
+
13170
+ .inputs {
13171
+ display: flex;
13172
+ align-items: center;
13173
+
13174
+ .values-label {
13175
+ .duskThree(0.9);
13176
+ margin: 0 17px 0 8px;
13177
+ font-size: 14px;
13178
+ font-weight: normal;
13179
+ font-style: normal;
13180
+ letter-spacing: normal;
13181
+ text-align: left;
13182
+ color: @color;
13183
+ }
13184
+ }
13265
13185
  }
13186
+ }
13187
+ }
13266
13188
 
13267
- .memory-number-input, .cpu-number-input {
13268
- width: 50%;
13189
+ .logger-block {
13190
+ display: flex;
13191
+ margin-top: 3px;
13192
+
13193
+ .logger-dropdown {
13194
+ .default-dropdown {
13195
+ position: relative;
13196
+ height: 36px;
13197
+
13198
+ .dropdown-overlap {
13199
+ z-index: 100;
13200
+ }
13269
13201
  }
13202
+ }
13270
13203
 
13271
- .memory-size-dropdown, .cpu-dropdown {
13272
- width: 35%
13204
+ > div {
13205
+ flex: 1;
13206
+
13207
+ &:not(:last-child) {
13208
+ margin-right: 16px;
13273
13209
  }
13274
13210
 
13275
- .gpu-number-input, .replicas-number-input {
13276
- width: 85%;
13211
+ .label {
13212
+ padding: 0;
13213
+ margin-bottom: 5px;
13214
+ }
13215
+
13216
+ &.logger-input {
13217
+ flex-grow: 1.95;
13277
13218
  }
13278
13219
  }
13279
13220
  }
13221
+ }
13222
+ }
13280
13223
 
13281
- .slider-block {
13282
- padding-top: 0;
13283
- margin-bottom: 10px;
13224
+ .ncl-version-configuration-logging {
13225
+ .row {
13226
+ display: flex;
13227
+ position: relative;
13284
13228
 
13285
- .slider {
13286
- width: 70%;
13287
- }
13229
+ .logging-wrapper {
13230
+ width: 100%;
13288
13231
  }
13289
13232
  }
13290
13233
  }
@@ -13340,6 +13283,63 @@ ncl-navigation-tabs {
13340
13283
  }
13341
13284
  }
13342
13285
 
13286
+ @desktop-middle: 1550px;
13287
+
13288
+ .ncl-version-configuration-resources {
13289
+ .row {
13290
+ .range-inputs-row {
13291
+ display: flex;
13292
+ align-items: flex-end;
13293
+
13294
+ .row-title {
13295
+ margin-bottom: 8px;
13296
+ }
13297
+ }
13298
+
13299
+ .form-row {
13300
+ padding: 12px 0;
13301
+
13302
+ .row-title, .input-title {
13303
+ font-size: 14px;
13304
+ }
13305
+
13306
+ .row-title {
13307
+ font-weight: 500;
13308
+ }
13309
+
13310
+ .input-wrapper {
13311
+ display: flex;
13312
+ flex-wrap: wrap;
13313
+
13314
+ .input-title {
13315
+ width: 100%;
13316
+ }
13317
+
13318
+ .memory-number-input, .cpu-number-input {
13319
+ width: 50%;
13320
+ }
13321
+
13322
+ .memory-size-dropdown, .cpu-dropdown {
13323
+ width: 35%
13324
+ }
13325
+
13326
+ .gpu-number-input, .replicas-number-input {
13327
+ width: 85%;
13328
+ }
13329
+ }
13330
+ }
13331
+
13332
+ .slider-block {
13333
+ padding-top: 0;
13334
+ margin-bottom: 10px;
13335
+
13336
+ .slider {
13337
+ width: 70%;
13338
+ }
13339
+ }
13340
+ }
13341
+ }
13342
+
13343
13343
  .ncl-version-configuration-volumes {
13344
13344
  .ncl-version-volume {
13345
13345
  .common-table-header {