iguazio.dashboard-controls 1.2.6 → 1.2.8

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,9 +1,3 @@
1
- .common-table-cell {
2
- &.status {
3
- min-width: 95px;
4
- }
5
- }
6
-
7
1
  //
8
2
  // Common styles for buttons
9
3
  //
@@ -3614,6 +3608,12 @@ html input[disabled], html textarea[disabled] {
3614
3608
 
3615
3609
  // Media Query
3616
3610
  @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)";
3611
+ .common-table-cell {
3612
+ &.status {
3613
+ min-width: 95px;
3614
+ }
3615
+ }
3616
+
3617
3617
  ncl-functions {
3618
3618
  igz-info-page-actions-bar {
3619
3619
  .igz-info-page-actions-bar {
@@ -3666,6 +3666,149 @@ ncl-functions {
3666
3666
  }
3667
3667
  }
3668
3668
 
3669
+ /**
3670
+ UI.Layout CSS
3671
+ *************************************/
3672
+ .stretch {
3673
+ position: absolute;
3674
+ top: 0;
3675
+ left: 0;
3676
+ right: 0;
3677
+ bottom: 0;
3678
+ /* Can be changed by hand ;)*/
3679
+ overflow: auto;
3680
+ }
3681
+
3682
+ .animate-row, .animate-column {
3683
+ -webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3684
+ -moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3685
+ -ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3686
+ -o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3687
+ transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3688
+ }
3689
+
3690
+ .ui-splitbar {
3691
+ display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
3692
+ display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
3693
+ display: -ms-flexbox; /* TWEENER - IE 10 */
3694
+ display: -webkit-flex; /* NEW - Chrome */
3695
+ display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
3696
+ -webkit-justify-content: center;
3697
+ justify-content: center;
3698
+
3699
+ background-color: #ffffff;
3700
+ right: auto;
3701
+ position: absolute;
3702
+ z-index: 1;
3703
+ }
3704
+
3705
+ .ui-layout-row > .ui-splitbar {
3706
+ height: 8px;
3707
+ width: 100%;
3708
+ cursor: row-resize;
3709
+ text-align: center;
3710
+ justify-content: center;
3711
+ align-items: center;
3712
+ background: linear-gradient(to bottom, #fff 0%, #eee 100%);
3713
+ overflow-y: hidden;
3714
+ }
3715
+
3716
+ .ui-layout-column > .ui-splitbar {
3717
+ width: 8px;
3718
+ height: 100%;
3719
+ cursor: col-resize;
3720
+ -webkit-flex-direction: column;
3721
+ flex-direction: column;
3722
+ background: linear-gradient(to right, #fff 0%, #eee 100%);
3723
+ overflow-x: hidden;
3724
+ }
3725
+
3726
+ .ui-layout-column > .ui-splitbar > a,
3727
+ .ui-layout-row > .ui-splitbar > a {
3728
+ cursor: pointer;
3729
+ text-align: center;
3730
+ font-size: 16px;
3731
+ color: #aaa;
3732
+ }
3733
+
3734
+ .ui-layout-column > .ui-splitbar > a:nth-child(2) {
3735
+ margin-top: 0.35rem;
3736
+ }
3737
+
3738
+ .ui-layout-row > .ui-splitbar > a:nth-child(2) {
3739
+ margin-left: 0.35rem;
3740
+ }
3741
+
3742
+
3743
+ /**
3744
+ * Icons
3745
+ **/
3746
+
3747
+ .ui-splitbar-icon {
3748
+ width: 0;
3749
+ height: 0;
3750
+ display: inline-block;
3751
+ }
3752
+
3753
+ .ui-splitbar-icon-up {
3754
+ border-left: 0.45em solid transparent;
3755
+ border-right: 0.45em solid transparent;
3756
+ border-bottom: 0.45em solid;
3757
+ }
3758
+
3759
+ .ui-splitbar-icon-down {
3760
+ border-left: 0.45em solid transparent;
3761
+ border-right: 0.45em solid transparent;
3762
+ border-top: 0.45em solid;
3763
+ margin-right: 0.45em;
3764
+ }
3765
+
3766
+ .ui-splitbar-icon-right {
3767
+ border-top: 0.45em solid transparent;
3768
+ border-bottom: 0.45em solid transparent;
3769
+ border-left: 0.45em solid;
3770
+
3771
+ }
3772
+
3773
+ .ui-splitbar-icon-left {
3774
+ border-top: 0.45em solid transparent;
3775
+ border-bottom: 0.45em solid transparent;
3776
+ border-right: 0.45em solid;
3777
+ margin-top: 0.45em;
3778
+ }
3779
+
3780
+ /* Allow disabling of icons */
3781
+ .no-toggle .ui-splitbar-icon {
3782
+ display: none;
3783
+ }
3784
+
3785
+ @media only screen and (max-device-width: 480px) {
3786
+ .no-mobile-toggle .ui-splitbar-icon {
3787
+ display: none;
3788
+ }
3789
+ }
3790
+
3791
+ @media print {
3792
+ .ui-splitbar {
3793
+ display: none;
3794
+ }
3795
+
3796
+ .stretch {
3797
+ position: relative;
3798
+ }
3799
+
3800
+ /* The last item can take up any amount of space. */
3801
+ .stretch.ui-layout-container:last-child {
3802
+ position: static;
3803
+ overflow: visible;
3804
+ }
3805
+ }
3806
+
3807
+ /* Make sure hidden elements are in fact not rendered. */
3808
+ .ui-layout-hidden {
3809
+ display: none;
3810
+ }
3811
+
3669
3812
  /*
3670
3813
  == malihu jquery custom scrollbar plugin ==
3671
3814
  Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
@@ -5388,357 +5531,56 @@ yx-axis
5388
5531
 
5389
5532
  /* ---------------------------------------- */
5390
5533
 
5391
- /**
5392
- UI.Layout CSS
5393
- *************************************/
5394
- .stretch {
5395
- position: absolute;
5396
- top: 0;
5397
- left: 0;
5398
- right: 0;
5399
- bottom: 0;
5400
- /* Can be changed by hand ;)*/
5401
- overflow: auto;
5402
- }
5534
+ .action-checkbox {
5535
+ .action-checkbox-color-set();
5403
5536
 
5404
- .animate-row, .animate-column {
5405
- -webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5406
- -moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5407
- -ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5408
- -o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5409
- transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5410
- }
5537
+ line-height: 16px;
5538
+ text-align: center;
5411
5539
 
5412
- .ui-splitbar {
5413
- display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
5414
- display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
5415
- display: -ms-flexbox; /* TWEENER - IE 10 */
5416
- display: -webkit-flex; /* NEW - Chrome */
5417
- display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
5418
- -webkit-justify-content: center;
5419
- justify-content: center;
5540
+ .check-item {
5541
+ font-size: 16px;
5542
+ cursor: pointer;
5543
+ line-height: 1;
5544
+ vertical-align: middle;
5420
5545
 
5421
- background-color: #ffffff;
5422
- right: auto;
5423
- position: absolute;
5424
- z-index: 1;
5425
- }
5546
+ &.igz-icon-checkbox-unchecked {
5547
+ color: @icon-checkbox-unchecked;
5548
+ }
5426
5549
 
5427
- .ui-layout-row > .ui-splitbar {
5428
- height: 8px;
5429
- width: 100%;
5430
- cursor: row-resize;
5431
- text-align: center;
5432
- justify-content: center;
5433
- align-items: center;
5434
- background: linear-gradient(to bottom, #fff 0%, #eee 100%);
5435
- overflow-y: hidden;
5550
+ &.igz-icon-checkbox-checked {
5551
+ color: @icon-checkbox-checked;
5552
+ }
5553
+ }
5436
5554
  }
5555
+ .action-checkbox-all {
5556
+ .action-checkbox-all-color-set();
5437
5557
 
5438
- .ui-layout-column > .ui-splitbar {
5439
- width: 8px;
5440
- height: 100%;
5441
- cursor: col-resize;
5442
- -webkit-flex-direction: column;
5443
- flex-direction: column;
5444
- background: linear-gradient(to right, #fff 0%, #eee 100%);
5445
- overflow-x: hidden;
5446
- }
5558
+ text-align: center;
5447
5559
 
5448
- .ui-layout-column > .ui-splitbar > a,
5449
- .ui-layout-row > .ui-splitbar > a {
5450
- cursor: pointer;
5451
- text-align: center;
5452
- font-size: 16px;
5453
- color: #aaa;
5454
- }
5560
+ .check-item {
5561
+ cursor: pointer;
5562
+ color: @check-item-color;
5563
+ font-size: 16px;
5564
+ line-height: 1;
5565
+ vertical-align: middle;
5455
5566
 
5456
- .ui-layout-column > .ui-splitbar > a:nth-child(2) {
5457
- margin-top: 0.35rem;
5567
+ &.igz-icon-checkbox-checked {
5568
+ color: @check-item-icon-checkbox-checked-color;
5569
+ }
5570
+ }
5458
5571
  }
5572
+ .igz-action-panel {
5573
+ .action-panel-color-set();
5574
+ .action-icon-color-set();
5459
5575
 
5460
- .ui-layout-row > .ui-splitbar > a:nth-child(2) {
5461
- margin-left: 0.35rem;
5462
- }
5576
+ left: 0;
5577
+ line-height: 0;
5578
+ position: relative;
5579
+ transition: @igz-basic-transition;
5463
5580
 
5464
-
5465
- /**
5466
- * Icons
5467
- **/
5468
-
5469
- .ui-splitbar-icon {
5470
- width: 0;
5471
- height: 0;
5472
- display: inline-block;
5473
- }
5474
-
5475
- .ui-splitbar-icon-up {
5476
- border-left: 0.45em solid transparent;
5477
- border-right: 0.45em solid transparent;
5478
- border-bottom: 0.45em solid;
5479
- }
5480
-
5481
- .ui-splitbar-icon-down {
5482
- border-left: 0.45em solid transparent;
5483
- border-right: 0.45em solid transparent;
5484
- border-top: 0.45em solid;
5485
- margin-right: 0.45em;
5486
- }
5487
-
5488
- .ui-splitbar-icon-right {
5489
- border-top: 0.45em solid transparent;
5490
- border-bottom: 0.45em solid transparent;
5491
- border-left: 0.45em solid;
5492
-
5493
- }
5494
-
5495
- .ui-splitbar-icon-left {
5496
- border-top: 0.45em solid transparent;
5497
- border-bottom: 0.45em solid transparent;
5498
- border-right: 0.45em solid;
5499
- margin-top: 0.45em;
5500
- }
5501
-
5502
- /* Allow disabling of icons */
5503
- .no-toggle .ui-splitbar-icon {
5504
- display: none;
5505
- }
5506
-
5507
- @media only screen and (max-device-width: 480px) {
5508
- .no-mobile-toggle .ui-splitbar-icon {
5509
- display: none;
5510
- }
5511
- }
5512
-
5513
- @media print {
5514
- .ui-splitbar {
5515
- display: none;
5516
- }
5517
-
5518
- .stretch {
5519
- position: relative;
5520
- }
5521
-
5522
- /* The last item can take up any amount of space. */
5523
- .stretch.ui-layout-container:last-child {
5524
- position: static;
5525
- overflow: visible;
5526
- }
5527
- }
5528
-
5529
- /* Make sure hidden elements are in fact not rendered. */
5530
- .ui-layout-hidden {
5531
- display: none;
5532
- }
5533
-
5534
- .action-checkbox {
5535
- .action-checkbox-color-set();
5536
-
5537
- line-height: 16px;
5538
- text-align: center;
5539
-
5540
- .check-item {
5541
- font-size: 16px;
5542
- cursor: pointer;
5543
- line-height: 1;
5544
- vertical-align: middle;
5545
-
5546
- &.igz-icon-checkbox-unchecked {
5547
- color: @icon-checkbox-unchecked;
5548
- }
5549
-
5550
- &.igz-icon-checkbox-checked {
5551
- color: @icon-checkbox-checked;
5552
- }
5553
- }
5554
- }
5555
- .action-checkbox-all {
5556
- .action-checkbox-all-color-set();
5557
-
5558
- text-align: center;
5559
-
5560
- .check-item {
5561
- cursor: pointer;
5562
- color: @check-item-color;
5563
- font-size: 16px;
5564
- line-height: 1;
5565
- vertical-align: middle;
5566
-
5567
- &.igz-icon-checkbox-checked {
5568
- color: @check-item-icon-checkbox-checked-color;
5569
- }
5570
- }
5571
- }
5572
- .igz-action-menu {
5573
- .action-menu-color-set();
5574
- .action-icon-color-set();
5575
-
5576
- opacity: 1;
5577
- position: relative;
5578
-
5579
- .menu-button {
5580
- color: @menu-btn-color;
5581
- cursor: pointer;
5582
- font-size: 18px;
5583
- height: 19px;
5584
- text-align: center;
5585
- transition: @igz-basic-transition-color;
5586
- width: 30px;
5587
-
5588
- &.active,
5589
- &:hover {
5590
- color: @menu-btn-active-hover-color;
5591
- }
5592
- }
5593
-
5594
- .menu-dropdown {
5595
- visibility: hidden;
5596
- background-color: @menu-dropdown-bg-color;
5597
- border: @menu-dropdown-border;
5598
- border-radius: 2px;
5599
- box-shadow: @menu-dropdown-box-shadow;
5600
- color: @menu-dropdown-color;
5601
- font-family: @font-family-sans-serif;
5602
- font-size: 13px;
5603
- font-weight: 500;
5604
- line-height: normal;
5605
- margin-top: 9px;
5606
- min-width: 129px;
5607
- padding: 8px 0 0;
5608
- position: absolute;
5609
- z-index: 10;
5610
- transform: translateX(-100%);
5611
-
5612
- .actions-list {
5613
- cursor: default;
5614
- padding-bottom: 8px;
5615
-
5616
- .tooltip {
5617
- // !important used to overwrite third-party's inline style
5618
- display: none !important;
5619
- }
5620
- }
5621
-
5622
- .igz-action-item {
5623
- color: @action-item-color;
5624
- cursor: pointer;
5625
- font-size: 13px;
5626
- font-weight: 400;
5627
- line-height: 32px;
5628
- padding: 0 18px;
5629
- text-align: left;
5630
- white-space: nowrap;
5631
-
5632
- &:hover,
5633
- &.subtemplate-show {
5634
- background-color: @action-item-hover-bg-color;
5635
- }
5636
-
5637
- &.inactive {
5638
- color: @action-item-inactive-color;
5639
- cursor: default;
5640
-
5641
- &:hover {
5642
- background-color: @menu-dropdown-bg-color;
5643
- }
5644
- }
5645
-
5646
- .action-icon {
5647
- color: @action-icon-color;
5648
- display: inline-block;
5649
- padding-right: 14px;
5650
-
5651
- &.icon-placeholder {
5652
- &:before {
5653
- content: '';
5654
- display: inline-block;
5655
- }
5656
- }
5657
-
5658
- &:before {
5659
- font-size: 16px;
5660
- position: relative;
5661
- text-align: center;
5662
- width: 20px;
5663
- top: 2px;
5664
- }
5665
- }
5666
-
5667
- .action-label {
5668
- display: inline-block;
5669
- }
5670
- }
5671
-
5672
- .shortcuts-list {
5673
- padding-bottom: 8px;
5674
-
5675
- &:not(.first-block) {
5676
- border-top: @shortcuts-list-not-first-block-border;
5677
- padding-top: 8px;
5678
- }
5679
- }
5680
-
5681
- .shortcuts-header {
5682
- font-family: @font-family-sans-serif;
5683
- color: @shortcuts-header-color;
5684
- line-height: 24px;
5685
- font-size: 13px;
5686
- font-weight: 400;
5687
- padding: 0 15px 4px 22px;
5688
- text-align: left;
5689
- }
5690
-
5691
- .shortcuts-item {
5692
- color: @shortcuts-item-color;
5693
- cursor: pointer;
5694
- font-weight: 400;
5695
- white-space: nowrap;
5696
- line-height: 32px;
5697
- padding: 0 26px 0 32px;
5698
- text-align: left;
5699
- transition: @igz-basic-transition-color;
5700
-
5701
- &:hover {
5702
- background-color: @shortcuts-item-hover-bg-color;
5703
- }
5704
-
5705
- }
5706
-
5707
- }
5708
-
5709
- &.small-action-menu {
5710
- .menu-button {
5711
- color: @small-action-menu-btn-color;
5712
- width: auto;
5713
- font-size: 12px;
5714
- display: inline-block;
5715
- height: auto;
5716
- margin: 0;
5717
- vertical-align: sub;
5718
- }
5719
-
5720
- .menu-dropdown {
5721
- margin: 0;
5722
- }
5723
- }
5724
-
5725
- .upward-menu {
5726
- transform: translate(-100%, -100%);
5727
- }
5728
- }
5729
-
5730
- .igz-action-panel {
5731
- .action-panel-color-set();
5732
- .action-icon-color-set();
5733
-
5734
- left: 0;
5735
- line-height: 0;
5736
- position: relative;
5737
- transition: @igz-basic-transition;
5738
-
5739
- &.ng-hide {
5740
- left: -100%;
5741
- }
5581
+ &.ng-hide {
5582
+ left: -100%;
5583
+ }
5742
5584
 
5743
5585
  .actions-list {
5744
5586
  transition: none;
@@ -5937,6 +5779,164 @@ yx-axis
5937
5779
  }
5938
5780
  }
5939
5781
 
5782
+ .igz-action-menu {
5783
+ .action-menu-color-set();
5784
+ .action-icon-color-set();
5785
+
5786
+ opacity: 1;
5787
+ position: relative;
5788
+
5789
+ .menu-button {
5790
+ color: @menu-btn-color;
5791
+ cursor: pointer;
5792
+ font-size: 18px;
5793
+ height: 19px;
5794
+ text-align: center;
5795
+ transition: @igz-basic-transition-color;
5796
+ width: 30px;
5797
+
5798
+ &.active,
5799
+ &:hover {
5800
+ color: @menu-btn-active-hover-color;
5801
+ }
5802
+ }
5803
+
5804
+ .menu-dropdown {
5805
+ visibility: hidden;
5806
+ background-color: @menu-dropdown-bg-color;
5807
+ border: @menu-dropdown-border;
5808
+ border-radius: 2px;
5809
+ box-shadow: @menu-dropdown-box-shadow;
5810
+ color: @menu-dropdown-color;
5811
+ font-family: @font-family-sans-serif;
5812
+ font-size: 13px;
5813
+ font-weight: 500;
5814
+ line-height: normal;
5815
+ margin-top: 9px;
5816
+ min-width: 129px;
5817
+ padding: 8px 0 0;
5818
+ position: absolute;
5819
+ z-index: 10;
5820
+ transform: translateX(-100%);
5821
+
5822
+ .actions-list {
5823
+ cursor: default;
5824
+ padding-bottom: 8px;
5825
+
5826
+ .tooltip {
5827
+ // !important used to overwrite third-party's inline style
5828
+ display: none !important;
5829
+ }
5830
+ }
5831
+
5832
+ .igz-action-item {
5833
+ color: @action-item-color;
5834
+ cursor: pointer;
5835
+ font-size: 13px;
5836
+ font-weight: 400;
5837
+ line-height: 32px;
5838
+ padding: 0 18px;
5839
+ text-align: left;
5840
+ white-space: nowrap;
5841
+
5842
+ &:hover,
5843
+ &.subtemplate-show {
5844
+ background-color: @action-item-hover-bg-color;
5845
+ }
5846
+
5847
+ &.inactive {
5848
+ color: @action-item-inactive-color;
5849
+ cursor: default;
5850
+
5851
+ &:hover {
5852
+ background-color: @menu-dropdown-bg-color;
5853
+ }
5854
+ }
5855
+
5856
+ .action-icon {
5857
+ color: @action-icon-color;
5858
+ display: inline-block;
5859
+ padding-right: 14px;
5860
+
5861
+ &.icon-placeholder {
5862
+ &:before {
5863
+ content: '';
5864
+ display: inline-block;
5865
+ }
5866
+ }
5867
+
5868
+ &:before {
5869
+ font-size: 16px;
5870
+ position: relative;
5871
+ text-align: center;
5872
+ width: 20px;
5873
+ top: 2px;
5874
+ }
5875
+ }
5876
+
5877
+ .action-label {
5878
+ display: inline-block;
5879
+ }
5880
+ }
5881
+
5882
+ .shortcuts-list {
5883
+ padding-bottom: 8px;
5884
+
5885
+ &:not(.first-block) {
5886
+ border-top: @shortcuts-list-not-first-block-border;
5887
+ padding-top: 8px;
5888
+ }
5889
+ }
5890
+
5891
+ .shortcuts-header {
5892
+ font-family: @font-family-sans-serif;
5893
+ color: @shortcuts-header-color;
5894
+ line-height: 24px;
5895
+ font-size: 13px;
5896
+ font-weight: 400;
5897
+ padding: 0 15px 4px 22px;
5898
+ text-align: left;
5899
+ }
5900
+
5901
+ .shortcuts-item {
5902
+ color: @shortcuts-item-color;
5903
+ cursor: pointer;
5904
+ font-weight: 400;
5905
+ white-space: nowrap;
5906
+ line-height: 32px;
5907
+ padding: 0 26px 0 32px;
5908
+ text-align: left;
5909
+ transition: @igz-basic-transition-color;
5910
+
5911
+ &:hover {
5912
+ background-color: @shortcuts-item-hover-bg-color;
5913
+ }
5914
+
5915
+ }
5916
+
5917
+ }
5918
+
5919
+ &.small-action-menu {
5920
+ .menu-button {
5921
+ color: @small-action-menu-btn-color;
5922
+ width: auto;
5923
+ font-size: 12px;
5924
+ display: inline-block;
5925
+ height: auto;
5926
+ margin: 0;
5927
+ vertical-align: sub;
5928
+ }
5929
+
5930
+ .menu-dropdown {
5931
+ margin: 0;
5932
+ }
5933
+ }
5934
+
5935
+ .upward-menu {
5936
+ transform: translate(-100%, -100%);
5937
+ }
5938
+ }
5939
+
5940
5940
  .auto-complete-wrapper {
5941
5941
  .auto-complete-color-set();
5942
5942
 
@@ -7329,68 +7329,29 @@ yx-axis
7329
7329
  line-height: initial;
7330
7330
  background-color: transparent;
7331
7331
  border: none;
7332
- outline: none;
7333
- }
7334
- }
7335
- }
7336
-
7337
- .master-checkbox {
7338
- cursor: pointer;
7339
- color: @master-checkbox-color;
7340
- font-size: 16px;
7341
- line-height: 1;
7342
- vertical-align: middle;
7343
-
7344
- &.igz-icon-checkbox-checked {
7345
- color: @master-checkbox-checked-color;
7346
- }
7347
- }
7348
-
7349
- .checkboxes-list {
7350
- list-style-type: none;
7351
-
7352
- .multiple-checkboxes-option {
7353
- color: @checkboxes-list-option-color;
7354
- margin: 5px 0;
7355
- }
7356
- }
7357
- }
7358
-
7359
- .igz-navigation-tabs {
7360
- .navigation-tabs-color-set();
7361
-
7362
- background-color: @navigation-tabs-bg-color;
7363
- height: 56px;
7364
- padding-top: 7px;
7365
-
7366
- .navigation-tab {
7367
- float: left;
7368
- height: 32px;
7369
- padding: 15px 24px 0;
7370
- font-family: @font-family-sans-serif;
7371
- color: @navigation-tab-color;
7372
- font-size: 14px;
7373
- text-align: center;
7374
- cursor: pointer;
7375
- border-bottom: @navigation-tab-border-bottom;
7376
- box-sizing: content-box;
7377
-
7378
- &.active, &.active:hover {
7379
- background-color: @navigation-tab-active-hover-bg-color;
7380
- color: @navigation-tab-active-hover-color;
7381
- border-bottom: @navigation-tab-active-hover-border-bottom;
7332
+ outline: none;
7333
+ }
7382
7334
  }
7335
+ }
7383
7336
 
7384
- &:hover {
7385
- background-color: @navigation-tab-hover-bg-color;
7386
- }
7337
+ .master-checkbox {
7338
+ cursor: pointer;
7339
+ color: @master-checkbox-color;
7340
+ font-size: 16px;
7341
+ line-height: 1;
7342
+ vertical-align: middle;
7387
7343
 
7388
- &.active {
7389
- background-color: @navigation-tab-active-bg-color;
7344
+ &.igz-icon-checkbox-checked {
7345
+ color: @master-checkbox-checked-color;
7390
7346
  }
7347
+ }
7391
7348
 
7392
- @media screen and (max-width: 940px) {
7393
- padding: 15px 12px 0;
7349
+ .checkboxes-list {
7350
+ list-style-type: none;
7351
+
7352
+ .multiple-checkboxes-option {
7353
+ color: @checkboxes-list-option-color;
7354
+ margin: 5px 0;
7394
7355
  }
7395
7356
  }
7396
7357
  }
@@ -7548,6 +7509,45 @@ yx-axis
7548
7509
  }
7549
7510
  }
7550
7511
 
7512
+ .igz-navigation-tabs {
7513
+ .navigation-tabs-color-set();
7514
+
7515
+ background-color: @navigation-tabs-bg-color;
7516
+ height: 56px;
7517
+ padding-top: 7px;
7518
+
7519
+ .navigation-tab {
7520
+ float: left;
7521
+ height: 32px;
7522
+ padding: 15px 24px 0;
7523
+ font-family: @font-family-sans-serif;
7524
+ color: @navigation-tab-color;
7525
+ font-size: 14px;
7526
+ text-align: center;
7527
+ cursor: pointer;
7528
+ border-bottom: @navigation-tab-border-bottom;
7529
+ box-sizing: content-box;
7530
+
7531
+ &.active, &.active:hover {
7532
+ background-color: @navigation-tab-active-hover-bg-color;
7533
+ color: @navigation-tab-active-hover-color;
7534
+ border-bottom: @navigation-tab-active-hover-border-bottom;
7535
+ }
7536
+
7537
+ &:hover {
7538
+ background-color: @navigation-tab-hover-bg-color;
7539
+ }
7540
+
7541
+ &.active {
7542
+ background-color: @navigation-tab-active-bg-color;
7543
+ }
7544
+
7545
+ @media screen and (max-width: 940px) {
7546
+ padding: 15px 12px 0;
7547
+ }
7548
+ }
7549
+ }
7550
+
7551
7551
  .igz-pagination {
7552
7552
  .pagination-color-set();
7553
7553
 
@@ -7689,13 +7689,233 @@ yx-axis
7689
7689
  color: @input-field-color;
7690
7690
  text-align: center;
7691
7691
 
7692
- &:hover {
7693
- border: @input-field-hover-border;
7692
+ &:hover {
7693
+ border: @input-field-hover-border;
7694
+ }
7695
+ }
7696
+ }
7697
+ }
7698
+ }
7699
+ .igz-slider-input-block {
7700
+ .igz-slider-input-block-color-set();
7701
+
7702
+ position: relative;
7703
+
7704
+ .igz-slider-input-title {
7705
+ float: left;
7706
+ display: table;
7707
+ min-height: 30px;
7708
+ line-height: 1;
7709
+ color: @slider-input-title-color;
7710
+ font-size: 14px;
7711
+ font-weight: 400;
7712
+ text-align: left;
7713
+ cursor: default;
7714
+
7715
+ .igz-slider-input-title-text {
7716
+ display: table-cell;
7717
+ vertical-align: middle;
7718
+ }
7719
+ }
7720
+
7721
+ // Custom styles for third-party library slider
7722
+ .igz-slider-input-rz-slider {
7723
+ float: left;
7724
+ min-height: 16px;
7725
+ line-height: 16px;
7726
+
7727
+ .rzslider {
7728
+ margin: 0;
7729
+ height: 8px;
7730
+
7731
+ .rz-bar-wrapper {
7732
+ height: auto;
7733
+ margin: 0;
7734
+ padding: 0;
7735
+
7736
+ .rz-bar {
7737
+ background-color: @rz-bar-bg-color;
7738
+ height: 3px;
7739
+ }
7740
+ }
7741
+
7742
+ .rz-bubble {
7743
+ display: none;
7744
+ }
7745
+
7746
+ .rz-pointer {
7747
+ height: 14px;
7748
+ width: 14px;
7749
+ top: -6px;
7750
+ box-shadow: @rz-pointer-box-shadow;
7751
+ outline: 0;
7752
+
7753
+ &:after {
7754
+ display: none;
7755
+ }
7756
+ }
7757
+
7758
+ &:not([disabled]) {
7759
+ .rz-bar.rz-selection {
7760
+ background-color: @rz-selection-bg-color;
7761
+ }
7762
+
7763
+ .rz-pointer {
7764
+ background-color: @rz-pointer-bg-color;
7765
+ }
7766
+ }
7767
+ }
7768
+ }
7769
+
7770
+ // Current value
7771
+ .igz-slider-input-current-value {
7772
+ float: left;
7773
+ min-height: 30px;
7774
+ line-height: 30px;
7775
+
7776
+ &.with-measure-units {
7777
+ width: 18%;
7778
+ padding-right: 0;
7779
+
7780
+ .igz-slider-input-current-value-text {
7781
+ margin-right: 4px;
7782
+ }
7783
+ }
7784
+
7785
+ &.with-value-unit {
7786
+ padding-right: 21px;
7787
+ }
7788
+
7789
+ .igz-slider-input-current-value-text {
7790
+ color: @slider-input-current-value-text-color;
7791
+ font-size: 13px;
7792
+ font-weight: 400;
7793
+ background-color: @slider-input-current-value-text-bg-color;
7794
+ text-align: right;
7795
+ }
7796
+ }
7797
+
7798
+ .igz-slider-input-unit-label {
7799
+ position: absolute;
7800
+ right: 0;
7801
+ min-height: 30px;
7802
+ line-height: 30px;
7803
+ }
7804
+
7805
+ // Units dropdown
7806
+ .igz-slider-input-units-dropdown {
7807
+ float: left;
7808
+
7809
+ .default-dropdown {
7810
+ height: 30px;
7811
+
7812
+ .default-dropdown-field {
7813
+ border: none;
7814
+ background-color: @default-dropdown-field-bg-color;
7815
+
7816
+ .dropdown-selected-item {
7817
+ padding-left: 0;
7818
+ }
7819
+
7820
+ .dropdown-arrow {
7821
+ margin-right: 0;
7822
+ }
7823
+ }
7824
+ }
7825
+ }
7826
+ }
7827
+
7828
+ .igz-size {
7829
+ .size-color-set();
7830
+
7831
+ align-items: center;
7832
+ display: flex;
7833
+ justify-content: space-between;
7834
+ min-height: 40px;
7835
+
7836
+ &:after {
7837
+ content: ' ';
7838
+ display: inline-block;
7839
+ vertical-align: middle;
7840
+ }
7841
+
7842
+ .size-value {
7843
+ line-height: 1;
7844
+ flex: 0 0 100px;
7845
+ min-width: 100px;
7846
+
7847
+ > span {
7848
+ line-height: 25px;
7849
+ }
7850
+
7851
+ &.short {
7852
+ flex: 0 0 75px;
7853
+ min-width: 75px;
7854
+ }
7855
+
7856
+ &.shorten {
7857
+ flex: 0 0 60px;
7858
+ min-width: 60px;
7859
+ }
7860
+
7861
+ &.shortest {
7862
+ flex: 0 0 40px;
7863
+ min-width: 40px;
7864
+ }
7865
+ }
7866
+
7867
+ .size-reserved {
7868
+ color: @size-reserved-color;
7869
+ font-size: 12px;
7870
+
7871
+ .icon-font-arrow-right:before {
7872
+ color: @size-reserved-arrow-right-before-color;
7873
+ font-size: 10px;
7874
+ padding: 0 4px 0 4px;
7875
+ }
7876
+
7877
+ .icon-font-infinity:before {
7878
+ color: @size-reserved-infinity-before-color;
7879
+ font-size: 10px;
7880
+ }
7881
+ }
7882
+
7883
+ .size-chart {
7884
+ flex: 1 1 auto;
7885
+ min-width: 0;
7886
+
7887
+ div.highcharts-tooltip {
7888
+ position: fixed !important;
7889
+
7890
+ .igz-tooltip-wrapper {
7891
+ color: @size-chart-tooltip-wrapper-color;
7892
+
7893
+ &.used-capacity-tooltip-wrapper {
7894
+ .igz-row {
7895
+ .tooltip-label,
7896
+ .tooltip-value {
7897
+ text-overflow: unset;
7898
+ }
7899
+ }
7900
+ }
7901
+
7902
+ .tooltip-header {
7903
+ padding-bottom: 6px;
7904
+ margin-bottom: 5px;
7905
+ line-height: 1.1;
7906
+ text-align: center;
7694
7907
  }
7695
7908
  }
7696
7909
  }
7697
7910
  }
7911
+
7912
+ .igz-highcharts-wrapper {
7913
+ height: 40px;
7914
+ position: relative;
7915
+ width: 100%;
7916
+ }
7698
7917
  }
7918
+
7699
7919
  .search-input {
7700
7920
  .search-input-color-set();
7701
7921
 
@@ -7866,243 +8086,23 @@ yx-axis
7866
8086
  border: @create-item-btn-hover-border;
7867
8087
  }
7868
8088
 
7869
- &:focus {
7870
- outline: none;
7871
- }
7872
-
7873
- &:active {
7874
- background-color: @create-item-btn-active-bg-color;
7875
- box-shadow: @create-item-btn-active-box-shadow;
7876
- border: none;
7877
- }
7878
-
7879
- .igz-icon-add {
7880
- font-size: 10px;
7881
- line-height: 15px;
7882
- padding-right: 8px;
7883
- }
7884
- }
7885
- }
7886
- .igz-size {
7887
- .size-color-set();
7888
-
7889
- align-items: center;
7890
- display: flex;
7891
- justify-content: space-between;
7892
- min-height: 40px;
7893
-
7894
- &:after {
7895
- content: ' ';
7896
- display: inline-block;
7897
- vertical-align: middle;
7898
- }
7899
-
7900
- .size-value {
7901
- line-height: 1;
7902
- flex: 0 0 100px;
7903
- min-width: 100px;
7904
-
7905
- > span {
7906
- line-height: 25px;
7907
- }
7908
-
7909
- &.short {
7910
- flex: 0 0 75px;
7911
- min-width: 75px;
7912
- }
7913
-
7914
- &.shorten {
7915
- flex: 0 0 60px;
7916
- min-width: 60px;
7917
- }
7918
-
7919
- &.shortest {
7920
- flex: 0 0 40px;
7921
- min-width: 40px;
7922
- }
7923
- }
7924
-
7925
- .size-reserved {
7926
- color: @size-reserved-color;
7927
- font-size: 12px;
7928
-
7929
- .icon-font-arrow-right:before {
7930
- color: @size-reserved-arrow-right-before-color;
7931
- font-size: 10px;
7932
- padding: 0 4px 0 4px;
7933
- }
7934
-
7935
- .icon-font-infinity:before {
7936
- color: @size-reserved-infinity-before-color;
7937
- font-size: 10px;
7938
- }
7939
- }
7940
-
7941
- .size-chart {
7942
- flex: 1 1 auto;
7943
- min-width: 0;
7944
-
7945
- div.highcharts-tooltip {
7946
- position: fixed !important;
7947
-
7948
- .igz-tooltip-wrapper {
7949
- color: @size-chart-tooltip-wrapper-color;
7950
-
7951
- &.used-capacity-tooltip-wrapper {
7952
- .igz-row {
7953
- .tooltip-label,
7954
- .tooltip-value {
7955
- text-overflow: unset;
7956
- }
7957
- }
7958
- }
7959
-
7960
- .tooltip-header {
7961
- padding-bottom: 6px;
7962
- margin-bottom: 5px;
7963
- line-height: 1.1;
7964
- text-align: center;
7965
- }
7966
- }
7967
- }
7968
- }
7969
-
7970
- .igz-highcharts-wrapper {
7971
- height: 40px;
7972
- position: relative;
7973
- width: 100%;
7974
- }
7975
- }
7976
-
7977
- .igz-slider-input-block {
7978
- .igz-slider-input-block-color-set();
7979
-
7980
- position: relative;
7981
-
7982
- .igz-slider-input-title {
7983
- float: left;
7984
- display: table;
7985
- min-height: 30px;
7986
- line-height: 1;
7987
- color: @slider-input-title-color;
7988
- font-size: 14px;
7989
- font-weight: 400;
7990
- text-align: left;
7991
- cursor: default;
7992
-
7993
- .igz-slider-input-title-text {
7994
- display: table-cell;
7995
- vertical-align: middle;
7996
- }
7997
- }
7998
-
7999
- // Custom styles for third-party library slider
8000
- .igz-slider-input-rz-slider {
8001
- float: left;
8002
- min-height: 16px;
8003
- line-height: 16px;
8004
-
8005
- .rzslider {
8006
- margin: 0;
8007
- height: 8px;
8008
-
8009
- .rz-bar-wrapper {
8010
- height: auto;
8011
- margin: 0;
8012
- padding: 0;
8013
-
8014
- .rz-bar {
8015
- background-color: @rz-bar-bg-color;
8016
- height: 3px;
8017
- }
8018
- }
8019
-
8020
- .rz-bubble {
8021
- display: none;
8022
- }
8023
-
8024
- .rz-pointer {
8025
- height: 14px;
8026
- width: 14px;
8027
- top: -6px;
8028
- box-shadow: @rz-pointer-box-shadow;
8029
- outline: 0;
8030
-
8031
- &:after {
8032
- display: none;
8033
- }
8034
- }
8035
-
8036
- &:not([disabled]) {
8037
- .rz-bar.rz-selection {
8038
- background-color: @rz-selection-bg-color;
8039
- }
8040
-
8041
- .rz-pointer {
8042
- background-color: @rz-pointer-bg-color;
8043
- }
8044
- }
8045
- }
8046
- }
8047
-
8048
- // Current value
8049
- .igz-slider-input-current-value {
8050
- float: left;
8051
- min-height: 30px;
8052
- line-height: 30px;
8053
-
8054
- &.with-measure-units {
8055
- width: 18%;
8056
- padding-right: 0;
8057
-
8058
- .igz-slider-input-current-value-text {
8059
- margin-right: 4px;
8060
- }
8061
- }
8062
-
8063
- &.with-value-unit {
8064
- padding-right: 21px;
8065
- }
8066
-
8067
- .igz-slider-input-current-value-text {
8068
- color: @slider-input-current-value-text-color;
8069
- font-size: 13px;
8070
- font-weight: 400;
8071
- background-color: @slider-input-current-value-text-bg-color;
8072
- text-align: right;
8073
- }
8074
- }
8075
-
8076
- .igz-slider-input-unit-label {
8077
- position: absolute;
8078
- right: 0;
8079
- min-height: 30px;
8080
- line-height: 30px;
8081
- }
8082
-
8083
- // Units dropdown
8084
- .igz-slider-input-units-dropdown {
8085
- float: left;
8086
-
8087
- .default-dropdown {
8088
- height: 30px;
8089
-
8090
- .default-dropdown-field {
8091
- border: none;
8092
- background-color: @default-dropdown-field-bg-color;
8089
+ &:focus {
8090
+ outline: none;
8091
+ }
8093
8092
 
8094
- .dropdown-selected-item {
8095
- padding-left: 0;
8096
- }
8093
+ &:active {
8094
+ background-color: @create-item-btn-active-bg-color;
8095
+ box-shadow: @create-item-btn-active-box-shadow;
8096
+ border: none;
8097
+ }
8097
8098
 
8098
- .dropdown-arrow {
8099
- margin-right: 0;
8100
- }
8101
- }
8099
+ .igz-icon-add {
8100
+ font-size: 10px;
8101
+ line-height: 15px;
8102
+ padding-right: 8px;
8102
8103
  }
8103
8104
  }
8104
8105
  }
8105
-
8106
8106
  .splash-screen {
8107
8107
  .splash-screen-color-set();
8108
8108
 
@@ -9816,128 +9816,6 @@ body {
9816
9816
  }
9817
9817
  }
9818
9818
 
9819
- .igz-info-page-content-wrapper {
9820
- .info-page-content-color-set();
9821
-
9822
- position: absolute;
9823
- top: 56px;
9824
- right: 0;
9825
- bottom: 0;
9826
- left: 0;
9827
- padding-top: 0;
9828
- transition: @igz-basic-transition;
9829
- background-color: @page-content-bg-color;
9830
-
9831
- &.upper-pane-opened {
9832
- top: 216px;
9833
- }
9834
-
9835
- &.filters-opened {
9836
- right: 377px;
9837
- }
9838
-
9839
- &.info-pane-opened {
9840
- right: 379px;
9841
- }
9842
-
9843
- .igz-info-page-content {
9844
- min-width: 946px;
9845
- max-width: 100%;
9846
- padding: 40px 25px;
9847
- }
9848
- }
9849
-
9850
- igz-info-page-actions-bar {
9851
- .igz-info-page-actions-bar .actions-content-block {
9852
- margin-left: 14px;
9853
- }
9854
- }
9855
-
9856
- igz-info-page-content {
9857
- .info-page-content-color-set();
9858
-
9859
- .container-data-access-policy-table, .data-lifecycle-table {
9860
- &.common-table {
9861
- .common-table-header {
9862
- position: relative;
9863
- height: 49px;
9864
- line-height: 48px;
9865
-
9866
- .common-table-cell {
9867
- margin-top: -1px;
9868
- height: 49px;
9869
-
9870
- &.selected {
9871
- background-color: @common-table-cell-selected-bg-color;
9872
- border: @common-table-cell-selected-border;
9873
- }
9874
-
9875
- &:last-child {
9876
- margin-right: 0;
9877
- }
9878
-
9879
- &.actions-menu {
9880
- width: 0;
9881
- }
9882
-
9883
- &.check-all-rows {
9884
- padding-left: 30px;
9885
-
9886
- .action-checkbox-all {
9887
- padding-top: 2px;
9888
- }
9889
- }
9890
- }
9891
-
9892
- .common-table-cells-container {
9893
- margin-right: 45px;
9894
-
9895
- .common-table-cell {
9896
- height: 49px;
9897
- padding: 0 15px;
9898
- border-right: @common-table-cell-border-right;
9899
-
9900
- &:first-child {
9901
- padding-left: 7px;
9902
- }
9903
- }
9904
- }
9905
- }
9906
-
9907
- .common-table-body {
9908
- margin-top: 7px;
9909
-
9910
- .common-table-cell {
9911
- &.actions-menu {
9912
- width: 45px;
9913
- }
9914
- }
9915
- }
9916
-
9917
- .data-access-policy-layers, .data-lifecycle-layers {
9918
- &:last-child {
9919
- margin-bottom: 20px;
9920
- }
9921
- }
9922
- }
9923
-
9924
- .sortable-empty {
9925
- background-color: @sortable-empty-bg-color;
9926
- color: @sortable-empty-color;
9927
- font-size: 14px;
9928
- font-weight: 400;
9929
- font-family: 'Open Sans', sans-serif;
9930
- border-bottom: @sortable-empty-border;
9931
- border-left: @sortable-empty-border;
9932
- border-right: @sortable-empty-border;
9933
- padding-left: 70px;
9934
- height: 40px;
9935
- line-height: 38px;
9936
- }
9937
- }
9938
- }
9939
-
9940
-
9941
9819
  .info-page-filters-bookmark {
9942
9820
  .info-page-filters-color-set();
9943
9821
 
@@ -10278,172 +10156,154 @@ igz-info-page-content {
10278
10156
  }
10279
10157
  }
10280
10158
 
10281
- ncl-breadcrumbs {
10282
- .main-header-title {
10283
- &:not(.disable-behavior) {
10284
- &:hover .main-header-title-text {
10285
- color: @dark-sky-blue;
10286
- }
10287
- }
10159
+ .igz-info-page-content-wrapper {
10160
+ .info-page-content-color-set();
10288
10161
 
10289
- &.disable-behavior {
10290
- color: @dusk-three;
10291
- }
10162
+ position: absolute;
10163
+ top: 56px;
10164
+ right: 0;
10165
+ bottom: 0;
10166
+ left: 0;
10167
+ padding-top: 0;
10168
+ transition: @igz-basic-transition;
10169
+ background-color: @page-content-bg-color;
10170
+
10171
+ &.upper-pane-opened {
10172
+ top: 216px;
10292
10173
  }
10293
10174
 
10294
- .igz-icon-right {
10295
- font-size: 11px;
10296
- font-weight: 100;
10297
- margin: 0 14px;
10175
+ &.filters-opened {
10176
+ right: 377px;
10298
10177
  }
10299
10178
 
10300
- .ncl-header-subtitle {
10301
- color: @greyish-purple;
10179
+ &.info-pane-opened {
10180
+ right: 379px;
10302
10181
  }
10303
10182
 
10304
- .ncl-bold-subtitle {
10305
- color: @dusk-three;
10306
- font-weight: bold;
10183
+ .igz-info-page-content {
10184
+ min-width: 946px;
10185
+ max-width: 100%;
10186
+ padding: 40px 25px;
10307
10187
  }
10308
10188
  }
10309
10189
 
10310
- .ncl-breadcrumbs-dropdown {
10311
- display: inline-grid;
10312
-
10313
- .breadcrumb-toggle {
10314
- cursor: pointer;
10315
- font-weight: bold;
10316
-
10317
- .igz-icon-right {
10318
- display: block;
10319
- margin: 1.5px 0 0 7px;
10320
- }
10321
-
10322
- .breadcrumb-arrow {
10323
- display: inline-block;
10324
- width: 24px;
10325
- height: 24px;
10326
- margin: 0 8px;
10327
- border-radius: 50%;
10328
- background-color: transparent;
10329
-
10330
- &:hover {
10331
- background-color: @pale-grey;
10332
- transition: transform .2s linear;
10333
- }
10334
- }
10335
-
10336
- .ncl-dropdown-expanded {
10337
- background-color: @pale-grey;
10338
- transform: rotate(90deg);
10339
-
10340
- .igz-icon-right {
10341
- color: @dusk-three;
10342
- }
10343
- }
10190
+ igz-info-page-actions-bar {
10191
+ .igz-info-page-actions-bar .actions-content-block {
10192
+ margin-left: 14px;
10344
10193
  }
10194
+ }
10345
10195
 
10346
- .dropdown-menu {
10347
- margin: 0;
10348
- border: none;
10349
- min-width: inherit;
10350
- padding: 5px 0 8px;
10351
- width: 230px;
10352
- box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
10353
-
10354
- .search-input {
10355
- text-align: center;
10356
- margin-top: 3px;
10357
-
10358
- .igz-icon-search {
10359
- .greyishPurple(0.34);
10360
- font-size: 18px;
10361
- color: @color;
10362
- position: absolute;
10363
- top: 6px;
10364
- left: 16px;
10365
- }
10196
+ igz-info-page-content {
10197
+ .info-page-content-color-set();
10366
10198
 
10367
- input {
10368
- width: 210px;
10369
- height: 32px;
10370
- border: solid 1px @pale-grey;
10371
- outline: none;
10372
- padding-left: 29px;
10373
- color: @dusk-three;
10374
- font-size: 13px;
10199
+ .container-data-access-policy-table, .data-lifecycle-table {
10200
+ &.common-table {
10201
+ .common-table-header {
10202
+ position: relative;
10203
+ height: 49px;
10204
+ line-height: 48px;
10375
10205
 
10376
- &::-webkit-input-placeholder {
10377
- color: @pale-grey;
10378
- }
10206
+ .common-table-cell {
10207
+ margin-top: -1px;
10208
+ height: 49px;
10379
10209
 
10380
- &::-moz-placeholder {
10381
- color: @pale-grey;
10382
- }
10210
+ &.selected {
10211
+ background-color: @common-table-cell-selected-bg-color;
10212
+ border: @common-table-cell-selected-border;
10213
+ }
10383
10214
 
10384
- &:focus, &:active {
10385
- outline: none;
10386
- border: solid 1px @dark-sky-blue;
10215
+ &:last-child {
10216
+ margin-right: 0;
10217
+ }
10387
10218
 
10388
- + .igz-icon-search {
10389
- color: @greyish-purple;
10219
+ &.actions-menu {
10220
+ width: 0;
10390
10221
  }
10391
10222
 
10392
- &::-webkit-input-placeholder {
10393
- color: transparent;
10223
+ &.check-all-rows {
10224
+ padding-left: 30px;
10225
+
10226
+ .action-checkbox-all {
10227
+ padding-top: 2px;
10228
+ }
10394
10229
  }
10230
+ }
10395
10231
 
10396
- &::-moz-placeholder {
10397
- color: transparent;
10232
+ .common-table-cells-container {
10233
+ margin-right: 45px;
10234
+
10235
+ .common-table-cell {
10236
+ height: 49px;
10237
+ padding: 0 15px;
10238
+ border-right: @common-table-cell-border-right;
10239
+
10240
+ &:first-child {
10241
+ padding-left: 7px;
10242
+ }
10398
10243
  }
10399
10244
  }
10400
10245
  }
10401
- }
10402
- }
10403
-
10404
- .dropdown-list {
10405
- font-size: 13px;
10406
- font-weight: 500;
10407
- text-align: left;
10408
- max-height: 375px;
10409
- list-style: none;
10410
- padding: 8px 0 0;
10411
- margin: 0;
10412
- border-radius: 2px;
10413
- background-color: @white;
10414
10246
 
10415
- li {
10416
- height: 32px;
10417
- line-height: 32px;
10418
- width: 239px;
10247
+ .common-table-body {
10248
+ margin-top: 7px;
10419
10249
 
10420
- .item-name {
10421
- display: inline-block;
10422
- width: 170px;
10423
- overflow: hidden;
10424
- white-space: nowrap;
10425
- text-overflow: ellipsis;
10426
- margin-left: 16px;
10427
- color: @dusk-three;
10428
- vertical-align:top;
10429
- text-decoration: none;
10430
- height: 32px;
10250
+ .common-table-cell {
10251
+ &.actions-menu {
10252
+ width: 45px;
10253
+ }
10254
+ }
10431
10255
  }
10432
10256
 
10433
- .igz-icon-tick {
10434
- display: inline-block;
10435
- font-size: 16px;
10436
- width: 41px;
10437
- height: 32px;
10438
- padding: 0 19px 0 12px;
10439
- vertical-align: top;
10257
+ .data-access-policy-layers, .data-lifecycle-layers {
10258
+ &:last-child {
10259
+ margin-bottom: 20px;
10260
+ }
10440
10261
  }
10262
+ }
10441
10263
 
10442
- &:hover {
10443
- height: 32px;
10444
- background-color: @pale-grey-two;
10264
+ .sortable-empty {
10265
+ background-color: @sortable-empty-bg-color;
10266
+ color: @sortable-empty-color;
10267
+ font-size: 14px;
10268
+ font-weight: 400;
10269
+ font-family: 'Open Sans', sans-serif;
10270
+ border-bottom: @sortable-empty-border;
10271
+ border-left: @sortable-empty-border;
10272
+ border-right: @sortable-empty-border;
10273
+ padding-left: 70px;
10274
+ height: 40px;
10275
+ line-height: 38px;
10276
+ }
10277
+ }
10278
+ }
10279
+
10280
+
10281
+ ncl-breadcrumbs {
10282
+ .main-header-title {
10283
+ &:not(.disable-behavior) {
10284
+ &:hover .main-header-title-text {
10285
+ color: @dark-sky-blue;
10445
10286
  }
10446
10287
  }
10288
+
10289
+ &.disable-behavior {
10290
+ color: @dusk-three;
10291
+ }
10292
+ }
10293
+
10294
+ .igz-icon-right {
10295
+ font-size: 11px;
10296
+ font-weight: 100;
10297
+ margin: 0 14px;
10298
+ }
10299
+
10300
+ .ncl-header-subtitle {
10301
+ color: @greyish-purple;
10302
+ }
10303
+
10304
+ .ncl-bold-subtitle {
10305
+ color: @dusk-three;
10306
+ font-weight: bold;
10447
10307
  }
10448
10308
  }
10449
10309
 
@@ -10519,52 +10379,192 @@ ncl-breadcrumbs {
10519
10379
  }
10520
10380
  }
10521
10381
 
10522
- .item-class {
10523
- width: 168px;
10524
- padding-left: 16px;
10525
- }
10382
+ .item-class {
10383
+ width: 168px;
10384
+ padding-left: 16px;
10385
+ }
10386
+
10387
+ .field-label {
10388
+ text-transform: capitalize;
10389
+ }
10390
+ }
10391
+
10392
+ .item-info-row {
10393
+ line-height: 30px;
10394
+ }
10395
+
10396
+ .expanded-item-info-block {
10397
+ width: 100%;
10398
+ height: 100%;
10399
+ top: 0;
10400
+ padding: 10px 0;
10401
+ }
10402
+
10403
+ .collapsed-item-info-block {
10404
+ padding-left: 16px;
10405
+ white-space: nowrap;
10406
+ width: 100%;
10407
+ overflow: hidden;
10408
+ text-overflow: ellipsis;
10409
+ }
10410
+
10411
+ .actions-menu {
10412
+ visibility: hidden;
10413
+ align-items: flex-start;
10414
+ line-height: 51px;
10415
+ }
10416
+
10417
+ .single-action {
10418
+ visibility: hidden;
10419
+ align-items: flex-start;
10420
+ flex: none;
10421
+ padding-right: 4px;
10422
+
10423
+ .igz-action-panel {
10424
+ transition: unset;
10425
+
10426
+ .igz-action-item {
10427
+ margin: 4px 0 0 0;
10428
+ }
10429
+ }
10430
+ }
10431
+ }
10432
+
10433
+ .ncl-breadcrumbs-dropdown {
10434
+ display: inline-grid;
10435
+
10436
+ .breadcrumb-toggle {
10437
+ cursor: pointer;
10438
+ font-weight: bold;
10439
+
10440
+ .igz-icon-right {
10441
+ display: block;
10442
+ margin: 1.5px 0 0 7px;
10443
+ }
10444
+
10445
+ .breadcrumb-arrow {
10446
+ display: inline-block;
10447
+ width: 24px;
10448
+ height: 24px;
10449
+ margin: 0 8px;
10450
+ border-radius: 50%;
10451
+ background-color: transparent;
10452
+
10453
+ &:hover {
10454
+ background-color: @pale-grey;
10455
+ transition: transform .2s linear;
10456
+ }
10457
+ }
10458
+
10459
+ .ncl-dropdown-expanded {
10460
+ background-color: @pale-grey;
10461
+ transform: rotate(90deg);
10462
+
10463
+ .igz-icon-right {
10464
+ color: @dusk-three;
10465
+ }
10466
+ }
10467
+ }
10468
+
10469
+ .dropdown-menu {
10470
+ margin: 0;
10471
+ border: none;
10472
+ min-width: inherit;
10473
+ padding: 5px 0 8px;
10474
+ width: 230px;
10475
+ box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
10476
+
10477
+ .search-input {
10478
+ text-align: center;
10479
+ margin-top: 3px;
10480
+
10481
+ .igz-icon-search {
10482
+ .greyishPurple(0.34);
10483
+ font-size: 18px;
10484
+ color: @color;
10485
+ position: absolute;
10486
+ top: 6px;
10487
+ left: 16px;
10488
+ }
10489
+
10490
+ input {
10491
+ width: 210px;
10492
+ height: 32px;
10493
+ border: solid 1px @pale-grey;
10494
+ outline: none;
10495
+ padding-left: 29px;
10496
+ color: @dusk-three;
10497
+ font-size: 13px;
10498
+
10499
+ &::-webkit-input-placeholder {
10500
+ color: @pale-grey;
10501
+ }
10502
+
10503
+ &::-moz-placeholder {
10504
+ color: @pale-grey;
10505
+ }
10526
10506
 
10527
- .field-label {
10528
- text-transform: capitalize;
10529
- }
10530
- }
10507
+ &:focus, &:active {
10508
+ outline: none;
10509
+ border: solid 1px @dark-sky-blue;
10531
10510
 
10532
- .item-info-row {
10533
- line-height: 30px;
10534
- }
10511
+ + .igz-icon-search {
10512
+ color: @greyish-purple;
10513
+ }
10535
10514
 
10536
- .expanded-item-info-block {
10537
- width: 100%;
10538
- height: 100%;
10539
- top: 0;
10540
- padding: 10px 0;
10541
- }
10515
+ &::-webkit-input-placeholder {
10516
+ color: transparent;
10517
+ }
10542
10518
 
10543
- .collapsed-item-info-block {
10544
- padding-left: 16px;
10545
- white-space: nowrap;
10546
- width: 100%;
10547
- overflow: hidden;
10548
- text-overflow: ellipsis;
10519
+ &::-moz-placeholder {
10520
+ color: transparent;
10521
+ }
10522
+ }
10523
+ }
10524
+ }
10549
10525
  }
10550
10526
 
10551
- .actions-menu {
10552
- visibility: hidden;
10553
- align-items: flex-start;
10554
- line-height: 51px;
10555
- }
10527
+ .dropdown-list {
10528
+ font-size: 13px;
10529
+ font-weight: 500;
10530
+ text-align: left;
10531
+ max-height: 375px;
10532
+ list-style: none;
10533
+ padding: 8px 0 0;
10534
+ margin: 0;
10535
+ border-radius: 2px;
10536
+ background-color: @white;
10556
10537
 
10557
- .single-action {
10558
- visibility: hidden;
10559
- align-items: flex-start;
10560
- flex: none;
10561
- padding-right: 4px;
10538
+ li {
10539
+ height: 32px;
10540
+ line-height: 32px;
10541
+ width: 239px;
10562
10542
 
10563
- .igz-action-panel {
10564
- transition: unset;
10543
+ .item-name {
10544
+ display: inline-block;
10545
+ width: 170px;
10546
+ overflow: hidden;
10547
+ white-space: nowrap;
10548
+ text-overflow: ellipsis;
10549
+ margin-left: 16px;
10550
+ color: @dusk-three;
10551
+ vertical-align:top;
10552
+ text-decoration: none;
10553
+ height: 32px;
10554
+ }
10565
10555
 
10566
- .igz-action-item {
10567
- margin: 4px 0 0 0;
10556
+ .igz-icon-tick {
10557
+ display: inline-block;
10558
+ font-size: 16px;
10559
+ width: 41px;
10560
+ height: 32px;
10561
+ padding: 0 19px 0 12px;
10562
+ vertical-align: top;
10563
+ }
10564
+
10565
+ &:hover {
10566
+ height: 32px;
10567
+ background-color: @pale-grey-two;
10568
10568
  }
10569
10569
  }
10570
10570
  }
@@ -11420,91 +11420,6 @@ ncl-navigation-tabs {
11420
11420
  }
11421
11421
  }
11422
11422
 
11423
- .function-event-wrapper {
11424
- width: 600px;
11425
- margin-bottom: -23px;
11426
-
11427
- .header {
11428
- display: flex;
11429
- justify-content: space-between;
11430
- border-bottom: 1px solid @pale-grey;
11431
-
11432
- .title {
11433
- font-size: 18px;
11434
- }
11435
- }
11436
-
11437
- .content {
11438
- border-bottom: 1px solid @pale-grey;
11439
- padding: 16px 0 16px 16px;
11440
-
11441
- .event-form {
11442
- width: 88%;
11443
-
11444
- .field-wrapper {
11445
- display: flex;
11446
- align-items: center;
11447
- margin: 15px 0 0 0;
11448
-
11449
- .field-label {
11450
- font-size: 16px;
11451
- margin-right: 10px;
11452
- width: 195px;
11453
- }
11454
-
11455
- .field-content {
11456
- width: 100%;
11457
-
11458
- .ncl-monaco {
11459
- height: 200px;
11460
- }
11461
-
11462
- .event-body {
11463
- font-size: 13px;
11464
- outline: none;
11465
- border: 1px solid @pale-grey;
11466
- resize: none;
11467
- width: 100%;
11468
- height: 100px;
11469
- padding: 5px 5px 5px 16px;
11470
- }
11471
- }
11472
- }
11473
- }
11474
-
11475
- .event-error {
11476
- display: flex;
11477
- font-size: 13px;
11478
- align-items: center;
11479
- justify-content: center;
11480
- color: @darkish-pink;
11481
- }
11482
- }
11483
-
11484
- .bottom-bar {
11485
- height: 64px;
11486
- display: flex;
11487
- align-items: center;
11488
- justify-content: flex-end;
11489
-
11490
- .igz-button-primary {
11491
- &.disabled {
11492
- color: rgba(71, 64, 86, 0.24);
11493
- border-radius: 2px;
11494
- border: solid 1px #f3f3f6;
11495
- background-color: #f3f3f6;
11496
- cursor: default;
11497
- display: inline-block;
11498
-
11499
- &:hover {
11500
- box-shadow: none;
11501
- border: none;
11502
- }
11503
- }
11504
- }
11505
- }
11506
- }
11507
-
11508
11423
  .ncl-version-configuration {
11509
11424
  > .igz-scrollable-container {
11510
11425
  padding: 24px 25px 22px 41px;
@@ -11727,52 +11642,137 @@ ncl-navigation-tabs {
11727
11642
  margin: 21px 0 0 0;
11728
11643
  padding: 0;
11729
11644
 
11730
- i {
11731
- display: inline-block;
11732
- font-size: 16px;
11733
- margin-left: 20px;
11734
- vertical-align: middle;
11735
- }
11645
+ i {
11646
+ display: inline-block;
11647
+ font-size: 16px;
11648
+ margin-left: 20px;
11649
+ vertical-align: middle;
11650
+ }
11651
+
11652
+ span {
11653
+ margin-left: 4px;
11654
+ letter-spacing: 1px;
11655
+ vertical-align: middle;
11656
+ }
11657
+ }
11658
+ }
11659
+
11660
+ .code-entry-url-col {
11661
+ width: 100%;
11662
+ margin-right: 160px;
11663
+ }
11664
+ }
11665
+ }
11666
+ }
11667
+ }
11668
+ }
11669
+ }
11670
+
11671
+ @media screen and (min-height: 850px) {
11672
+ .ncl-edit-version-code {
11673
+ .code-edit-section {
11674
+ height: 500px;
11675
+ }
11676
+ }
11677
+ }
11678
+
11679
+ @media screen and (min-height: 900px) {
11680
+ .ncl-edit-version-code {
11681
+ .code-edit-section {
11682
+ height: 600px;
11683
+ }
11684
+ }
11685
+ }
11686
+
11687
+ @media screen and (min-height: 1300px) {
11688
+ .ncl-edit-version-code {
11689
+ .code-edit-section {
11690
+ height: 900px;
11691
+ }
11692
+ }
11693
+ }
11694
+
11695
+ .function-event-wrapper {
11696
+ width: 600px;
11697
+ margin-bottom: -23px;
11698
+
11699
+ .header {
11700
+ display: flex;
11701
+ justify-content: space-between;
11702
+ border-bottom: 1px solid @pale-grey;
11703
+
11704
+ .title {
11705
+ font-size: 18px;
11706
+ }
11707
+ }
11708
+
11709
+ .content {
11710
+ border-bottom: 1px solid @pale-grey;
11711
+ padding: 16px 0 16px 16px;
11712
+
11713
+ .event-form {
11714
+ width: 88%;
11715
+
11716
+ .field-wrapper {
11717
+ display: flex;
11718
+ align-items: center;
11719
+ margin: 15px 0 0 0;
11720
+
11721
+ .field-label {
11722
+ font-size: 16px;
11723
+ margin-right: 10px;
11724
+ width: 195px;
11725
+ }
11726
+
11727
+ .field-content {
11728
+ width: 100%;
11736
11729
 
11737
- span {
11738
- margin-left: 4px;
11739
- letter-spacing: 1px;
11740
- vertical-align: middle;
11741
- }
11742
- }
11743
- }
11730
+ .ncl-monaco {
11731
+ height: 200px;
11732
+ }
11744
11733
 
11745
- .code-entry-url-col {
11746
- width: 100%;
11747
- margin-right: 160px;
11748
- }
11734
+ .event-body {
11735
+ font-size: 13px;
11736
+ outline: none;
11737
+ border: 1px solid @pale-grey;
11738
+ resize: none;
11739
+ width: 100%;
11740
+ height: 100px;
11741
+ padding: 5px 5px 5px 16px;
11749
11742
  }
11750
11743
  }
11751
11744
  }
11752
11745
  }
11753
- }
11754
- }
11755
11746
 
11756
- @media screen and (min-height: 850px) {
11757
- .ncl-edit-version-code {
11758
- .code-edit-section {
11759
- height: 500px;
11747
+ .event-error {
11748
+ display: flex;
11749
+ font-size: 13px;
11750
+ align-items: center;
11751
+ justify-content: center;
11752
+ color: @darkish-pink;
11760
11753
  }
11761
11754
  }
11762
- }
11763
11755
 
11764
- @media screen and (min-height: 900px) {
11765
- .ncl-edit-version-code {
11766
- .code-edit-section {
11767
- height: 600px;
11768
- }
11769
- }
11770
- }
11756
+ .bottom-bar {
11757
+ height: 64px;
11758
+ display: flex;
11759
+ align-items: center;
11760
+ justify-content: flex-end;
11771
11761
 
11772
- @media screen and (min-height: 1300px) {
11773
- .ncl-edit-version-code {
11774
- .code-edit-section {
11775
- height: 900px;
11762
+ .igz-button-primary {
11763
+ &.disabled {
11764
+ color: rgba(71, 64, 86, 0.24);
11765
+ border-radius: 2px;
11766
+ border: solid 1px #f3f3f6;
11767
+ background-color: #f3f3f6;
11768
+ cursor: default;
11769
+ display: inline-block;
11770
+
11771
+ &:hover {
11772
+ box-shadow: none;
11773
+ border: none;
11774
+ }
11775
+ }
11776
11776
  }
11777
11777
  }
11778
11778
  }
@@ -11893,6 +11893,59 @@ ncl-navigation-tabs {
11893
11893
  }
11894
11894
  }
11895
11895
 
11896
+ .ncl-version-trigger {
11897
+ padding: 11px 24px;
11898
+
11899
+ .common-table-header {
11900
+ border: none;
11901
+ padding-left: 24px;
11902
+
11903
+ .common-table-cell {
11904
+ font-size: 14px;
11905
+ font-weight: bold;
11906
+ letter-spacing: normal;
11907
+ color: @dusk-three;
11908
+ height: 46px;
11909
+ }
11910
+ }
11911
+
11912
+ .common-table-body {
11913
+ .common-table-row {
11914
+ &:not(.read-only):hover {
11915
+ .common-table-cells-container {
11916
+ background-color: @white;
11917
+ }
11918
+
11919
+ .actions-menu {
11920
+ background-color: @white;
11921
+ }
11922
+ }
11923
+ }
11924
+ }
11925
+
11926
+ .http-trigger-checkbox {
11927
+ display: flex;
11928
+ }
11929
+
11930
+ .item-row .item-name, .item-row .item-class, .item-row .item-info {
11931
+ padding-left: 0;
11932
+ }
11933
+
11934
+ .title-field-row .name-field, .item-row .item-name, .header-name {
11935
+ margin-right: 16px;
11936
+ width: 15%;
11937
+ }
11938
+
11939
+ .title-field-row .class-field, .item-row .item-class, .header-class {
11940
+ margin-right: 16px;
11941
+ width: 10%;
11942
+ }
11943
+
11944
+ .title-field-row .class-field {
11945
+ width: auto;
11946
+ }
11947
+ }
11948
+
11896
11949
  .ncl-version-monitoring {
11897
11950
  > .igz-scrollable-container {
11898
11951
  padding: 24px 25px 22px 41px;
@@ -12026,59 +12079,6 @@ ncl-navigation-tabs {
12026
12079
  }
12027
12080
  }
12028
12081
 
12029
- .ncl-version-trigger {
12030
- padding: 11px 24px;
12031
-
12032
- .common-table-header {
12033
- border: none;
12034
- padding-left: 24px;
12035
-
12036
- .common-table-cell {
12037
- font-size: 14px;
12038
- font-weight: bold;
12039
- letter-spacing: normal;
12040
- color: @dusk-three;
12041
- height: 46px;
12042
- }
12043
- }
12044
-
12045
- .common-table-body {
12046
- .common-table-row {
12047
- &:not(.read-only):hover {
12048
- .common-table-cells-container {
12049
- background-color: @white;
12050
- }
12051
-
12052
- .actions-menu {
12053
- background-color: @white;
12054
- }
12055
- }
12056
- }
12057
- }
12058
-
12059
- .http-trigger-checkbox {
12060
- display: flex;
12061
- }
12062
-
12063
- .item-row .item-name, .item-row .item-class, .item-row .item-info {
12064
- padding-left: 0;
12065
- }
12066
-
12067
- .title-field-row .name-field, .item-row .item-name, .header-name {
12068
- margin-right: 16px;
12069
- width: 15%;
12070
- }
12071
-
12072
- .title-field-row .class-field, .item-row .item-class, .header-class {
12073
- margin-right: 16px;
12074
- width: 10%;
12075
- }
12076
-
12077
- .title-field-row .class-field {
12078
- width: auto;
12079
- }
12080
- }
12081
-
12082
12082
  .ncl-text-size-dropdown {
12083
12083
  display: flex;
12084
12084
  justify-content: flex-end;
@@ -13222,42 +13222,6 @@ ncl-navigation-tabs {
13222
13222
  }
13223
13223
  }
13224
13224
 
13225
- .function-from-template-dialog-wrapper {
13226
- .title {
13227
- font-size: 20px;
13228
- font-weight: 500;
13229
- text-align: left;
13230
- color: @dusk-three;
13231
- }
13232
-
13233
- .main-content {
13234
- width: 500px;
13235
- max-height: 500px;
13236
-
13237
- form {
13238
- margin: 0 20px 0 0;
13239
-
13240
- .field-label {
13241
- font-size: 14px;
13242
- text-align: left;
13243
- color: @dusk-three;
13244
- }
13245
-
13246
- .validating-input-field {
13247
- .input-field {
13248
- padding: 0 10px 0 17px;
13249
- }
13250
-
13251
- .input-placeholder {
13252
- left: 18px;
13253
- font-style: italic;
13254
- font-size: 14px;
13255
- }
13256
- }
13257
- }
13258
- }
13259
- }
13260
-
13261
13225
  @desktop: 1350px;
13262
13226
  @desktop-low: 1202px;
13263
13227
  @desktop-middle: 1550px;
@@ -13354,6 +13318,42 @@ ncl-navigation-tabs {
13354
13318
  }
13355
13319
  }
13356
13320
 
13321
+ .function-from-template-dialog-wrapper {
13322
+ .title {
13323
+ font-size: 20px;
13324
+ font-weight: 500;
13325
+ text-align: left;
13326
+ color: @dusk-three;
13327
+ }
13328
+
13329
+ .main-content {
13330
+ width: 500px;
13331
+ max-height: 500px;
13332
+
13333
+ form {
13334
+ margin: 0 20px 0 0;
13335
+
13336
+ .field-label {
13337
+ font-size: 14px;
13338
+ text-align: left;
13339
+ color: @dusk-three;
13340
+ }
13341
+
13342
+ .validating-input-field {
13343
+ .input-field {
13344
+ padding: 0 10px 0 17px;
13345
+ }
13346
+
13347
+ .input-placeholder {
13348
+ left: 18px;
13349
+ font-style: italic;
13350
+ font-size: 14px;
13351
+ }
13352
+ }
13353
+ }
13354
+ }
13355
+ }
13356
+
13357
13357
  .ncl-version-configuration-build {
13358
13358
  &.disabled {
13359
13359
  opacity: .5;