iguazio.dashboard-controls 1.2.17 → 1.2.18-3.7-1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3666,149 +3666,6 @@ ncl-functions {
3666
3666
  }
3667
3667
  }
3668
3668
 
3669
- /**
3670
- UI.Layout CSS
3671
- *************************************/
3672
- .stretch {
3673
- position: absolute;
3674
- top: 0;
3675
- left: 0;
3676
- right: 0;
3677
- bottom: 0;
3678
- /* Can be changed by hand ;)*/
3679
- overflow: auto;
3680
- }
3681
-
3682
- .animate-row, .animate-column {
3683
- -webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3684
- -moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3685
- -ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3686
- -o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3687
- transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3688
- }
3689
-
3690
- .ui-splitbar {
3691
- display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
3692
- display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
3693
- display: -ms-flexbox; /* TWEENER - IE 10 */
3694
- display: -webkit-flex; /* NEW - Chrome */
3695
- display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
3696
- -webkit-justify-content: center;
3697
- justify-content: center;
3698
-
3699
- background-color: #ffffff;
3700
- right: auto;
3701
- position: absolute;
3702
- z-index: 1;
3703
- }
3704
-
3705
- .ui-layout-row > .ui-splitbar {
3706
- height: 8px;
3707
- width: 100%;
3708
- cursor: row-resize;
3709
- text-align: center;
3710
- justify-content: center;
3711
- align-items: center;
3712
- background: linear-gradient(to bottom, #fff 0%, #eee 100%);
3713
- overflow-y: hidden;
3714
- }
3715
-
3716
- .ui-layout-column > .ui-splitbar {
3717
- width: 8px;
3718
- height: 100%;
3719
- cursor: col-resize;
3720
- -webkit-flex-direction: column;
3721
- flex-direction: column;
3722
- background: linear-gradient(to right, #fff 0%, #eee 100%);
3723
- overflow-x: hidden;
3724
- }
3725
-
3726
- .ui-layout-column > .ui-splitbar > a,
3727
- .ui-layout-row > .ui-splitbar > a {
3728
- cursor: pointer;
3729
- text-align: center;
3730
- font-size: 16px;
3731
- color: #aaa;
3732
- }
3733
-
3734
- .ui-layout-column > .ui-splitbar > a:nth-child(2) {
3735
- margin-top: 0.35rem;
3736
- }
3737
-
3738
- .ui-layout-row > .ui-splitbar > a:nth-child(2) {
3739
- margin-left: 0.35rem;
3740
- }
3741
-
3742
-
3743
- /**
3744
- * Icons
3745
- **/
3746
-
3747
- .ui-splitbar-icon {
3748
- width: 0;
3749
- height: 0;
3750
- display: inline-block;
3751
- }
3752
-
3753
- .ui-splitbar-icon-up {
3754
- border-left: 0.45em solid transparent;
3755
- border-right: 0.45em solid transparent;
3756
- border-bottom: 0.45em solid;
3757
- }
3758
-
3759
- .ui-splitbar-icon-down {
3760
- border-left: 0.45em solid transparent;
3761
- border-right: 0.45em solid transparent;
3762
- border-top: 0.45em solid;
3763
- margin-right: 0.45em;
3764
- }
3765
-
3766
- .ui-splitbar-icon-right {
3767
- border-top: 0.45em solid transparent;
3768
- border-bottom: 0.45em solid transparent;
3769
- border-left: 0.45em solid;
3770
-
3771
- }
3772
-
3773
- .ui-splitbar-icon-left {
3774
- border-top: 0.45em solid transparent;
3775
- border-bottom: 0.45em solid transparent;
3776
- border-right: 0.45em solid;
3777
- margin-top: 0.45em;
3778
- }
3779
-
3780
- /* Allow disabling of icons */
3781
- .no-toggle .ui-splitbar-icon {
3782
- display: none;
3783
- }
3784
-
3785
- @media only screen and (max-device-width: 480px) {
3786
- .no-mobile-toggle .ui-splitbar-icon {
3787
- display: none;
3788
- }
3789
- }
3790
-
3791
- @media print {
3792
- .ui-splitbar {
3793
- display: none;
3794
- }
3795
-
3796
- .stretch {
3797
- position: relative;
3798
- }
3799
-
3800
- /* The last item can take up any amount of space. */
3801
- .stretch.ui-layout-container:last-child {
3802
- position: static;
3803
- overflow: visible;
3804
- }
3805
- }
3806
-
3807
- /* Make sure hidden elements are in fact not rendered. */
3808
- .ui-layout-hidden {
3809
- display: none;
3810
- }
3811
-
3812
3669
  /*
3813
3670
  == malihu jquery custom scrollbar plugin ==
3814
3671
  Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
@@ -5531,254 +5388,187 @@ yx-axis
5531
5388
 
5532
5389
  /* ---------------------------------------- */
5533
5390
 
5534
- .action-checkbox {
5535
- .action-checkbox-color-set();
5536
-
5537
- line-height: 16px;
5538
- text-align: center;
5391
+ /**
5392
+ UI.Layout CSS
5393
+ *************************************/
5394
+ .stretch {
5395
+ position: absolute;
5396
+ top: 0;
5397
+ left: 0;
5398
+ right: 0;
5399
+ bottom: 0;
5400
+ /* Can be changed by hand ;)*/
5401
+ overflow: auto;
5402
+ }
5539
5403
 
5540
- .check-item {
5541
- font-size: 16px;
5542
- cursor: pointer;
5543
- line-height: 1;
5544
- vertical-align: middle;
5404
+ .animate-row, .animate-column {
5405
+ -webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5406
+ -moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5407
+ -ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5408
+ -o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5409
+ transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5410
+ }
5545
5411
 
5546
- &.igz-icon-checkbox-unchecked {
5547
- color: @icon-checkbox-unchecked;
5548
- }
5412
+ .ui-splitbar {
5413
+ display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
5414
+ display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
5415
+ display: -ms-flexbox; /* TWEENER - IE 10 */
5416
+ display: -webkit-flex; /* NEW - Chrome */
5417
+ display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
5418
+ -webkit-justify-content: center;
5419
+ justify-content: center;
5549
5420
 
5550
- &.igz-icon-checkbox-checked {
5551
- color: @icon-checkbox-checked;
5552
- }
5553
- }
5421
+ background-color: #ffffff;
5422
+ right: auto;
5423
+ position: absolute;
5424
+ z-index: 1;
5554
5425
  }
5555
- .action-checkbox-all {
5556
- .action-checkbox-all-color-set();
5557
5426
 
5558
- text-align: center;
5427
+ .ui-layout-row > .ui-splitbar {
5428
+ height: 8px;
5429
+ width: 100%;
5430
+ cursor: row-resize;
5431
+ text-align: center;
5432
+ justify-content: center;
5433
+ align-items: center;
5434
+ background: linear-gradient(to bottom, #fff 0%, #eee 100%);
5435
+ overflow-y: hidden;
5436
+ }
5559
5437
 
5560
- .check-item {
5561
- cursor: pointer;
5562
- color: @check-item-color;
5563
- font-size: 16px;
5564
- line-height: 1;
5565
- vertical-align: middle;
5438
+ .ui-layout-column > .ui-splitbar {
5439
+ width: 8px;
5440
+ height: 100%;
5441
+ cursor: col-resize;
5442
+ -webkit-flex-direction: column;
5443
+ flex-direction: column;
5444
+ background: linear-gradient(to right, #fff 0%, #eee 100%);
5445
+ overflow-x: hidden;
5446
+ }
5566
5447
 
5567
- &.igz-icon-checkbox-checked {
5568
- color: @check-item-icon-checkbox-checked-color;
5569
- }
5570
- }
5448
+ .ui-layout-column > .ui-splitbar > a,
5449
+ .ui-layout-row > .ui-splitbar > a {
5450
+ cursor: pointer;
5451
+ text-align: center;
5452
+ font-size: 16px;
5453
+ color: #aaa;
5571
5454
  }
5572
- .igz-action-panel {
5573
- .action-panel-color-set();
5574
- .action-icon-color-set();
5575
5455
 
5576
- left: 0;
5577
- line-height: 0;
5578
- position: relative;
5579
- transition: @igz-basic-transition;
5456
+ .ui-layout-column > .ui-splitbar > a:nth-child(2) {
5457
+ margin-top: 0.35rem;
5458
+ }
5580
5459
 
5581
- &.ng-hide {
5582
- left: -100%;
5583
- }
5460
+ .ui-layout-row > .ui-splitbar > a:nth-child(2) {
5461
+ margin-left: 0.35rem;
5462
+ }
5584
5463
 
5585
- .actions-list {
5586
- transition: none;
5587
5464
 
5588
- &.ng-hide {
5589
- opacity: 0;
5590
- }
5465
+ /**
5466
+ * Icons
5467
+ **/
5591
5468
 
5592
- &.empty {
5593
- line-height: 39px;
5594
- padding: 1px 19px;
5595
- font-size: 17px;
5596
- letter-spacing: 0.2px;
5597
- color: @action-list-empty-color;
5598
- }
5599
-
5600
- .igz-action-item {
5601
- display: flex;
5602
- justify-content: center;
5603
- align-items: center;
5604
- background-color: @action-item-bg-color;
5605
- border-radius: 50%;
5606
- color: @action-item-color;
5607
- cursor: pointer;
5608
- float: left;
5609
- font-size: 18px;
5610
- height: 40px;
5611
- margin: 0 8px 0 0;
5612
- position: relative;
5613
- transition: color .2s ease-out;
5614
- width: 40px;
5615
- z-index: 2;
5616
-
5617
- &:last-of-type {
5618
- margin-right: 0;
5619
- }
5620
-
5621
- &.inactive {
5622
- pointer-events: none;
5623
-
5624
- &:hover {
5625
- color: @action-item-inactive-hover-color;
5626
- }
5627
-
5628
- .action-icon {
5629
- color: @action-icon-inactive-color;
5630
- cursor: default;
5631
- }
5632
- }
5633
-
5634
- &.active {
5635
- background-color: @action-item-active-bg-color;
5636
- }
5469
+ .ui-splitbar-icon {
5470
+ width: 0;
5471
+ height: 0;
5472
+ display: inline-block;
5473
+ }
5637
5474
 
5638
- &:not(.inactive) {
5639
- &:hover {
5640
- overflow: visible;
5641
- background-color: @action-item-hover-bg-color;
5642
- box-shadow: @action-item-hover-box-shadow;
5475
+ .ui-splitbar-icon-up {
5476
+ border-left: 0.45em solid transparent;
5477
+ border-right: 0.45em solid transparent;
5478
+ border-bottom: 0.45em solid;
5479
+ }
5643
5480
 
5644
- &:active {
5645
- box-shadow: @action-item-hover-active-box-shadow;
5646
- background-color: @action-item-hover-active-bg-color;
5647
- }
5481
+ .ui-splitbar-icon-down {
5482
+ border-left: 0.45em solid transparent;
5483
+ border-right: 0.45em solid transparent;
5484
+ border-top: 0.45em solid;
5485
+ margin-right: 0.45em;
5486
+ }
5648
5487
 
5649
- .action-icon {
5650
- color: @action-icon-hover-color;
5651
- }
5652
- }
5488
+ .ui-splitbar-icon-right {
5489
+ border-top: 0.45em solid transparent;
5490
+ border-bottom: 0.45em solid transparent;
5491
+ border-left: 0.45em solid;
5653
5492
 
5654
- &:focus {
5655
- background-color: @action-item-hover-bg-color;
5656
- box-shadow: @action-item-focus-box-shadow;
5657
- &:hover {
5658
- box-shadow: @action-item-focus-hover-box-shadow;
5659
- }
5660
- }
5661
- }
5493
+ }
5662
5494
 
5663
- &.subtemplate-show {
5664
- transition: none;
5665
- background-color: @dropdown-menu-subtemplate-show-bg-color;
5666
- box-shadow: @dropdown-menu-subtemplate-show-box-shadow;
5495
+ .ui-splitbar-icon-left {
5496
+ border-top: 0.45em solid transparent;
5497
+ border-bottom: 0.45em solid transparent;
5498
+ border-right: 0.45em solid;
5499
+ margin-top: 0.45em;
5500
+ }
5667
5501
 
5668
- &:hover {
5669
- background-color: @dropdown-menu-subtemplate-show-hover-bg-color;
5670
- box-shadow: @dropdown-menu-subtemplate-show-hover-box-shadow;
5671
- }
5502
+ /* Allow disabling of icons */
5503
+ .no-toggle .ui-splitbar-icon {
5504
+ display: none;
5505
+ }
5672
5506
 
5673
- .action-icon {
5674
- color: @action-icon-hover-color;
5675
- }
5676
- }
5507
+ @media only screen and (max-device-width: 480px) {
5508
+ .no-mobile-toggle .ui-splitbar-icon {
5509
+ display: none;
5510
+ }
5511
+ }
5677
5512
 
5678
- &.last-item {
5679
- margin: 0;
5680
- }
5513
+ @media print {
5514
+ .ui-splitbar {
5515
+ display: none;
5516
+ }
5681
5517
 
5682
- .upload-action {
5683
- width: 100%;
5684
- height: 100%;
5685
- display: flex;
5686
- justify-content: center;
5687
- align-items: center;
5688
- }
5518
+ .stretch {
5519
+ position: relative;
5520
+ }
5689
5521
 
5690
- .action-icon {
5691
- color: @action-icon-color;
5692
- }
5522
+ /* The last item can take up any amount of space. */
5523
+ .stretch.ui-layout-container:last-child {
5524
+ position: static;
5525
+ overflow: visible;
5526
+ }
5527
+ }
5693
5528
 
5694
- .action-label {
5695
- display: none;
5696
- }
5529
+ /* Make sure hidden elements are in fact not rendered. */
5530
+ .ui-layout-hidden {
5531
+ display: none;
5532
+ }
5697
5533
 
5698
- .filter-counter {
5699
- position: absolute;
5700
- left: 26px;
5701
- top: 2px;
5702
- display: inline-block;
5703
- font-size: 12px;
5704
- font-weight: 500;
5705
- text-align: center;
5706
- line-height: 16px;
5707
- color: @action-item-filter-counter-color;
5708
- min-width: 16px;
5709
- height: 15px;
5710
- padding: 0 4px;
5711
- border-radius: 7.5px;
5712
- background-color: @action-item-filter-counter-bg-color;
5713
- }
5534
+ .action-checkbox {
5535
+ .action-checkbox-color-set();
5714
5536
 
5715
- .item-dropdown-menu {
5716
- position: absolute;
5717
- top: 100%;
5718
- left: 0;
5719
- padding: 8px 0;
5720
- list-style: none;
5721
- font-size: 13px;
5722
- font-weight: 500;
5723
- color: @dropdown-menu-color;
5724
- border-radius: 2px;
5725
- background-color: @dropdown-menu-bg-color;
5726
- box-shadow: @dropdown-menu-box-shadow;
5727
- margin-top: 1px;
5728
- z-index: 10;
5537
+ line-height: 16px;
5538
+ text-align: center;
5729
5539
 
5730
- .item-dropdown-menu-list {
5731
- margin: 0;
5732
- display: block;
5733
- padding: 0;
5734
- list-style-type: none;
5540
+ .check-item {
5541
+ font-size: 16px;
5542
+ cursor: pointer;
5543
+ line-height: 1;
5544
+ vertical-align: middle;
5735
5545
 
5736
- li {
5737
- height: 32px;
5738
- line-height: 32px;
5739
- text-align: left;
5740
- display: flex;
5546
+ &.igz-icon-checkbox-unchecked {
5547
+ color: @icon-checkbox-unchecked;
5548
+ }
5741
5549
 
5742
- &:hover {
5743
- background-color: @dropdown-menu-li-hover-bg-color;
5550
+ &.igz-icon-checkbox-checked {
5551
+ color: @icon-checkbox-checked;
5552
+ }
5553
+ }
5554
+ }
5555
+ .action-checkbox-all {
5556
+ .action-checkbox-all-color-set();
5744
5557
 
5745
- .action-icon {
5746
- color: @action-icon-hover-color;
5747
- }
5748
- }
5558
+ text-align: center;
5749
5559
 
5750
- .action-label {
5751
- display: inline-block;
5752
- white-space: nowrap;
5753
- vertical-align: top;
5754
- margin-right: 17px;
5755
- }
5560
+ .check-item {
5561
+ cursor: pointer;
5562
+ color: @check-item-color;
5563
+ font-size: 16px;
5564
+ line-height: 1;
5565
+ vertical-align: middle;
5756
5566
 
5757
- .action-icon {
5758
- color: @action-icon-color;
5759
- font-size: 17px;
5760
- display: inline-block;
5761
- margin: 0 13px 0 21px;
5762
- vertical-align: middle;
5763
- }
5764
- }
5765
- }
5766
- }
5567
+ &.igz-icon-checkbox-checked {
5568
+ color: @check-item-icon-checkbox-checked-color;
5767
5569
  }
5768
5570
  }
5769
-
5770
- .action-subtemplate {
5771
- border-bottom-left-radius: 4px;
5772
- border-bottom-right-radius: 4px;
5773
- border: @action-subtemplate-border;
5774
- background-color: @action-subtemplate-bg-color;
5775
- box-shadow: @action-subtemplate-box-shadow;
5776
- position: fixed;
5777
- margin: -2px 0 0 -1px;
5778
- z-index: 10;
5779
- }
5780
5571
  }
5781
-
5782
5572
  .igz-action-menu {
5783
5573
  .action-menu-color-set();
5784
5574
  .action-icon-color-set();
@@ -5937,13 +5727,223 @@ yx-axis
5937
5727
  }
5938
5728
  }
5939
5729
 
5940
- .auto-complete-wrapper {
5941
- .auto-complete-color-set();
5730
+ .igz-action-panel {
5731
+ .action-panel-color-set();
5732
+ .action-icon-color-set();
5942
5733
 
5734
+ left: 0;
5735
+ line-height: 0;
5943
5736
  position: relative;
5737
+ transition: @igz-basic-transition;
5944
5738
 
5945
- .input-row {
5946
- display: flex;
5739
+ &.ng-hide {
5740
+ left: -100%;
5741
+ }
5742
+
5743
+ .actions-list {
5744
+ transition: none;
5745
+
5746
+ &.ng-hide {
5747
+ opacity: 0;
5748
+ }
5749
+
5750
+ &.empty {
5751
+ line-height: 39px;
5752
+ padding: 1px 19px;
5753
+ font-size: 17px;
5754
+ letter-spacing: 0.2px;
5755
+ color: @action-list-empty-color;
5756
+ }
5757
+
5758
+ .igz-action-item {
5759
+ display: flex;
5760
+ justify-content: center;
5761
+ align-items: center;
5762
+ background-color: @action-item-bg-color;
5763
+ border-radius: 50%;
5764
+ color: @action-item-color;
5765
+ cursor: pointer;
5766
+ float: left;
5767
+ font-size: 18px;
5768
+ height: 40px;
5769
+ margin: 0 8px 0 0;
5770
+ position: relative;
5771
+ transition: color .2s ease-out;
5772
+ width: 40px;
5773
+ z-index: 2;
5774
+
5775
+ &:last-of-type {
5776
+ margin-right: 0;
5777
+ }
5778
+
5779
+ &.inactive {
5780
+ pointer-events: none;
5781
+
5782
+ &:hover {
5783
+ color: @action-item-inactive-hover-color;
5784
+ }
5785
+
5786
+ .action-icon {
5787
+ color: @action-icon-inactive-color;
5788
+ cursor: default;
5789
+ }
5790
+ }
5791
+
5792
+ &.active {
5793
+ background-color: @action-item-active-bg-color;
5794
+ }
5795
+
5796
+ &:not(.inactive) {
5797
+ &:hover {
5798
+ overflow: visible;
5799
+ background-color: @action-item-hover-bg-color;
5800
+ box-shadow: @action-item-hover-box-shadow;
5801
+
5802
+ &:active {
5803
+ box-shadow: @action-item-hover-active-box-shadow;
5804
+ background-color: @action-item-hover-active-bg-color;
5805
+ }
5806
+
5807
+ .action-icon {
5808
+ color: @action-icon-hover-color;
5809
+ }
5810
+ }
5811
+
5812
+ &:focus {
5813
+ background-color: @action-item-hover-bg-color;
5814
+ box-shadow: @action-item-focus-box-shadow;
5815
+ &:hover {
5816
+ box-shadow: @action-item-focus-hover-box-shadow;
5817
+ }
5818
+ }
5819
+ }
5820
+
5821
+ &.subtemplate-show {
5822
+ transition: none;
5823
+ background-color: @dropdown-menu-subtemplate-show-bg-color;
5824
+ box-shadow: @dropdown-menu-subtemplate-show-box-shadow;
5825
+
5826
+ &:hover {
5827
+ background-color: @dropdown-menu-subtemplate-show-hover-bg-color;
5828
+ box-shadow: @dropdown-menu-subtemplate-show-hover-box-shadow;
5829
+ }
5830
+
5831
+ .action-icon {
5832
+ color: @action-icon-hover-color;
5833
+ }
5834
+ }
5835
+
5836
+ &.last-item {
5837
+ margin: 0;
5838
+ }
5839
+
5840
+ .upload-action {
5841
+ width: 100%;
5842
+ height: 100%;
5843
+ display: flex;
5844
+ justify-content: center;
5845
+ align-items: center;
5846
+ }
5847
+
5848
+ .action-icon {
5849
+ color: @action-icon-color;
5850
+ }
5851
+
5852
+ .action-label {
5853
+ display: none;
5854
+ }
5855
+
5856
+ .filter-counter {
5857
+ position: absolute;
5858
+ left: 26px;
5859
+ top: 2px;
5860
+ display: inline-block;
5861
+ font-size: 12px;
5862
+ font-weight: 500;
5863
+ text-align: center;
5864
+ line-height: 16px;
5865
+ color: @action-item-filter-counter-color;
5866
+ min-width: 16px;
5867
+ height: 15px;
5868
+ padding: 0 4px;
5869
+ border-radius: 7.5px;
5870
+ background-color: @action-item-filter-counter-bg-color;
5871
+ }
5872
+
5873
+ .item-dropdown-menu {
5874
+ position: absolute;
5875
+ top: 100%;
5876
+ left: 0;
5877
+ padding: 8px 0;
5878
+ list-style: none;
5879
+ font-size: 13px;
5880
+ font-weight: 500;
5881
+ color: @dropdown-menu-color;
5882
+ border-radius: 2px;
5883
+ background-color: @dropdown-menu-bg-color;
5884
+ box-shadow: @dropdown-menu-box-shadow;
5885
+ margin-top: 1px;
5886
+ z-index: 10;
5887
+
5888
+ .item-dropdown-menu-list {
5889
+ margin: 0;
5890
+ display: block;
5891
+ padding: 0;
5892
+ list-style-type: none;
5893
+
5894
+ li {
5895
+ height: 32px;
5896
+ line-height: 32px;
5897
+ text-align: left;
5898
+ display: flex;
5899
+
5900
+ &:hover {
5901
+ background-color: @dropdown-menu-li-hover-bg-color;
5902
+
5903
+ .action-icon {
5904
+ color: @action-icon-hover-color;
5905
+ }
5906
+ }
5907
+
5908
+ .action-label {
5909
+ display: inline-block;
5910
+ white-space: nowrap;
5911
+ vertical-align: top;
5912
+ margin-right: 17px;
5913
+ }
5914
+
5915
+ .action-icon {
5916
+ color: @action-icon-color;
5917
+ font-size: 17px;
5918
+ display: inline-block;
5919
+ margin: 0 13px 0 21px;
5920
+ vertical-align: middle;
5921
+ }
5922
+ }
5923
+ }
5924
+ }
5925
+ }
5926
+ }
5927
+
5928
+ .action-subtemplate {
5929
+ border-bottom-left-radius: 4px;
5930
+ border-bottom-right-radius: 4px;
5931
+ border: @action-subtemplate-border;
5932
+ background-color: @action-subtemplate-bg-color;
5933
+ box-shadow: @action-subtemplate-box-shadow;
5934
+ position: fixed;
5935
+ margin: -2px 0 0 -1px;
5936
+ z-index: 10;
5937
+ }
5938
+ }
5939
+
5940
+ .auto-complete-wrapper {
5941
+ .auto-complete-color-set();
5942
+
5943
+ position: relative;
5944
+
5945
+ .input-row {
5946
+ display: flex;
5947
5947
  width: 100%;
5948
5948
 
5949
5949
  .auto-complete-input {
@@ -6971,6 +6971,37 @@ yx-axis
6971
6971
  }
6972
6972
  }
6973
6973
 
6974
+ .control-panel-log-row {
6975
+ .control-panel-log-table-row-color-set();
6976
+
6977
+ .log-entry {
6978
+ .log-entry-time {
6979
+ color: @log-entry-time-color;
6980
+ }
6981
+
6982
+ .log-entry-level-debug {
6983
+ color: @log-entry-level-debug-color;
6984
+ }
6985
+
6986
+ .log-entry-level-info {
6987
+ color: @log-entry-level-info-color;
6988
+ }
6989
+
6990
+ .log-entry-level-warn, .log-entry-level-warning {
6991
+ color: @log-entry-level-warn-color;
6992
+ }
6993
+
6994
+ .log-entry-level-error {
6995
+ color: @log-entry-level-error-color;
6996
+ }
6997
+
6998
+ .log-entry-message {
6999
+ line-break: anywhere;
7000
+ font-weight: 600;
7001
+ }
7002
+ }
7003
+ }
7004
+
6974
7005
  .more-info-wrapper {
6975
7006
  .more-info-color-set();
6976
7007
 
@@ -7130,47 +7161,16 @@ yx-axis
7130
7161
  }
7131
7162
  }
7132
7163
 
7133
- .control-panel-log-row {
7134
- .control-panel-log-table-row-color-set();
7164
+ .igz-multiple-checkboxes {
7165
+ .multiple-checkboxes-color-set();
7135
7166
 
7136
- .log-entry {
7137
- .log-entry-time {
7138
- color: @log-entry-time-color;
7139
- }
7140
-
7141
- .log-entry-level-debug {
7142
- color: @log-entry-level-debug-color;
7143
- }
7144
-
7145
- .log-entry-level-info {
7146
- color: @log-entry-level-info-color;
7147
- }
7148
-
7149
- .log-entry-level-warn, .log-entry-level-warning {
7150
- color: @log-entry-level-warn-color;
7151
- }
7152
-
7153
- .log-entry-level-error {
7154
- color: @log-entry-level-error-color;
7155
- }
7156
-
7157
- .log-entry-message {
7158
- line-break: anywhere;
7159
- font-weight: 600;
7160
- }
7161
- }
7162
- }
7163
-
7164
- .igz-multiple-checkboxes {
7165
- .multiple-checkboxes-color-set();
7166
-
7167
- .igz-multiple-checkboxes-list {
7168
- list-style-type: none;
7169
- -webkit-margin-before: 0;
7170
- -webkit-margin-after: 0;
7171
- -webkit-padding-start: 0;
7172
- margin: 0;
7173
- padding: 0;
7167
+ .igz-multiple-checkboxes-list {
7168
+ list-style-type: none;
7169
+ -webkit-margin-before: 0;
7170
+ -webkit-margin-after: 0;
7171
+ -webkit-padding-start: 0;
7172
+ margin: 0;
7173
+ padding: 0;
7174
7174
 
7175
7175
  .multiple-checkboxes-option {
7176
7176
  display: flex;
@@ -7396,154 +7396,6 @@ yx-axis
7396
7396
  }
7397
7397
  }
7398
7398
 
7399
- .igz-pagination {
7400
- .pagination-color-set();
7401
-
7402
- float: right;
7403
- padding: 24px 36px 5px 30px;
7404
-
7405
- > div {
7406
- vertical-align: top;
7407
- }
7408
-
7409
- .rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
7410
- display: inline-block;
7411
- vertical-align: baseline;
7412
- }
7413
-
7414
- .rows-title {
7415
- font-size: 13px;
7416
- color: @rows-title-color;
7417
- font-family: @font-family-sans-serif;
7418
- }
7419
-
7420
- .per-page {
7421
- width: 66px;
7422
-
7423
- .default-dropdown-field {
7424
- background: none;
7425
- border: none;
7426
- box-shadow: none;
7427
- font-size: 14px;
7428
- height: 36px;
7429
-
7430
- .dropdown-selected-item {
7431
- font-size: 14px;
7432
- }
7433
-
7434
- .dropdown-arrow {
7435
- margin-top: 5px;
7436
-
7437
- span {
7438
- font-size: 12px;
7439
- }
7440
- }
7441
-
7442
- .dropdown-arrow {
7443
- border: none;
7444
-
7445
- &:hover, &:active {
7446
- border: none;
7447
- background: none;
7448
- box-shadow: none;
7449
- }
7450
- }
7451
-
7452
- &:focus {
7453
- .dropdown-selected-item {
7454
- border: none;
7455
- }
7456
- }
7457
- }
7458
-
7459
- .default-dropdown-container {
7460
- width: 66px;
7461
-
7462
- .list-item {
7463
- padding-left: 15px;
7464
-
7465
- .list-item-label {
7466
- margin-right: 10px;
7467
- }
7468
- }
7469
- }
7470
- }
7471
-
7472
- .jump-to-page {
7473
- margin-left: 7px;
7474
-
7475
- & > div, .jump-to-page-input {
7476
- display: inline-block;
7477
- vertical-align: baseline;
7478
- }
7479
-
7480
- .to-page-prev, .to-page-next {
7481
- width: 41px;
7482
- line-height: 34px;
7483
- height: 36px;
7484
- vertical-align: top;
7485
- position: relative;
7486
-
7487
- &:not(:active) {
7488
- background-color: transparent;
7489
- }
7490
-
7491
- &:not(:hover):not(:active):not(:disabled):not(.disabled) {
7492
- color: @page-prev-next-color;
7493
- }
7494
-
7495
- &:before {
7496
- line-height: 34px;
7497
- }
7498
- }
7499
-
7500
- .to-page-prev {
7501
- border-radius: 2px 0 0 2px;
7502
-
7503
- &::before {
7504
- margin-left: -2px;
7505
- }
7506
- }
7507
-
7508
- .to-page-next {
7509
- border-radius: 0 2px 2px 0;
7510
- }
7511
-
7512
- .title {
7513
- margin: 0 0 0 14px;
7514
- }
7515
-
7516
- .page-number {
7517
- min-width: 30px;
7518
- height: 36px;
7519
- line-height: 36px;
7520
- text-align: center;
7521
- }
7522
-
7523
- .validating-input-field {
7524
- background-color: @input-field-bg-color;
7525
-
7526
- .input-field {
7527
- width: 43px;
7528
- height: 36px;
7529
- border-radius: 0;
7530
- box-shadow: @input-field-box-shadow;
7531
- border: 1px solid @input-field-border-color;
7532
- border-left: 0 none transparent;
7533
- border-right: 0 none transparent;
7534
- font-family: @font-family-sans-serif;
7535
- font-size: 14px;
7536
- font-weight: 500;
7537
- color: @input-field-color;
7538
- text-align: center;
7539
-
7540
- &:hover {
7541
- border: @input-field-hover-border;
7542
- }
7543
- }
7544
- }
7545
- }
7546
- }
7547
7399
  .igz-number-input {
7548
7400
  .number-input-color-set();
7549
7401
 
@@ -7975,108 +7827,149 @@ yx-axis
7975
7827
  }
7976
7828
  }
7977
7829
 
7978
- .splash-screen {
7979
- .splash-screen-color-set();
7830
+ .igz-pagination {
7831
+ .pagination-color-set();
7980
7832
 
7981
- position: absolute;
7982
- z-index: 996;
7983
- width: 100%;
7984
- height: 100%;
7985
- background-color: @splash-screen-bg-color;
7986
- transform-style: preserve-3d;
7833
+ float: right;
7834
+ padding: 24px 36px 5px 30px;
7987
7835
 
7988
- // ngAnimate appearance for show/hide
7989
- transition: opacity linear .25s 0s;
7836
+ > div {
7837
+ vertical-align: top;
7838
+ }
7990
7839
 
7991
- &.ng-hide-remove {
7992
- opacity: 0;
7840
+ .rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
7841
+ display: inline-block;
7842
+ vertical-align: baseline;
7993
7843
  }
7994
7844
 
7995
- .loading-splash-screen {
7996
- position: absolute;
7997
- top: 50%;
7998
- left: 50%;
7999
- transform: translate(-50%, -50%);
8000
- color: @loading-splash-screen-color;
8001
- font-size: 20px;
8002
- text-align: center;
8003
- font-weight: 500;
8004
- width: 217px;
8005
- border-radius: 6px;
8006
- background-image: @loading-splash-screen-bg-image;
8007
- padding: 49px 0;
7845
+ .rows-title {
7846
+ font-size: 13px;
7847
+ color: @rows-title-color;
7848
+ font-family: @font-family-sans-serif;
7849
+ }
8008
7850
 
8009
- .splash-logo-wrapper {
8010
- position: relative;
8011
- text-align: center;
7851
+ .per-page {
7852
+ width: 66px;
8012
7853
 
8013
- .loader-fading-circle {
8014
- width: 60px;
8015
- height: 60px;
7854
+ .default-dropdown-field {
7855
+ background: none;
7856
+ border: none;
7857
+ box-shadow: none;
7858
+ font-size: 14px;
7859
+ height: 36px;
7860
+
7861
+ .dropdown-selected-item {
7862
+ font-size: 14px;
8016
7863
  }
8017
- }
8018
7864
 
8019
- .loading-text {
8020
- padding: 31px 0 0 12px;
8021
- font-family: @font-family-sans-serif;
8022
- font-size: 20px;
8023
- color: @loading-splash-screen-text-color;
8024
- }
8025
- }
7865
+ .dropdown-arrow {
7866
+ margin-top: 5px;
8026
7867
 
8027
- .alert-splash-screen {
8028
- position: absolute;
8029
- top: 50%;
8030
- left: 50%;
8031
- transform: translate(-50%, -50%);
8032
- color: @alert-splash-screen-color;
8033
- font-size: 20px;
8034
- font-weight: 500;
8035
- width: 504px;
8036
- border-radius: 6px;
8037
- background-image: @alert-splash-screen-bg-image;
8038
- box-shadow: none;
8039
- padding: 0 0 49px;
7868
+ span {
7869
+ font-size: 12px;
7870
+ }
7871
+ }
8040
7872
 
8041
- .header {
8042
- background: url('/assets/images/oops.png') no-repeat center;
8043
- margin: 47px 0 24px;
8044
- height: 59px;
8045
- background-size: contain;
7873
+ .dropdown-arrow {
7874
+ border: none;
7875
+
7876
+ &:hover, &:active {
7877
+ border: none;
7878
+ background: none;
7879
+ box-shadow: none;
7880
+ }
7881
+ }
7882
+
7883
+ &:focus {
7884
+ .dropdown-selected-item {
7885
+ border: none;
7886
+ }
7887
+ }
8046
7888
  }
8047
7889
 
8048
- .notification-text {
8049
- color: @alert-splash-screen-notification-text-color;
8050
- padding: 0 60px;
8051
- text-align: center;
8052
- margin: 0 0 36px;
8053
- line-height: 1.5;
7890
+ .default-dropdown-container {
7891
+ width: 66px;
7892
+
7893
+ .list-item {
7894
+ padding-left: 15px;
7895
+
7896
+ .list-item-label {
7897
+ margin-right: 10px;
7898
+ }
7899
+ }
8054
7900
  }
7901
+ }
8055
7902
 
8056
- .buttons {
8057
- text-align: center;
7903
+ .jump-to-page {
7904
+ margin-left: 7px;
7905
+
7906
+ & > div, .jump-to-page-input {
7907
+ display: inline-block;
7908
+ vertical-align: baseline;
7909
+ }
7910
+
7911
+ .to-page-prev, .to-page-next {
7912
+ width: 41px;
7913
+ line-height: 34px;
8058
7914
  height: 36px;
7915
+ vertical-align: top;
7916
+ position: relative;
8059
7917
 
8060
- .refresh-button {
8061
- margin: 0 auto;
8062
- padding-top: 8px;
7918
+ &:not(:active) {
7919
+ background-color: transparent;
7920
+ }
7921
+
7922
+ &:not(:hover):not(:active):not(:disabled):not(.disabled) {
7923
+ color: @page-prev-next-color;
7924
+ }
7925
+
7926
+ &:before {
7927
+ line-height: 34px;
7928
+ }
7929
+ }
7930
+
7931
+ .to-page-prev {
7932
+ border-radius: 2px 0 0 2px;
7933
+
7934
+ &::before {
7935
+ margin-left: -2px;
7936
+ }
7937
+ }
7938
+
7939
+ .to-page-next {
7940
+ border-radius: 0 2px 2px 0;
7941
+ }
7942
+
7943
+ .title {
7944
+ margin: 0 0 0 14px;
7945
+ }
7946
+
7947
+ .page-number {
7948
+ min-width: 30px;
7949
+ height: 36px;
7950
+ line-height: 36px;
7951
+ text-align: center;
7952
+ }
7953
+
7954
+ .validating-input-field {
7955
+ background-color: @input-field-bg-color;
7956
+
7957
+ .input-field {
7958
+ width: 43px;
8063
7959
  height: 36px;
8064
- width: 124px;
8065
- font-size: 12px;
8066
- border-radius: 2px;
8067
- background-color: @alert-splash-screen-refresh-btn-bg-color;
8068
- border: @alert-splash-screen-refresh-btn-border;
8069
- text-transform: uppercase;
7960
+ border-radius: 0;
7961
+ box-shadow: @input-field-box-shadow;
7962
+ border: 1px solid @input-field-border-color;
7963
+ border-left: 0 none transparent;
7964
+ border-right: 0 none transparent;
7965
+ font-family: @font-family-sans-serif;
7966
+ font-size: 14px;
7967
+ font-weight: 500;
7968
+ color: @input-field-color;
7969
+ text-align: center;
8070
7970
 
8071
7971
  &:hover {
8072
- background-color: @alert-splash-screen-refresh-btn-hover-bg-color;
8073
- box-shadow: @alert-splash-screen-refresh-btn-hover-box-shadow;
8074
- }
8075
-
8076
- .igz-icon-refresh {
8077
- font-size: 16px;
8078
- margin-right: 8px;
8079
- vertical-align: middle;
7972
+ border: @input-field-hover-border;
8080
7973
  }
8081
7974
  }
8082
7975
  }
@@ -8211,6 +8104,113 @@ yx-axis
8211
8104
  }
8212
8105
  }
8213
8106
 
8107
+ .splash-screen {
8108
+ .splash-screen-color-set();
8109
+
8110
+ position: absolute;
8111
+ z-index: 996;
8112
+ width: 100%;
8113
+ height: 100%;
8114
+ background-color: @splash-screen-bg-color;
8115
+ transform-style: preserve-3d;
8116
+
8117
+ // ngAnimate appearance for show/hide
8118
+ transition: opacity linear .25s 0s;
8119
+
8120
+ &.ng-hide-remove {
8121
+ opacity: 0;
8122
+ }
8123
+
8124
+ .loading-splash-screen {
8125
+ position: absolute;
8126
+ top: 50%;
8127
+ left: 50%;
8128
+ transform: translate(-50%, -50%);
8129
+ color: @loading-splash-screen-color;
8130
+ font-size: 20px;
8131
+ text-align: center;
8132
+ font-weight: 500;
8133
+ width: 217px;
8134
+ border-radius: 6px;
8135
+ background-image: @loading-splash-screen-bg-image;
8136
+ padding: 49px 0;
8137
+
8138
+ .splash-logo-wrapper {
8139
+ position: relative;
8140
+ text-align: center;
8141
+
8142
+ .loader-fading-circle {
8143
+ width: 60px;
8144
+ height: 60px;
8145
+ }
8146
+ }
8147
+
8148
+ .loading-text {
8149
+ padding: 31px 0 0 12px;
8150
+ font-family: @font-family-sans-serif;
8151
+ font-size: 20px;
8152
+ color: @loading-splash-screen-text-color;
8153
+ }
8154
+ }
8155
+
8156
+ .alert-splash-screen {
8157
+ position: absolute;
8158
+ top: 50%;
8159
+ left: 50%;
8160
+ transform: translate(-50%, -50%);
8161
+ color: @alert-splash-screen-color;
8162
+ font-size: 20px;
8163
+ font-weight: 500;
8164
+ width: 504px;
8165
+ border-radius: 6px;
8166
+ background-image: @alert-splash-screen-bg-image;
8167
+ box-shadow: none;
8168
+ padding: 0 0 49px;
8169
+
8170
+ .header {
8171
+ background: url('/assets/images/oops.png') no-repeat center;
8172
+ margin: 47px 0 24px;
8173
+ height: 59px;
8174
+ background-size: contain;
8175
+ }
8176
+
8177
+ .notification-text {
8178
+ color: @alert-splash-screen-notification-text-color;
8179
+ padding: 0 60px;
8180
+ text-align: center;
8181
+ margin: 0 0 36px;
8182
+ line-height: 1.5;
8183
+ }
8184
+
8185
+ .buttons {
8186
+ text-align: center;
8187
+ height: 36px;
8188
+
8189
+ .refresh-button {
8190
+ margin: 0 auto;
8191
+ padding-top: 8px;
8192
+ height: 36px;
8193
+ width: 124px;
8194
+ font-size: 12px;
8195
+ border-radius: 2px;
8196
+ background-color: @alert-splash-screen-refresh-btn-bg-color;
8197
+ border: @alert-splash-screen-refresh-btn-border;
8198
+ text-transform: uppercase;
8199
+
8200
+ &:hover {
8201
+ background-color: @alert-splash-screen-refresh-btn-hover-bg-color;
8202
+ box-shadow: @alert-splash-screen-refresh-btn-hover-box-shadow;
8203
+ }
8204
+
8205
+ .igz-icon-refresh {
8206
+ font-size: 16px;
8207
+ margin-right: 8px;
8208
+ vertical-align: middle;
8209
+ }
8210
+ }
8211
+ }
8212
+ }
8213
+ }
8214
8214
  .ngdialog.text-edit {
8215
8215
  .text-edit-color-set();
8216
8216
 
@@ -8288,23 +8288,87 @@ yx-axis
8288
8288
  }
8289
8289
  }
8290
8290
 
8291
- .validating-input-field {
8292
- .validating-input-field-color-set();
8291
+ .toast-status-panel {
8292
+ .toast-status-panel-color-set();
8293
8293
 
8294
- background-color: @validating-input-field-bg-color;
8295
- font-family: @font-family-sans-serif;
8296
- font-size: 13px;
8297
- font-weight: 400;
8298
- min-height: 32px;
8299
- line-height: 32px;
8294
+ margin-bottom: 20px;
8295
+ padding: 16px 36px 16px 12px;
8296
+ background-color: @toast-panel-bg-color;
8297
+ border: @toast-panel-border;
8300
8298
  position: relative;
8301
8299
 
8302
- .input-icon {
8303
- position: absolute;
8304
- top: 2px;
8305
- left: 8px;
8306
- z-index: 2;
8307
- color: @validating-input-icon-color;
8300
+ &.in-progress {
8301
+ background-color: @toast-panel-in-progress-bg-color;
8302
+ border: @toast-panel-in-progress-border;
8303
+ }
8304
+
8305
+ &.failed {
8306
+ background-color: @toast-panel-failed-bg-color;
8307
+ border: @toast-panel-failed-border;
8308
+ }
8309
+
8310
+ .panel-status {
8311
+ color: @toast-panel-status-color;
8312
+ line-height: 24px;
8313
+ font-size: 14px;
8314
+ font-weight: 700;
8315
+ font-family: @font-family-sans-serif;
8316
+ align-items: center;
8317
+ display: flex;
8318
+ justify-content: center;
8319
+
8320
+ &.in-progress {
8321
+ color: @toast-panel-status-in-progress-color;
8322
+ }
8323
+
8324
+ &.failed {
8325
+ color: @toast-panel-status-failed-color;
8326
+ }
8327
+
8328
+ .panel-status-icon {
8329
+ font-size: 24px;
8330
+
8331
+ &.igz-icon-properties {
8332
+ -webkit-animation: rotation 4s infinite linear;
8333
+
8334
+ @-webkit-keyframes rotation {
8335
+ from {
8336
+ -webkit-transform: rotate(0deg);
8337
+ }
8338
+ to {
8339
+ -webkit-transform: rotate(359deg);
8340
+ }
8341
+ }
8342
+ }
8343
+ }
8344
+
8345
+ .msg-scrollable-container {
8346
+ max-height: 300px;
8347
+
8348
+ .panel-status-msg {
8349
+ margin: 0 8px;
8350
+ }
8351
+ }
8352
+ }
8353
+ }
8354
+
8355
+ .validating-input-field {
8356
+ .validating-input-field-color-set();
8357
+
8358
+ background-color: @validating-input-field-bg-color;
8359
+ font-family: @font-family-sans-serif;
8360
+ font-size: 13px;
8361
+ font-weight: 400;
8362
+ min-height: 32px;
8363
+ line-height: 32px;
8364
+ position: relative;
8365
+
8366
+ .input-icon {
8367
+ position: absolute;
8368
+ top: 2px;
8369
+ left: 8px;
8370
+ z-index: 2;
8371
+ color: @validating-input-icon-color;
8308
8372
  }
8309
8373
 
8310
8374
  //
@@ -8625,674 +8689,656 @@ form.ng-submitted .validating-input-field {
8625
8689
  }
8626
8690
  }
8627
8691
 
8628
- .toast-status-panel {
8629
- .toast-status-panel-color-set();
8630
-
8631
- margin-bottom: 20px;
8632
- padding: 16px 36px 16px 12px;
8633
- background-color: @toast-panel-bg-color;
8634
- border: @toast-panel-border;
8635
- position: relative;
8636
-
8637
- &.in-progress {
8638
- background-color: @toast-panel-in-progress-bg-color;
8639
- border: @toast-panel-in-progress-border;
8640
- }
8641
-
8642
- &.failed {
8643
- background-color: @toast-panel-failed-bg-color;
8644
- border: @toast-panel-failed-border;
8645
- }
8646
-
8647
- .panel-status {
8648
- color: @toast-panel-status-color;
8649
- line-height: 24px;
8650
- font-size: 14px;
8651
- font-weight: 700;
8652
- font-family: @font-family-sans-serif;
8653
- align-items: center;
8654
- display: flex;
8655
- justify-content: center;
8656
-
8657
- &.in-progress {
8658
- color: @toast-panel-status-in-progress-color;
8659
- }
8660
-
8661
- &.failed {
8662
- color: @toast-panel-status-failed-color;
8663
- }
8692
+ .ncl-api-gateway-row {
8693
+ .common-table-cells-container {
8694
+ .common-table-cell {
8695
+ &.status {
8696
+ text-transform: capitalize;
8664
8697
 
8665
- .panel-status-icon {
8666
- font-size: 24px;
8698
+ &.ready {
8699
+ color: @tealish;
8700
+ }
8667
8701
 
8668
- &.igz-icon-properties {
8669
- -webkit-animation: rotation 4s infinite linear;
8702
+ // just in case - for now these statuses will not be shown because there will be a loader
8703
+ &.provisioning, &.waitingForProvisioning {
8704
+ color: @pale-orange;
8705
+ }
8670
8706
 
8671
- @-webkit-keyframes rotation {
8672
- from {
8673
- -webkit-transform: rotate(0deg);
8674
- }
8675
- to {
8676
- -webkit-transform: rotate(359deg);
8677
- }
8707
+ &.error {
8708
+ color: @darkish-pink;
8678
8709
  }
8679
8710
  }
8680
8711
  }
8712
+ }
8681
8713
 
8682
- .msg-scrollable-container {
8683
- max-height: 300px;
8714
+ .actions-menu {
8715
+ visibility: hidden;
8716
+ }
8684
8717
 
8685
- .panel-status-msg {
8686
- margin: 0 8px;
8718
+ &.common-table-row {
8719
+ &:hover {
8720
+ .actions-menu {
8721
+ visibility: visible;
8687
8722
  }
8688
8723
  }
8689
8724
  }
8690
8725
  }
8691
8726
 
8692
- .igz-info-page-actions-bar {
8693
- .actions-buttons-block {
8694
- margin-top: 3px;
8695
- margin-right: 17px;
8696
- }
8697
- }
8698
- .ncl-primary-button {
8699
- margin-left: 9px;
8700
- }
8701
-
8702
- .ncl-secondary-button {
8703
- vertical-align: top;
8704
- position: relative;
8705
- }
8727
+ .new-api-gateway-wizard {
8728
+ .new-api-gateway-wizard-color-set();
8706
8729
 
8707
- .btn-close {
8708
- color: .duskThree(0.64)[@color];
8709
- right: 0;
8710
- position: absolute;
8711
- margin-top: 6px;
8712
- margin-right: 24px;
8713
- font-size: 14px;
8714
- line-height: 14px;
8715
- z-index: 11;
8730
+ .content-wrapper {
8731
+ .content {
8732
+ .toast-status-panel {
8733
+ max-width: 90vw;
8734
+ margin: 16px auto 20px;
8735
+ }
8716
8736
 
8717
- &:hover {
8718
- color: .duskThree(1)[@color];
8719
- }
8720
- }
8737
+ .api-gateway-form {
8738
+ .content-body {
8739
+ margin: 0 auto;
8740
+ height: 400px;
8741
+ display: flex;
8742
+ flex-flow: row nowrap;
8743
+ justify-content: center;
8744
+ align-items: center;
8721
8745
 
8722
- .ncl-new-entity-button {
8723
- display: inline-block;
8724
- vertical-align: top;
8725
- position: relative;
8726
- margin-left: 15px;
8727
- }
8746
+ .api-gateway-block {
8747
+ flex: none;
8748
+ position: relative;
8749
+ max-width: 320px;
8750
+ padding: 16px 24px;
8751
+ border: @api-gateway-block-border;
8752
+ border-radius: 2px;
8753
+ background-color: @api-gateway-block-bg-color;
8754
+ box-shadow: 0 3px 4px rgba(0, 0, 0, 0.18);
8755
+ transition: box-shadow .3s ease-in-out 0s;
8728
8756
 
8729
- .ngdialog {
8730
- z-index: 10000;
8731
- }
8757
+ // important for not waiting to animation to finish when removing/promoting canary function
8758
+ // (`ng-leave` and `ng-leave-active` are assigned by the `ng-if` directive when its scope
8759
+ // expression evaluates to a falsy value) see https://docs.angularjs.org/api/ng/directive/ngIf
8760
+ &.ng-leave.ng-leave-active {
8761
+ transition: none 0s 0s;
8762
+ }
8732
8763
 
8733
- .ngdialog-theme-nuclio {
8734
- @animation-duration: 0.2s;
8735
- @animation-function: ease;
8736
- display: flex;
8737
- height: 100%;
8738
- padding: 0 50px;
8739
- min-width: 500px;
8740
- align-items: center;
8741
- justify-content: center;
8764
+ &:hover, &:focus-within {
8765
+ box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
8766
+ }
8742
8767
 
8743
- .ngdialog-content {
8744
- box-shadow: 0 10px 20px 0 .black(0.25)[@color];
8745
- animation-duration: @animation-duration;
8746
- animation-timing-function: @animation-function;
8747
- font-family: @font-family-sans-serif;
8748
- font-size: 16px;
8749
- border-radius: 2px;
8750
- max-width: 900px;
8751
- background-color: @white;
8752
- z-index: 5;
8753
- position: relative;
8754
- padding: 19px 24px 23px 24px;
8768
+ .block-title {
8769
+ text-align: center;
8770
+ font-weight: bold;
8771
+ font-size: 16px;
8772
+ color: @api-gateway-block-title-font-color;
8773
+ margin-bottom: 16px;
8774
+ }
8775
+ }
8755
8776
 
8756
- /*
8757
- * Confirms, alerts
8758
- */
8759
- .notification-text {
8760
- margin: 30px 30px 0 0;
8761
- max-height: 70vh;
8762
- overflow: auto;
8777
+ .connector, .connector-split {
8778
+ flex: 1 1 0;
8779
+ border-top: 1px solid @connector-line-stroke-color;
8780
+ }
8763
8781
 
8764
- .error-list {
8765
- list-style-type: none;
8782
+ .connector-split {
8783
+ border-left: 1px solid @connector-line-stroke-color;
8784
+ border-bottom: 1px solid @connector-line-stroke-color;
8785
+ border-radius: 50px 0 0 50px;
8786
+ height: 280px;
8787
+ }
8766
8788
 
8767
- .error-list-item {
8768
- margin-bottom: 5px;
8769
- }
8770
- }
8771
- }
8789
+ .api-gateway-globe {
8790
+ flex: none;
8791
+ width: 128px;
8792
+ height: 128px;
8793
+ background: url('/assets/images/globe.png') center center / cover no-repeat transparent;
8794
+ }
8772
8795
 
8773
- .notification-text.description {
8774
- margin: 10px 30px;
8775
- }
8796
+ .api-gateway-authentication,
8797
+ .api-gateway-basic-settings {
8798
+ .fields-wrapper {
8799
+ display: flex;
8800
+ flex-flow: column nowrap;
8801
+ justify-content: space-around;
8776
8802
 
8777
- .buttons {
8778
- text-align: right;
8803
+ .field-wrapper {
8804
+ display: flex;
8805
+ flex-flow: row nowrap;
8806
+ justify-content: space-between;
8807
+ line-height: 36px;
8808
+ margin-top: 16px;
8779
8809
 
8780
- button:not(:first-child) {
8781
- margin-left: 8px;
8782
- }
8783
- }
8810
+ &:first-child {
8811
+ margin-top: 0;
8812
+ }
8784
8813
 
8785
- /*
8786
- * Create/edit dialogs
8787
- */
8788
- .close-button {
8789
- position: absolute;
8790
- right: 24px;
8791
- top: 26px;
8792
- line-height: 10px;
8793
- font-size: 14px;
8794
- color: .duskThree(0.64)[@color];
8795
- cursor: pointer;
8796
- }
8814
+ .field-label {
8815
+ width: 35%;
8816
+ }
8797
8817
 
8798
- .title {
8799
- color: @dusk-three;
8800
- font-family: @font-family-sans-serif;
8801
- font-size: 20px;
8802
- font-weight: 500;
8803
- margin: 0 0 21px 0;
8804
- padding-right: 24px;
8805
- }
8818
+ .field-input {
8819
+ width: 60%;
8820
+ }
8821
+ }
8822
+ }
8823
+ }
8806
8824
 
8807
- .main-content {
8808
- margin: 0 0 4px;
8825
+ .api-gateway-basic-settings {
8826
+ .end-point-block {
8827
+ margin-top: 8px;
8809
8828
 
8810
- .field-group {
8811
- padding: 0 0 20px;
8829
+ .end-point-title {
8830
+ font-weight: bold;
8831
+ }
8812
8832
 
8813
- .field-label {
8814
- color: @dusk-three;
8815
- font-size: 14px;
8816
- font-weight: 500;
8817
- padding: 0;
8818
- min-width: 50px;
8819
- margin: 0 0 2px;
8820
- }
8833
+ .end-point-host {
8834
+ display: flex;
8835
+ flex-flow: row nowrap;
8836
+ align-items: center;
8821
8837
 
8822
- .field-input {
8823
- position: relative;
8824
- width: 400px;
8838
+ .host {
8839
+ flex: auto;
8840
+ word-break: break-all;
8841
+ max-height: 80px;
8842
+ overflow-y: auto;
8843
+ }
8825
8844
 
8826
- .validating-input-field {
8827
- .input-field {
8828
- padding-left: 17px;
8845
+ .copy-to-clipboard {
8846
+ flex: none;
8847
+ }
8848
+ }
8829
8849
  }
8850
+ }
8830
8851
 
8831
- .input-placeholder {
8832
- left: 18px;
8833
- font-style: italic;
8852
+ .api-gateway-circles {
8853
+ display: flex;
8854
+ flex-flow: column nowrap;
8855
+ justify-content: space-between;
8856
+ align-items: center;
8857
+ position: relative;
8858
+
8859
+ &.only-primary {
8860
+ justify-content: center;
8834
8861
  }
8835
- }
8836
8862
 
8837
- .error {
8838
- color: @darkish-pink;
8839
- font-size: 12px;
8840
- white-space: nowrap;
8841
- }
8842
- }
8843
- }
8844
- }
8845
- }
8863
+ .api-gateway-block {
8864
+ border-radius: 35px;
8846
8865
 
8847
- &.delete-entity-dialog-wrapper {
8848
- .ngdialog-content {
8849
- padding: 30px 24px 23px 24px;
8866
+ &.function-circle {
8867
+ width: 320px;
8850
8868
 
8851
- .notification-text.title {
8852
- text-align: center;
8853
- padding-right: 0;
8854
- color: @darkish-pink;
8855
- font-size: 20px;
8856
- font-weight: 500;
8857
- letter-spacing: normal;
8858
- margin: 11px 0 2px;
8859
- }
8869
+ &.canary-function {
8870
+ .canary-title {
8871
+ margin-top: 20px;
8872
+ margin-bottom: 0;
8873
+ }
8860
8874
 
8861
- .notification-text.description {
8862
- text-align: center;
8863
- margin: 0 37px;
8864
- font-size: 16px;
8865
- font-weight: normal;
8866
- letter-spacing: normal;
8867
- color: @dusk-three;
8868
- }
8875
+ .canary-action-menu {
8876
+ position: absolute;
8877
+ top: 24px;
8878
+ right: 0;
8879
+ }
8880
+ }
8869
8881
 
8870
- .nuclio-alert-icon {
8871
- background: url('/assets/images/ic-alert-message.svg');
8872
- height: 29px;
8873
- width: 34px;
8874
- margin: 0 auto;
8875
- }
8882
+ .function-name {
8883
+ position: relative;
8876
8884
 
8877
- .buttons {
8878
- margin-top: 30px;
8879
- }
8880
- }
8881
- }
8885
+ &.percentage-exists {
8886
+ padding-left: 36px;
8887
+ }
8882
8888
 
8883
- &.ngdialog.ngdialog-closing .ngdialog-content {
8884
- animation-duration: @animation-duration;
8885
- animation-timing-function: @animation-function;
8886
- }
8889
+ .percentage {
8890
+ position: absolute;
8891
+ left: -17px;
8892
+ top: -4px;
8893
+ width: 44px;
8894
+ height: 44px;
8887
8895
 
8888
- .ngdialog-overlay {
8889
- background: .black(0.6)[@color];
8890
- border: 2px solid @black;
8891
- animation-duration: @animation-duration;
8892
- animation-timing-function: @animation-function;
8893
- }
8896
+ .percentage-background {
8897
+ position: absolute;
8898
+ width: 110%;
8899
+ height: 110%;
8900
+ background-color: @api-gateway-percentage-background-color;
8901
+ border-radius: 50% 50% 0 50%;
8902
+ transform: rotate(45deg);
8903
+ }
8894
8904
 
8895
- &.ngdialog.ngdialog-closing .ngdialog-overlay {
8896
- animation-duration: @animation-duration;
8897
- animation-timing-function: @animation-function;
8898
- }
8905
+ &.swap {
8906
+ top: -8px;
8899
8907
 
8900
- &.ngdialog.ng-login-modal .ngdialog-content {
8901
- padding: 0;
8902
- }
8903
- }
8908
+ .percentage-background {
8909
+ border-radius: 50% 0 50% 50%;
8910
+ transform: rotate(-45deg);
8911
+ }
8912
+ }
8904
8913
 
8905
- body {
8906
- .ncl-main-wrapper {
8907
- padding: 64px 0 0 215px;
8908
- width: 100%;
8909
- height: 100%;
8910
- }
8914
+ .percentage-value {
8915
+ position: absolute;
8916
+ top: 5px;
8917
+ left: 2px;
8918
+ width: 100%;
8919
+ height: 36px;
8920
+ line-height: 36px;
8921
+ text-align: center;
8922
+ color: @api-gateway-percentage-value-font-color;
8911
8923
 
8912
- .table-headers {
8913
- display: flex;
8914
- font-size: 14px;
8915
- font-weight: bold;
8916
- font-style: normal;
8917
- font-stretch: normal;
8918
- letter-spacing: normal;
8919
- color: @dusk-three;
8920
- margin-bottom: 2px;
8924
+ &:after {
8925
+ content: '%';
8926
+ }
8927
+ }
8928
+ }
8929
+ }
8921
8930
 
8922
- .key-header {
8923
- width: 34%;
8924
- margin-left: 16px;
8931
+ .function-name-title {
8932
+ vertical-align: middle;
8933
+ line-height: normal;
8934
+ }
8935
+ }
8936
+ }
8925
8937
 
8926
- &:not(.use-type) {
8927
- width: 36%;
8928
- }
8929
- }
8938
+ .create-canary-button {
8939
+ position: absolute;
8940
+ bottom: -40px;
8941
+ .igz-icon-add-round {
8942
+ margin: 0 8px 0 0;
8943
+ }
8944
+ }
8930
8945
 
8931
- .type-header {
8932
- width: 12%;
8933
- }
8946
+ .primary-canary-slider {
8947
+ z-index: 1;
8948
+ height: 175px;
8949
+ width: 100%;
8950
+ display: flex;
8951
+ justify-content: flex-start;
8952
+ margin-left: 20px;
8934
8953
 
8935
- .value-header {
8936
- width: 52%;
8954
+ .rzslider:not([disabled]).rz-vertical {
8955
+ .rz-bar {
8956
+ background-color: @dark-sky-blue;
8957
+ border-radius: 0;
8958
+ }
8937
8959
 
8938
- &:not(.use-type) {
8939
- width: 61%;
8960
+ .rz-pointer {
8961
+ width: 27px;
8962
+ height: 27px;
8963
+ background-color: @white;
8964
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.24);
8965
+ border-radius: 50%;
8966
+ left: -11px !important;
8967
+ outline: 0 none transparent;
8968
+
8969
+ &::after {
8970
+ top: 11px;
8971
+ left: 11px;
8972
+ width: 5px;
8973
+ height: 5px;
8974
+ }
8975
+ }
8976
+ }
8977
+ }
8978
+ }
8979
+ }
8980
+ }
8981
+
8982
+ .buttons-wrapper {
8983
+ position: relative;
8984
+ width: 100%;
8985
+ margin-top: 32px;
8940
8986
  }
8941
8987
  }
8942
8988
  }
8989
+ }
8943
8990
 
8944
- .table-body:not(:last-child) {
8945
- margin-bottom: 5px;
8991
+ .igz-info-page-actions-bar {
8992
+ .actions-buttons-block {
8993
+ margin-top: 3px;
8994
+ margin-right: 17px;
8946
8995
  }
8947
8996
  }
8997
+ .ncl-primary-button {
8998
+ margin-left: 9px;
8999
+ }
8948
9000
 
9001
+ .ncl-secondary-button {
9002
+ vertical-align: top;
9003
+ position: relative;
9004
+ }
8949
9005
 
8950
- .logs-common {
8951
- font-family: "Source Code Pro", "Courier New", monospace;
9006
+ .btn-close {
9007
+ color: .duskThree(0.64)[@color];
9008
+ right: 0;
9009
+ position: absolute;
9010
+ margin-top: 6px;
9011
+ margin-right: 24px;
8952
9012
  font-size: 14px;
8953
- line-height: 1.1;
8954
- text-align: left;
8955
- white-space: pre-wrap;
8956
- }
8957
- .tooltip.custom-tooltip {
8958
- transition-duration: 0s;
8959
- z-index: 10001;
8960
- opacity: 1;
9013
+ line-height: 14px;
9014
+ z-index: 11;
8961
9015
 
8962
- .tooltip-arrow {
8963
- display: block;
8964
- margin-left: 0;
8965
- position: absolute;
8966
- top: -1px;
8967
- width: 13px;
8968
- height: 13px;
8969
- transform: rotate(226deg);
8970
- border-right: 1px solid @pale-grey;
8971
- border-bottom: 1px solid @pale-grey;
8972
- border-width: 1px;
8973
- background-color: @white;
9016
+ &:hover {
9017
+ color: .duskThree(1)[@color];
8974
9018
  }
9019
+ }
8975
9020
 
8976
- &.bottom {
8977
- margin-top: 8px;
8978
- }
9021
+ .ncl-new-entity-button {
9022
+ display: inline-block;
9023
+ vertical-align: top;
9024
+ position: relative;
9025
+ margin-left: 15px;
9026
+ }
8979
9027
 
8980
- &.top {
8981
- margin-top: 4px;
8982
- }
9028
+ .ngdialog {
9029
+ z-index: 10000;
9030
+ }
8983
9031
 
8984
- .tooltip-inner {
8985
- background-color: @white;
8986
- color: @dusk-three;
9032
+ .ngdialog-theme-nuclio {
9033
+ @animation-duration: 0.2s;
9034
+ @animation-function: ease;
9035
+ display: flex;
9036
+ height: 100%;
9037
+ padding: 0 50px;
9038
+ min-width: 500px;
9039
+ align-items: center;
9040
+ justify-content: center;
9041
+
9042
+ .ngdialog-content {
9043
+ box-shadow: 0 10px 20px 0 .black(0.25)[@color];
9044
+ animation-duration: @animation-duration;
9045
+ animation-timing-function: @animation-function;
9046
+ font-family: @font-family-sans-serif;
9047
+ font-size: 16px;
8987
9048
  border-radius: 2px;
8988
- font-size: 14px;
8989
- word-wrap: break-word;
8990
- max-width: 280px;
8991
- padding: 29px 30px;
8992
- box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
8993
- border: solid 1px @pale-grey;
8994
- }
8995
- }
8996
- .ncl-api-gateway-row {
8997
- .common-table-cells-container {
8998
- .common-table-cell {
8999
- &.status {
9000
- text-transform: capitalize;
9049
+ max-width: 900px;
9050
+ background-color: @white;
9051
+ z-index: 5;
9052
+ position: relative;
9053
+ padding: 19px 24px 23px 24px;
9001
9054
 
9002
- &.ready {
9003
- color: @tealish;
9004
- }
9055
+ /*
9056
+ * Confirms, alerts
9057
+ */
9058
+ .notification-text {
9059
+ margin: 30px 30px 0 0;
9060
+ max-height: 70vh;
9061
+ overflow: auto;
9005
9062
 
9006
- // just in case - for now these statuses will not be shown because there will be a loader
9007
- &.provisioning, &.waitingForProvisioning {
9008
- color: @pale-orange;
9009
- }
9063
+ .error-list {
9064
+ list-style-type: none;
9010
9065
 
9011
- &.error {
9012
- color: @darkish-pink;
9066
+ .error-list-item {
9067
+ margin-bottom: 5px;
9013
9068
  }
9014
9069
  }
9015
9070
  }
9016
- }
9017
9071
 
9018
- .actions-menu {
9019
- visibility: hidden;
9020
- }
9072
+ .notification-text.description {
9073
+ margin: 10px 30px;
9074
+ }
9021
9075
 
9022
- &.common-table-row {
9023
- &:hover {
9024
- .actions-menu {
9025
- visibility: visible;
9076
+ .buttons {
9077
+ text-align: right;
9078
+
9079
+ button:not(:first-child) {
9080
+ margin-left: 8px;
9026
9081
  }
9027
9082
  }
9028
- }
9029
- }
9030
9083
 
9031
- .new-api-gateway-wizard {
9032
- .new-api-gateway-wizard-color-set();
9084
+ /*
9085
+ * Create/edit dialogs
9086
+ */
9087
+ .close-button {
9088
+ position: absolute;
9089
+ right: 24px;
9090
+ top: 26px;
9091
+ line-height: 10px;
9092
+ font-size: 14px;
9093
+ color: .duskThree(0.64)[@color];
9094
+ cursor: pointer;
9095
+ }
9033
9096
 
9034
- .content-wrapper {
9035
- .content {
9036
- .toast-status-panel {
9037
- max-width: 90vw;
9038
- margin: 16px auto 20px;
9039
- }
9097
+ .title {
9098
+ color: @dusk-three;
9099
+ font-family: @font-family-sans-serif;
9100
+ font-size: 20px;
9101
+ font-weight: 500;
9102
+ margin: 0 0 21px 0;
9103
+ padding-right: 24px;
9104
+ }
9105
+
9106
+ .main-content {
9107
+ margin: 0 0 4px;
9040
9108
 
9041
- .api-gateway-form {
9042
- .content-body {
9043
- margin: 0 auto;
9044
- height: 400px;
9045
- display: flex;
9046
- flex-flow: row nowrap;
9047
- justify-content: center;
9048
- align-items: center;
9109
+ .field-group {
9110
+ padding: 0 0 20px;
9049
9111
 
9050
- .api-gateway-block {
9051
- flex: none;
9052
- position: relative;
9053
- max-width: 320px;
9054
- padding: 16px 24px;
9055
- border: @api-gateway-block-border;
9056
- border-radius: 2px;
9057
- background-color: @api-gateway-block-bg-color;
9058
- box-shadow: 0 3px 4px rgba(0, 0, 0, 0.18);
9059
- transition: box-shadow .3s ease-in-out 0s;
9112
+ .field-label {
9113
+ color: @dusk-three;
9114
+ font-size: 14px;
9115
+ font-weight: 500;
9116
+ padding: 0;
9117
+ min-width: 50px;
9118
+ margin: 0 0 2px;
9119
+ }
9060
9120
 
9061
- // important for not waiting to animation to finish when removing/promoting canary function
9062
- // (`ng-leave` and `ng-leave-active` are assigned by the `ng-if` directive when its scope
9063
- // expression evaluates to a falsy value) see https://docs.angularjs.org/api/ng/directive/ngIf
9064
- &.ng-leave.ng-leave-active {
9065
- transition: none 0s 0s;
9066
- }
9121
+ .field-input {
9122
+ position: relative;
9123
+ width: 400px;
9067
9124
 
9068
- &:hover, &:focus-within {
9069
- box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
9125
+ .validating-input-field {
9126
+ .input-field {
9127
+ padding-left: 17px;
9070
9128
  }
9071
9129
 
9072
- .block-title {
9073
- text-align: center;
9074
- font-weight: bold;
9075
- font-size: 16px;
9076
- color: @api-gateway-block-title-font-color;
9077
- margin-bottom: 16px;
9130
+ .input-placeholder {
9131
+ left: 18px;
9132
+ font-style: italic;
9078
9133
  }
9079
9134
  }
9080
9135
 
9081
- .connector, .connector-split {
9082
- flex: 1 1 0;
9083
- border-top: 1px solid @connector-line-stroke-color;
9084
- }
9085
-
9086
- .connector-split {
9087
- border-left: 1px solid @connector-line-stroke-color;
9088
- border-bottom: 1px solid @connector-line-stroke-color;
9089
- border-radius: 50px 0 0 50px;
9090
- height: 280px;
9091
- }
9092
-
9093
- .api-gateway-globe {
9094
- flex: none;
9095
- width: 128px;
9096
- height: 128px;
9097
- background: url('/assets/images/globe.png') center center / cover no-repeat transparent;
9136
+ .error {
9137
+ color: @darkish-pink;
9138
+ font-size: 12px;
9139
+ white-space: nowrap;
9098
9140
  }
9141
+ }
9142
+ }
9143
+ }
9144
+ }
9099
9145
 
9100
- .api-gateway-authentication,
9101
- .api-gateway-basic-settings {
9102
- .fields-wrapper {
9103
- display: flex;
9104
- flex-flow: column nowrap;
9105
- justify-content: space-around;
9106
-
9107
- .field-wrapper {
9108
- display: flex;
9109
- flex-flow: row nowrap;
9110
- justify-content: space-between;
9111
- line-height: 36px;
9112
- margin-top: 16px;
9113
-
9114
- &:first-child {
9115
- margin-top: 0;
9116
- }
9146
+ &.delete-entity-dialog-wrapper {
9147
+ .ngdialog-content {
9148
+ padding: 30px 24px 23px 24px;
9117
9149
 
9118
- .field-label {
9119
- width: 35%;
9120
- }
9150
+ .notification-text.title {
9151
+ text-align: center;
9152
+ padding-right: 0;
9153
+ color: @darkish-pink;
9154
+ font-size: 20px;
9155
+ font-weight: 500;
9156
+ letter-spacing: normal;
9157
+ margin: 11px 0 2px;
9158
+ }
9121
9159
 
9122
- .field-input {
9123
- width: 60%;
9124
- }
9125
- }
9126
- }
9127
- }
9160
+ .notification-text.description {
9161
+ text-align: center;
9162
+ margin: 0 37px;
9163
+ font-size: 16px;
9164
+ font-weight: normal;
9165
+ letter-spacing: normal;
9166
+ color: @dusk-three;
9167
+ }
9128
9168
 
9129
- .api-gateway-basic-settings {
9130
- .end-point-block {
9131
- margin-top: 8px;
9169
+ .nuclio-alert-icon {
9170
+ background: url('/assets/images/ic-alert-message.svg');
9171
+ height: 29px;
9172
+ width: 34px;
9173
+ margin: 0 auto;
9174
+ }
9132
9175
 
9133
- .end-point-title {
9134
- font-weight: bold;
9135
- }
9176
+ .buttons {
9177
+ margin-top: 30px;
9178
+ }
9179
+ }
9180
+ }
9136
9181
 
9137
- .end-point-host {
9138
- display: flex;
9139
- flex-flow: row nowrap;
9140
- align-items: center;
9182
+ &.ngdialog.ngdialog-closing .ngdialog-content {
9183
+ animation-duration: @animation-duration;
9184
+ animation-timing-function: @animation-function;
9185
+ }
9141
9186
 
9142
- .host {
9143
- flex: auto;
9144
- word-break: break-all;
9145
- max-height: 80px;
9146
- overflow-y: auto;
9147
- }
9187
+ .ngdialog-overlay {
9188
+ background: .black(0.6)[@color];
9189
+ border: 2px solid @black;
9190
+ animation-duration: @animation-duration;
9191
+ animation-timing-function: @animation-function;
9192
+ }
9148
9193
 
9149
- .copy-to-clipboard {
9150
- flex: none;
9151
- }
9152
- }
9153
- }
9154
- }
9194
+ &.ngdialog.ngdialog-closing .ngdialog-overlay {
9195
+ animation-duration: @animation-duration;
9196
+ animation-timing-function: @animation-function;
9197
+ }
9155
9198
 
9156
- .api-gateway-circles {
9157
- display: flex;
9158
- flex-flow: column nowrap;
9159
- justify-content: space-between;
9160
- align-items: center;
9161
- position: relative;
9199
+ &.ngdialog.ng-login-modal .ngdialog-content {
9200
+ padding: 0;
9201
+ }
9202
+ }
9162
9203
 
9163
- &.only-primary {
9164
- justify-content: center;
9165
- }
9204
+ body {
9205
+ .ncl-main-wrapper {
9206
+ padding: 64px 0 0 215px;
9207
+ width: 100%;
9208
+ height: 100%;
9209
+ }
9166
9210
 
9167
- .api-gateway-block {
9168
- border-radius: 35px;
9211
+ .table-headers {
9212
+ display: flex;
9213
+ font-size: 14px;
9214
+ font-weight: bold;
9215
+ font-style: normal;
9216
+ font-stretch: normal;
9217
+ letter-spacing: normal;
9218
+ color: @dusk-three;
9219
+ margin-bottom: 2px;
9169
9220
 
9170
- &.function-circle {
9171
- width: 320px;
9221
+ .key-header {
9222
+ width: 34%;
9223
+ margin-left: 16px;
9172
9224
 
9173
- &.canary-function {
9174
- .canary-title {
9175
- margin-top: 20px;
9176
- margin-bottom: 0;
9177
- }
9225
+ &:not(.use-type) {
9226
+ width: 36%;
9227
+ }
9228
+ }
9178
9229
 
9179
- .canary-action-menu {
9180
- position: absolute;
9181
- top: 24px;
9182
- right: 0;
9183
- }
9184
- }
9230
+ .type-header {
9231
+ width: 12%;
9232
+ }
9185
9233
 
9186
- .function-name {
9187
- position: relative;
9234
+ .value-header {
9235
+ width: 52%;
9188
9236
 
9189
- &.percentage-exists {
9190
- padding-left: 36px;
9191
- }
9237
+ &:not(.use-type) {
9238
+ width: 61%;
9239
+ }
9240
+ }
9241
+ }
9192
9242
 
9193
- .percentage {
9194
- position: absolute;
9195
- left: -17px;
9196
- top: -4px;
9197
- width: 44px;
9198
- height: 44px;
9243
+ .table-body:not(:last-child) {
9244
+ margin-bottom: 5px;
9245
+ }
9246
+ }
9199
9247
 
9200
- .percentage-background {
9201
- position: absolute;
9202
- width: 110%;
9203
- height: 110%;
9204
- background-color: @api-gateway-percentage-background-color;
9205
- border-radius: 50% 50% 0 50%;
9206
- transform: rotate(45deg);
9207
- }
9208
9248
 
9209
- &.swap {
9210
- top: -8px;
9249
+ .logs-common {
9250
+ font-family: "Source Code Pro", "Courier New", monospace;
9251
+ font-size: 14px;
9252
+ line-height: 1.1;
9253
+ text-align: left;
9254
+ white-space: pre-wrap;
9255
+ }
9256
+ .tooltip.custom-tooltip {
9257
+ transition-duration: 0s;
9258
+ z-index: 10001;
9259
+ opacity: 1;
9211
9260
 
9212
- .percentage-background {
9213
- border-radius: 50% 0 50% 50%;
9214
- transform: rotate(-45deg);
9215
- }
9216
- }
9261
+ .tooltip-arrow {
9262
+ display: block;
9263
+ margin-left: 0;
9264
+ position: absolute;
9265
+ top: -1px;
9266
+ width: 13px;
9267
+ height: 13px;
9268
+ transform: rotate(226deg);
9269
+ border-right: 1px solid @pale-grey;
9270
+ border-bottom: 1px solid @pale-grey;
9271
+ border-width: 1px;
9272
+ background-color: @white;
9273
+ }
9217
9274
 
9218
- .percentage-value {
9219
- position: absolute;
9220
- top: 5px;
9221
- left: 2px;
9222
- width: 100%;
9223
- height: 36px;
9224
- line-height: 36px;
9225
- text-align: center;
9226
- color: @api-gateway-percentage-value-font-color;
9275
+ &.bottom {
9276
+ margin-top: 8px;
9277
+ }
9227
9278
 
9228
- &:after {
9229
- content: '%';
9230
- }
9231
- }
9232
- }
9233
- }
9279
+ &.top {
9280
+ margin-top: 4px;
9281
+ }
9234
9282
 
9235
- .function-name-title {
9236
- vertical-align: middle;
9237
- line-height: normal;
9238
- }
9239
- }
9240
- }
9283
+ .tooltip-inner {
9284
+ background-color: @white;
9285
+ color: @dusk-three;
9286
+ border-radius: 2px;
9287
+ font-size: 14px;
9288
+ word-wrap: break-word;
9289
+ max-width: 280px;
9290
+ padding: 29px 30px;
9291
+ box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
9292
+ border: solid 1px @pale-grey;
9293
+ }
9294
+ }
9295
+ .deploy-deleted-function-dialog {
9296
+ .sub-title {
9297
+ font-size: 16px;
9298
+ color: @silver-chalice-two;
9299
+ }
9241
9300
 
9242
- .create-canary-button {
9243
- position: absolute;
9244
- bottom: -40px;
9245
- .igz-icon-add-round {
9246
- margin: 0 8px 0 0;
9247
- }
9248
- }
9301
+ .buttons {
9302
+ display: flex;
9303
+ justify-content: flex-end;
9304
+ }
9305
+ }
9249
9306
 
9250
- .primary-canary-slider {
9251
- z-index: 1;
9252
- height: 175px;
9253
- width: 100%;
9254
- display: flex;
9255
- justify-content: flex-start;
9256
- margin-left: 20px;
9307
+ .duplicate-function-dialog-wrapper {
9308
+ .main-content {
9309
+ .field-group {
9310
+ display: flex;
9311
+ flex-wrap: wrap;
9312
+ width: 450px;
9257
9313
 
9258
- .rzslider:not([disabled]).rz-vertical {
9259
- .rz-bar {
9260
- background-color: @dark-sky-blue;
9261
- border-radius: 0;
9262
- }
9314
+ .field-label.function-name-label,
9315
+ .field-input.function-name-input,
9316
+ .field-input.function-configuration-input {
9317
+ width: 100%;
9318
+ }
9263
9319
 
9264
- .rz-pointer {
9265
- width: 27px;
9266
- height: 27px;
9267
- background-color: @white;
9268
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.24);
9269
- border-radius: 50%;
9270
- left: -11px !important;
9271
- outline: 0 none transparent;
9320
+ .field-label.function-configuration-label {
9321
+ width: 100%;
9322
+ line-height: 30px;
9323
+ }
9272
9324
 
9273
- &::after {
9274
- top: 11px;
9275
- left: 11px;
9276
- width: 5px;
9277
- height: 5px;
9278
- }
9279
- }
9280
- }
9281
- }
9282
- }
9325
+ .field-input.function-name-input,
9326
+ .field-input.function-configuration-input {
9327
+ .error {
9328
+ top: 38px;
9283
9329
  }
9284
9330
  }
9285
9331
 
9286
- .buttons-wrapper {
9287
- position: relative;
9288
- width: 100%;
9289
- margin-top: 32px;
9332
+ .field-label.function-configuration-path {
9333
+ font-size: 14px;
9334
+ margin-left: 3px;
9335
+ line-height: 30px;
9290
9336
  }
9291
9337
  }
9292
9338
  }
9293
9339
  }
9294
9340
 
9295
- .deploy-deleted-function-dialog {
9341
+ .override-function-dialog {
9296
9342
  .sub-title {
9297
9343
  font-size: 16px;
9298
9344
  color: @silver-chalice-two;
@@ -9300,7 +9346,10 @@ body {
9300
9346
 
9301
9347
  .buttons {
9302
9348
  display: flex;
9303
- justify-content: flex-end;
9349
+
9350
+ .function-redirect-button {
9351
+ margin-right: auto;
9352
+ }
9304
9353
  }
9305
9354
  }
9306
9355
 
@@ -9438,55 +9487,6 @@ body {
9438
9487
  }
9439
9488
  }
9440
9489
 
9441
- .duplicate-function-dialog-wrapper {
9442
- .main-content {
9443
- .field-group {
9444
- display: flex;
9445
- flex-wrap: wrap;
9446
- width: 450px;
9447
-
9448
- .field-label.function-name-label,
9449
- .field-input.function-name-input,
9450
- .field-input.function-configuration-input {
9451
- width: 100%;
9452
- }
9453
-
9454
- .field-label.function-configuration-label {
9455
- width: 100%;
9456
- line-height: 30px;
9457
- }
9458
-
9459
- .field-input.function-name-input,
9460
- .field-input.function-configuration-input {
9461
- .error {
9462
- top: 38px;
9463
- }
9464
- }
9465
-
9466
- .field-label.function-configuration-path {
9467
- font-size: 14px;
9468
- margin-left: 3px;
9469
- line-height: 30px;
9470
- }
9471
- }
9472
- }
9473
- }
9474
-
9475
- .override-function-dialog {
9476
- .sub-title {
9477
- font-size: 16px;
9478
- color: @silver-chalice-two;
9479
- }
9480
-
9481
- .buttons {
9482
- display: flex;
9483
-
9484
- .function-redirect-button {
9485
- margin-right: auto;
9486
- }
9487
- }
9488
- }
9489
-
9490
9490
  .ncl-edit-version {
9491
9491
  background: #f2f2f6;
9492
9492
  position: relative;
@@ -10279,6 +10279,35 @@ igz-info-page-content {
10279
10279
  }
10280
10280
  }
10281
10281
 
10282
+ ncl-breadcrumbs {
10283
+ .main-header-title {
10284
+ &:not(.disable-behavior) {
10285
+ &:hover .main-header-title-text {
10286
+ color: @dark-sky-blue;
10287
+ }
10288
+ }
10289
+
10290
+ &.disable-behavior {
10291
+ color: @dusk-three;
10292
+ }
10293
+ }
10294
+
10295
+ .igz-icon-right {
10296
+ font-size: 11px;
10297
+ font-weight: 100;
10298
+ margin: 0 14px;
10299
+ }
10300
+
10301
+ .ncl-header-subtitle {
10302
+ color: @greyish-purple;
10303
+ }
10304
+
10305
+ .ncl-bold-subtitle {
10306
+ color: @dusk-three;
10307
+ font-weight: bold;
10308
+ }
10309
+ }
10310
+
10282
10311
  .ncl-breadcrumbs-dropdown {
10283
10312
  display: inline-grid;
10284
10313
 
@@ -10414,37 +10443,8 @@ igz-info-page-content {
10414
10443
  &:hover {
10415
10444
  height: 32px;
10416
10445
  background-color: @pale-grey-two;
10417
- }
10418
- }
10419
- }
10420
- }
10421
-
10422
- ncl-breadcrumbs {
10423
- .main-header-title {
10424
- &:not(.disable-behavior) {
10425
- &:hover .main-header-title-text {
10426
- color: @dark-sky-blue;
10427
- }
10428
- }
10429
-
10430
- &.disable-behavior {
10431
- color: @dusk-three;
10432
- }
10433
- }
10434
-
10435
- .igz-icon-right {
10436
- font-size: 11px;
10437
- font-weight: 100;
10438
- margin: 0 14px;
10439
- }
10440
-
10441
- .ncl-header-subtitle {
10442
- color: @greyish-purple;
10443
- }
10444
-
10445
- .ncl-bold-subtitle {
10446
- color: @dusk-three;
10447
- font-weight: bold;
10446
+ }
10447
+ }
10448
10448
  }
10449
10449
  }
10450
10450
 
@@ -11778,6 +11778,131 @@ ncl-navigation-tabs {
11778
11778
  }
11779
11779
  }
11780
11780
 
11781
+ .ncl-version-execution-log {
11782
+ .control-panel-log-color-set();
11783
+
11784
+ min-width: 1250px;
11785
+ padding: 24px 25px 22px 41px;
11786
+
11787
+ .ncl-version-execution-log-wrapper {
11788
+ height: 95%;
11789
+
11790
+ .info-page-filters {
11791
+ z-index: 1000;
11792
+
11793
+ .multiple-checkboxes-option {
11794
+ margin: 10px 0;
11795
+ }
11796
+ }
11797
+
11798
+ .igz-info-page-actions-bar {
11799
+ z-index: 990;
11800
+
11801
+ .actions-dropdown-block {
11802
+ width: 200px;
11803
+ }
11804
+ }
11805
+
11806
+ > .row {
11807
+ position: relative;
11808
+ padding: 16px 23px 16px;
11809
+ background-color: @white;
11810
+ border: solid 1px @pale-grey;
11811
+ overflow: hidden;
11812
+ margin-right: 16px;
11813
+ margin-bottom: 16px;
11814
+ transition: @igz-basic-transition;
11815
+ height: 100%;
11816
+
11817
+ .limitation-message {
11818
+ line-height: 20px;
11819
+ }
11820
+
11821
+ .logs-container {
11822
+ padding-bottom: 50px;
11823
+ }
11824
+
11825
+ &.filters-shown {
11826
+ padding-right: 310px;
11827
+ }
11828
+
11829
+ .info-page-filters {
11830
+ width: 300px;
11831
+
11832
+ .info-page-filters-item {
11833
+ &.search-input-item {
11834
+ padding-top: 10px;
11835
+ }
11836
+ }
11837
+
11838
+ .filter-label {
11839
+ font-weight: bold;
11840
+ color: @log-filters-filter-label-color;
11841
+ }
11842
+
11843
+ .filter-level-wrapper {
11844
+ .filter-level-item {
11845
+ margin: 5px 0;
11846
+ }
11847
+
11848
+ .level-icon {
11849
+ display: inline-block;
11850
+ margin-right: 8px;
11851
+ width: 20px;
11852
+ text-align: center;
11853
+
11854
+ &::before {
11855
+ font-size: 16px;
11856
+ vertical-align: text-bottom;
11857
+ }
11858
+
11859
+ &.ncl-icon-debug {
11860
+ color: @log-filters-level-debug-icon-color;
11861
+ }
11862
+
11863
+ &.igz-icon-info-round {
11864
+ color: @log-filters-level-info-icon-color;
11865
+ }
11866
+
11867
+ &.igz-icon-warning {
11868
+ color: @log-filters-level-warn-icon-color;
11869
+
11870
+ &::before {
11871
+ font-size: 15px;
11872
+ }
11873
+ }
11874
+
11875
+ &.igz-icon-cancel-path {
11876
+ color: @log-filters-level-error-icon-color;
11877
+ }
11878
+ }
11879
+ }
11880
+
11881
+ .checkboxes-dropdown-field {
11882
+ height: 36px;
11883
+ padding-left: 15px;
11884
+ padding-right: 15px;
11885
+ }
11886
+
11887
+ .checkboxes-dropdown-title {
11888
+ text-transform: initial;
11889
+ font-size: 14px;
11890
+ }
11891
+ }
11892
+ }
11893
+
11894
+ .online-replicas__checkbox {
11895
+ margin: 5px 0;
11896
+ }
11897
+
11898
+ .igz-multiple-checkboxes {
11899
+ .checkboxes-dropdown-container {
11900
+ position: unset;
11901
+ }
11902
+ }
11903
+ }
11904
+ }
11905
+
11781
11906
  .ncl-version-monitoring {
11782
11907
  > .igz-scrollable-container {
11783
11908
  padding: 24px 25px 22px 41px;
@@ -11833,207 +11958,82 @@ ncl-navigation-tabs {
11833
11958
  }
11834
11959
  }
11835
11960
 
11836
- .icon-collapsed {
11837
- .duskThree(0.64);
11838
- color: @color;
11839
- font-size: 12px;
11840
- margin: 0 13px 0 4px;
11841
- }
11842
-
11843
- .igz-scrollable-container {
11844
- max-height: 500px;
11845
- }
11846
-
11847
- .title {
11848
- font-size: 16px;
11849
- font-weight: bold;
11850
- color: @dusk-three;
11851
- }
11852
-
11853
- .monitoring-invocation-url-wrapper {
11854
- display: flex;
11855
- align-items: center;
11856
-
11857
- .igz-action-panel {
11858
- top: -2px;
11859
- left: 5px;
11860
- }
11861
- }
11862
-
11863
- .monitoring-invocation-field-invalid {
11864
- margin-left: 5px;
11865
- font-family: Roboto;
11866
- }
11867
-
11868
- .monitoring-replicas {
11869
- margin-left: 5px;
11870
- }
11871
- }
11872
-
11873
- .ncl-monitoring-build-logger {
11874
- .monitoring-block-title {
11875
- margin-left: 5px;
11876
- }
11877
-
11878
- .ncl-monitoring-build-logs {
11879
- padding: 0 0 7px 4px;
11880
-
11881
- &.collapsing {
11882
- transition-duration: 150ms;
11883
- }
11884
- }
11885
- }
11886
-
11887
- .ncl-monitoring-error-logger {
11888
- max-height: 335px;
11889
-
11890
- .monitoring-block-title {
11891
- margin-left: 5px;
11892
- }
11893
-
11894
- .ncl-monitoring-error-logs {
11895
- padding: 0 0 7px 4px;
11896
-
11897
- &.collapsing {
11898
- transition-duration: 150ms;
11899
- }
11900
-
11901
- .error-panel {
11902
- .logs-common();
11903
- color: @dusk-three;
11904
- padding: 5px;
11905
- margin-left: 24px;
11906
- max-height: 232px;
11907
- }
11908
- }
11909
- }
11910
- }
11911
- }
11912
- }
11913
-
11914
- .ncl-version-execution-log {
11915
- .control-panel-log-color-set();
11916
-
11917
- min-width: 1250px;
11918
- padding: 24px 25px 22px 41px;
11919
-
11920
- .ncl-version-execution-log-wrapper {
11921
- height: 95%;
11922
-
11923
- .info-page-filters {
11924
- z-index: 1000;
11925
-
11926
- .multiple-checkboxes-option {
11927
- margin: 10px 0;
11928
- }
11929
- }
11930
-
11931
- .igz-info-page-actions-bar {
11932
- z-index: 990;
11933
-
11934
- .actions-dropdown-block {
11935
- width: 200px;
11936
- }
11937
- }
11938
-
11939
- > .row {
11940
- position: relative;
11941
- padding: 16px 23px 16px;
11942
- background-color: @white;
11943
- border: solid 1px @pale-grey;
11944
- overflow: hidden;
11945
- margin-right: 16px;
11946
- margin-bottom: 16px;
11947
- transition: @igz-basic-transition;
11948
- height: 100%;
11949
-
11950
- .limitation-message {
11951
- line-height: 20px;
11952
- }
11953
-
11954
- .logs-container {
11955
- padding-bottom: 50px;
11956
- }
11957
-
11958
- &.filters-shown {
11959
- padding-right: 310px;
11960
- }
11961
-
11962
- .info-page-filters {
11963
- width: 300px;
11964
-
11965
- .info-page-filters-item {
11966
- &.search-input-item {
11967
- padding-top: 10px;
11968
- }
11969
- }
11961
+ .icon-collapsed {
11962
+ .duskThree(0.64);
11963
+ color: @color;
11964
+ font-size: 12px;
11965
+ margin: 0 13px 0 4px;
11966
+ }
11970
11967
 
11971
- .filter-label {
11972
- font-weight: bold;
11973
- color: @log-filters-filter-label-color;
11974
- }
11968
+ .igz-scrollable-container {
11969
+ max-height: 500px;
11970
+ }
11975
11971
 
11976
- .filter-level-wrapper {
11977
- .filter-level-item {
11978
- margin: 5px 0;
11979
- }
11972
+ .title {
11973
+ font-size: 16px;
11974
+ font-weight: bold;
11975
+ color: @dusk-three;
11976
+ }
11980
11977
 
11981
- .level-icon {
11982
- display: inline-block;
11983
- margin-right: 8px;
11984
- width: 20px;
11985
- text-align: center;
11978
+ .monitoring-invocation-url-wrapper {
11979
+ display: flex;
11980
+ align-items: center;
11986
11981
 
11987
- &::before {
11988
- font-size: 16px;
11989
- vertical-align: text-bottom;
11990
- }
11982
+ .igz-action-panel {
11983
+ top: -2px;
11984
+ left: 5px;
11985
+ }
11986
+ }
11991
11987
 
11992
- &.ncl-icon-debug {
11993
- color: @log-filters-level-debug-icon-color;
11994
- }
11988
+ .monitoring-invocation-field-invalid {
11989
+ margin-left: 5px;
11990
+ font-family: Roboto;
11991
+ }
11995
11992
 
11996
- &.igz-icon-info-round {
11997
- color: @log-filters-level-info-icon-color;
11993
+ .monitoring-replicas {
11994
+ margin-left: 5px;
11995
+ }
11998
11996
  }
11999
11997
 
12000
- &.igz-icon-warning {
12001
- color: @log-filters-level-warn-icon-color;
11998
+ .ncl-monitoring-build-logger {
11999
+ .monitoring-block-title {
12000
+ margin-left: 5px;
12001
+ }
12002
12002
 
12003
- &::before {
12004
- font-size: 15px;
12005
- }
12006
- }
12003
+ .ncl-monitoring-build-logs {
12004
+ padding: 0 0 7px 4px;
12007
12005
 
12008
- &.igz-icon-cancel-path {
12009
- color: @log-filters-level-error-icon-color;
12006
+ &.collapsing {
12007
+ transition-duration: 150ms;
12008
+ }
12009
+ }
12010
12010
  }
12011
- }
12012
- }
12013
12011
 
12014
- .checkboxes-dropdown-field {
12015
- height: 36px;
12016
- padding-left: 15px;
12017
- padding-right: 15px;
12018
- }
12012
+ .ncl-monitoring-error-logger {
12013
+ max-height: 335px;
12019
12014
 
12020
- .checkboxes-dropdown-title {
12021
- text-transform: initial;
12022
- font-size: 14px;
12023
- }
12024
- }
12025
- }
12015
+ .monitoring-block-title {
12016
+ margin-left: 5px;
12017
+ }
12026
12018
 
12027
- .online-replicas__checkbox {
12028
- margin: 5px 0;
12029
- }
12019
+ .ncl-monitoring-error-logs {
12020
+ padding: 0 0 7px 4px;
12030
12021
 
12031
- .igz-multiple-checkboxes {
12032
- .checkboxes-dropdown-container {
12033
- position: unset;
12034
- }
12022
+ &.collapsing {
12023
+ transition-duration: 150ms;
12024
+ }
12025
+
12026
+ .error-panel {
12027
+ .logs-common();
12028
+ color: @dusk-three;
12029
+ padding: 5px;
12030
+ margin-left: 24px;
12031
+ max-height: 232px;
12032
+ }
12033
+ }
12034
+ }
12035
+ }
12035
12036
  }
12036
- }
12037
12037
  }
12038
12038
 
12039
12039
  .ncl-version-trigger {
@@ -12208,6 +12208,76 @@ ncl-navigation-tabs {
12208
12208
  }
12209
12209
  }
12210
12210
 
12211
+ .function-import-wrapper-content {
12212
+ font-family: @font-family-sans-serif;
12213
+ padding-left: 3%;
12214
+ width: 96%;
12215
+
12216
+ .function-import-form {
12217
+ display: flex;
12218
+ align-items: flex-end;
12219
+ margin-bottom: 10px;
12220
+
12221
+ .projects-drop-down {
12222
+ margin-right: 48px;
12223
+
12224
+ .input-label {
12225
+ font-size: 14px;
12226
+ font-weight: 600;
12227
+ color: @dusk-three;
12228
+ }
12229
+
12230
+ igz-default-dropdown {
12231
+ .default-dropdown {
12232
+ background-color: @white;
12233
+
12234
+ .default-dropdown-field {
12235
+ &:focus {
12236
+ background-color: inherit;
12237
+ }
12238
+ }
12239
+ }
12240
+ }
12241
+ }
12242
+
12243
+ .function-import-actions-bar {
12244
+ display: flex;
12245
+
12246
+ .function-import-file-picker {
12247
+ .file-picker-wrapper {
12248
+ margin: 0;
12249
+ line-height: 34px;
12250
+
12251
+ .igz-icon-upload {
12252
+ margin-right: 10px;
12253
+ }
12254
+ }
12255
+
12256
+ .function-import-input {
12257
+ opacity: 0;
12258
+ position: absolute;
12259
+ z-index: -1;
12260
+ }
12261
+ }
12262
+ }
12263
+ }
12264
+
12265
+ .splash-screen {
12266
+ top: 0;
12267
+ }
12268
+
12269
+ .function-import-monaco {
12270
+ .ncl-monaco {
12271
+ height: 370px;
12272
+ width: 100%;
12273
+
12274
+ .monaco-code-editor {
12275
+ height: 100%;
12276
+ }
12277
+ }
12278
+ }
12279
+ }
12280
+
12211
12281
  .function-from-template-content {
12212
12282
  .ncl-function-from-template-color-set();
12213
12283
 
@@ -12470,76 +12540,6 @@ ncl-navigation-tabs {
12470
12540
  }
12471
12541
  }
12472
12542
 
12473
- .function-import-wrapper-content {
12474
- font-family: @font-family-sans-serif;
12475
- padding-left: 3%;
12476
- width: 96%;
12477
-
12478
- .function-import-form {
12479
- display: flex;
12480
- align-items: flex-end;
12481
- margin-bottom: 10px;
12482
-
12483
- .projects-drop-down {
12484
- margin-right: 48px;
12485
-
12486
- .input-label {
12487
- font-size: 14px;
12488
- font-weight: 600;
12489
- color: @dusk-three;
12490
- }
12491
-
12492
- igz-default-dropdown {
12493
- .default-dropdown {
12494
- background-color: @white;
12495
-
12496
- .default-dropdown-field {
12497
- &:focus {
12498
- background-color: inherit;
12499
- }
12500
- }
12501
- }
12502
- }
12503
- }
12504
-
12505
- .function-import-actions-bar {
12506
- display: flex;
12507
-
12508
- .function-import-file-picker {
12509
- .file-picker-wrapper {
12510
- margin: 0;
12511
- line-height: 34px;
12512
-
12513
- .igz-icon-upload {
12514
- margin-right: 10px;
12515
- }
12516
- }
12517
-
12518
- .function-import-input {
12519
- opacity: 0;
12520
- position: absolute;
12521
- z-index: -1;
12522
- }
12523
- }
12524
- }
12525
- }
12526
-
12527
- .splash-screen {
12528
- top: 0;
12529
- }
12530
-
12531
- .function-import-monaco {
12532
- .ncl-monaco {
12533
- height: 370px;
12534
- width: 100%;
12535
-
12536
- .monaco-code-editor {
12537
- height: 100%;
12538
- }
12539
- }
12540
- }
12541
- }
12542
-
12543
12543
  .test-events-pane-wrapper {
12544
12544
  position: absolute;
12545
12545
  height: 100%;