iguazio.dashboard-controls 1.0.7 → 1.0.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,27 +3666,149 @@ ncl-functions {
|
|
|
3666
3666
|
}
|
|
3667
3667
|
}
|
|
3668
3668
|
|
|
3669
|
-
|
|
3670
|
-
|
|
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
|
+
}
|
|
3671
3681
|
|
|
3672
|
-
|
|
3673
|
-
|
|
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
|
+
}
|
|
3674
3689
|
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
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;
|
|
3680
3698
|
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3699
|
+
background-color: #ffffff;
|
|
3700
|
+
right: auto;
|
|
3701
|
+
position: absolute;
|
|
3702
|
+
z-index: 1;
|
|
3703
|
+
}
|
|
3684
3704
|
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
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
|
+
}
|
|
3689
3805
|
}
|
|
3806
|
+
|
|
3807
|
+
/* Make sure hidden elements are in fact not rendered. */
|
|
3808
|
+
.ui-layout-hidden {
|
|
3809
|
+
display: none;
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3690
3812
|
/*
|
|
3691
3813
|
== malihu jquery custom scrollbar plugin ==
|
|
3692
3814
|
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
|
|
@@ -5409,324 +5531,44 @@ yx-axis
|
|
|
5409
5531
|
|
|
5410
5532
|
/* ---------------------------------------- */
|
|
5411
5533
|
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
*************************************/
|
|
5415
|
-
.stretch {
|
|
5416
|
-
position: absolute;
|
|
5417
|
-
top: 0;
|
|
5418
|
-
left: 0;
|
|
5419
|
-
right: 0;
|
|
5420
|
-
bottom: 0;
|
|
5421
|
-
/* Can be changed by hand ;)*/
|
|
5422
|
-
overflow: auto;
|
|
5423
|
-
}
|
|
5534
|
+
.action-checkbox {
|
|
5535
|
+
.action-checkbox-color-set();
|
|
5424
5536
|
|
|
5425
|
-
|
|
5426
|
-
|
|
5427
|
-
-moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5428
|
-
-ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5429
|
-
-o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5430
|
-
transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5431
|
-
}
|
|
5537
|
+
line-height: 16px;
|
|
5538
|
+
text-align: center;
|
|
5432
5539
|
|
|
5433
|
-
.
|
|
5434
|
-
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
|
|
5439
|
-
-webkit-justify-content: center;
|
|
5440
|
-
justify-content: center;
|
|
5540
|
+
.check-item {
|
|
5541
|
+
font-size: 16px;
|
|
5542
|
+
cursor: pointer;
|
|
5543
|
+
line-height: 1;
|
|
5544
|
+
vertical-align: middle;
|
|
5441
5545
|
|
|
5442
|
-
|
|
5443
|
-
|
|
5444
|
-
|
|
5445
|
-
z-index: 1;
|
|
5446
|
-
}
|
|
5546
|
+
&.igz-icon-checkbox-unchecked {
|
|
5547
|
+
color: @icon-checkbox-unchecked;
|
|
5548
|
+
}
|
|
5447
5549
|
|
|
5448
|
-
|
|
5449
|
-
|
|
5450
|
-
|
|
5451
|
-
|
|
5452
|
-
text-align: center;
|
|
5453
|
-
justify-content: center;
|
|
5454
|
-
align-items: center;
|
|
5455
|
-
background: linear-gradient(to bottom, #fff 0%, #eee 100%);
|
|
5456
|
-
overflow-y: hidden;
|
|
5550
|
+
&.igz-icon-checkbox-checked {
|
|
5551
|
+
color: @icon-checkbox-checked;
|
|
5552
|
+
}
|
|
5553
|
+
}
|
|
5457
5554
|
}
|
|
5555
|
+
.action-checkbox-all {
|
|
5556
|
+
.action-checkbox-all-color-set();
|
|
5458
5557
|
|
|
5459
|
-
|
|
5460
|
-
width: 8px;
|
|
5461
|
-
height: 100%;
|
|
5462
|
-
cursor: col-resize;
|
|
5463
|
-
-webkit-flex-direction: column;
|
|
5464
|
-
flex-direction: column;
|
|
5465
|
-
background: linear-gradient(to right, #fff 0%, #eee 100%);
|
|
5466
|
-
overflow-x: hidden;
|
|
5467
|
-
}
|
|
5558
|
+
text-align: center;
|
|
5468
5559
|
|
|
5469
|
-
.
|
|
5470
|
-
|
|
5471
|
-
|
|
5472
|
-
|
|
5473
|
-
|
|
5474
|
-
|
|
5475
|
-
}
|
|
5560
|
+
.check-item {
|
|
5561
|
+
cursor: pointer;
|
|
5562
|
+
color: @check-item-color;
|
|
5563
|
+
font-size: 16px;
|
|
5564
|
+
line-height: 1;
|
|
5565
|
+
vertical-align: middle;
|
|
5476
5566
|
|
|
5477
|
-
|
|
5478
|
-
|
|
5567
|
+
&.igz-icon-checkbox-checked {
|
|
5568
|
+
color: @check-item-icon-checkbox-checked-color;
|
|
5569
|
+
}
|
|
5570
|
+
}
|
|
5479
5571
|
}
|
|
5480
|
-
|
|
5481
|
-
.ui-layout-row > .ui-splitbar > a:nth-child(2) {
|
|
5482
|
-
margin-left: 0.35rem;
|
|
5483
|
-
}
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
/**
|
|
5487
|
-
* Icons
|
|
5488
|
-
**/
|
|
5489
|
-
|
|
5490
|
-
.ui-splitbar-icon {
|
|
5491
|
-
width: 0;
|
|
5492
|
-
height: 0;
|
|
5493
|
-
display: inline-block;
|
|
5494
|
-
}
|
|
5495
|
-
|
|
5496
|
-
.ui-splitbar-icon-up {
|
|
5497
|
-
border-left: 0.45em solid transparent;
|
|
5498
|
-
border-right: 0.45em solid transparent;
|
|
5499
|
-
border-bottom: 0.45em solid;
|
|
5500
|
-
}
|
|
5501
|
-
|
|
5502
|
-
.ui-splitbar-icon-down {
|
|
5503
|
-
border-left: 0.45em solid transparent;
|
|
5504
|
-
border-right: 0.45em solid transparent;
|
|
5505
|
-
border-top: 0.45em solid;
|
|
5506
|
-
margin-right: 0.45em;
|
|
5507
|
-
}
|
|
5508
|
-
|
|
5509
|
-
.ui-splitbar-icon-right {
|
|
5510
|
-
border-top: 0.45em solid transparent;
|
|
5511
|
-
border-bottom: 0.45em solid transparent;
|
|
5512
|
-
border-left: 0.45em solid;
|
|
5513
|
-
|
|
5514
|
-
}
|
|
5515
|
-
|
|
5516
|
-
.ui-splitbar-icon-left {
|
|
5517
|
-
border-top: 0.45em solid transparent;
|
|
5518
|
-
border-bottom: 0.45em solid transparent;
|
|
5519
|
-
border-right: 0.45em solid;
|
|
5520
|
-
margin-top: 0.45em;
|
|
5521
|
-
}
|
|
5522
|
-
|
|
5523
|
-
/* Allow disabling of icons */
|
|
5524
|
-
.no-toggle .ui-splitbar-icon {
|
|
5525
|
-
display: none;
|
|
5526
|
-
}
|
|
5527
|
-
|
|
5528
|
-
@media only screen and (max-device-width: 480px) {
|
|
5529
|
-
.no-mobile-toggle .ui-splitbar-icon {
|
|
5530
|
-
display: none;
|
|
5531
|
-
}
|
|
5532
|
-
}
|
|
5533
|
-
|
|
5534
|
-
@media print {
|
|
5535
|
-
.ui-splitbar {
|
|
5536
|
-
display: none;
|
|
5537
|
-
}
|
|
5538
|
-
|
|
5539
|
-
.stretch {
|
|
5540
|
-
position: relative;
|
|
5541
|
-
}
|
|
5542
|
-
|
|
5543
|
-
/* The last item can take up any amount of space. */
|
|
5544
|
-
.stretch.ui-layout-container:last-child {
|
|
5545
|
-
position: static;
|
|
5546
|
-
overflow: visible;
|
|
5547
|
-
}
|
|
5548
|
-
}
|
|
5549
|
-
|
|
5550
|
-
/* Make sure hidden elements are in fact not rendered. */
|
|
5551
|
-
.ui-layout-hidden {
|
|
5552
|
-
display: none;
|
|
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
5572
|
.igz-action-panel {
|
|
5731
5573
|
.action-panel-color-set();
|
|
5732
5574
|
.action-icon-color-set();
|
|
@@ -5900,40 +5742,198 @@ yx-axis
|
|
|
5900
5742
|
&:hover {
|
|
5901
5743
|
background-color: @dropdown-menu-li-hover-bg-color;
|
|
5902
5744
|
|
|
5903
|
-
.action-icon {
|
|
5904
|
-
color: @action-icon-hover-color;
|
|
5905
|
-
}
|
|
5906
|
-
}
|
|
5745
|
+
.action-icon {
|
|
5746
|
+
color: @action-icon-hover-color;
|
|
5747
|
+
}
|
|
5748
|
+
}
|
|
5749
|
+
|
|
5750
|
+
.action-label {
|
|
5751
|
+
display: inline-block;
|
|
5752
|
+
white-space: nowrap;
|
|
5753
|
+
vertical-align: top;
|
|
5754
|
+
margin-right: 17px;
|
|
5755
|
+
}
|
|
5756
|
+
|
|
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
|
+
}
|
|
5767
|
+
}
|
|
5768
|
+
}
|
|
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
|
+
}
|
|
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
|
+
}
|
|
5907
5918
|
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
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
|
+
}
|
|
5914
5929
|
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
font-size: 17px;
|
|
5918
|
-
display: inline-block;
|
|
5919
|
-
margin: 0 13px 0 21px;
|
|
5920
|
-
vertical-align: middle;
|
|
5921
|
-
}
|
|
5922
|
-
}
|
|
5923
|
-
}
|
|
5924
|
-
}
|
|
5930
|
+
.menu-dropdown {
|
|
5931
|
+
margin: 0;
|
|
5925
5932
|
}
|
|
5926
5933
|
}
|
|
5927
5934
|
|
|
5928
|
-
.
|
|
5929
|
-
|
|
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;
|
|
5935
|
+
.upward-menu {
|
|
5936
|
+
transform: translate(-100%, -100%);
|
|
5937
5937
|
}
|
|
5938
5938
|
}
|
|
5939
5939
|
|
|
@@ -6711,6 +6711,45 @@ yx-axis
|
|
|
6711
6711
|
}
|
|
6712
6712
|
}
|
|
6713
6713
|
|
|
6714
|
+
.igz-navigation-tabs {
|
|
6715
|
+
.navigation-tabs-color-set();
|
|
6716
|
+
|
|
6717
|
+
background-color: @navigation-tabs-bg-color;
|
|
6718
|
+
height: 56px;
|
|
6719
|
+
padding-top: 7px;
|
|
6720
|
+
|
|
6721
|
+
.navigation-tab {
|
|
6722
|
+
float: left;
|
|
6723
|
+
height: 32px;
|
|
6724
|
+
padding: 15px 24px 0;
|
|
6725
|
+
font-family: @font-family-sans-serif;
|
|
6726
|
+
color: @navigation-tab-color;
|
|
6727
|
+
font-size: 14px;
|
|
6728
|
+
text-align: center;
|
|
6729
|
+
cursor: pointer;
|
|
6730
|
+
border-bottom: @navigation-tab-border-bottom;
|
|
6731
|
+
box-sizing: content-box;
|
|
6732
|
+
|
|
6733
|
+
&.active, &.active:hover {
|
|
6734
|
+
background-color: @navigation-tab-active-hover-bg-color;
|
|
6735
|
+
color: @navigation-tab-active-hover-color;
|
|
6736
|
+
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
6737
|
+
}
|
|
6738
|
+
|
|
6739
|
+
&:hover {
|
|
6740
|
+
background-color: @navigation-tab-hover-bg-color;
|
|
6741
|
+
}
|
|
6742
|
+
|
|
6743
|
+
&.active {
|
|
6744
|
+
background-color: @navigation-tab-active-bg-color;
|
|
6745
|
+
}
|
|
6746
|
+
|
|
6747
|
+
@media screen and (max-width: 940px) {
|
|
6748
|
+
padding: 15px 12px 0;
|
|
6749
|
+
}
|
|
6750
|
+
}
|
|
6751
|
+
}
|
|
6752
|
+
|
|
6714
6753
|
.igz-multiple-checkboxes {
|
|
6715
6754
|
.multiple-checkboxes-color-set();
|
|
6716
6755
|
|
|
@@ -6885,211 +6924,24 @@ yx-axis
|
|
|
6885
6924
|
cursor: pointer;
|
|
6886
6925
|
color: @master-checkbox-color;
|
|
6887
6926
|
font-size: 16px;
|
|
6888
|
-
line-height: 1;
|
|
6889
|
-
vertical-align: middle;
|
|
6890
|
-
|
|
6891
|
-
&.igz-icon-checkbox-checked {
|
|
6892
|
-
color: @master-checkbox-checked-color;
|
|
6893
|
-
}
|
|
6894
|
-
}
|
|
6895
|
-
|
|
6896
|
-
.checkboxes-list {
|
|
6897
|
-
list-style-type: none;
|
|
6898
|
-
|
|
6899
|
-
.multiple-checkboxes-option {
|
|
6900
|
-
color: @checkboxes-list-option-color;
|
|
6901
|
-
margin: 5px 0;
|
|
6902
|
-
}
|
|
6903
|
-
}
|
|
6904
|
-
}
|
|
6905
|
-
|
|
6906
|
-
.igz-navigation-tabs {
|
|
6907
|
-
.navigation-tabs-color-set();
|
|
6908
|
-
|
|
6909
|
-
background-color: @navigation-tabs-bg-color;
|
|
6910
|
-
height: 56px;
|
|
6911
|
-
padding-top: 7px;
|
|
6912
|
-
|
|
6913
|
-
.navigation-tab {
|
|
6914
|
-
float: left;
|
|
6915
|
-
height: 32px;
|
|
6916
|
-
padding: 15px 24px 0;
|
|
6917
|
-
font-family: @font-family-sans-serif;
|
|
6918
|
-
color: @navigation-tab-color;
|
|
6919
|
-
font-size: 14px;
|
|
6920
|
-
text-align: center;
|
|
6921
|
-
cursor: pointer;
|
|
6922
|
-
border-bottom: @navigation-tab-border-bottom;
|
|
6923
|
-
box-sizing: content-box;
|
|
6924
|
-
|
|
6925
|
-
&.active, &.active:hover {
|
|
6926
|
-
background-color: @navigation-tab-active-hover-bg-color;
|
|
6927
|
-
color: @navigation-tab-active-hover-color;
|
|
6928
|
-
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
6929
|
-
}
|
|
6930
|
-
|
|
6931
|
-
&:hover {
|
|
6932
|
-
background-color: @navigation-tab-hover-bg-color;
|
|
6933
|
-
}
|
|
6934
|
-
|
|
6935
|
-
&.active {
|
|
6936
|
-
background-color: @navigation-tab-active-bg-color;
|
|
6937
|
-
}
|
|
6938
|
-
|
|
6939
|
-
@media screen and (max-width: 940px) {
|
|
6940
|
-
padding: 15px 12px 0;
|
|
6941
|
-
}
|
|
6942
|
-
}
|
|
6943
|
-
}
|
|
6944
|
-
|
|
6945
|
-
.igz-pagination {
|
|
6946
|
-
.pagination-color-set();
|
|
6947
|
-
|
|
6948
|
-
float: right;
|
|
6949
|
-
padding: 24px 36px 5px 30px;
|
|
6950
|
-
|
|
6951
|
-
> div {
|
|
6952
|
-
vertical-align: top;
|
|
6953
|
-
}
|
|
6954
|
-
|
|
6955
|
-
.rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
|
|
6956
|
-
display: inline-block;
|
|
6957
|
-
vertical-align: baseline;
|
|
6958
|
-
}
|
|
6959
|
-
|
|
6960
|
-
.rows-title {
|
|
6961
|
-
font-size: 13px;
|
|
6962
|
-
color: @rows-title-color;
|
|
6963
|
-
font-family: @font-family-sans-serif;
|
|
6964
|
-
}
|
|
6965
|
-
|
|
6966
|
-
.per-page {
|
|
6967
|
-
width: 66px;
|
|
6968
|
-
|
|
6969
|
-
.default-dropdown-field {
|
|
6970
|
-
background: none;
|
|
6971
|
-
border: none;
|
|
6972
|
-
box-shadow: none;
|
|
6973
|
-
font-size: 14px;
|
|
6974
|
-
height: 36px;
|
|
6975
|
-
|
|
6976
|
-
.dropdown-selected-item {
|
|
6977
|
-
font-size: 14px;
|
|
6978
|
-
}
|
|
6979
|
-
|
|
6980
|
-
.dropdown-arrow {
|
|
6981
|
-
margin-top: 5px;
|
|
6982
|
-
|
|
6983
|
-
span {
|
|
6984
|
-
font-size: 12px;
|
|
6985
|
-
}
|
|
6986
|
-
}
|
|
6987
|
-
|
|
6988
|
-
.dropdown-arrow {
|
|
6989
|
-
border: none;
|
|
6990
|
-
|
|
6991
|
-
&:hover, &:active {
|
|
6992
|
-
border: none;
|
|
6993
|
-
background: none;
|
|
6994
|
-
box-shadow: none;
|
|
6995
|
-
}
|
|
6996
|
-
}
|
|
6997
|
-
|
|
6998
|
-
&:focus {
|
|
6999
|
-
.dropdown-selected-item {
|
|
7000
|
-
border: none;
|
|
7001
|
-
}
|
|
7002
|
-
}
|
|
7003
|
-
}
|
|
7004
|
-
|
|
7005
|
-
.default-dropdown-container {
|
|
7006
|
-
width: 66px;
|
|
7007
|
-
|
|
7008
|
-
.list-item {
|
|
7009
|
-
padding-left: 15px;
|
|
7010
|
-
|
|
7011
|
-
.list-item-label {
|
|
7012
|
-
margin-right: 10px;
|
|
7013
|
-
}
|
|
7014
|
-
}
|
|
7015
|
-
}
|
|
7016
|
-
}
|
|
7017
|
-
|
|
7018
|
-
.jump-to-page {
|
|
7019
|
-
margin-left: 7px;
|
|
7020
|
-
|
|
7021
|
-
& > div, .jump-to-page-input {
|
|
7022
|
-
display: inline-block;
|
|
7023
|
-
vertical-align: baseline;
|
|
7024
|
-
}
|
|
7025
|
-
|
|
7026
|
-
.to-page-prev, .to-page-next {
|
|
7027
|
-
width: 41px;
|
|
7028
|
-
line-height: 34px;
|
|
7029
|
-
height: 36px;
|
|
7030
|
-
vertical-align: top;
|
|
7031
|
-
position: relative;
|
|
7032
|
-
|
|
7033
|
-
&:not(:active) {
|
|
7034
|
-
background-color: transparent;
|
|
7035
|
-
}
|
|
7036
|
-
|
|
7037
|
-
&:not(:hover):not(:active):not(:disabled):not(.disabled) {
|
|
7038
|
-
color: @page-prev-next-color;
|
|
7039
|
-
}
|
|
7040
|
-
|
|
7041
|
-
&:before {
|
|
7042
|
-
line-height: 34px;
|
|
7043
|
-
}
|
|
7044
|
-
}
|
|
7045
|
-
|
|
7046
|
-
.to-page-prev {
|
|
7047
|
-
border-radius: 2px 0 0 2px;
|
|
7048
|
-
|
|
7049
|
-
&::before {
|
|
7050
|
-
margin-left: -2px;
|
|
7051
|
-
}
|
|
7052
|
-
}
|
|
7053
|
-
|
|
7054
|
-
.to-page-next {
|
|
7055
|
-
border-radius: 0 2px 2px 0;
|
|
7056
|
-
}
|
|
7057
|
-
|
|
7058
|
-
.title {
|
|
7059
|
-
margin: 0 0 0 14px;
|
|
7060
|
-
}
|
|
6927
|
+
line-height: 1;
|
|
6928
|
+
vertical-align: middle;
|
|
7061
6929
|
|
|
7062
|
-
|
|
7063
|
-
|
|
7064
|
-
height: 36px;
|
|
7065
|
-
line-height: 36px;
|
|
7066
|
-
text-align: center;
|
|
6930
|
+
&.igz-icon-checkbox-checked {
|
|
6931
|
+
color: @master-checkbox-checked-color;
|
|
7067
6932
|
}
|
|
6933
|
+
}
|
|
7068
6934
|
|
|
7069
|
-
|
|
7070
|
-
|
|
7071
|
-
|
|
7072
|
-
.input-field {
|
|
7073
|
-
width: 43px;
|
|
7074
|
-
height: 36px;
|
|
7075
|
-
border-radius: 0;
|
|
7076
|
-
box-shadow: @input-field-box-shadow;
|
|
7077
|
-
border: 1px solid @input-field-border-color;
|
|
7078
|
-
border-left: 0 none transparent;
|
|
7079
|
-
border-right: 0 none transparent;
|
|
7080
|
-
font-family: @font-family-sans-serif;
|
|
7081
|
-
font-size: 14px;
|
|
7082
|
-
font-weight: 500;
|
|
7083
|
-
color: @input-field-color;
|
|
7084
|
-
text-align: center;
|
|
6935
|
+
.checkboxes-list {
|
|
6936
|
+
list-style-type: none;
|
|
7085
6937
|
|
|
7086
|
-
|
|
7087
|
-
|
|
7088
|
-
|
|
7089
|
-
}
|
|
6938
|
+
.multiple-checkboxes-option {
|
|
6939
|
+
color: @checkboxes-list-option-color;
|
|
6940
|
+
margin: 5px 0;
|
|
7090
6941
|
}
|
|
7091
6942
|
}
|
|
7092
6943
|
}
|
|
6944
|
+
|
|
7093
6945
|
.igz-number-input {
|
|
7094
6946
|
.number-input-color-set();
|
|
7095
6947
|
|
|
@@ -7243,6 +7095,154 @@ yx-axis
|
|
|
7243
7095
|
}
|
|
7244
7096
|
}
|
|
7245
7097
|
|
|
7098
|
+
.igz-pagination {
|
|
7099
|
+
.pagination-color-set();
|
|
7100
|
+
|
|
7101
|
+
float: right;
|
|
7102
|
+
padding: 24px 36px 5px 30px;
|
|
7103
|
+
|
|
7104
|
+
> div {
|
|
7105
|
+
vertical-align: top;
|
|
7106
|
+
}
|
|
7107
|
+
|
|
7108
|
+
.rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
|
|
7109
|
+
display: inline-block;
|
|
7110
|
+
vertical-align: baseline;
|
|
7111
|
+
}
|
|
7112
|
+
|
|
7113
|
+
.rows-title {
|
|
7114
|
+
font-size: 13px;
|
|
7115
|
+
color: @rows-title-color;
|
|
7116
|
+
font-family: @font-family-sans-serif;
|
|
7117
|
+
}
|
|
7118
|
+
|
|
7119
|
+
.per-page {
|
|
7120
|
+
width: 66px;
|
|
7121
|
+
|
|
7122
|
+
.default-dropdown-field {
|
|
7123
|
+
background: none;
|
|
7124
|
+
border: none;
|
|
7125
|
+
box-shadow: none;
|
|
7126
|
+
font-size: 14px;
|
|
7127
|
+
height: 36px;
|
|
7128
|
+
|
|
7129
|
+
.dropdown-selected-item {
|
|
7130
|
+
font-size: 14px;
|
|
7131
|
+
}
|
|
7132
|
+
|
|
7133
|
+
.dropdown-arrow {
|
|
7134
|
+
margin-top: 5px;
|
|
7135
|
+
|
|
7136
|
+
span {
|
|
7137
|
+
font-size: 12px;
|
|
7138
|
+
}
|
|
7139
|
+
}
|
|
7140
|
+
|
|
7141
|
+
.dropdown-arrow {
|
|
7142
|
+
border: none;
|
|
7143
|
+
|
|
7144
|
+
&:hover, &:active {
|
|
7145
|
+
border: none;
|
|
7146
|
+
background: none;
|
|
7147
|
+
box-shadow: none;
|
|
7148
|
+
}
|
|
7149
|
+
}
|
|
7150
|
+
|
|
7151
|
+
&:focus {
|
|
7152
|
+
.dropdown-selected-item {
|
|
7153
|
+
border: none;
|
|
7154
|
+
}
|
|
7155
|
+
}
|
|
7156
|
+
}
|
|
7157
|
+
|
|
7158
|
+
.default-dropdown-container {
|
|
7159
|
+
width: 66px;
|
|
7160
|
+
|
|
7161
|
+
.list-item {
|
|
7162
|
+
padding-left: 15px;
|
|
7163
|
+
|
|
7164
|
+
.list-item-label {
|
|
7165
|
+
margin-right: 10px;
|
|
7166
|
+
}
|
|
7167
|
+
}
|
|
7168
|
+
}
|
|
7169
|
+
}
|
|
7170
|
+
|
|
7171
|
+
.jump-to-page {
|
|
7172
|
+
margin-left: 7px;
|
|
7173
|
+
|
|
7174
|
+
& > div, .jump-to-page-input {
|
|
7175
|
+
display: inline-block;
|
|
7176
|
+
vertical-align: baseline;
|
|
7177
|
+
}
|
|
7178
|
+
|
|
7179
|
+
.to-page-prev, .to-page-next {
|
|
7180
|
+
width: 41px;
|
|
7181
|
+
line-height: 34px;
|
|
7182
|
+
height: 36px;
|
|
7183
|
+
vertical-align: top;
|
|
7184
|
+
position: relative;
|
|
7185
|
+
|
|
7186
|
+
&:not(:active) {
|
|
7187
|
+
background-color: transparent;
|
|
7188
|
+
}
|
|
7189
|
+
|
|
7190
|
+
&:not(:hover):not(:active):not(:disabled):not(.disabled) {
|
|
7191
|
+
color: @page-prev-next-color;
|
|
7192
|
+
}
|
|
7193
|
+
|
|
7194
|
+
&:before {
|
|
7195
|
+
line-height: 34px;
|
|
7196
|
+
}
|
|
7197
|
+
}
|
|
7198
|
+
|
|
7199
|
+
.to-page-prev {
|
|
7200
|
+
border-radius: 2px 0 0 2px;
|
|
7201
|
+
|
|
7202
|
+
&::before {
|
|
7203
|
+
margin-left: -2px;
|
|
7204
|
+
}
|
|
7205
|
+
}
|
|
7206
|
+
|
|
7207
|
+
.to-page-next {
|
|
7208
|
+
border-radius: 0 2px 2px 0;
|
|
7209
|
+
}
|
|
7210
|
+
|
|
7211
|
+
.title {
|
|
7212
|
+
margin: 0 0 0 14px;
|
|
7213
|
+
}
|
|
7214
|
+
|
|
7215
|
+
.page-number {
|
|
7216
|
+
min-width: 30px;
|
|
7217
|
+
height: 36px;
|
|
7218
|
+
line-height: 36px;
|
|
7219
|
+
text-align: center;
|
|
7220
|
+
}
|
|
7221
|
+
|
|
7222
|
+
.validating-input-field {
|
|
7223
|
+
background-color: @input-field-bg-color;
|
|
7224
|
+
|
|
7225
|
+
.input-field {
|
|
7226
|
+
width: 43px;
|
|
7227
|
+
height: 36px;
|
|
7228
|
+
border-radius: 0;
|
|
7229
|
+
box-shadow: @input-field-box-shadow;
|
|
7230
|
+
border: 1px solid @input-field-border-color;
|
|
7231
|
+
border-left: 0 none transparent;
|
|
7232
|
+
border-right: 0 none transparent;
|
|
7233
|
+
font-family: @font-family-sans-serif;
|
|
7234
|
+
font-size: 14px;
|
|
7235
|
+
font-weight: 500;
|
|
7236
|
+
color: @input-field-color;
|
|
7237
|
+
text-align: center;
|
|
7238
|
+
|
|
7239
|
+
&:hover {
|
|
7240
|
+
border: @input-field-hover-border;
|
|
7241
|
+
}
|
|
7242
|
+
}
|
|
7243
|
+
}
|
|
7244
|
+
}
|
|
7245
|
+
}
|
|
7246
7246
|
.search-input {
|
|
7247
7247
|
.search-input-color-set();
|
|
7248
7248
|
|
|
@@ -9018,6 +9018,21 @@ body {
|
|
|
9018
9018
|
}
|
|
9019
9019
|
}
|
|
9020
9020
|
|
|
9021
|
+
.override-function-dialog {
|
|
9022
|
+
.sub-title {
|
|
9023
|
+
font-size: 16px;
|
|
9024
|
+
color: @silver-chalice-two;
|
|
9025
|
+
}
|
|
9026
|
+
|
|
9027
|
+
.buttons {
|
|
9028
|
+
display: flex;
|
|
9029
|
+
|
|
9030
|
+
.function-redirect-button {
|
|
9031
|
+
margin-right: auto;
|
|
9032
|
+
}
|
|
9033
|
+
}
|
|
9034
|
+
}
|
|
9035
|
+
|
|
9021
9036
|
.ncl-edit-version {
|
|
9022
9037
|
background: #f2f2f6;
|
|
9023
9038
|
position: relative;
|
|
@@ -9276,21 +9291,6 @@ body {
|
|
|
9276
9291
|
}
|
|
9277
9292
|
}
|
|
9278
9293
|
|
|
9279
|
-
.override-function-dialog {
|
|
9280
|
-
.sub-title {
|
|
9281
|
-
font-size: 16px;
|
|
9282
|
-
color: @silver-chalice-two;
|
|
9283
|
-
}
|
|
9284
|
-
|
|
9285
|
-
.buttons {
|
|
9286
|
-
display: flex;
|
|
9287
|
-
|
|
9288
|
-
.function-redirect-button {
|
|
9289
|
-
margin-right: auto;
|
|
9290
|
-
}
|
|
9291
|
-
}
|
|
9292
|
-
}
|
|
9293
|
-
|
|
9294
9294
|
// Style rules for actions bar
|
|
9295
9295
|
.border-top > .igz-info-page-actions-bar {
|
|
9296
9296
|
.info-page-actions-bar-color-set();
|
|
@@ -10102,59 +10102,21 @@ ncl-breadcrumbs {
|
|
|
10102
10102
|
}
|
|
10103
10103
|
|
|
10104
10104
|
.single-action {
|
|
10105
|
-
visibility: hidden;
|
|
10106
|
-
align-items: flex-start;
|
|
10107
|
-
flex: none;
|
|
10108
|
-
padding-right: 4px;
|
|
10109
|
-
|
|
10110
|
-
.igz-action-panel {
|
|
10111
|
-
transition: unset;
|
|
10112
|
-
|
|
10113
|
-
.igz-action-item {
|
|
10114
|
-
margin: 4px 0 0 0;
|
|
10115
|
-
}
|
|
10116
|
-
}
|
|
10117
|
-
}
|
|
10118
|
-
}
|
|
10119
|
-
|
|
10120
|
-
.ncl-deploy-log-wrapper {
|
|
10121
|
-
.log-panel {
|
|
10122
|
-
.logs-common();
|
|
10123
|
-
background-color: @dark-grey;
|
|
10124
|
-
color: @light-grey-three;
|
|
10125
|
-
padding: 5px;
|
|
10126
|
-
margin: 21px 0 0 4px;
|
|
10127
|
-
min-height: 280px;
|
|
10128
|
-
max-height: 280px;
|
|
10129
|
-
height: 280px;
|
|
10130
|
-
|
|
10131
|
-
.log-entry {
|
|
10132
|
-
.log-entry-time {
|
|
10133
|
-
color: @solid-grey;
|
|
10134
|
-
}
|
|
10135
|
-
|
|
10136
|
-
.log-entry-level-debug{
|
|
10137
|
-
color: @dusty-blue;
|
|
10138
|
-
}
|
|
10139
|
-
|
|
10140
|
-
.log-entry-level-info {
|
|
10141
|
-
color: @cloudy-blue;
|
|
10142
|
-
}
|
|
10143
|
-
|
|
10144
|
-
.log-entry-level-warn{
|
|
10145
|
-
color: @sunflower-yellow;
|
|
10146
|
-
}
|
|
10105
|
+
visibility: hidden;
|
|
10106
|
+
align-items: flex-start;
|
|
10107
|
+
flex: none;
|
|
10108
|
+
padding-right: 4px;
|
|
10147
10109
|
|
|
10148
|
-
|
|
10149
|
-
|
|
10150
|
-
}
|
|
10110
|
+
.igz-action-panel {
|
|
10111
|
+
transition: unset;
|
|
10151
10112
|
|
|
10152
|
-
.
|
|
10153
|
-
|
|
10113
|
+
.igz-action-item {
|
|
10114
|
+
margin: 4px 0 0 0;
|
|
10154
10115
|
}
|
|
10155
10116
|
}
|
|
10156
10117
|
}
|
|
10157
10118
|
}
|
|
10119
|
+
|
|
10158
10120
|
.ncl-edit-item {
|
|
10159
10121
|
width: 100%;
|
|
10160
10122
|
padding: 6px 0;
|
|
@@ -10255,6 +10217,44 @@ ncl-breadcrumbs {
|
|
|
10255
10217
|
}
|
|
10256
10218
|
}
|
|
10257
10219
|
|
|
10220
|
+
.ncl-deploy-log-wrapper {
|
|
10221
|
+
.log-panel {
|
|
10222
|
+
.logs-common();
|
|
10223
|
+
background-color: @dark-grey;
|
|
10224
|
+
color: @light-grey-three;
|
|
10225
|
+
padding: 5px;
|
|
10226
|
+
margin: 21px 0 0 4px;
|
|
10227
|
+
min-height: 280px;
|
|
10228
|
+
max-height: 280px;
|
|
10229
|
+
height: 280px;
|
|
10230
|
+
|
|
10231
|
+
.log-entry {
|
|
10232
|
+
.log-entry-time {
|
|
10233
|
+
color: @solid-grey;
|
|
10234
|
+
}
|
|
10235
|
+
|
|
10236
|
+
.log-entry-level-debug{
|
|
10237
|
+
color: @dusty-blue;
|
|
10238
|
+
}
|
|
10239
|
+
|
|
10240
|
+
.log-entry-level-info {
|
|
10241
|
+
color: @cloudy-blue;
|
|
10242
|
+
}
|
|
10243
|
+
|
|
10244
|
+
.log-entry-level-warn{
|
|
10245
|
+
color: @sunflower-yellow;
|
|
10246
|
+
}
|
|
10247
|
+
|
|
10248
|
+
.log-entry-level-error {
|
|
10249
|
+
color: @darkish-pink;
|
|
10250
|
+
}
|
|
10251
|
+
|
|
10252
|
+
.log-entry-message {
|
|
10253
|
+
font-weight: 600;
|
|
10254
|
+
}
|
|
10255
|
+
}
|
|
10256
|
+
}
|
|
10257
|
+
}
|
|
10258
10258
|
.view-yaml-dialog-wrapper {
|
|
10259
10259
|
.ngdialog-content {
|
|
10260
10260
|
.view-yaml-dialog-header {
|
|
@@ -10674,76 +10674,6 @@ ncl-navigation-tabs {
|
|
|
10674
10674
|
}
|
|
10675
10675
|
}
|
|
10676
10676
|
|
|
10677
|
-
.ncl-search-input {
|
|
10678
|
-
position: relative;
|
|
10679
|
-
color: @silver;
|
|
10680
|
-
|
|
10681
|
-
.container-search-input {
|
|
10682
|
-
background-color: transparent;
|
|
10683
|
-
border-bottom: 1px solid @silver;
|
|
10684
|
-
font-size: 13px;
|
|
10685
|
-
font-weight: 400;
|
|
10686
|
-
height: 36px;
|
|
10687
|
-
line-height: 36px;
|
|
10688
|
-
margin: 0;
|
|
10689
|
-
outline: 0;
|
|
10690
|
-
padding: 0 0 3px 31px;
|
|
10691
|
-
width: 100%;
|
|
10692
|
-
|
|
10693
|
-
&::-webkit-input-placeholder {
|
|
10694
|
-
color: @silver;
|
|
10695
|
-
}
|
|
10696
|
-
|
|
10697
|
-
&:-moz-placeholder { /* Firefox 18- */
|
|
10698
|
-
color: @silver;
|
|
10699
|
-
}
|
|
10700
|
-
|
|
10701
|
-
&::-moz-placeholder { /* Firefox 19+ */
|
|
10702
|
-
color: @silver;
|
|
10703
|
-
}
|
|
10704
|
-
|
|
10705
|
-
&:-ms-input-placeholder {
|
|
10706
|
-
color: @silver;
|
|
10707
|
-
}
|
|
10708
|
-
|
|
10709
|
-
&:focus {
|
|
10710
|
-
border-bottom: 1px solid @light-blue;
|
|
10711
|
-
|
|
10712
|
-
&, & + .igz-icon-search:before {
|
|
10713
|
-
color: @dusk-three;
|
|
10714
|
-
}
|
|
10715
|
-
|
|
10716
|
-
&::-webkit-input-placeholder {
|
|
10717
|
-
color: transparent;
|
|
10718
|
-
}
|
|
10719
|
-
|
|
10720
|
-
&:-moz-placeholder { /* Firefox 18- */
|
|
10721
|
-
color: transparent;
|
|
10722
|
-
}
|
|
10723
|
-
|
|
10724
|
-
&::-moz-placeholder { /* Firefox 19+ */
|
|
10725
|
-
color: transparent;
|
|
10726
|
-
}
|
|
10727
|
-
|
|
10728
|
-
&:-ms-input-placeholder {
|
|
10729
|
-
color: transparent;
|
|
10730
|
-
}
|
|
10731
|
-
}
|
|
10732
|
-
}
|
|
10733
|
-
|
|
10734
|
-
.igz-icon-search {
|
|
10735
|
-
font-size: 18px;
|
|
10736
|
-
position: absolute;
|
|
10737
|
-
left: 8px;
|
|
10738
|
-
top: 5px;
|
|
10739
|
-
z-index: 1;
|
|
10740
|
-
color: @silver;
|
|
10741
|
-
}
|
|
10742
|
-
|
|
10743
|
-
input::-ms-clear {
|
|
10744
|
-
display: none;
|
|
10745
|
-
}
|
|
10746
|
-
}
|
|
10747
10677
|
.new-function-wrapper {
|
|
10748
10678
|
.ncl-new-function-color-set();
|
|
10749
10679
|
|
|
@@ -10901,6 +10831,76 @@ ncl-navigation-tabs {
|
|
|
10901
10831
|
}
|
|
10902
10832
|
}
|
|
10903
10833
|
|
|
10834
|
+
.ncl-search-input {
|
|
10835
|
+
position: relative;
|
|
10836
|
+
color: @silver;
|
|
10837
|
+
|
|
10838
|
+
.container-search-input {
|
|
10839
|
+
background-color: transparent;
|
|
10840
|
+
border-bottom: 1px solid @silver;
|
|
10841
|
+
font-size: 13px;
|
|
10842
|
+
font-weight: 400;
|
|
10843
|
+
height: 36px;
|
|
10844
|
+
line-height: 36px;
|
|
10845
|
+
margin: 0;
|
|
10846
|
+
outline: 0;
|
|
10847
|
+
padding: 0 0 3px 31px;
|
|
10848
|
+
width: 100%;
|
|
10849
|
+
|
|
10850
|
+
&::-webkit-input-placeholder {
|
|
10851
|
+
color: @silver;
|
|
10852
|
+
}
|
|
10853
|
+
|
|
10854
|
+
&:-moz-placeholder { /* Firefox 18- */
|
|
10855
|
+
color: @silver;
|
|
10856
|
+
}
|
|
10857
|
+
|
|
10858
|
+
&::-moz-placeholder { /* Firefox 19+ */
|
|
10859
|
+
color: @silver;
|
|
10860
|
+
}
|
|
10861
|
+
|
|
10862
|
+
&:-ms-input-placeholder {
|
|
10863
|
+
color: @silver;
|
|
10864
|
+
}
|
|
10865
|
+
|
|
10866
|
+
&:focus {
|
|
10867
|
+
border-bottom: 1px solid @light-blue;
|
|
10868
|
+
|
|
10869
|
+
&, & + .igz-icon-search:before {
|
|
10870
|
+
color: @dusk-three;
|
|
10871
|
+
}
|
|
10872
|
+
|
|
10873
|
+
&::-webkit-input-placeholder {
|
|
10874
|
+
color: transparent;
|
|
10875
|
+
}
|
|
10876
|
+
|
|
10877
|
+
&:-moz-placeholder { /* Firefox 18- */
|
|
10878
|
+
color: transparent;
|
|
10879
|
+
}
|
|
10880
|
+
|
|
10881
|
+
&::-moz-placeholder { /* Firefox 19+ */
|
|
10882
|
+
color: transparent;
|
|
10883
|
+
}
|
|
10884
|
+
|
|
10885
|
+
&:-ms-input-placeholder {
|
|
10886
|
+
color: transparent;
|
|
10887
|
+
}
|
|
10888
|
+
}
|
|
10889
|
+
}
|
|
10890
|
+
|
|
10891
|
+
.igz-icon-search {
|
|
10892
|
+
font-size: 18px;
|
|
10893
|
+
position: absolute;
|
|
10894
|
+
left: 8px;
|
|
10895
|
+
top: 5px;
|
|
10896
|
+
z-index: 1;
|
|
10897
|
+
color: @silver;
|
|
10898
|
+
}
|
|
10899
|
+
|
|
10900
|
+
input::-ms-clear {
|
|
10901
|
+
display: none;
|
|
10902
|
+
}
|
|
10903
|
+
}
|
|
10904
10904
|
.ncl-function-version-row {
|
|
10905
10905
|
.actions-menu {
|
|
10906
10906
|
visibility: hidden;
|
|
@@ -11585,39 +11585,109 @@ ncl-navigation-tabs {
|
|
|
11585
11585
|
}
|
|
11586
11586
|
}
|
|
11587
11587
|
|
|
11588
|
-
.function-runtime-wrapper {
|
|
11589
|
-
width: 50%;
|
|
11590
|
-
padding-left: 24px;
|
|
11591
|
-
padding-right: 10%;
|
|
11592
|
-
|
|
11593
|
-
.function-runtime {
|
|
11594
|
-
.input-label {
|
|
11595
|
-
font-size: 14px;
|
|
11596
|
-
font-weight: 600;
|
|
11597
|
-
color: @dusk-three;
|
|
11598
|
-
}
|
|
11588
|
+
.function-runtime-wrapper {
|
|
11589
|
+
width: 50%;
|
|
11590
|
+
padding-left: 24px;
|
|
11591
|
+
padding-right: 10%;
|
|
11592
|
+
|
|
11593
|
+
.function-runtime {
|
|
11594
|
+
.input-label {
|
|
11595
|
+
font-size: 14px;
|
|
11596
|
+
font-weight: 600;
|
|
11597
|
+
color: @dusk-three;
|
|
11598
|
+
}
|
|
11599
|
+
|
|
11600
|
+
igz-default-dropdown {
|
|
11601
|
+
.default-dropdown {
|
|
11602
|
+
background-color: @white;
|
|
11603
|
+
|
|
11604
|
+
.default-dropdown-field {
|
|
11605
|
+
&:focus {
|
|
11606
|
+
background-color: inherit;
|
|
11607
|
+
}
|
|
11608
|
+
}
|
|
11609
|
+
}
|
|
11610
|
+
}
|
|
11611
|
+
|
|
11612
|
+
.bottom-bar {
|
|
11613
|
+
display: flex;
|
|
11614
|
+
justify-content: flex-end;
|
|
11615
|
+
margin-top: 48px;
|
|
11616
|
+
}
|
|
11617
|
+
}
|
|
11618
|
+
}
|
|
11619
|
+
}
|
|
11620
|
+
}
|
|
11621
|
+
}
|
|
11622
|
+
|
|
11623
|
+
.function-import-wrapper-content {
|
|
11624
|
+
font-family: @font-family-sans-serif;
|
|
11625
|
+
padding-left: 3%;
|
|
11626
|
+
width: 96%;
|
|
11627
|
+
|
|
11628
|
+
.function-import-form {
|
|
11629
|
+
display: flex;
|
|
11630
|
+
align-items: flex-end;
|
|
11631
|
+
margin-bottom: 10px;
|
|
11632
|
+
|
|
11633
|
+
.projects-drop-down {
|
|
11634
|
+
margin-right: 48px;
|
|
11635
|
+
|
|
11636
|
+
.input-label {
|
|
11637
|
+
font-size: 14px;
|
|
11638
|
+
font-weight: 600;
|
|
11639
|
+
color: @dusk-three;
|
|
11640
|
+
}
|
|
11641
|
+
|
|
11642
|
+
igz-default-dropdown {
|
|
11643
|
+
.default-dropdown {
|
|
11644
|
+
background-color: @white;
|
|
11645
|
+
|
|
11646
|
+
.default-dropdown-field {
|
|
11647
|
+
&:focus {
|
|
11648
|
+
background-color: inherit;
|
|
11649
|
+
}
|
|
11650
|
+
}
|
|
11651
|
+
}
|
|
11652
|
+
}
|
|
11653
|
+
}
|
|
11654
|
+
|
|
11655
|
+
.function-import-actions-bar {
|
|
11656
|
+
display: flex;
|
|
11599
11657
|
|
|
11600
|
-
|
|
11601
|
-
|
|
11602
|
-
|
|
11658
|
+
.function-import-file-picker {
|
|
11659
|
+
.file-picker-wrapper {
|
|
11660
|
+
margin: 0;
|
|
11661
|
+
line-height: 34px;
|
|
11603
11662
|
|
|
11604
|
-
|
|
11605
|
-
|
|
11606
|
-
background-color: inherit;
|
|
11607
|
-
}
|
|
11608
|
-
}
|
|
11609
|
-
}
|
|
11663
|
+
.igz-icon-upload {
|
|
11664
|
+
margin-right: 10px;
|
|
11610
11665
|
}
|
|
11666
|
+
}
|
|
11611
11667
|
|
|
11612
|
-
|
|
11613
|
-
|
|
11614
|
-
|
|
11615
|
-
|
|
11616
|
-
}
|
|
11668
|
+
.function-import-input {
|
|
11669
|
+
opacity: 0;
|
|
11670
|
+
position: absolute;
|
|
11671
|
+
z-index: -1;
|
|
11617
11672
|
}
|
|
11618
11673
|
}
|
|
11619
11674
|
}
|
|
11620
11675
|
}
|
|
11676
|
+
|
|
11677
|
+
.splash-screen {
|
|
11678
|
+
top: 0;
|
|
11679
|
+
}
|
|
11680
|
+
|
|
11681
|
+
.function-import-monaco {
|
|
11682
|
+
.ncl-monaco {
|
|
11683
|
+
height: 370px;
|
|
11684
|
+
width: 100%;
|
|
11685
|
+
|
|
11686
|
+
.monaco-code-editor {
|
|
11687
|
+
height: 100%;
|
|
11688
|
+
}
|
|
11689
|
+
}
|
|
11690
|
+
}
|
|
11621
11691
|
}
|
|
11622
11692
|
|
|
11623
11693
|
.function-from-template-content {
|
|
@@ -11882,76 +11952,6 @@ ncl-navigation-tabs {
|
|
|
11882
11952
|
}
|
|
11883
11953
|
}
|
|
11884
11954
|
|
|
11885
|
-
.function-import-wrapper-content {
|
|
11886
|
-
font-family: @font-family-sans-serif;
|
|
11887
|
-
padding-left: 3%;
|
|
11888
|
-
width: 96%;
|
|
11889
|
-
|
|
11890
|
-
.function-import-form {
|
|
11891
|
-
display: flex;
|
|
11892
|
-
align-items: flex-end;
|
|
11893
|
-
margin-bottom: 10px;
|
|
11894
|
-
|
|
11895
|
-
.projects-drop-down {
|
|
11896
|
-
margin-right: 48px;
|
|
11897
|
-
|
|
11898
|
-
.input-label {
|
|
11899
|
-
font-size: 14px;
|
|
11900
|
-
font-weight: 600;
|
|
11901
|
-
color: @dusk-three;
|
|
11902
|
-
}
|
|
11903
|
-
|
|
11904
|
-
igz-default-dropdown {
|
|
11905
|
-
.default-dropdown {
|
|
11906
|
-
background-color: @white;
|
|
11907
|
-
|
|
11908
|
-
.default-dropdown-field {
|
|
11909
|
-
&:focus {
|
|
11910
|
-
background-color: inherit;
|
|
11911
|
-
}
|
|
11912
|
-
}
|
|
11913
|
-
}
|
|
11914
|
-
}
|
|
11915
|
-
}
|
|
11916
|
-
|
|
11917
|
-
.function-import-actions-bar {
|
|
11918
|
-
display: flex;
|
|
11919
|
-
|
|
11920
|
-
.function-import-file-picker {
|
|
11921
|
-
.file-picker-wrapper {
|
|
11922
|
-
margin: 0;
|
|
11923
|
-
line-height: 34px;
|
|
11924
|
-
|
|
11925
|
-
.igz-icon-upload {
|
|
11926
|
-
margin-right: 10px;
|
|
11927
|
-
}
|
|
11928
|
-
}
|
|
11929
|
-
|
|
11930
|
-
.function-import-input {
|
|
11931
|
-
opacity: 0;
|
|
11932
|
-
position: absolute;
|
|
11933
|
-
z-index: -1;
|
|
11934
|
-
}
|
|
11935
|
-
}
|
|
11936
|
-
}
|
|
11937
|
-
}
|
|
11938
|
-
|
|
11939
|
-
.splash-screen {
|
|
11940
|
-
top: 0;
|
|
11941
|
-
}
|
|
11942
|
-
|
|
11943
|
-
.function-import-monaco {
|
|
11944
|
-
.ncl-monaco {
|
|
11945
|
-
height: 370px;
|
|
11946
|
-
width: 100%;
|
|
11947
|
-
|
|
11948
|
-
.monaco-code-editor {
|
|
11949
|
-
height: 100%;
|
|
11950
|
-
}
|
|
11951
|
-
}
|
|
11952
|
-
}
|
|
11953
|
-
}
|
|
11954
|
-
|
|
11955
11955
|
.test-events-pane-wrapper {
|
|
11956
11956
|
position: absolute;
|
|
11957
11957
|
height: 100%;
|
|
@@ -12680,71 +12680,6 @@ ncl-navigation-tabs {
|
|
|
12680
12680
|
}
|
|
12681
12681
|
}
|
|
12682
12682
|
|
|
12683
|
-
.ncl-test-events-navigation-tabs {
|
|
12684
|
-
display: flex;
|
|
12685
|
-
background: #f8f8fb;
|
|
12686
|
-
height: 40px;
|
|
12687
|
-
border-top: 1px solid @pale-grey;
|
|
12688
|
-
border-bottom: 1px solid @pale-grey;
|
|
12689
|
-
|
|
12690
|
-
.test-events-navigation-tab {
|
|
12691
|
-
.duskThree(0.64);
|
|
12692
|
-
position: relative;
|
|
12693
|
-
float: left;
|
|
12694
|
-
height: 27px;
|
|
12695
|
-
padding: 10px 40px 0;
|
|
12696
|
-
font-family: @font-family-sans-serif;
|
|
12697
|
-
color: @color;
|
|
12698
|
-
font-size: 13px;
|
|
12699
|
-
text-align: center;
|
|
12700
|
-
cursor: pointer;
|
|
12701
|
-
border-bottom: none;
|
|
12702
|
-
box-sizing: content-box;
|
|
12703
|
-
|
|
12704
|
-
&.active, &.active:hover {
|
|
12705
|
-
background: none;
|
|
12706
|
-
color: @dusk-three;
|
|
12707
|
-
border-bottom: 2px solid @dusk-three;
|
|
12708
|
-
font-weight: bold;
|
|
12709
|
-
|
|
12710
|
-
.badge {
|
|
12711
|
-
color: @white;
|
|
12712
|
-
background-color: @light-grey-blue;
|
|
12713
|
-
}
|
|
12714
|
-
}
|
|
12715
|
-
|
|
12716
|
-
.badge {
|
|
12717
|
-
display: inline-block;
|
|
12718
|
-
min-width: 22px;
|
|
12719
|
-
padding: 3px 7px;
|
|
12720
|
-
font-size: 12px;
|
|
12721
|
-
font-weight: 500;
|
|
12722
|
-
color: @greyish-purple;
|
|
12723
|
-
line-height: 1;
|
|
12724
|
-
vertical-align: middle;
|
|
12725
|
-
white-space: nowrap;
|
|
12726
|
-
text-align: center;
|
|
12727
|
-
background-color: @pale-grey;
|
|
12728
|
-
border-radius: 7.5px;
|
|
12729
|
-
margin-left: 7px;
|
|
12730
|
-
margin-top: -4px;
|
|
12731
|
-
}
|
|
12732
|
-
}
|
|
12733
|
-
|
|
12734
|
-
.default-dropdown {
|
|
12735
|
-
float: left;
|
|
12736
|
-
width: 105px;
|
|
12737
|
-
|
|
12738
|
-
.default-dropdown-field:not(:hover) {
|
|
12739
|
-
border-color: transparent;
|
|
12740
|
-
}
|
|
12741
|
-
|
|
12742
|
-
.default-dropdown-container {
|
|
12743
|
-
z-index: 3;
|
|
12744
|
-
}
|
|
12745
|
-
}
|
|
12746
|
-
}
|
|
12747
|
-
|
|
12748
12683
|
.ncl-test-events-logs {
|
|
12749
12684
|
padding: 6px 17px 25px;
|
|
12750
12685
|
background-color: @white;
|
|
@@ -12974,6 +12909,71 @@ ncl-navigation-tabs {
|
|
|
12974
12909
|
text-align: center;
|
|
12975
12910
|
}
|
|
12976
12911
|
}
|
|
12912
|
+
.ncl-test-events-navigation-tabs {
|
|
12913
|
+
display: flex;
|
|
12914
|
+
background: #f8f8fb;
|
|
12915
|
+
height: 40px;
|
|
12916
|
+
border-top: 1px solid @pale-grey;
|
|
12917
|
+
border-bottom: 1px solid @pale-grey;
|
|
12918
|
+
|
|
12919
|
+
.test-events-navigation-tab {
|
|
12920
|
+
.duskThree(0.64);
|
|
12921
|
+
position: relative;
|
|
12922
|
+
float: left;
|
|
12923
|
+
height: 27px;
|
|
12924
|
+
padding: 10px 40px 0;
|
|
12925
|
+
font-family: @font-family-sans-serif;
|
|
12926
|
+
color: @color;
|
|
12927
|
+
font-size: 13px;
|
|
12928
|
+
text-align: center;
|
|
12929
|
+
cursor: pointer;
|
|
12930
|
+
border-bottom: none;
|
|
12931
|
+
box-sizing: content-box;
|
|
12932
|
+
|
|
12933
|
+
&.active, &.active:hover {
|
|
12934
|
+
background: none;
|
|
12935
|
+
color: @dusk-three;
|
|
12936
|
+
border-bottom: 2px solid @dusk-three;
|
|
12937
|
+
font-weight: bold;
|
|
12938
|
+
|
|
12939
|
+
.badge {
|
|
12940
|
+
color: @white;
|
|
12941
|
+
background-color: @light-grey-blue;
|
|
12942
|
+
}
|
|
12943
|
+
}
|
|
12944
|
+
|
|
12945
|
+
.badge {
|
|
12946
|
+
display: inline-block;
|
|
12947
|
+
min-width: 22px;
|
|
12948
|
+
padding: 3px 7px;
|
|
12949
|
+
font-size: 12px;
|
|
12950
|
+
font-weight: 500;
|
|
12951
|
+
color: @greyish-purple;
|
|
12952
|
+
line-height: 1;
|
|
12953
|
+
vertical-align: middle;
|
|
12954
|
+
white-space: nowrap;
|
|
12955
|
+
text-align: center;
|
|
12956
|
+
background-color: @pale-grey;
|
|
12957
|
+
border-radius: 7.5px;
|
|
12958
|
+
margin-left: 7px;
|
|
12959
|
+
margin-top: -4px;
|
|
12960
|
+
}
|
|
12961
|
+
}
|
|
12962
|
+
|
|
12963
|
+
.default-dropdown {
|
|
12964
|
+
float: left;
|
|
12965
|
+
width: 105px;
|
|
12966
|
+
|
|
12967
|
+
.default-dropdown-field:not(:hover) {
|
|
12968
|
+
border-color: transparent;
|
|
12969
|
+
}
|
|
12970
|
+
|
|
12971
|
+
.default-dropdown-container {
|
|
12972
|
+
z-index: 3;
|
|
12973
|
+
}
|
|
12974
|
+
}
|
|
12975
|
+
}
|
|
12976
|
+
|
|
12977
12977
|
@desktop: 1350px;
|
|
12978
12978
|
@desktop-low: 1202px;
|
|
12979
12979
|
@desktop-middle: 1550px;
|