iguazio.dashboard-controls 0.38.10-patch3 → 0.38.10-patch4
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.
- package/dist/i18n/en/common.json +2 -0
- package/dist/i18n/en/functions.json +0 -3
- package/dist/js/iguazio.dashboard-controls.js +2030 -2030
- package/dist/less/iguazio.dashboard-controls.less +1076 -1076
- package/package.json +1 -1
- package/src/i18n/en/common.json +2 -0
- package/src/i18n/en/functions.json +0 -3
- package/src/nuclio/common/screens/create-function/function-from-template/function-from-template.tpl.html +1 -1
- package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-basic-settings/version-configuration-basic-settings.tpl.html +2 -2
- package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-resources/version-configuration-resources.tpl.html +1 -1
|
@@ -3640,149 +3640,6 @@ ncl-functions {
|
|
|
3640
3640
|
}
|
|
3641
3641
|
}
|
|
3642
3642
|
|
|
3643
|
-
/**
|
|
3644
|
-
UI.Layout CSS
|
|
3645
|
-
*************************************/
|
|
3646
|
-
.stretch {
|
|
3647
|
-
position: absolute;
|
|
3648
|
-
top: 0;
|
|
3649
|
-
left: 0;
|
|
3650
|
-
right: 0;
|
|
3651
|
-
bottom: 0;
|
|
3652
|
-
/* Can be changed by hand ;)*/
|
|
3653
|
-
overflow: auto;
|
|
3654
|
-
}
|
|
3655
|
-
|
|
3656
|
-
.animate-row, .animate-column {
|
|
3657
|
-
-webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3658
|
-
-moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3659
|
-
-ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3660
|
-
-o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3661
|
-
transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
3662
|
-
}
|
|
3663
|
-
|
|
3664
|
-
.ui-splitbar {
|
|
3665
|
-
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
|
|
3666
|
-
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
|
|
3667
|
-
display: -ms-flexbox; /* TWEENER - IE 10 */
|
|
3668
|
-
display: -webkit-flex; /* NEW - Chrome */
|
|
3669
|
-
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
|
|
3670
|
-
-webkit-justify-content: center;
|
|
3671
|
-
justify-content: center;
|
|
3672
|
-
|
|
3673
|
-
background-color: #ffffff;
|
|
3674
|
-
right: auto;
|
|
3675
|
-
position: absolute;
|
|
3676
|
-
z-index: 1;
|
|
3677
|
-
}
|
|
3678
|
-
|
|
3679
|
-
.ui-layout-row > .ui-splitbar {
|
|
3680
|
-
height: 8px;
|
|
3681
|
-
width: 100%;
|
|
3682
|
-
cursor: row-resize;
|
|
3683
|
-
text-align: center;
|
|
3684
|
-
justify-content: center;
|
|
3685
|
-
align-items: center;
|
|
3686
|
-
background: linear-gradient(to bottom, #fff 0%, #eee 100%);
|
|
3687
|
-
overflow-y: hidden;
|
|
3688
|
-
}
|
|
3689
|
-
|
|
3690
|
-
.ui-layout-column > .ui-splitbar {
|
|
3691
|
-
width: 8px;
|
|
3692
|
-
height: 100%;
|
|
3693
|
-
cursor: col-resize;
|
|
3694
|
-
-webkit-flex-direction: column;
|
|
3695
|
-
flex-direction: column;
|
|
3696
|
-
background: linear-gradient(to right, #fff 0%, #eee 100%);
|
|
3697
|
-
overflow-x: hidden;
|
|
3698
|
-
}
|
|
3699
|
-
|
|
3700
|
-
.ui-layout-column > .ui-splitbar > a,
|
|
3701
|
-
.ui-layout-row > .ui-splitbar > a {
|
|
3702
|
-
cursor: pointer;
|
|
3703
|
-
text-align: center;
|
|
3704
|
-
font-size: 16px;
|
|
3705
|
-
color: #aaa;
|
|
3706
|
-
}
|
|
3707
|
-
|
|
3708
|
-
.ui-layout-column > .ui-splitbar > a:nth-child(2) {
|
|
3709
|
-
margin-top: 0.35rem;
|
|
3710
|
-
}
|
|
3711
|
-
|
|
3712
|
-
.ui-layout-row > .ui-splitbar > a:nth-child(2) {
|
|
3713
|
-
margin-left: 0.35rem;
|
|
3714
|
-
}
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
/**
|
|
3718
|
-
* Icons
|
|
3719
|
-
**/
|
|
3720
|
-
|
|
3721
|
-
.ui-splitbar-icon {
|
|
3722
|
-
width: 0;
|
|
3723
|
-
height: 0;
|
|
3724
|
-
display: inline-block;
|
|
3725
|
-
}
|
|
3726
|
-
|
|
3727
|
-
.ui-splitbar-icon-up {
|
|
3728
|
-
border-left: 0.45em solid transparent;
|
|
3729
|
-
border-right: 0.45em solid transparent;
|
|
3730
|
-
border-bottom: 0.45em solid;
|
|
3731
|
-
}
|
|
3732
|
-
|
|
3733
|
-
.ui-splitbar-icon-down {
|
|
3734
|
-
border-left: 0.45em solid transparent;
|
|
3735
|
-
border-right: 0.45em solid transparent;
|
|
3736
|
-
border-top: 0.45em solid;
|
|
3737
|
-
margin-right: 0.45em;
|
|
3738
|
-
}
|
|
3739
|
-
|
|
3740
|
-
.ui-splitbar-icon-right {
|
|
3741
|
-
border-top: 0.45em solid transparent;
|
|
3742
|
-
border-bottom: 0.45em solid transparent;
|
|
3743
|
-
border-left: 0.45em solid;
|
|
3744
|
-
|
|
3745
|
-
}
|
|
3746
|
-
|
|
3747
|
-
.ui-splitbar-icon-left {
|
|
3748
|
-
border-top: 0.45em solid transparent;
|
|
3749
|
-
border-bottom: 0.45em solid transparent;
|
|
3750
|
-
border-right: 0.45em solid;
|
|
3751
|
-
margin-top: 0.45em;
|
|
3752
|
-
}
|
|
3753
|
-
|
|
3754
|
-
/* Allow disabling of icons */
|
|
3755
|
-
.no-toggle .ui-splitbar-icon {
|
|
3756
|
-
display: none;
|
|
3757
|
-
}
|
|
3758
|
-
|
|
3759
|
-
@media only screen and (max-device-width: 480px) {
|
|
3760
|
-
.no-mobile-toggle .ui-splitbar-icon {
|
|
3761
|
-
display: none;
|
|
3762
|
-
}
|
|
3763
|
-
}
|
|
3764
|
-
|
|
3765
|
-
@media print {
|
|
3766
|
-
.ui-splitbar {
|
|
3767
|
-
display: none;
|
|
3768
|
-
}
|
|
3769
|
-
|
|
3770
|
-
.stretch {
|
|
3771
|
-
position: relative;
|
|
3772
|
-
}
|
|
3773
|
-
|
|
3774
|
-
/* The last item can take up any amount of space. */
|
|
3775
|
-
.stretch.ui-layout-container:last-child {
|
|
3776
|
-
position: static;
|
|
3777
|
-
overflow: visible;
|
|
3778
|
-
}
|
|
3779
|
-
}
|
|
3780
|
-
|
|
3781
|
-
/* Make sure hidden elements are in fact not rendered. */
|
|
3782
|
-
.ui-layout-hidden {
|
|
3783
|
-
display: none;
|
|
3784
|
-
}
|
|
3785
|
-
|
|
3786
3643
|
/*
|
|
3787
3644
|
== malihu jquery custom scrollbar plugin ==
|
|
3788
3645
|
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
|
|
@@ -5505,68 +5362,228 @@ yx-axis
|
|
|
5505
5362
|
|
|
5506
5363
|
/* ---------------------------------------- */
|
|
5507
5364
|
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5365
|
+
/**
|
|
5366
|
+
UI.Layout CSS
|
|
5367
|
+
*************************************/
|
|
5368
|
+
.stretch {
|
|
5369
|
+
position: absolute;
|
|
5370
|
+
top: 0;
|
|
5371
|
+
left: 0;
|
|
5372
|
+
right: 0;
|
|
5373
|
+
bottom: 0;
|
|
5374
|
+
/* Can be changed by hand ;)*/
|
|
5375
|
+
overflow: auto;
|
|
5376
|
+
}
|
|
5513
5377
|
|
|
5514
|
-
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5378
|
+
.animate-row, .animate-column {
|
|
5379
|
+
-webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5380
|
+
-moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5381
|
+
-ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5382
|
+
-o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5383
|
+
transition: all .2s cubic-bezier(0, 0, 0.2, 1);
|
|
5384
|
+
}
|
|
5519
5385
|
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5386
|
+
.ui-splitbar {
|
|
5387
|
+
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
|
|
5388
|
+
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
|
|
5389
|
+
display: -ms-flexbox; /* TWEENER - IE 10 */
|
|
5390
|
+
display: -webkit-flex; /* NEW - Chrome */
|
|
5391
|
+
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
|
|
5392
|
+
-webkit-justify-content: center;
|
|
5393
|
+
justify-content: center;
|
|
5523
5394
|
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5527
|
-
|
|
5395
|
+
background-color: #ffffff;
|
|
5396
|
+
right: auto;
|
|
5397
|
+
position: absolute;
|
|
5398
|
+
z-index: 1;
|
|
5528
5399
|
}
|
|
5529
|
-
.igz-action-menu {
|
|
5530
|
-
.action-menu-color-set();
|
|
5531
|
-
.action-icon-color-set();
|
|
5532
5400
|
|
|
5533
|
-
|
|
5534
|
-
|
|
5401
|
+
.ui-layout-row > .ui-splitbar {
|
|
5402
|
+
height: 8px;
|
|
5403
|
+
width: 100%;
|
|
5404
|
+
cursor: row-resize;
|
|
5405
|
+
text-align: center;
|
|
5406
|
+
justify-content: center;
|
|
5407
|
+
align-items: center;
|
|
5408
|
+
background: linear-gradient(to bottom, #fff 0%, #eee 100%);
|
|
5409
|
+
overflow-y: hidden;
|
|
5410
|
+
}
|
|
5535
5411
|
|
|
5536
|
-
|
|
5537
|
-
|
|
5538
|
-
|
|
5539
|
-
|
|
5540
|
-
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5412
|
+
.ui-layout-column > .ui-splitbar {
|
|
5413
|
+
width: 8px;
|
|
5414
|
+
height: 100%;
|
|
5415
|
+
cursor: col-resize;
|
|
5416
|
+
-webkit-flex-direction: column;
|
|
5417
|
+
flex-direction: column;
|
|
5418
|
+
background: linear-gradient(to right, #fff 0%, #eee 100%);
|
|
5419
|
+
overflow-x: hidden;
|
|
5420
|
+
}
|
|
5544
5421
|
|
|
5545
|
-
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
|
|
5422
|
+
.ui-layout-column > .ui-splitbar > a,
|
|
5423
|
+
.ui-layout-row > .ui-splitbar > a {
|
|
5424
|
+
cursor: pointer;
|
|
5425
|
+
text-align: center;
|
|
5426
|
+
font-size: 16px;
|
|
5427
|
+
color: #aaa;
|
|
5428
|
+
}
|
|
5550
5429
|
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
border: @menu-dropdown-border;
|
|
5555
|
-
border-radius: 2px;
|
|
5556
|
-
box-shadow: @menu-dropdown-box-shadow;
|
|
5557
|
-
color: @menu-dropdown-color;
|
|
5558
|
-
font-family: @font-family-sans-serif;
|
|
5559
|
-
font-size: 13px;
|
|
5560
|
-
font-weight: 500;
|
|
5561
|
-
line-height: normal;
|
|
5562
|
-
margin-top: 9px;
|
|
5563
|
-
min-width: 129px;
|
|
5564
|
-
padding: 8px 0 0;
|
|
5565
|
-
position: absolute;
|
|
5566
|
-
z-index: 10;
|
|
5567
|
-
transform: translateX(-100%);
|
|
5430
|
+
.ui-layout-column > .ui-splitbar > a:nth-child(2) {
|
|
5431
|
+
margin-top: 0.35rem;
|
|
5432
|
+
}
|
|
5568
5433
|
|
|
5569
|
-
|
|
5434
|
+
.ui-layout-row > .ui-splitbar > a:nth-child(2) {
|
|
5435
|
+
margin-left: 0.35rem;
|
|
5436
|
+
}
|
|
5437
|
+
|
|
5438
|
+
|
|
5439
|
+
/**
|
|
5440
|
+
* Icons
|
|
5441
|
+
**/
|
|
5442
|
+
|
|
5443
|
+
.ui-splitbar-icon {
|
|
5444
|
+
width: 0;
|
|
5445
|
+
height: 0;
|
|
5446
|
+
display: inline-block;
|
|
5447
|
+
}
|
|
5448
|
+
|
|
5449
|
+
.ui-splitbar-icon-up {
|
|
5450
|
+
border-left: 0.45em solid transparent;
|
|
5451
|
+
border-right: 0.45em solid transparent;
|
|
5452
|
+
border-bottom: 0.45em solid;
|
|
5453
|
+
}
|
|
5454
|
+
|
|
5455
|
+
.ui-splitbar-icon-down {
|
|
5456
|
+
border-left: 0.45em solid transparent;
|
|
5457
|
+
border-right: 0.45em solid transparent;
|
|
5458
|
+
border-top: 0.45em solid;
|
|
5459
|
+
margin-right: 0.45em;
|
|
5460
|
+
}
|
|
5461
|
+
|
|
5462
|
+
.ui-splitbar-icon-right {
|
|
5463
|
+
border-top: 0.45em solid transparent;
|
|
5464
|
+
border-bottom: 0.45em solid transparent;
|
|
5465
|
+
border-left: 0.45em solid;
|
|
5466
|
+
|
|
5467
|
+
}
|
|
5468
|
+
|
|
5469
|
+
.ui-splitbar-icon-left {
|
|
5470
|
+
border-top: 0.45em solid transparent;
|
|
5471
|
+
border-bottom: 0.45em solid transparent;
|
|
5472
|
+
border-right: 0.45em solid;
|
|
5473
|
+
margin-top: 0.45em;
|
|
5474
|
+
}
|
|
5475
|
+
|
|
5476
|
+
/* Allow disabling of icons */
|
|
5477
|
+
.no-toggle .ui-splitbar-icon {
|
|
5478
|
+
display: none;
|
|
5479
|
+
}
|
|
5480
|
+
|
|
5481
|
+
@media only screen and (max-device-width: 480px) {
|
|
5482
|
+
.no-mobile-toggle .ui-splitbar-icon {
|
|
5483
|
+
display: none;
|
|
5484
|
+
}
|
|
5485
|
+
}
|
|
5486
|
+
|
|
5487
|
+
@media print {
|
|
5488
|
+
.ui-splitbar {
|
|
5489
|
+
display: none;
|
|
5490
|
+
}
|
|
5491
|
+
|
|
5492
|
+
.stretch {
|
|
5493
|
+
position: relative;
|
|
5494
|
+
}
|
|
5495
|
+
|
|
5496
|
+
/* The last item can take up any amount of space. */
|
|
5497
|
+
.stretch.ui-layout-container:last-child {
|
|
5498
|
+
position: static;
|
|
5499
|
+
overflow: visible;
|
|
5500
|
+
}
|
|
5501
|
+
}
|
|
5502
|
+
|
|
5503
|
+
/* Make sure hidden elements are in fact not rendered. */
|
|
5504
|
+
.ui-layout-hidden {
|
|
5505
|
+
display: none;
|
|
5506
|
+
}
|
|
5507
|
+
|
|
5508
|
+
.action-checkbox-all {
|
|
5509
|
+
.action-checkbox-all-color-set();
|
|
5510
|
+
|
|
5511
|
+
text-align: center;
|
|
5512
|
+
|
|
5513
|
+
.check-item {
|
|
5514
|
+
cursor: pointer;
|
|
5515
|
+
color: @check-item-color;
|
|
5516
|
+
font-size: 16px;
|
|
5517
|
+
line-height: 1;
|
|
5518
|
+
vertical-align: middle;
|
|
5519
|
+
|
|
5520
|
+
&.igz-icon-checkbox-checked {
|
|
5521
|
+
color: @check-item-icon-checkbox-checked-color;
|
|
5522
|
+
}
|
|
5523
|
+
}
|
|
5524
|
+
}
|
|
5525
|
+
.action-checkbox {
|
|
5526
|
+
.action-checkbox-color-set();
|
|
5527
|
+
|
|
5528
|
+
line-height: 16px;
|
|
5529
|
+
text-align: center;
|
|
5530
|
+
|
|
5531
|
+
.check-item {
|
|
5532
|
+
font-size: 16px;
|
|
5533
|
+
cursor: pointer;
|
|
5534
|
+
line-height: 1;
|
|
5535
|
+
vertical-align: middle;
|
|
5536
|
+
|
|
5537
|
+
&.igz-icon-checkbox-unchecked {
|
|
5538
|
+
color: @icon-checkbox-unchecked;
|
|
5539
|
+
}
|
|
5540
|
+
|
|
5541
|
+
&.igz-icon-checkbox-checked {
|
|
5542
|
+
color: @icon-checkbox-checked;
|
|
5543
|
+
}
|
|
5544
|
+
}
|
|
5545
|
+
}
|
|
5546
|
+
.igz-action-menu {
|
|
5547
|
+
.action-menu-color-set();
|
|
5548
|
+
.action-icon-color-set();
|
|
5549
|
+
|
|
5550
|
+
opacity: 1;
|
|
5551
|
+
position: relative;
|
|
5552
|
+
|
|
5553
|
+
.menu-button {
|
|
5554
|
+
color: @menu-btn-color;
|
|
5555
|
+
cursor: pointer;
|
|
5556
|
+
font-size: 18px;
|
|
5557
|
+
height: 19px;
|
|
5558
|
+
text-align: center;
|
|
5559
|
+
transition: @igz-basic-transition-color;
|
|
5560
|
+
width: 30px;
|
|
5561
|
+
|
|
5562
|
+
&.active,
|
|
5563
|
+
&:hover {
|
|
5564
|
+
color: @menu-btn-active-hover-color;
|
|
5565
|
+
}
|
|
5566
|
+
}
|
|
5567
|
+
|
|
5568
|
+
.menu-dropdown {
|
|
5569
|
+
visibility: hidden;
|
|
5570
|
+
background-color: @menu-dropdown-bg-color;
|
|
5571
|
+
border: @menu-dropdown-border;
|
|
5572
|
+
border-radius: 2px;
|
|
5573
|
+
box-shadow: @menu-dropdown-box-shadow;
|
|
5574
|
+
color: @menu-dropdown-color;
|
|
5575
|
+
font-family: @font-family-sans-serif;
|
|
5576
|
+
font-size: 13px;
|
|
5577
|
+
font-weight: 500;
|
|
5578
|
+
line-height: normal;
|
|
5579
|
+
margin-top: 9px;
|
|
5580
|
+
min-width: 129px;
|
|
5581
|
+
padding: 8px 0 0;
|
|
5582
|
+
position: absolute;
|
|
5583
|
+
z-index: 10;
|
|
5584
|
+
transform: translateX(-100%);
|
|
5585
|
+
|
|
5586
|
+
.actions-list {
|
|
5570
5587
|
cursor: default;
|
|
5571
5588
|
padding-bottom: 8px;
|
|
5572
5589
|
|
|
@@ -5684,23 +5701,6 @@ yx-axis
|
|
|
5684
5701
|
}
|
|
5685
5702
|
}
|
|
5686
5703
|
|
|
5687
|
-
.action-checkbox-all {
|
|
5688
|
-
.action-checkbox-all-color-set();
|
|
5689
|
-
|
|
5690
|
-
text-align: center;
|
|
5691
|
-
|
|
5692
|
-
.check-item {
|
|
5693
|
-
cursor: pointer;
|
|
5694
|
-
color: @check-item-color;
|
|
5695
|
-
font-size: 16px;
|
|
5696
|
-
line-height: 1;
|
|
5697
|
-
vertical-align: middle;
|
|
5698
|
-
|
|
5699
|
-
&.igz-icon-checkbox-checked {
|
|
5700
|
-
color: @check-item-icon-checkbox-checked-color;
|
|
5701
|
-
}
|
|
5702
|
-
}
|
|
5703
|
-
}
|
|
5704
5704
|
.igz-action-panel {
|
|
5705
5705
|
.action-panel-color-set();
|
|
5706
5706
|
.action-icon-color-set();
|
|
@@ -9312,198 +9312,76 @@ body {
|
|
|
9312
9312
|
}
|
|
9313
9313
|
}
|
|
9314
9314
|
|
|
9315
|
-
.
|
|
9316
|
-
.info-page-
|
|
9315
|
+
.info-page-filters-bookmark {
|
|
9316
|
+
.info-page-filters-color-set();
|
|
9317
9317
|
|
|
9318
|
-
|
|
9319
|
-
|
|
9318
|
+
background-color: @filters-bookmark-bg-color;
|
|
9319
|
+
border-bottom-right-radius: 4px;
|
|
9320
|
+
border-top-right-radius: 4px;
|
|
9321
|
+
box-shadow: @filters-bookmark-box-shadow;
|
|
9322
|
+
color: @filters-bookmark-color;
|
|
9323
|
+
cursor: pointer;
|
|
9324
|
+
font-size: 10px;
|
|
9325
|
+
height: 22px;
|
|
9320
9326
|
right: 0;
|
|
9321
|
-
|
|
9322
|
-
|
|
9323
|
-
|
|
9327
|
+
line-height: 22px;
|
|
9328
|
+
position: absolute;
|
|
9329
|
+
text-align: center;
|
|
9330
|
+
top: 22px;
|
|
9324
9331
|
transition: @igz-basic-transition;
|
|
9325
|
-
|
|
9332
|
+
width: 18px;
|
|
9333
|
+
z-index: 998;
|
|
9326
9334
|
|
|
9327
|
-
|
|
9328
|
-
|
|
9335
|
+
&:before {
|
|
9336
|
+
right: 3px;
|
|
9337
|
+
position: absolute;
|
|
9338
|
+
top: 6px;
|
|
9329
9339
|
}
|
|
9330
9340
|
|
|
9331
|
-
|
|
9332
|
-
|
|
9341
|
+
&:after {
|
|
9342
|
+
background-color: @filters-bookmark-after-bg-color;
|
|
9343
|
+
content: "";
|
|
9344
|
+
height: 100%;
|
|
9345
|
+
right: -6px;
|
|
9346
|
+
position: absolute;
|
|
9347
|
+
top: 0;
|
|
9348
|
+
width: 6px;
|
|
9333
9349
|
}
|
|
9334
9350
|
|
|
9335
|
-
&.
|
|
9336
|
-
|
|
9351
|
+
&.upper-pane-opened {
|
|
9352
|
+
top: 172px;
|
|
9337
9353
|
}
|
|
9338
9354
|
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
max-width: 100%;
|
|
9342
|
-
padding: 40px 25px;
|
|
9355
|
+
&.info-page-filters-active {
|
|
9356
|
+
right: 249px;
|
|
9343
9357
|
}
|
|
9344
|
-
}
|
|
9345
9358
|
|
|
9346
|
-
|
|
9347
|
-
|
|
9348
|
-
|
|
9359
|
+
.bookmark-badge {
|
|
9360
|
+
position: absolute;
|
|
9361
|
+
top: -10px;
|
|
9362
|
+
right: -12px;
|
|
9363
|
+
box-shadow: @filters-bookmark-badge-box-shadow;
|
|
9349
9364
|
}
|
|
9350
9365
|
}
|
|
9351
9366
|
|
|
9352
|
-
|
|
9353
|
-
.info-page-
|
|
9367
|
+
.info-page-filters {
|
|
9368
|
+
.info-page-filters-color-set();
|
|
9354
9369
|
|
|
9355
|
-
|
|
9356
|
-
|
|
9357
|
-
|
|
9358
|
-
|
|
9359
|
-
|
|
9360
|
-
|
|
9370
|
+
background: @filters-bg;
|
|
9371
|
+
border: @filters-border;
|
|
9372
|
+
border-top: none;
|
|
9373
|
+
box-shadow: @filters-box-shadow;
|
|
9374
|
+
position: absolute;
|
|
9375
|
+
bottom: 0;
|
|
9376
|
+
right: 0;
|
|
9377
|
+
padding: 0 0 15px 0;
|
|
9378
|
+
top: 0;
|
|
9379
|
+
transition: @igz-basic-transition;
|
|
9380
|
+
width: 376px;
|
|
9381
|
+
z-index: 996;
|
|
9361
9382
|
|
|
9362
|
-
|
|
9363
|
-
|
|
9364
|
-
height: 49px;
|
|
9365
|
-
|
|
9366
|
-
&.selected {
|
|
9367
|
-
background-color: @common-table-cell-selected-bg-color;
|
|
9368
|
-
border: @common-table-cell-selected-border;
|
|
9369
|
-
}
|
|
9370
|
-
|
|
9371
|
-
&:last-child {
|
|
9372
|
-
margin-right: 0;
|
|
9373
|
-
}
|
|
9374
|
-
|
|
9375
|
-
&.actions-menu {
|
|
9376
|
-
width: 0;
|
|
9377
|
-
}
|
|
9378
|
-
|
|
9379
|
-
&.check-all-rows {
|
|
9380
|
-
padding-left: 30px;
|
|
9381
|
-
|
|
9382
|
-
.action-checkbox-all {
|
|
9383
|
-
padding-top: 2px;
|
|
9384
|
-
}
|
|
9385
|
-
}
|
|
9386
|
-
}
|
|
9387
|
-
|
|
9388
|
-
.common-table-cells-container {
|
|
9389
|
-
margin-right: 45px;
|
|
9390
|
-
|
|
9391
|
-
.common-table-cell {
|
|
9392
|
-
height: 49px;
|
|
9393
|
-
padding: 0 15px;
|
|
9394
|
-
border-right: @common-table-cell-border-right;
|
|
9395
|
-
|
|
9396
|
-
&:first-child {
|
|
9397
|
-
padding-left: 7px;
|
|
9398
|
-
}
|
|
9399
|
-
}
|
|
9400
|
-
}
|
|
9401
|
-
}
|
|
9402
|
-
|
|
9403
|
-
.common-table-body {
|
|
9404
|
-
margin-top: 7px;
|
|
9405
|
-
|
|
9406
|
-
.common-table-cell {
|
|
9407
|
-
&.actions-menu {
|
|
9408
|
-
width: 45px;
|
|
9409
|
-
}
|
|
9410
|
-
}
|
|
9411
|
-
}
|
|
9412
|
-
|
|
9413
|
-
.data-access-policy-layers, .data-lifecycle-layers {
|
|
9414
|
-
&:last-child {
|
|
9415
|
-
margin-bottom: 20px;
|
|
9416
|
-
}
|
|
9417
|
-
}
|
|
9418
|
-
}
|
|
9419
|
-
|
|
9420
|
-
.sortable-empty {
|
|
9421
|
-
background-color: @sortable-empty-bg-color;
|
|
9422
|
-
color: @sortable-empty-color;
|
|
9423
|
-
font-size: 14px;
|
|
9424
|
-
font-weight: 400;
|
|
9425
|
-
font-family: 'Open Sans', sans-serif;
|
|
9426
|
-
border-bottom: @sortable-empty-border;
|
|
9427
|
-
border-left: @sortable-empty-border;
|
|
9428
|
-
border-right: @sortable-empty-border;
|
|
9429
|
-
padding-left: 70px;
|
|
9430
|
-
height: 40px;
|
|
9431
|
-
line-height: 38px;
|
|
9432
|
-
}
|
|
9433
|
-
}
|
|
9434
|
-
}
|
|
9435
|
-
|
|
9436
|
-
|
|
9437
|
-
.info-page-filters-bookmark {
|
|
9438
|
-
.info-page-filters-color-set();
|
|
9439
|
-
|
|
9440
|
-
background-color: @filters-bookmark-bg-color;
|
|
9441
|
-
border-bottom-right-radius: 4px;
|
|
9442
|
-
border-top-right-radius: 4px;
|
|
9443
|
-
box-shadow: @filters-bookmark-box-shadow;
|
|
9444
|
-
color: @filters-bookmark-color;
|
|
9445
|
-
cursor: pointer;
|
|
9446
|
-
font-size: 10px;
|
|
9447
|
-
height: 22px;
|
|
9448
|
-
right: 0;
|
|
9449
|
-
line-height: 22px;
|
|
9450
|
-
position: absolute;
|
|
9451
|
-
text-align: center;
|
|
9452
|
-
top: 22px;
|
|
9453
|
-
transition: @igz-basic-transition;
|
|
9454
|
-
width: 18px;
|
|
9455
|
-
z-index: 998;
|
|
9456
|
-
|
|
9457
|
-
&:before {
|
|
9458
|
-
right: 3px;
|
|
9459
|
-
position: absolute;
|
|
9460
|
-
top: 6px;
|
|
9461
|
-
}
|
|
9462
|
-
|
|
9463
|
-
&:after {
|
|
9464
|
-
background-color: @filters-bookmark-after-bg-color;
|
|
9465
|
-
content: "";
|
|
9466
|
-
height: 100%;
|
|
9467
|
-
right: -6px;
|
|
9468
|
-
position: absolute;
|
|
9469
|
-
top: 0;
|
|
9470
|
-
width: 6px;
|
|
9471
|
-
}
|
|
9472
|
-
|
|
9473
|
-
&.upper-pane-opened {
|
|
9474
|
-
top: 172px;
|
|
9475
|
-
}
|
|
9476
|
-
|
|
9477
|
-
&.info-page-filters-active {
|
|
9478
|
-
right: 249px;
|
|
9479
|
-
}
|
|
9480
|
-
|
|
9481
|
-
.bookmark-badge {
|
|
9482
|
-
position: absolute;
|
|
9483
|
-
top: -10px;
|
|
9484
|
-
right: -12px;
|
|
9485
|
-
box-shadow: @filters-bookmark-badge-box-shadow;
|
|
9486
|
-
}
|
|
9487
|
-
}
|
|
9488
|
-
|
|
9489
|
-
.info-page-filters {
|
|
9490
|
-
.info-page-filters-color-set();
|
|
9491
|
-
|
|
9492
|
-
background: @filters-bg;
|
|
9493
|
-
border: @filters-border;
|
|
9494
|
-
border-top: none;
|
|
9495
|
-
box-shadow: @filters-box-shadow;
|
|
9496
|
-
position: absolute;
|
|
9497
|
-
bottom: 0;
|
|
9498
|
-
right: 0;
|
|
9499
|
-
padding: 0 0 15px 0;
|
|
9500
|
-
top: 0;
|
|
9501
|
-
transition: @igz-basic-transition;
|
|
9502
|
-
width: 376px;
|
|
9503
|
-
z-index: 996;
|
|
9504
|
-
|
|
9505
|
-
&.ng-hide {
|
|
9506
|
-
right: -375px;
|
|
9383
|
+
&.ng-hide {
|
|
9384
|
+
right: -375px;
|
|
9507
9385
|
|
|
9508
9386
|
> [class*="info-page-filters"] {
|
|
9509
9387
|
opacity: 0;
|
|
@@ -9774,85 +9652,207 @@ igz-info-page-content {
|
|
|
9774
9652
|
}
|
|
9775
9653
|
}
|
|
9776
9654
|
|
|
9777
|
-
|
|
9778
|
-
.
|
|
9779
|
-
&:not(.disable-behavior) {
|
|
9780
|
-
&:hover .main-header-title-text {
|
|
9781
|
-
color: @dark-sky-blue;
|
|
9782
|
-
}
|
|
9783
|
-
}
|
|
9655
|
+
.igz-info-page-content-wrapper {
|
|
9656
|
+
.info-page-content-color-set();
|
|
9784
9657
|
|
|
9785
|
-
|
|
9786
|
-
|
|
9787
|
-
|
|
9658
|
+
position: absolute;
|
|
9659
|
+
top: 56px;
|
|
9660
|
+
right: 0;
|
|
9661
|
+
bottom: 0;
|
|
9662
|
+
left: 0;
|
|
9663
|
+
padding-top: 0;
|
|
9664
|
+
transition: @igz-basic-transition;
|
|
9665
|
+
background-color: @page-content-bg-color;
|
|
9666
|
+
|
|
9667
|
+
&.upper-pane-opened {
|
|
9668
|
+
top: 216px;
|
|
9788
9669
|
}
|
|
9789
9670
|
|
|
9790
|
-
|
|
9791
|
-
|
|
9792
|
-
font-weight: 100;
|
|
9793
|
-
margin: 0 14px;
|
|
9671
|
+
&.filters-opened {
|
|
9672
|
+
right: 377px;
|
|
9794
9673
|
}
|
|
9795
9674
|
|
|
9796
|
-
|
|
9797
|
-
|
|
9675
|
+
&.info-pane-opened {
|
|
9676
|
+
right: 379px;
|
|
9798
9677
|
}
|
|
9799
9678
|
|
|
9800
|
-
.
|
|
9801
|
-
|
|
9802
|
-
|
|
9679
|
+
.igz-info-page-content {
|
|
9680
|
+
min-width: 946px;
|
|
9681
|
+
max-width: 100%;
|
|
9682
|
+
padding: 40px 25px;
|
|
9803
9683
|
}
|
|
9804
9684
|
}
|
|
9805
9685
|
|
|
9806
|
-
|
|
9807
|
-
|
|
9686
|
+
igz-info-page-actions-bar {
|
|
9687
|
+
.igz-info-page-actions-bar .actions-content-block {
|
|
9688
|
+
margin-left: 14px;
|
|
9689
|
+
}
|
|
9690
|
+
}
|
|
9808
9691
|
|
|
9809
|
-
|
|
9810
|
-
|
|
9811
|
-
font-weight: bold;
|
|
9692
|
+
igz-info-page-content {
|
|
9693
|
+
.info-page-content-color-set();
|
|
9812
9694
|
|
|
9813
|
-
|
|
9814
|
-
|
|
9815
|
-
|
|
9816
|
-
|
|
9695
|
+
.container-data-access-policy-table, .data-lifecycle-table {
|
|
9696
|
+
&.common-table {
|
|
9697
|
+
.common-table-header {
|
|
9698
|
+
position: relative;
|
|
9699
|
+
height: 49px;
|
|
9700
|
+
line-height: 48px;
|
|
9817
9701
|
|
|
9818
|
-
|
|
9819
|
-
|
|
9820
|
-
|
|
9821
|
-
height: 24px;
|
|
9822
|
-
margin: 0 8px;
|
|
9823
|
-
border-radius: 50%;
|
|
9824
|
-
background-color: transparent;
|
|
9702
|
+
.common-table-cell {
|
|
9703
|
+
margin-top: -1px;
|
|
9704
|
+
height: 49px;
|
|
9825
9705
|
|
|
9826
|
-
|
|
9827
|
-
|
|
9828
|
-
|
|
9829
|
-
|
|
9830
|
-
}
|
|
9706
|
+
&.selected {
|
|
9707
|
+
background-color: @common-table-cell-selected-bg-color;
|
|
9708
|
+
border: @common-table-cell-selected-border;
|
|
9709
|
+
}
|
|
9831
9710
|
|
|
9832
|
-
|
|
9833
|
-
|
|
9834
|
-
|
|
9711
|
+
&:last-child {
|
|
9712
|
+
margin-right: 0;
|
|
9713
|
+
}
|
|
9835
9714
|
|
|
9836
|
-
|
|
9837
|
-
|
|
9838
|
-
|
|
9839
|
-
}
|
|
9840
|
-
}
|
|
9715
|
+
&.actions-menu {
|
|
9716
|
+
width: 0;
|
|
9717
|
+
}
|
|
9841
9718
|
|
|
9842
|
-
|
|
9843
|
-
|
|
9844
|
-
border: none;
|
|
9845
|
-
min-width: inherit;
|
|
9846
|
-
padding: 5px 0 8px;
|
|
9847
|
-
width: 230px;
|
|
9848
|
-
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
|
|
9719
|
+
&.check-all-rows {
|
|
9720
|
+
padding-left: 30px;
|
|
9849
9721
|
|
|
9850
|
-
|
|
9851
|
-
|
|
9852
|
-
|
|
9722
|
+
.action-checkbox-all {
|
|
9723
|
+
padding-top: 2px;
|
|
9724
|
+
}
|
|
9725
|
+
}
|
|
9726
|
+
}
|
|
9853
9727
|
|
|
9854
|
-
|
|
9855
|
-
|
|
9728
|
+
.common-table-cells-container {
|
|
9729
|
+
margin-right: 45px;
|
|
9730
|
+
|
|
9731
|
+
.common-table-cell {
|
|
9732
|
+
height: 49px;
|
|
9733
|
+
padding: 0 15px;
|
|
9734
|
+
border-right: @common-table-cell-border-right;
|
|
9735
|
+
|
|
9736
|
+
&:first-child {
|
|
9737
|
+
padding-left: 7px;
|
|
9738
|
+
}
|
|
9739
|
+
}
|
|
9740
|
+
}
|
|
9741
|
+
}
|
|
9742
|
+
|
|
9743
|
+
.common-table-body {
|
|
9744
|
+
margin-top: 7px;
|
|
9745
|
+
|
|
9746
|
+
.common-table-cell {
|
|
9747
|
+
&.actions-menu {
|
|
9748
|
+
width: 45px;
|
|
9749
|
+
}
|
|
9750
|
+
}
|
|
9751
|
+
}
|
|
9752
|
+
|
|
9753
|
+
.data-access-policy-layers, .data-lifecycle-layers {
|
|
9754
|
+
&:last-child {
|
|
9755
|
+
margin-bottom: 20px;
|
|
9756
|
+
}
|
|
9757
|
+
}
|
|
9758
|
+
}
|
|
9759
|
+
|
|
9760
|
+
.sortable-empty {
|
|
9761
|
+
background-color: @sortable-empty-bg-color;
|
|
9762
|
+
color: @sortable-empty-color;
|
|
9763
|
+
font-size: 14px;
|
|
9764
|
+
font-weight: 400;
|
|
9765
|
+
font-family: 'Open Sans', sans-serif;
|
|
9766
|
+
border-bottom: @sortable-empty-border;
|
|
9767
|
+
border-left: @sortable-empty-border;
|
|
9768
|
+
border-right: @sortable-empty-border;
|
|
9769
|
+
padding-left: 70px;
|
|
9770
|
+
height: 40px;
|
|
9771
|
+
line-height: 38px;
|
|
9772
|
+
}
|
|
9773
|
+
}
|
|
9774
|
+
}
|
|
9775
|
+
|
|
9776
|
+
|
|
9777
|
+
ncl-breadcrumbs {
|
|
9778
|
+
.main-header-title {
|
|
9779
|
+
&:not(.disable-behavior) {
|
|
9780
|
+
&:hover .main-header-title-text {
|
|
9781
|
+
color: @dark-sky-blue;
|
|
9782
|
+
}
|
|
9783
|
+
}
|
|
9784
|
+
|
|
9785
|
+
&.disable-behavior {
|
|
9786
|
+
color: @dusk-three;
|
|
9787
|
+
}
|
|
9788
|
+
}
|
|
9789
|
+
|
|
9790
|
+
.igz-icon-right {
|
|
9791
|
+
font-size: 11px;
|
|
9792
|
+
font-weight: 100;
|
|
9793
|
+
margin: 0 14px;
|
|
9794
|
+
}
|
|
9795
|
+
|
|
9796
|
+
.ncl-header-subtitle {
|
|
9797
|
+
color: @greyish-purple;
|
|
9798
|
+
}
|
|
9799
|
+
|
|
9800
|
+
.ncl-bold-subtitle {
|
|
9801
|
+
color: @dusk-three;
|
|
9802
|
+
font-weight: bold;
|
|
9803
|
+
}
|
|
9804
|
+
}
|
|
9805
|
+
|
|
9806
|
+
.ncl-breadcrumbs-dropdown {
|
|
9807
|
+
display: inline-grid;
|
|
9808
|
+
|
|
9809
|
+
.breadcrumb-toggle {
|
|
9810
|
+
cursor: pointer;
|
|
9811
|
+
font-weight: bold;
|
|
9812
|
+
|
|
9813
|
+
.igz-icon-right {
|
|
9814
|
+
display: block;
|
|
9815
|
+
margin: 1.5px 0 0 7px;
|
|
9816
|
+
}
|
|
9817
|
+
|
|
9818
|
+
.breadcrumb-arrow {
|
|
9819
|
+
display: inline-block;
|
|
9820
|
+
width: 24px;
|
|
9821
|
+
height: 24px;
|
|
9822
|
+
margin: 0 8px;
|
|
9823
|
+
border-radius: 50%;
|
|
9824
|
+
background-color: transparent;
|
|
9825
|
+
|
|
9826
|
+
&:hover {
|
|
9827
|
+
background-color: @pale-grey;
|
|
9828
|
+
transition: transform .2s linear;
|
|
9829
|
+
}
|
|
9830
|
+
}
|
|
9831
|
+
|
|
9832
|
+
.ncl-dropdown-expanded {
|
|
9833
|
+
background-color: @pale-grey;
|
|
9834
|
+
transform: rotate(90deg);
|
|
9835
|
+
|
|
9836
|
+
.igz-icon-right {
|
|
9837
|
+
color: @dusk-three;
|
|
9838
|
+
}
|
|
9839
|
+
}
|
|
9840
|
+
}
|
|
9841
|
+
|
|
9842
|
+
.dropdown-menu {
|
|
9843
|
+
margin: 0;
|
|
9844
|
+
border: none;
|
|
9845
|
+
min-width: inherit;
|
|
9846
|
+
padding: 5px 0 8px;
|
|
9847
|
+
width: 230px;
|
|
9848
|
+
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
|
|
9849
|
+
|
|
9850
|
+
.search-input {
|
|
9851
|
+
text-align: center;
|
|
9852
|
+
margin-top: 3px;
|
|
9853
|
+
|
|
9854
|
+
.igz-icon-search {
|
|
9855
|
+
.greyishPurple(0.34);
|
|
9856
9856
|
font-size: 18px;
|
|
9857
9857
|
color: @color;
|
|
9858
9858
|
position: absolute;
|
|
@@ -10682,6 +10682,72 @@ ncl-navigation-tabs {
|
|
|
10682
10682
|
display: none;
|
|
10683
10683
|
}
|
|
10684
10684
|
}
|
|
10685
|
+
.ncl-function-version-row {
|
|
10686
|
+
.actions-menu {
|
|
10687
|
+
visibility: hidden;
|
|
10688
|
+
}
|
|
10689
|
+
|
|
10690
|
+
&.common-table-row {
|
|
10691
|
+
height: 49px;
|
|
10692
|
+
|
|
10693
|
+
&:hover {
|
|
10694
|
+
igz-action-checkbox:not(.invisible) {
|
|
10695
|
+
visibility: visible;
|
|
10696
|
+
}
|
|
10697
|
+
|
|
10698
|
+
.actions-menu {
|
|
10699
|
+
visibility: visible;
|
|
10700
|
+
}
|
|
10701
|
+
|
|
10702
|
+
.check-row {
|
|
10703
|
+
background-color: @pale-grey-three;
|
|
10704
|
+
}
|
|
10705
|
+
}
|
|
10706
|
+
|
|
10707
|
+
igz-action-checkbox {
|
|
10708
|
+
visibility: hidden;
|
|
10709
|
+
|
|
10710
|
+
&.visible {
|
|
10711
|
+
visibility: visible;
|
|
10712
|
+
}
|
|
10713
|
+
}
|
|
10714
|
+
|
|
10715
|
+
.common-table-cells-container {
|
|
10716
|
+
cursor: pointer;
|
|
10717
|
+
|
|
10718
|
+
.common-table-cell {
|
|
10719
|
+
.status-icon {
|
|
10720
|
+
display: flex;
|
|
10721
|
+
font-size: 20px;
|
|
10722
|
+
cursor: pointer;
|
|
10723
|
+
margin-left: 9px;
|
|
10724
|
+
.duskThree(0.64);
|
|
10725
|
+
color: @color;
|
|
10726
|
+
}
|
|
10727
|
+
|
|
10728
|
+
.common-table-cell-content {
|
|
10729
|
+
width: 100%;
|
|
10730
|
+
white-space: nowrap;
|
|
10731
|
+
overflow: hidden;
|
|
10732
|
+
text-overflow: ellipsis;
|
|
10733
|
+
min-width: 0;
|
|
10734
|
+
}
|
|
10735
|
+
|
|
10736
|
+
.igz-action-panel {
|
|
10737
|
+
&.invocation-tooltip {
|
|
10738
|
+
height: 36px;
|
|
10739
|
+
width: 56px;
|
|
10740
|
+
}
|
|
10741
|
+
}
|
|
10742
|
+
}
|
|
10743
|
+
|
|
10744
|
+
.function-status {
|
|
10745
|
+
min-width: 100px;
|
|
10746
|
+
}
|
|
10747
|
+
}
|
|
10748
|
+
}
|
|
10749
|
+
}
|
|
10750
|
+
|
|
10685
10751
|
.new-function-wrapper {
|
|
10686
10752
|
.ncl-new-function-color-set();
|
|
10687
10753
|
|
|
@@ -10839,105 +10905,39 @@ ncl-navigation-tabs {
|
|
|
10839
10905
|
}
|
|
10840
10906
|
}
|
|
10841
10907
|
|
|
10842
|
-
.
|
|
10843
|
-
|
|
10844
|
-
|
|
10845
|
-
}
|
|
10846
|
-
|
|
10847
|
-
&.common-table-row {
|
|
10848
|
-
height: 49px;
|
|
10849
|
-
|
|
10850
|
-
&:hover {
|
|
10851
|
-
igz-action-checkbox:not(.invisible) {
|
|
10852
|
-
visibility: visible;
|
|
10853
|
-
}
|
|
10908
|
+
.function-event-wrapper {
|
|
10909
|
+
width: 600px;
|
|
10910
|
+
margin-bottom: -23px;
|
|
10854
10911
|
|
|
10855
|
-
|
|
10856
|
-
|
|
10857
|
-
|
|
10912
|
+
.header {
|
|
10913
|
+
display: flex;
|
|
10914
|
+
justify-content: space-between;
|
|
10915
|
+
border-bottom: 1px solid @pale-grey;
|
|
10858
10916
|
|
|
10859
|
-
|
|
10860
|
-
|
|
10861
|
-
}
|
|
10917
|
+
.title {
|
|
10918
|
+
font-size: 18px;
|
|
10862
10919
|
}
|
|
10920
|
+
}
|
|
10863
10921
|
|
|
10864
|
-
|
|
10865
|
-
|
|
10922
|
+
.content {
|
|
10923
|
+
border-bottom: 1px solid @pale-grey;
|
|
10924
|
+
padding: 16px 0 16px 16px;
|
|
10866
10925
|
|
|
10867
|
-
|
|
10868
|
-
|
|
10869
|
-
}
|
|
10870
|
-
}
|
|
10926
|
+
.event-form {
|
|
10927
|
+
width: 88%;
|
|
10871
10928
|
|
|
10872
|
-
|
|
10873
|
-
|
|
10929
|
+
.field-wrapper {
|
|
10930
|
+
display: flex;
|
|
10931
|
+
align-items: center;
|
|
10932
|
+
margin: 15px 0 0 0;
|
|
10874
10933
|
|
|
10875
|
-
|
|
10876
|
-
|
|
10877
|
-
|
|
10878
|
-
|
|
10879
|
-
cursor: pointer;
|
|
10880
|
-
margin-left: 9px;
|
|
10881
|
-
.duskThree(0.64);
|
|
10882
|
-
color: @color;
|
|
10934
|
+
.field-label {
|
|
10935
|
+
font-size: 16px;
|
|
10936
|
+
margin-right: 10px;
|
|
10937
|
+
width: 195px;
|
|
10883
10938
|
}
|
|
10884
10939
|
|
|
10885
|
-
.
|
|
10886
|
-
width: 100%;
|
|
10887
|
-
white-space: nowrap;
|
|
10888
|
-
overflow: hidden;
|
|
10889
|
-
text-overflow: ellipsis;
|
|
10890
|
-
min-width: 0;
|
|
10891
|
-
}
|
|
10892
|
-
|
|
10893
|
-
.igz-action-panel {
|
|
10894
|
-
&.invocation-tooltip {
|
|
10895
|
-
height: 36px;
|
|
10896
|
-
width: 56px;
|
|
10897
|
-
}
|
|
10898
|
-
}
|
|
10899
|
-
}
|
|
10900
|
-
|
|
10901
|
-
.function-status {
|
|
10902
|
-
min-width: 100px;
|
|
10903
|
-
}
|
|
10904
|
-
}
|
|
10905
|
-
}
|
|
10906
|
-
}
|
|
10907
|
-
|
|
10908
|
-
.function-event-wrapper {
|
|
10909
|
-
width: 600px;
|
|
10910
|
-
margin-bottom: -23px;
|
|
10911
|
-
|
|
10912
|
-
.header {
|
|
10913
|
-
display: flex;
|
|
10914
|
-
justify-content: space-between;
|
|
10915
|
-
border-bottom: 1px solid @pale-grey;
|
|
10916
|
-
|
|
10917
|
-
.title {
|
|
10918
|
-
font-size: 18px;
|
|
10919
|
-
}
|
|
10920
|
-
}
|
|
10921
|
-
|
|
10922
|
-
.content {
|
|
10923
|
-
border-bottom: 1px solid @pale-grey;
|
|
10924
|
-
padding: 16px 0 16px 16px;
|
|
10925
|
-
|
|
10926
|
-
.event-form {
|
|
10927
|
-
width: 88%;
|
|
10928
|
-
|
|
10929
|
-
.field-wrapper {
|
|
10930
|
-
display: flex;
|
|
10931
|
-
align-items: center;
|
|
10932
|
-
margin: 15px 0 0 0;
|
|
10933
|
-
|
|
10934
|
-
.field-label {
|
|
10935
|
-
font-size: 16px;
|
|
10936
|
-
margin-right: 10px;
|
|
10937
|
-
width: 195px;
|
|
10938
|
-
}
|
|
10939
|
-
|
|
10940
|
-
.field-content {
|
|
10940
|
+
.field-content {
|
|
10941
10941
|
width: 100%;
|
|
10942
10942
|
|
|
10943
10943
|
.ncl-monaco {
|
|
@@ -10990,66 +10990,6 @@ ncl-navigation-tabs {
|
|
|
10990
10990
|
}
|
|
10991
10991
|
}
|
|
10992
10992
|
|
|
10993
|
-
.ncl-version-configuration {
|
|
10994
|
-
> .igz-scrollable-container {
|
|
10995
|
-
padding: 24px 25px 22px 41px;
|
|
10996
|
-
}
|
|
10997
|
-
|
|
10998
|
-
.ncl-version-configuration-wrapper {
|
|
10999
|
-
> .row {
|
|
11000
|
-
display: flex;
|
|
11001
|
-
justify-content: space-between;
|
|
11002
|
-
flex-wrap: wrap;
|
|
11003
|
-
|
|
11004
|
-
.configuration-block {
|
|
11005
|
-
padding: 16px 23px 16px;
|
|
11006
|
-
background-color: @white;
|
|
11007
|
-
border: solid 1px @pale-grey;
|
|
11008
|
-
flex-grow: 1;
|
|
11009
|
-
flex-basis: 500px;
|
|
11010
|
-
margin-right: 16px;
|
|
11011
|
-
margin-bottom: 16px;
|
|
11012
|
-
|
|
11013
|
-
&.invisible {
|
|
11014
|
-
visibility: hidden;
|
|
11015
|
-
}
|
|
11016
|
-
|
|
11017
|
-
.title {
|
|
11018
|
-
font-size: 16px;
|
|
11019
|
-
font-weight: bold;
|
|
11020
|
-
font-style: normal;
|
|
11021
|
-
font-stretch: normal;
|
|
11022
|
-
letter-spacing: normal;
|
|
11023
|
-
text-align: left;
|
|
11024
|
-
color: @dusk-three;
|
|
11025
|
-
margin-bottom: 12px;
|
|
11026
|
-
}
|
|
11027
|
-
|
|
11028
|
-
.row {
|
|
11029
|
-
.label {
|
|
11030
|
-
display: block;
|
|
11031
|
-
font-family: Roboto, sans-serif;
|
|
11032
|
-
font-size: 14px;
|
|
11033
|
-
font-weight: 500;
|
|
11034
|
-
font-style: normal;
|
|
11035
|
-
font-stretch: normal;
|
|
11036
|
-
letter-spacing: normal;
|
|
11037
|
-
text-align: left;
|
|
11038
|
-
color: @dusk-three;
|
|
11039
|
-
padding: 0;
|
|
11040
|
-
}
|
|
11041
|
-
}
|
|
11042
|
-
|
|
11043
|
-
.ncl-version-configuration-labels, .ncl-version-configuration-annotations {
|
|
11044
|
-
.more-info-wrapper {
|
|
11045
|
-
height: 20px;
|
|
11046
|
-
}
|
|
11047
|
-
}
|
|
11048
|
-
}
|
|
11049
|
-
}
|
|
11050
|
-
}
|
|
11051
|
-
}
|
|
11052
|
-
|
|
11053
10993
|
.ncl-edit-version-code {
|
|
11054
10994
|
height: 100%;
|
|
11055
10995
|
display: flex;
|
|
@@ -11262,6 +11202,66 @@ ncl-navigation-tabs {
|
|
|
11262
11202
|
}
|
|
11263
11203
|
}
|
|
11264
11204
|
|
|
11205
|
+
.ncl-version-configuration {
|
|
11206
|
+
> .igz-scrollable-container {
|
|
11207
|
+
padding: 24px 25px 22px 41px;
|
|
11208
|
+
}
|
|
11209
|
+
|
|
11210
|
+
.ncl-version-configuration-wrapper {
|
|
11211
|
+
> .row {
|
|
11212
|
+
display: flex;
|
|
11213
|
+
justify-content: space-between;
|
|
11214
|
+
flex-wrap: wrap;
|
|
11215
|
+
|
|
11216
|
+
.configuration-block {
|
|
11217
|
+
padding: 16px 23px 16px;
|
|
11218
|
+
background-color: @white;
|
|
11219
|
+
border: solid 1px @pale-grey;
|
|
11220
|
+
flex-grow: 1;
|
|
11221
|
+
flex-basis: 500px;
|
|
11222
|
+
margin-right: 16px;
|
|
11223
|
+
margin-bottom: 16px;
|
|
11224
|
+
|
|
11225
|
+
&.invisible {
|
|
11226
|
+
visibility: hidden;
|
|
11227
|
+
}
|
|
11228
|
+
|
|
11229
|
+
.title {
|
|
11230
|
+
font-size: 16px;
|
|
11231
|
+
font-weight: bold;
|
|
11232
|
+
font-style: normal;
|
|
11233
|
+
font-stretch: normal;
|
|
11234
|
+
letter-spacing: normal;
|
|
11235
|
+
text-align: left;
|
|
11236
|
+
color: @dusk-three;
|
|
11237
|
+
margin-bottom: 12px;
|
|
11238
|
+
}
|
|
11239
|
+
|
|
11240
|
+
.row {
|
|
11241
|
+
.label {
|
|
11242
|
+
display: block;
|
|
11243
|
+
font-family: Roboto, sans-serif;
|
|
11244
|
+
font-size: 14px;
|
|
11245
|
+
font-weight: 500;
|
|
11246
|
+
font-style: normal;
|
|
11247
|
+
font-stretch: normal;
|
|
11248
|
+
letter-spacing: normal;
|
|
11249
|
+
text-align: left;
|
|
11250
|
+
color: @dusk-three;
|
|
11251
|
+
padding: 0;
|
|
11252
|
+
}
|
|
11253
|
+
}
|
|
11254
|
+
|
|
11255
|
+
.ncl-version-configuration-labels, .ncl-version-configuration-annotations {
|
|
11256
|
+
.more-info-wrapper {
|
|
11257
|
+
height: 20px;
|
|
11258
|
+
}
|
|
11259
|
+
}
|
|
11260
|
+
}
|
|
11261
|
+
}
|
|
11262
|
+
}
|
|
11263
|
+
}
|
|
11264
|
+
|
|
11265
11265
|
.ncl-version-monitoring {
|
|
11266
11266
|
> .igz-scrollable-container {
|
|
11267
11267
|
padding: 24px 25px 22px 41px;
|
|
@@ -11820,76 +11820,6 @@ ncl-navigation-tabs {
|
|
|
11820
11820
|
}
|
|
11821
11821
|
}
|
|
11822
11822
|
|
|
11823
|
-
.function-import-wrapper-content {
|
|
11824
|
-
font-family: @font-family-sans-serif;
|
|
11825
|
-
padding-left: 3%;
|
|
11826
|
-
width: 96%;
|
|
11827
|
-
|
|
11828
|
-
.function-import-form {
|
|
11829
|
-
display: flex;
|
|
11830
|
-
align-items: flex-end;
|
|
11831
|
-
margin-bottom: 10px;
|
|
11832
|
-
|
|
11833
|
-
.projects-drop-down {
|
|
11834
|
-
margin-right: 48px;
|
|
11835
|
-
|
|
11836
|
-
.input-label {
|
|
11837
|
-
font-size: 14px;
|
|
11838
|
-
font-weight: 600;
|
|
11839
|
-
color: @dusk-three;
|
|
11840
|
-
}
|
|
11841
|
-
|
|
11842
|
-
igz-default-dropdown {
|
|
11843
|
-
.default-dropdown {
|
|
11844
|
-
background-color: @white;
|
|
11845
|
-
|
|
11846
|
-
.default-dropdown-field {
|
|
11847
|
-
&:focus {
|
|
11848
|
-
background-color: inherit;
|
|
11849
|
-
}
|
|
11850
|
-
}
|
|
11851
|
-
}
|
|
11852
|
-
}
|
|
11853
|
-
}
|
|
11854
|
-
|
|
11855
|
-
.function-import-actions-bar {
|
|
11856
|
-
display: flex;
|
|
11857
|
-
|
|
11858
|
-
.function-import-file-picker {
|
|
11859
|
-
.file-picker-wrapper {
|
|
11860
|
-
margin: 0;
|
|
11861
|
-
line-height: 34px;
|
|
11862
|
-
|
|
11863
|
-
.igz-icon-upload {
|
|
11864
|
-
margin-right: 10px;
|
|
11865
|
-
}
|
|
11866
|
-
}
|
|
11867
|
-
|
|
11868
|
-
.function-import-input {
|
|
11869
|
-
opacity: 0;
|
|
11870
|
-
position: absolute;
|
|
11871
|
-
z-index: -1;
|
|
11872
|
-
}
|
|
11873
|
-
}
|
|
11874
|
-
}
|
|
11875
|
-
}
|
|
11876
|
-
|
|
11877
|
-
.splash-screen {
|
|
11878
|
-
top: 0;
|
|
11879
|
-
}
|
|
11880
|
-
|
|
11881
|
-
.function-import-monaco {
|
|
11882
|
-
.ncl-monaco {
|
|
11883
|
-
height: 370px;
|
|
11884
|
-
width: 100%;
|
|
11885
|
-
|
|
11886
|
-
.monaco-code-editor {
|
|
11887
|
-
height: 100%;
|
|
11888
|
-
}
|
|
11889
|
-
}
|
|
11890
|
-
}
|
|
11891
|
-
}
|
|
11892
|
-
|
|
11893
11823
|
.test-events-pane-wrapper {
|
|
11894
11824
|
position: absolute;
|
|
11895
11825
|
height: 100%;
|
|
@@ -12578,17 +12508,87 @@ ncl-navigation-tabs {
|
|
|
12578
12508
|
}
|
|
12579
12509
|
}
|
|
12580
12510
|
|
|
12581
|
-
.function-
|
|
12582
|
-
|
|
12583
|
-
|
|
12584
|
-
|
|
12585
|
-
text-align: left;
|
|
12586
|
-
color: @dusk-three;
|
|
12587
|
-
}
|
|
12511
|
+
.function-import-wrapper-content {
|
|
12512
|
+
font-family: @font-family-sans-serif;
|
|
12513
|
+
padding-left: 3%;
|
|
12514
|
+
width: 96%;
|
|
12588
12515
|
|
|
12589
|
-
.
|
|
12590
|
-
|
|
12591
|
-
|
|
12516
|
+
.function-import-form {
|
|
12517
|
+
display: flex;
|
|
12518
|
+
align-items: flex-end;
|
|
12519
|
+
margin-bottom: 10px;
|
|
12520
|
+
|
|
12521
|
+
.projects-drop-down {
|
|
12522
|
+
margin-right: 48px;
|
|
12523
|
+
|
|
12524
|
+
.input-label {
|
|
12525
|
+
font-size: 14px;
|
|
12526
|
+
font-weight: 600;
|
|
12527
|
+
color: @dusk-three;
|
|
12528
|
+
}
|
|
12529
|
+
|
|
12530
|
+
igz-default-dropdown {
|
|
12531
|
+
.default-dropdown {
|
|
12532
|
+
background-color: @white;
|
|
12533
|
+
|
|
12534
|
+
.default-dropdown-field {
|
|
12535
|
+
&:focus {
|
|
12536
|
+
background-color: inherit;
|
|
12537
|
+
}
|
|
12538
|
+
}
|
|
12539
|
+
}
|
|
12540
|
+
}
|
|
12541
|
+
}
|
|
12542
|
+
|
|
12543
|
+
.function-import-actions-bar {
|
|
12544
|
+
display: flex;
|
|
12545
|
+
|
|
12546
|
+
.function-import-file-picker {
|
|
12547
|
+
.file-picker-wrapper {
|
|
12548
|
+
margin: 0;
|
|
12549
|
+
line-height: 34px;
|
|
12550
|
+
|
|
12551
|
+
.igz-icon-upload {
|
|
12552
|
+
margin-right: 10px;
|
|
12553
|
+
}
|
|
12554
|
+
}
|
|
12555
|
+
|
|
12556
|
+
.function-import-input {
|
|
12557
|
+
opacity: 0;
|
|
12558
|
+
position: absolute;
|
|
12559
|
+
z-index: -1;
|
|
12560
|
+
}
|
|
12561
|
+
}
|
|
12562
|
+
}
|
|
12563
|
+
}
|
|
12564
|
+
|
|
12565
|
+
.splash-screen {
|
|
12566
|
+
top: 0;
|
|
12567
|
+
}
|
|
12568
|
+
|
|
12569
|
+
.function-import-monaco {
|
|
12570
|
+
.ncl-monaco {
|
|
12571
|
+
height: 370px;
|
|
12572
|
+
width: 100%;
|
|
12573
|
+
|
|
12574
|
+
.monaco-code-editor {
|
|
12575
|
+
height: 100%;
|
|
12576
|
+
}
|
|
12577
|
+
}
|
|
12578
|
+
}
|
|
12579
|
+
}
|
|
12580
|
+
|
|
12581
|
+
.function-from-template-dialog-wrapper {
|
|
12582
|
+
.title {
|
|
12583
|
+
font-size: 20px;
|
|
12584
|
+
font-weight: 500;
|
|
12585
|
+
text-align: left;
|
|
12586
|
+
color: @dusk-three;
|
|
12587
|
+
}
|
|
12588
|
+
|
|
12589
|
+
.main-content {
|
|
12590
|
+
width: 500px;
|
|
12591
|
+
max-height: 500px;
|
|
12592
12592
|
|
|
12593
12593
|
form {
|
|
12594
12594
|
margin: 0 20px 0 0;
|
|
@@ -12614,105 +12614,399 @@ ncl-navigation-tabs {
|
|
|
12614
12614
|
}
|
|
12615
12615
|
}
|
|
12616
12616
|
|
|
12617
|
-
|
|
12618
|
-
|
|
12619
|
-
|
|
12617
|
+
.ncl-test-events-logs {
|
|
12618
|
+
padding: 6px 17px 25px;
|
|
12619
|
+
background-color: @white;
|
|
12620
12620
|
|
|
12621
|
-
.
|
|
12622
|
-
|
|
12621
|
+
.functional-buttons {
|
|
12622
|
+
.duskThree(0.64);
|
|
12623
12623
|
display: flex;
|
|
12624
|
-
justify-content:
|
|
12624
|
+
justify-content: flex-end;
|
|
12625
|
+
color: @color;
|
|
12626
|
+
font-size: 16px;
|
|
12625
12627
|
|
|
12626
|
-
|
|
12627
|
-
margin-
|
|
12628
|
-
}
|
|
12628
|
+
> div {
|
|
12629
|
+
margin-right: 24px;
|
|
12629
12630
|
|
|
12630
|
-
|
|
12631
|
-
|
|
12631
|
+
&:hover {
|
|
12632
|
+
color: @dusk-three;
|
|
12633
|
+
}
|
|
12632
12634
|
}
|
|
12635
|
+
}
|
|
12633
12636
|
|
|
12634
|
-
|
|
12635
|
-
|
|
12636
|
-
|
|
12637
|
-
|
|
12637
|
+
.collapsed-row {
|
|
12638
|
+
.black(0.2);
|
|
12639
|
+
display: flex;
|
|
12640
|
+
align-items: center;
|
|
12641
|
+
position: relative;
|
|
12642
|
+
height: 36px;
|
|
12643
|
+
background-color: @white;
|
|
12644
|
+
color: @dusk-three;
|
|
12645
|
+
box-shadow: 1.7px 1.1px 4px 0 @color;
|
|
12646
|
+
border: solid 1px @pale-grey;
|
|
12647
|
+
margin-bottom: 10px;
|
|
12638
12648
|
|
|
12639
|
-
|
|
12640
|
-
|
|
12649
|
+
.igz-icon-right {
|
|
12650
|
+
.duskThree(0.64);
|
|
12651
|
+
font-size: 12px;
|
|
12652
|
+
color: @color;
|
|
12653
|
+
margin: 0 8px 0 12px;
|
|
12641
12654
|
|
|
12642
|
-
|
|
12643
|
-
|
|
12655
|
+
&::before {
|
|
12656
|
+
vertical-align: text-bottom;
|
|
12644
12657
|
}
|
|
12658
|
+
}
|
|
12645
12659
|
|
|
12646
|
-
|
|
12647
|
-
|
|
12648
|
-
|
|
12660
|
+
.level-icon {
|
|
12661
|
+
display: inline-block;
|
|
12662
|
+
margin-right: 8px;
|
|
12663
|
+
width: 20px;
|
|
12664
|
+
text-align: center;
|
|
12665
|
+
|
|
12666
|
+
&::before {
|
|
12667
|
+
font-size: 16px;
|
|
12668
|
+
vertical-align: text-bottom;
|
|
12649
12669
|
}
|
|
12650
12670
|
|
|
12651
|
-
&.
|
|
12652
|
-
|
|
12653
|
-
|
|
12671
|
+
&.ncl-icon-debug {
|
|
12672
|
+
color: @orangish;
|
|
12673
|
+
|
|
12674
|
+
&::before {
|
|
12675
|
+
font-size: 18px;
|
|
12654
12676
|
}
|
|
12677
|
+
}
|
|
12655
12678
|
|
|
12656
|
-
|
|
12657
|
-
|
|
12679
|
+
&.igz-icon-info-round {
|
|
12680
|
+
color: @orangish;
|
|
12681
|
+
}
|
|
12658
12682
|
|
|
12659
|
-
|
|
12660
|
-
|
|
12661
|
-
|
|
12683
|
+
&.igz-icon-warning {
|
|
12684
|
+
color: @orangish;
|
|
12685
|
+
}
|
|
12662
12686
|
|
|
12663
|
-
|
|
12664
|
-
|
|
12665
|
-
margin: 0 17px 0 8px;
|
|
12666
|
-
font-size: 14px;
|
|
12667
|
-
font-weight: normal;
|
|
12668
|
-
font-style: normal;
|
|
12669
|
-
letter-spacing: normal;
|
|
12670
|
-
text-align: left;
|
|
12671
|
-
color: @color;
|
|
12672
|
-
}
|
|
12673
|
-
}
|
|
12674
|
-
}
|
|
12687
|
+
&.igz-icon-cancel-path {
|
|
12688
|
+
color: @orangish;
|
|
12675
12689
|
}
|
|
12676
12690
|
}
|
|
12677
12691
|
|
|
12678
|
-
.
|
|
12692
|
+
.date {
|
|
12693
|
+
display: inline-block;
|
|
12694
|
+
width: 230px;
|
|
12695
|
+
font-size: 14px;
|
|
12696
|
+
font-weight: bold;
|
|
12697
|
+
margin-right: 15px;
|
|
12698
|
+
}
|
|
12699
|
+
|
|
12700
|
+
.message {
|
|
12701
|
+
display: inline-block;
|
|
12702
|
+
width: 200px;
|
|
12703
|
+
margin-right: 30px;
|
|
12704
|
+
}
|
|
12705
|
+
|
|
12706
|
+
.ncl-icon-parameters {
|
|
12707
|
+
.duskThree(0.64);
|
|
12708
|
+
color: @color;
|
|
12709
|
+
font-size: 14px;
|
|
12710
|
+
position: absolute;
|
|
12711
|
+
top: 9px;
|
|
12712
|
+
right: 9px;
|
|
12713
|
+
}
|
|
12714
|
+
}
|
|
12715
|
+
|
|
12716
|
+
.expanded-row {
|
|
12717
|
+
background-color: @white;
|
|
12718
|
+
color: @dusk-three;
|
|
12719
|
+
border: solid 1px @pale-grey;
|
|
12720
|
+
margin-bottom: 10px;
|
|
12721
|
+
|
|
12722
|
+
.header {
|
|
12723
|
+
position: relative;
|
|
12679
12724
|
display: flex;
|
|
12680
|
-
|
|
12725
|
+
align-items: center;
|
|
12726
|
+
height: 34px;
|
|
12681
12727
|
|
|
12682
|
-
.
|
|
12683
|
-
.
|
|
12684
|
-
|
|
12685
|
-
|
|
12728
|
+
.igz-icon-down {
|
|
12729
|
+
.duskThree(0.64);
|
|
12730
|
+
font-size: 12px;
|
|
12731
|
+
color: @color;
|
|
12732
|
+
margin: 0 8px 0 12px;
|
|
12686
12733
|
|
|
12687
|
-
|
|
12688
|
-
|
|
12689
|
-
}
|
|
12734
|
+
&::before {
|
|
12735
|
+
vertical-align: text-bottom;
|
|
12690
12736
|
}
|
|
12691
12737
|
}
|
|
12692
12738
|
|
|
12693
|
-
|
|
12694
|
-
|
|
12739
|
+
.level-icon {
|
|
12740
|
+
display: inline-block;
|
|
12741
|
+
margin-right: 8px;
|
|
12742
|
+
width: 20px;
|
|
12743
|
+
text-align: center;
|
|
12695
12744
|
|
|
12696
|
-
|
|
12697
|
-
|
|
12745
|
+
&::before {
|
|
12746
|
+
font-size: 16px;
|
|
12747
|
+
vertical-align: text-bottom;
|
|
12698
12748
|
}
|
|
12699
12749
|
|
|
12700
|
-
|
|
12701
|
-
|
|
12702
|
-
|
|
12750
|
+
&.ncl-icon-debug {
|
|
12751
|
+
color: @orangish;
|
|
12752
|
+
|
|
12753
|
+
&::before {
|
|
12754
|
+
font-size: 18px;
|
|
12755
|
+
}
|
|
12703
12756
|
}
|
|
12704
12757
|
|
|
12705
|
-
&.
|
|
12706
|
-
|
|
12758
|
+
&.igz-icon-info-round {
|
|
12759
|
+
color: @orangish;
|
|
12707
12760
|
}
|
|
12708
|
-
}
|
|
12709
|
-
}
|
|
12710
|
-
}
|
|
12711
|
-
}
|
|
12712
12761
|
|
|
12713
|
-
|
|
12714
|
-
|
|
12715
|
-
|
|
12762
|
+
&.igz-icon-warning {
|
|
12763
|
+
color: @orangish;
|
|
12764
|
+
}
|
|
12765
|
+
|
|
12766
|
+
&.igz-icon-cancel-path {
|
|
12767
|
+
color: @orangish;
|
|
12768
|
+
}
|
|
12769
|
+
}
|
|
12770
|
+
|
|
12771
|
+
.date {
|
|
12772
|
+
display: inline-block;
|
|
12773
|
+
width: 230px;
|
|
12774
|
+
font-size: 14px;
|
|
12775
|
+
font-weight: bold;
|
|
12776
|
+
margin-right: 15px;
|
|
12777
|
+
}
|
|
12778
|
+
|
|
12779
|
+
.ncl-icon-parameters {
|
|
12780
|
+
.duskThree(0.64);
|
|
12781
|
+
position: absolute;
|
|
12782
|
+
top: 9px;
|
|
12783
|
+
right: 9px;
|
|
12784
|
+
color: @color;
|
|
12785
|
+
font-size: 14px;
|
|
12786
|
+
}
|
|
12787
|
+
}
|
|
12788
|
+
|
|
12789
|
+
.expanded-body {
|
|
12790
|
+
font-size: 14px;
|
|
12791
|
+
color: @dusk-three;
|
|
12792
|
+
|
|
12793
|
+
.error {
|
|
12794
|
+
width: 71%;
|
|
12795
|
+
border-radius: 3px;
|
|
12796
|
+
background-color: #fbe5e8;
|
|
12797
|
+
border: solid 1px @darkish-pink;
|
|
12798
|
+
color: @darkish-pink;
|
|
12799
|
+
word-wrap: break-word;
|
|
12800
|
+
margin-left: 62px;
|
|
12801
|
+
padding: 12px;
|
|
12802
|
+
margin-bottom: 16px;
|
|
12803
|
+
}
|
|
12804
|
+
|
|
12805
|
+
.message {
|
|
12806
|
+
display: inline-block;
|
|
12807
|
+
width: 70%;
|
|
12808
|
+
word-wrap: break-word;
|
|
12809
|
+
margin: 0 0 16px 62px;
|
|
12810
|
+
}
|
|
12811
|
+
|
|
12812
|
+
.parameters {
|
|
12813
|
+
padding: 0 62px 16px;
|
|
12814
|
+
|
|
12815
|
+
.parameters-header {
|
|
12816
|
+
font-weight: bold;
|
|
12817
|
+
}
|
|
12818
|
+
|
|
12819
|
+
> div {
|
|
12820
|
+
display: flex;
|
|
12821
|
+
line-height: 2;
|
|
12822
|
+
|
|
12823
|
+
.labels {
|
|
12824
|
+
color: @greyish-purple;
|
|
12825
|
+
font-size: 14px;
|
|
12826
|
+
width: 30%;
|
|
12827
|
+
}
|
|
12828
|
+
|
|
12829
|
+
.values {
|
|
12830
|
+
color: @dusk-three;
|
|
12831
|
+
font-size: 14px;
|
|
12832
|
+
width: 70%;
|
|
12833
|
+
}
|
|
12834
|
+
}
|
|
12835
|
+
}
|
|
12836
|
+
}
|
|
12837
|
+
}
|
|
12838
|
+
|
|
12839
|
+
.no-logs {
|
|
12840
|
+
margin: 10px auto 0;
|
|
12841
|
+
font-size: 14px;
|
|
12842
|
+
color: @pale-grey;
|
|
12843
|
+
text-align: center;
|
|
12844
|
+
}
|
|
12845
|
+
}
|
|
12846
|
+
.ncl-test-events-navigation-tabs {
|
|
12847
|
+
display: flex;
|
|
12848
|
+
background: #f8f8fb;
|
|
12849
|
+
height: 40px;
|
|
12850
|
+
border-top: 1px solid @pale-grey;
|
|
12851
|
+
border-bottom: 1px solid @pale-grey;
|
|
12852
|
+
|
|
12853
|
+
.test-events-navigation-tab {
|
|
12854
|
+
.duskThree(0.64);
|
|
12855
|
+
position: relative;
|
|
12856
|
+
float: left;
|
|
12857
|
+
height: 27px;
|
|
12858
|
+
padding: 10px 40px 0;
|
|
12859
|
+
font-family: @font-family-sans-serif;
|
|
12860
|
+
color: @color;
|
|
12861
|
+
font-size: 13px;
|
|
12862
|
+
text-align: center;
|
|
12863
|
+
cursor: pointer;
|
|
12864
|
+
border-bottom: none;
|
|
12865
|
+
box-sizing: content-box;
|
|
12866
|
+
|
|
12867
|
+
&.active, &.active:hover {
|
|
12868
|
+
background: none;
|
|
12869
|
+
color: @dusk-three;
|
|
12870
|
+
border-bottom: 2px solid @dusk-three;
|
|
12871
|
+
font-weight: bold;
|
|
12872
|
+
|
|
12873
|
+
.badge {
|
|
12874
|
+
color: @white;
|
|
12875
|
+
background-color: @light-grey-blue;
|
|
12876
|
+
}
|
|
12877
|
+
}
|
|
12878
|
+
|
|
12879
|
+
.badge {
|
|
12880
|
+
display: inline-block;
|
|
12881
|
+
min-width: 22px;
|
|
12882
|
+
padding: 3px 7px;
|
|
12883
|
+
font-size: 12px;
|
|
12884
|
+
font-weight: 500;
|
|
12885
|
+
color: @greyish-purple;
|
|
12886
|
+
line-height: 1;
|
|
12887
|
+
vertical-align: middle;
|
|
12888
|
+
white-space: nowrap;
|
|
12889
|
+
text-align: center;
|
|
12890
|
+
background-color: @pale-grey;
|
|
12891
|
+
border-radius: 7.5px;
|
|
12892
|
+
margin-left: 7px;
|
|
12893
|
+
margin-top: -4px;
|
|
12894
|
+
}
|
|
12895
|
+
}
|
|
12896
|
+
|
|
12897
|
+
.default-dropdown {
|
|
12898
|
+
float: left;
|
|
12899
|
+
width: 105px;
|
|
12900
|
+
|
|
12901
|
+
.default-dropdown-field:not(:hover) {
|
|
12902
|
+
border-color: transparent;
|
|
12903
|
+
}
|
|
12904
|
+
|
|
12905
|
+
.default-dropdown-container {
|
|
12906
|
+
z-index: 3;
|
|
12907
|
+
}
|
|
12908
|
+
}
|
|
12909
|
+
}
|
|
12910
|
+
|
|
12911
|
+
@desktop: 1350px;
|
|
12912
|
+
@desktop-low: 1202px;
|
|
12913
|
+
@desktop-middle: 1550px;
|
|
12914
|
+
|
|
12915
|
+
.ncl-version-configuration-basic-settings {
|
|
12916
|
+
.row {
|
|
12917
|
+
display: flex;
|
|
12918
|
+
justify-content: space-between;
|
|
12919
|
+
|
|
12920
|
+
&:not(:last-child) {
|
|
12921
|
+
margin-bottom: 23px;
|
|
12922
|
+
}
|
|
12923
|
+
|
|
12924
|
+
&:last-child {
|
|
12925
|
+
margin-bottom: 4px;
|
|
12926
|
+
}
|
|
12927
|
+
|
|
12928
|
+
&.enable-checkbox {
|
|
12929
|
+
justify-content: flex-start;
|
|
12930
|
+
margin-bottom: 18px;
|
|
12931
|
+
}
|
|
12932
|
+
|
|
12933
|
+
> div {
|
|
12934
|
+
flex: 1;
|
|
12935
|
+
|
|
12936
|
+
&:not(:last-child) {
|
|
12937
|
+
margin-right: 46px;
|
|
12938
|
+
}
|
|
12939
|
+
|
|
12940
|
+
.label {
|
|
12941
|
+
padding: 0;
|
|
12942
|
+
margin-bottom: 5px;
|
|
12943
|
+
}
|
|
12944
|
+
|
|
12945
|
+
&.timeout-block {
|
|
12946
|
+
.label {
|
|
12947
|
+
margin-bottom: 3px;
|
|
12948
|
+
}
|
|
12949
|
+
|
|
12950
|
+
.timeout-values {
|
|
12951
|
+
margin-left: 27px;
|
|
12952
|
+
|
|
12953
|
+
.inputs {
|
|
12954
|
+
display: flex;
|
|
12955
|
+
align-items: center;
|
|
12956
|
+
|
|
12957
|
+
.values-label {
|
|
12958
|
+
.duskThree(0.9);
|
|
12959
|
+
margin: 0 17px 0 8px;
|
|
12960
|
+
font-size: 14px;
|
|
12961
|
+
font-weight: normal;
|
|
12962
|
+
font-style: normal;
|
|
12963
|
+
letter-spacing: normal;
|
|
12964
|
+
text-align: left;
|
|
12965
|
+
color: @color;
|
|
12966
|
+
}
|
|
12967
|
+
}
|
|
12968
|
+
}
|
|
12969
|
+
}
|
|
12970
|
+
}
|
|
12971
|
+
|
|
12972
|
+
.logger-block {
|
|
12973
|
+
display: flex;
|
|
12974
|
+
margin-top: 3px;
|
|
12975
|
+
|
|
12976
|
+
.logger-dropdown {
|
|
12977
|
+
.default-dropdown {
|
|
12978
|
+
position: relative;
|
|
12979
|
+
height: 36px;
|
|
12980
|
+
|
|
12981
|
+
.dropdown-overlap {
|
|
12982
|
+
z-index: 100;
|
|
12983
|
+
}
|
|
12984
|
+
}
|
|
12985
|
+
}
|
|
12986
|
+
|
|
12987
|
+
> div {
|
|
12988
|
+
flex: 1;
|
|
12989
|
+
|
|
12990
|
+
&:not(:last-child) {
|
|
12991
|
+
margin-right: 16px;
|
|
12992
|
+
}
|
|
12993
|
+
|
|
12994
|
+
.label {
|
|
12995
|
+
padding: 0;
|
|
12996
|
+
margin-bottom: 5px;
|
|
12997
|
+
}
|
|
12998
|
+
|
|
12999
|
+
&.logger-input {
|
|
13000
|
+
flex-grow: 1.95;
|
|
13001
|
+
}
|
|
13002
|
+
}
|
|
13003
|
+
}
|
|
13004
|
+
}
|
|
13005
|
+
}
|
|
13006
|
+
|
|
13007
|
+
.ncl-version-configuration-build {
|
|
13008
|
+
&.disabled {
|
|
13009
|
+
opacity: .5;
|
|
12716
13010
|
}
|
|
12717
13011
|
|
|
12718
13012
|
.build-field {
|
|
@@ -13017,70 +13311,6 @@ ncl-navigation-tabs {
|
|
|
13017
13311
|
}
|
|
13018
13312
|
}
|
|
13019
13313
|
|
|
13020
|
-
.ncl-version-configuration-volumes {
|
|
13021
|
-
.ncl-version-volume {
|
|
13022
|
-
.common-table-header {
|
|
13023
|
-
border: none;
|
|
13024
|
-
padding-left: 40px;
|
|
13025
|
-
padding-right: 60px;
|
|
13026
|
-
|
|
13027
|
-
.common-table-cell {
|
|
13028
|
-
font-size: 14px;
|
|
13029
|
-
font-weight: bold;
|
|
13030
|
-
letter-spacing: normal;
|
|
13031
|
-
color: @dusk-three;
|
|
13032
|
-
height: 46px;
|
|
13033
|
-
}
|
|
13034
|
-
|
|
13035
|
-
&.item-header {
|
|
13036
|
-
display: flex;
|
|
13037
|
-
|
|
13038
|
-
.item-name {
|
|
13039
|
-
width: 25%;
|
|
13040
|
-
padding-left: 0;
|
|
13041
|
-
}
|
|
13042
|
-
|
|
13043
|
-
.item-class {
|
|
13044
|
-
width: 20%;
|
|
13045
|
-
}
|
|
13046
|
-
|
|
13047
|
-
.item-info {
|
|
13048
|
-
width: 55%;
|
|
13049
|
-
}
|
|
13050
|
-
}
|
|
13051
|
-
}
|
|
13052
|
-
|
|
13053
|
-
.common-table-body {
|
|
13054
|
-
.ncl-collapsing-row .item-row {
|
|
13055
|
-
.item-name {
|
|
13056
|
-
padding-left: 0;
|
|
13057
|
-
width: 25%;
|
|
13058
|
-
}
|
|
13059
|
-
|
|
13060
|
-
.item-class {
|
|
13061
|
-
width: 20%;
|
|
13062
|
-
}
|
|
13063
|
-
|
|
13064
|
-
.item-info {
|
|
13065
|
-
width: 55%;
|
|
13066
|
-
}
|
|
13067
|
-
}
|
|
13068
|
-
|
|
13069
|
-
.common-table-row {
|
|
13070
|
-
&:not(.read-only):hover {
|
|
13071
|
-
.common-table-cells-container {
|
|
13072
|
-
background-color: @white;
|
|
13073
|
-
}
|
|
13074
|
-
|
|
13075
|
-
.actions-menu {
|
|
13076
|
-
background-color: @white;
|
|
13077
|
-
}
|
|
13078
|
-
}
|
|
13079
|
-
}
|
|
13080
|
-
}
|
|
13081
|
-
}
|
|
13082
|
-
}
|
|
13083
|
-
|
|
13084
13314
|
.ncl-version-configuration-runtime-attributes {
|
|
13085
13315
|
.row:not(.info-row) {
|
|
13086
13316
|
display: flex;
|
|
@@ -13132,298 +13362,68 @@ ncl-navigation-tabs {
|
|
|
13132
13362
|
}
|
|
13133
13363
|
}
|
|
13134
13364
|
|
|
13135
|
-
.ncl-
|
|
13136
|
-
|
|
13137
|
-
|
|
13138
|
-
|
|
13139
|
-
|
|
13140
|
-
|
|
13141
|
-
display: flex;
|
|
13142
|
-
justify-content: flex-end;
|
|
13143
|
-
color: @color;
|
|
13144
|
-
font-size: 16px;
|
|
13145
|
-
|
|
13146
|
-
> div {
|
|
13147
|
-
margin-right: 24px;
|
|
13365
|
+
.ncl-version-configuration-volumes {
|
|
13366
|
+
.ncl-version-volume {
|
|
13367
|
+
.common-table-header {
|
|
13368
|
+
border: none;
|
|
13369
|
+
padding-left: 40px;
|
|
13370
|
+
padding-right: 60px;
|
|
13148
13371
|
|
|
13149
|
-
|
|
13372
|
+
.common-table-cell {
|
|
13373
|
+
font-size: 14px;
|
|
13374
|
+
font-weight: bold;
|
|
13375
|
+
letter-spacing: normal;
|
|
13150
13376
|
color: @dusk-three;
|
|
13377
|
+
height: 46px;
|
|
13151
13378
|
}
|
|
13152
|
-
}
|
|
13153
|
-
}
|
|
13154
|
-
|
|
13155
|
-
.collapsed-row {
|
|
13156
|
-
.black(0.2);
|
|
13157
|
-
display: flex;
|
|
13158
|
-
align-items: center;
|
|
13159
|
-
position: relative;
|
|
13160
|
-
height: 36px;
|
|
13161
|
-
background-color: @white;
|
|
13162
|
-
color: @dusk-three;
|
|
13163
|
-
box-shadow: 1.7px 1.1px 4px 0 @color;
|
|
13164
|
-
border: solid 1px @pale-grey;
|
|
13165
|
-
margin-bottom: 10px;
|
|
13166
|
-
|
|
13167
|
-
.igz-icon-right {
|
|
13168
|
-
.duskThree(0.64);
|
|
13169
|
-
font-size: 12px;
|
|
13170
|
-
color: @color;
|
|
13171
|
-
margin: 0 8px 0 12px;
|
|
13172
|
-
|
|
13173
|
-
&::before {
|
|
13174
|
-
vertical-align: text-bottom;
|
|
13175
|
-
}
|
|
13176
|
-
}
|
|
13177
|
-
|
|
13178
|
-
.level-icon {
|
|
13179
|
-
display: inline-block;
|
|
13180
|
-
margin-right: 8px;
|
|
13181
|
-
width: 20px;
|
|
13182
|
-
text-align: center;
|
|
13183
|
-
|
|
13184
|
-
&::before {
|
|
13185
|
-
font-size: 16px;
|
|
13186
|
-
vertical-align: text-bottom;
|
|
13187
|
-
}
|
|
13188
|
-
|
|
13189
|
-
&.ncl-icon-debug {
|
|
13190
|
-
color: @orangish;
|
|
13191
|
-
|
|
13192
|
-
&::before {
|
|
13193
|
-
font-size: 18px;
|
|
13194
|
-
}
|
|
13195
|
-
}
|
|
13196
|
-
|
|
13197
|
-
&.igz-icon-info-round {
|
|
13198
|
-
color: @orangish;
|
|
13199
|
-
}
|
|
13200
|
-
|
|
13201
|
-
&.igz-icon-warning {
|
|
13202
|
-
color: @orangish;
|
|
13203
|
-
}
|
|
13204
|
-
|
|
13205
|
-
&.igz-icon-cancel-path {
|
|
13206
|
-
color: @orangish;
|
|
13207
|
-
}
|
|
13208
|
-
}
|
|
13209
|
-
|
|
13210
|
-
.date {
|
|
13211
|
-
display: inline-block;
|
|
13212
|
-
width: 230px;
|
|
13213
|
-
font-size: 14px;
|
|
13214
|
-
font-weight: bold;
|
|
13215
|
-
margin-right: 15px;
|
|
13216
|
-
}
|
|
13217
13379
|
|
|
13218
|
-
|
|
13219
|
-
|
|
13220
|
-
width: 200px;
|
|
13221
|
-
margin-right: 30px;
|
|
13222
|
-
}
|
|
13223
|
-
|
|
13224
|
-
.ncl-icon-parameters {
|
|
13225
|
-
.duskThree(0.64);
|
|
13226
|
-
color: @color;
|
|
13227
|
-
font-size: 14px;
|
|
13228
|
-
position: absolute;
|
|
13229
|
-
top: 9px;
|
|
13230
|
-
right: 9px;
|
|
13231
|
-
}
|
|
13232
|
-
}
|
|
13233
|
-
|
|
13234
|
-
.expanded-row {
|
|
13235
|
-
background-color: @white;
|
|
13236
|
-
color: @dusk-three;
|
|
13237
|
-
border: solid 1px @pale-grey;
|
|
13238
|
-
margin-bottom: 10px;
|
|
13239
|
-
|
|
13240
|
-
.header {
|
|
13241
|
-
position: relative;
|
|
13242
|
-
display: flex;
|
|
13243
|
-
align-items: center;
|
|
13244
|
-
height: 34px;
|
|
13245
|
-
|
|
13246
|
-
.igz-icon-down {
|
|
13247
|
-
.duskThree(0.64);
|
|
13248
|
-
font-size: 12px;
|
|
13249
|
-
color: @color;
|
|
13250
|
-
margin: 0 8px 0 12px;
|
|
13380
|
+
&.item-header {
|
|
13381
|
+
display: flex;
|
|
13251
13382
|
|
|
13252
|
-
|
|
13253
|
-
|
|
13383
|
+
.item-name {
|
|
13384
|
+
width: 25%;
|
|
13385
|
+
padding-left: 0;
|
|
13254
13386
|
}
|
|
13255
|
-
}
|
|
13256
13387
|
|
|
13257
|
-
|
|
13258
|
-
|
|
13259
|
-
margin-right: 8px;
|
|
13260
|
-
width: 20px;
|
|
13261
|
-
text-align: center;
|
|
13262
|
-
|
|
13263
|
-
&::before {
|
|
13264
|
-
font-size: 16px;
|
|
13265
|
-
vertical-align: text-bottom;
|
|
13388
|
+
.item-class {
|
|
13389
|
+
width: 20%;
|
|
13266
13390
|
}
|
|
13267
13391
|
|
|
13268
|
-
|
|
13269
|
-
|
|
13270
|
-
|
|
13271
|
-
&::before {
|
|
13272
|
-
font-size: 18px;
|
|
13273
|
-
}
|
|
13392
|
+
.item-info {
|
|
13393
|
+
width: 55%;
|
|
13274
13394
|
}
|
|
13395
|
+
}
|
|
13396
|
+
}
|
|
13275
13397
|
|
|
13276
|
-
|
|
13277
|
-
|
|
13398
|
+
.common-table-body {
|
|
13399
|
+
.ncl-collapsing-row .item-row {
|
|
13400
|
+
.item-name {
|
|
13401
|
+
padding-left: 0;
|
|
13402
|
+
width: 25%;
|
|
13278
13403
|
}
|
|
13279
13404
|
|
|
13280
|
-
|
|
13281
|
-
|
|
13405
|
+
.item-class {
|
|
13406
|
+
width: 20%;
|
|
13282
13407
|
}
|
|
13283
13408
|
|
|
13284
|
-
|
|
13285
|
-
|
|
13409
|
+
.item-info {
|
|
13410
|
+
width: 55%;
|
|
13286
13411
|
}
|
|
13287
13412
|
}
|
|
13288
13413
|
|
|
13289
|
-
.
|
|
13290
|
-
|
|
13291
|
-
|
|
13292
|
-
|
|
13293
|
-
font-weight: bold;
|
|
13294
|
-
margin-right: 15px;
|
|
13295
|
-
}
|
|
13296
|
-
|
|
13297
|
-
.ncl-icon-parameters {
|
|
13298
|
-
.duskThree(0.64);
|
|
13299
|
-
position: absolute;
|
|
13300
|
-
top: 9px;
|
|
13301
|
-
right: 9px;
|
|
13302
|
-
color: @color;
|
|
13303
|
-
font-size: 14px;
|
|
13304
|
-
}
|
|
13305
|
-
}
|
|
13306
|
-
|
|
13307
|
-
.expanded-body {
|
|
13308
|
-
font-size: 14px;
|
|
13309
|
-
color: @dusk-three;
|
|
13310
|
-
|
|
13311
|
-
.error {
|
|
13312
|
-
width: 71%;
|
|
13313
|
-
border-radius: 3px;
|
|
13314
|
-
background-color: #fbe5e8;
|
|
13315
|
-
border: solid 1px @darkish-pink;
|
|
13316
|
-
color: @darkish-pink;
|
|
13317
|
-
word-wrap: break-word;
|
|
13318
|
-
margin-left: 62px;
|
|
13319
|
-
padding: 12px;
|
|
13320
|
-
margin-bottom: 16px;
|
|
13321
|
-
}
|
|
13322
|
-
|
|
13323
|
-
.message {
|
|
13324
|
-
display: inline-block;
|
|
13325
|
-
width: 70%;
|
|
13326
|
-
word-wrap: break-word;
|
|
13327
|
-
margin: 0 0 16px 62px;
|
|
13328
|
-
}
|
|
13329
|
-
|
|
13330
|
-
.parameters {
|
|
13331
|
-
padding: 0 62px 16px;
|
|
13332
|
-
|
|
13333
|
-
.parameters-header {
|
|
13334
|
-
font-weight: bold;
|
|
13335
|
-
}
|
|
13336
|
-
|
|
13337
|
-
> div {
|
|
13338
|
-
display: flex;
|
|
13339
|
-
line-height: 2;
|
|
13340
|
-
|
|
13341
|
-
.labels {
|
|
13342
|
-
color: @greyish-purple;
|
|
13343
|
-
font-size: 14px;
|
|
13344
|
-
width: 30%;
|
|
13414
|
+
.common-table-row {
|
|
13415
|
+
&:not(.read-only):hover {
|
|
13416
|
+
.common-table-cells-container {
|
|
13417
|
+
background-color: @white;
|
|
13345
13418
|
}
|
|
13346
13419
|
|
|
13347
|
-
.
|
|
13348
|
-
color: @
|
|
13349
|
-
font-size: 14px;
|
|
13350
|
-
width: 70%;
|
|
13420
|
+
.actions-menu {
|
|
13421
|
+
background-color: @white;
|
|
13351
13422
|
}
|
|
13352
13423
|
}
|
|
13353
13424
|
}
|
|
13354
13425
|
}
|
|
13355
13426
|
}
|
|
13356
|
-
|
|
13357
|
-
.no-logs {
|
|
13358
|
-
margin: 10px auto 0;
|
|
13359
|
-
font-size: 14px;
|
|
13360
|
-
color: @pale-grey;
|
|
13361
|
-
text-align: center;
|
|
13362
|
-
}
|
|
13363
|
-
}
|
|
13364
|
-
.ncl-test-events-navigation-tabs {
|
|
13365
|
-
display: flex;
|
|
13366
|
-
background: #f8f8fb;
|
|
13367
|
-
height: 40px;
|
|
13368
|
-
border-top: 1px solid @pale-grey;
|
|
13369
|
-
border-bottom: 1px solid @pale-grey;
|
|
13370
|
-
|
|
13371
|
-
.test-events-navigation-tab {
|
|
13372
|
-
.duskThree(0.64);
|
|
13373
|
-
position: relative;
|
|
13374
|
-
float: left;
|
|
13375
|
-
height: 27px;
|
|
13376
|
-
padding: 10px 40px 0;
|
|
13377
|
-
font-family: @font-family-sans-serif;
|
|
13378
|
-
color: @color;
|
|
13379
|
-
font-size: 13px;
|
|
13380
|
-
text-align: center;
|
|
13381
|
-
cursor: pointer;
|
|
13382
|
-
border-bottom: none;
|
|
13383
|
-
box-sizing: content-box;
|
|
13384
|
-
|
|
13385
|
-
&.active, &.active:hover {
|
|
13386
|
-
background: none;
|
|
13387
|
-
color: @dusk-three;
|
|
13388
|
-
border-bottom: 2px solid @dusk-three;
|
|
13389
|
-
font-weight: bold;
|
|
13390
|
-
|
|
13391
|
-
.badge {
|
|
13392
|
-
color: @white;
|
|
13393
|
-
background-color: @light-grey-blue;
|
|
13394
|
-
}
|
|
13395
|
-
}
|
|
13396
|
-
|
|
13397
|
-
.badge {
|
|
13398
|
-
display: inline-block;
|
|
13399
|
-
min-width: 22px;
|
|
13400
|
-
padding: 3px 7px;
|
|
13401
|
-
font-size: 12px;
|
|
13402
|
-
font-weight: 500;
|
|
13403
|
-
color: @greyish-purple;
|
|
13404
|
-
line-height: 1;
|
|
13405
|
-
vertical-align: middle;
|
|
13406
|
-
white-space: nowrap;
|
|
13407
|
-
text-align: center;
|
|
13408
|
-
background-color: @pale-grey;
|
|
13409
|
-
border-radius: 7.5px;
|
|
13410
|
-
margin-left: 7px;
|
|
13411
|
-
margin-top: -4px;
|
|
13412
|
-
}
|
|
13413
|
-
}
|
|
13414
|
-
|
|
13415
|
-
.default-dropdown {
|
|
13416
|
-
float: left;
|
|
13417
|
-
width: 105px;
|
|
13418
|
-
|
|
13419
|
-
.default-dropdown-field:not(:hover) {
|
|
13420
|
-
border-color: transparent;
|
|
13421
|
-
}
|
|
13422
|
-
|
|
13423
|
-
.default-dropdown-container {
|
|
13424
|
-
z-index: 3;
|
|
13425
|
-
}
|
|
13426
|
-
}
|
|
13427
13427
|
}
|
|
13428
13428
|
|
|
13429
13429
|
.version-configuration-build-dialog-wrapper {
|