iguazio.dashboard-controls 1.2.2 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3666,6 +3666,149 @@ ncl-functions {
3666
3666
  }
3667
3667
  }
3668
3668
 
3669
+ /**
3670
+ UI.Layout CSS
3671
+ *************************************/
3672
+ .stretch {
3673
+ position: absolute;
3674
+ top: 0;
3675
+ left: 0;
3676
+ right: 0;
3677
+ bottom: 0;
3678
+ /* Can be changed by hand ;)*/
3679
+ overflow: auto;
3680
+ }
3681
+
3682
+ .animate-row, .animate-column {
3683
+ -webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3684
+ -moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3685
+ -ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3686
+ -o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3687
+ transition: all .2s cubic-bezier(0, 0, 0.2, 1);
3688
+ }
3689
+
3690
+ .ui-splitbar {
3691
+ display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
3692
+ display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
3693
+ display: -ms-flexbox; /* TWEENER - IE 10 */
3694
+ display: -webkit-flex; /* NEW - Chrome */
3695
+ display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
3696
+ -webkit-justify-content: center;
3697
+ justify-content: center;
3698
+
3699
+ background-color: #ffffff;
3700
+ right: auto;
3701
+ position: absolute;
3702
+ z-index: 1;
3703
+ }
3704
+
3705
+ .ui-layout-row > .ui-splitbar {
3706
+ height: 8px;
3707
+ width: 100%;
3708
+ cursor: row-resize;
3709
+ text-align: center;
3710
+ justify-content: center;
3711
+ align-items: center;
3712
+ background: linear-gradient(to bottom, #fff 0%, #eee 100%);
3713
+ overflow-y: hidden;
3714
+ }
3715
+
3716
+ .ui-layout-column > .ui-splitbar {
3717
+ width: 8px;
3718
+ height: 100%;
3719
+ cursor: col-resize;
3720
+ -webkit-flex-direction: column;
3721
+ flex-direction: column;
3722
+ background: linear-gradient(to right, #fff 0%, #eee 100%);
3723
+ overflow-x: hidden;
3724
+ }
3725
+
3726
+ .ui-layout-column > .ui-splitbar > a,
3727
+ .ui-layout-row > .ui-splitbar > a {
3728
+ cursor: pointer;
3729
+ text-align: center;
3730
+ font-size: 16px;
3731
+ color: #aaa;
3732
+ }
3733
+
3734
+ .ui-layout-column > .ui-splitbar > a:nth-child(2) {
3735
+ margin-top: 0.35rem;
3736
+ }
3737
+
3738
+ .ui-layout-row > .ui-splitbar > a:nth-child(2) {
3739
+ margin-left: 0.35rem;
3740
+ }
3741
+
3742
+
3743
+ /**
3744
+ * Icons
3745
+ **/
3746
+
3747
+ .ui-splitbar-icon {
3748
+ width: 0;
3749
+ height: 0;
3750
+ display: inline-block;
3751
+ }
3752
+
3753
+ .ui-splitbar-icon-up {
3754
+ border-left: 0.45em solid transparent;
3755
+ border-right: 0.45em solid transparent;
3756
+ border-bottom: 0.45em solid;
3757
+ }
3758
+
3759
+ .ui-splitbar-icon-down {
3760
+ border-left: 0.45em solid transparent;
3761
+ border-right: 0.45em solid transparent;
3762
+ border-top: 0.45em solid;
3763
+ margin-right: 0.45em;
3764
+ }
3765
+
3766
+ .ui-splitbar-icon-right {
3767
+ border-top: 0.45em solid transparent;
3768
+ border-bottom: 0.45em solid transparent;
3769
+ border-left: 0.45em solid;
3770
+
3771
+ }
3772
+
3773
+ .ui-splitbar-icon-left {
3774
+ border-top: 0.45em solid transparent;
3775
+ border-bottom: 0.45em solid transparent;
3776
+ border-right: 0.45em solid;
3777
+ margin-top: 0.45em;
3778
+ }
3779
+
3780
+ /* Allow disabling of icons */
3781
+ .no-toggle .ui-splitbar-icon {
3782
+ display: none;
3783
+ }
3784
+
3785
+ @media only screen and (max-device-width: 480px) {
3786
+ .no-mobile-toggle .ui-splitbar-icon {
3787
+ display: none;
3788
+ }
3789
+ }
3790
+
3791
+ @media print {
3792
+ .ui-splitbar {
3793
+ display: none;
3794
+ }
3795
+
3796
+ .stretch {
3797
+ position: relative;
3798
+ }
3799
+
3800
+ /* The last item can take up any amount of space. */
3801
+ .stretch.ui-layout-container:last-child {
3802
+ position: static;
3803
+ overflow: visible;
3804
+ }
3805
+ }
3806
+
3807
+ /* Make sure hidden elements are in fact not rendered. */
3808
+ .ui-layout-hidden {
3809
+ display: none;
3810
+ }
3811
+
3669
3812
  /*
3670
3813
  == malihu jquery custom scrollbar plugin ==
3671
3814
  Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
@@ -5388,208 +5531,65 @@ yx-axis
5388
5531
 
5389
5532
  /* ---------------------------------------- */
5390
5533
 
5391
- /**
5392
- UI.Layout CSS
5393
- *************************************/
5394
- .stretch {
5395
- position: absolute;
5396
- top: 0;
5397
- left: 0;
5398
- right: 0;
5399
- bottom: 0;
5400
- /* Can be changed by hand ;)*/
5401
- overflow: auto;
5402
- }
5534
+ .action-checkbox {
5535
+ .action-checkbox-color-set();
5403
5536
 
5404
- .animate-row, .animate-column {
5405
- -webkit-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5406
- -moz-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5407
- -ms-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5408
- -o-transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5409
- transition: all .2s cubic-bezier(0, 0, 0.2, 1);
5410
- }
5537
+ line-height: 16px;
5538
+ text-align: center;
5411
5539
 
5412
- .ui-splitbar {
5413
- display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
5414
- display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
5415
- display: -ms-flexbox; /* TWEENER - IE 10 */
5416
- display: -webkit-flex; /* NEW - Chrome */
5417
- display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
5418
- -webkit-justify-content: center;
5419
- justify-content: center;
5540
+ .check-item {
5541
+ font-size: 16px;
5542
+ cursor: pointer;
5543
+ line-height: 1;
5544
+ vertical-align: middle;
5420
5545
 
5421
- background-color: #ffffff;
5422
- right: auto;
5423
- position: absolute;
5424
- z-index: 1;
5425
- }
5546
+ &.igz-icon-checkbox-unchecked {
5547
+ color: @icon-checkbox-unchecked;
5548
+ }
5426
5549
 
5427
- .ui-layout-row > .ui-splitbar {
5428
- height: 8px;
5429
- width: 100%;
5430
- cursor: row-resize;
5431
- text-align: center;
5432
- justify-content: center;
5433
- align-items: center;
5434
- background: linear-gradient(to bottom, #fff 0%, #eee 100%);
5435
- overflow-y: hidden;
5550
+ &.igz-icon-checkbox-checked {
5551
+ color: @icon-checkbox-checked;
5552
+ }
5553
+ }
5436
5554
  }
5555
+ .action-checkbox-all {
5556
+ .action-checkbox-all-color-set();
5437
5557
 
5438
- .ui-layout-column > .ui-splitbar {
5439
- width: 8px;
5440
- height: 100%;
5441
- cursor: col-resize;
5442
- -webkit-flex-direction: column;
5443
- flex-direction: column;
5444
- background: linear-gradient(to right, #fff 0%, #eee 100%);
5445
- overflow-x: hidden;
5446
- }
5558
+ text-align: center;
5447
5559
 
5448
- .ui-layout-column > .ui-splitbar > a,
5449
- .ui-layout-row > .ui-splitbar > a {
5450
- cursor: pointer;
5451
- text-align: center;
5452
- font-size: 16px;
5453
- color: #aaa;
5454
- }
5560
+ .check-item {
5561
+ cursor: pointer;
5562
+ color: @check-item-color;
5563
+ font-size: 16px;
5564
+ line-height: 1;
5565
+ vertical-align: middle;
5455
5566
 
5456
- .ui-layout-column > .ui-splitbar > a:nth-child(2) {
5457
- margin-top: 0.35rem;
5567
+ &.igz-icon-checkbox-checked {
5568
+ color: @check-item-icon-checkbox-checked-color;
5569
+ }
5570
+ }
5458
5571
  }
5572
+ .igz-action-menu {
5573
+ .action-menu-color-set();
5574
+ .action-icon-color-set();
5459
5575
 
5460
- .ui-layout-row > .ui-splitbar > a:nth-child(2) {
5461
- margin-left: 0.35rem;
5462
- }
5576
+ opacity: 1;
5577
+ position: relative;
5463
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;
5464
5587
 
5465
- /**
5466
- * Icons
5467
- **/
5468
-
5469
- .ui-splitbar-icon {
5470
- width: 0;
5471
- height: 0;
5472
- display: inline-block;
5473
- }
5474
-
5475
- .ui-splitbar-icon-up {
5476
- border-left: 0.45em solid transparent;
5477
- border-right: 0.45em solid transparent;
5478
- border-bottom: 0.45em solid;
5479
- }
5480
-
5481
- .ui-splitbar-icon-down {
5482
- border-left: 0.45em solid transparent;
5483
- border-right: 0.45em solid transparent;
5484
- border-top: 0.45em solid;
5485
- margin-right: 0.45em;
5486
- }
5487
-
5488
- .ui-splitbar-icon-right {
5489
- border-top: 0.45em solid transparent;
5490
- border-bottom: 0.45em solid transparent;
5491
- border-left: 0.45em solid;
5492
-
5493
- }
5494
-
5495
- .ui-splitbar-icon-left {
5496
- border-top: 0.45em solid transparent;
5497
- border-bottom: 0.45em solid transparent;
5498
- border-right: 0.45em solid;
5499
- margin-top: 0.45em;
5500
- }
5501
-
5502
- /* Allow disabling of icons */
5503
- .no-toggle .ui-splitbar-icon {
5504
- display: none;
5505
- }
5506
-
5507
- @media only screen and (max-device-width: 480px) {
5508
- .no-mobile-toggle .ui-splitbar-icon {
5509
- display: none;
5510
- }
5511
- }
5512
-
5513
- @media print {
5514
- .ui-splitbar {
5515
- display: none;
5516
- }
5517
-
5518
- .stretch {
5519
- position: relative;
5520
- }
5521
-
5522
- /* The last item can take up any amount of space. */
5523
- .stretch.ui-layout-container:last-child {
5524
- position: static;
5525
- overflow: visible;
5526
- }
5527
- }
5528
-
5529
- /* Make sure hidden elements are in fact not rendered. */
5530
- .ui-layout-hidden {
5531
- display: none;
5532
- }
5533
-
5534
- .action-checkbox {
5535
- .action-checkbox-color-set();
5536
-
5537
- line-height: 16px;
5538
- text-align: center;
5539
-
5540
- .check-item {
5541
- font-size: 16px;
5542
- cursor: pointer;
5543
- line-height: 1;
5544
- vertical-align: middle;
5545
-
5546
- &.igz-icon-checkbox-unchecked {
5547
- color: @icon-checkbox-unchecked;
5548
- }
5549
-
5550
- &.igz-icon-checkbox-checked {
5551
- color: @icon-checkbox-checked;
5552
- }
5553
- }
5554
- }
5555
- .action-checkbox-all {
5556
- .action-checkbox-all-color-set();
5557
-
5558
- text-align: center;
5559
-
5560
- .check-item {
5561
- cursor: pointer;
5562
- color: @check-item-color;
5563
- font-size: 16px;
5564
- line-height: 1;
5565
- vertical-align: middle;
5566
-
5567
- &.igz-icon-checkbox-checked {
5568
- color: @check-item-icon-checkbox-checked-color;
5569
- }
5570
- }
5571
- }
5572
- .igz-action-menu {
5573
- .action-menu-color-set();
5574
- .action-icon-color-set();
5575
-
5576
- opacity: 1;
5577
- position: relative;
5578
-
5579
- .menu-button {
5580
- color: @menu-btn-color;
5581
- cursor: pointer;
5582
- font-size: 18px;
5583
- height: 19px;
5584
- text-align: center;
5585
- transition: @igz-basic-transition-color;
5586
- width: 30px;
5587
-
5588
- &.active,
5589
- &:hover {
5590
- color: @menu-btn-active-hover-color;
5591
- }
5592
- }
5588
+ &.active,
5589
+ &:hover {
5590
+ color: @menu-btn-active-hover-color;
5591
+ }
5592
+ }
5593
5593
 
5594
5594
  .menu-dropdown {
5595
5595
  visibility: hidden;
@@ -6455,6 +6455,82 @@ yx-axis
6455
6455
  }
6456
6456
  }
6457
6457
 
6458
+ .element-loading-status {
6459
+ .element-loading-status-color-set();
6460
+
6461
+ position: relative;
6462
+ width: 100%;
6463
+ height: 100%;
6464
+
6465
+ .loader-wrapper {
6466
+ height: 100%;
6467
+ width: 100%;
6468
+ position: relative;
6469
+
6470
+ .loader-text {
6471
+ color: @loading-text-color;
6472
+ }
6473
+ }
6474
+
6475
+ .loading-error {
6476
+ text-align: center;
6477
+ line-height: 15px;
6478
+ width: 100%;
6479
+ height: 100%;
6480
+ position: relative;
6481
+
6482
+ .sad-icon {
6483
+ position: absolute;
6484
+ left: 32px;
6485
+ }
6486
+
6487
+ .loading-error-title, .loading-error-message {
6488
+ font-size: 13px;
6489
+ font-weight: 700;
6490
+ padding: 0 15px;
6491
+ }
6492
+
6493
+ .loading-error-title {
6494
+ color: @loading-error-title-color;
6495
+ padding-top: 15px;
6496
+ }
6497
+
6498
+ .refresh-page {
6499
+ color: @loading-error-refresh-page-color;
6500
+ text-decoration: underline;
6501
+ cursor: pointer;
6502
+ }
6503
+ }
6504
+
6505
+ // Small size status
6506
+
6507
+ &.loading-status-small {
6508
+ .loader-fading-circle {
6509
+ width: 20px;
6510
+ height: 20px;
6511
+ }
6512
+
6513
+ .loading-error {
6514
+
6515
+ .loading-error-title, .loading-error-message {
6516
+ text-overflow: ellipsis;
6517
+ overflow: hidden;
6518
+ padding: 0;
6519
+ }
6520
+
6521
+ .loading-error-title {
6522
+ padding-top: 8px;
6523
+ }
6524
+
6525
+ .refresh-page {
6526
+ overflow: hidden;
6527
+ text-overflow: ellipsis;
6528
+ padding: 0;
6529
+ }
6530
+ }
6531
+ }
6532
+ }
6533
+
6458
6534
  .default-dropdown {
6459
6535
  .default-dropdown-color-set();
6460
6536
  .severity-icons-color-set();
@@ -6895,114 +6971,38 @@ yx-axis
6895
6971
  }
6896
6972
  }
6897
6973
 
6898
- .element-loading-status {
6899
- .element-loading-status-color-set();
6900
-
6901
- position: relative;
6902
- width: 100%;
6903
- height: 100%;
6904
-
6905
- .loader-wrapper {
6906
- height: 100%;
6907
- width: 100%;
6908
- position: relative;
6974
+ .control-panel-log-row {
6975
+ .control-panel-log-table-row-color-set();
6909
6976
 
6910
- .loader-text {
6911
- color: @loading-text-color;
6977
+ .log-entry {
6978
+ .log-entry-time {
6979
+ color: @log-entry-time-color;
6912
6980
  }
6913
- }
6914
6981
 
6915
- .loading-error {
6916
- text-align: center;
6917
- line-height: 15px;
6918
- width: 100%;
6919
- height: 100%;
6920
- position: relative;
6982
+ .log-entry-level-debug {
6983
+ color: @log-entry-level-debug-color;
6984
+ }
6921
6985
 
6922
- .sad-icon {
6923
- position: absolute;
6924
- left: 32px;
6986
+ .log-entry-level-info {
6987
+ color: @log-entry-level-info-color;
6925
6988
  }
6926
6989
 
6927
- .loading-error-title, .loading-error-message {
6928
- font-size: 13px;
6929
- font-weight: 700;
6930
- padding: 0 15px;
6990
+ .log-entry-level-warn, .log-entry-level-warning {
6991
+ color: @log-entry-level-warn-color;
6931
6992
  }
6932
6993
 
6933
- .loading-error-title {
6934
- color: @loading-error-title-color;
6935
- padding-top: 15px;
6994
+ .log-entry-level-error {
6995
+ color: @log-entry-level-error-color;
6936
6996
  }
6937
6997
 
6938
- .refresh-page {
6939
- color: @loading-error-refresh-page-color;
6940
- text-decoration: underline;
6941
- cursor: pointer;
6998
+ .log-entry-message {
6999
+ font-weight: 600;
6942
7000
  }
6943
7001
  }
7002
+ }
6944
7003
 
6945
- // Small size status
6946
-
6947
- &.loading-status-small {
6948
- .loader-fading-circle {
6949
- width: 20px;
6950
- height: 20px;
6951
- }
6952
-
6953
- .loading-error {
6954
-
6955
- .loading-error-title, .loading-error-message {
6956
- text-overflow: ellipsis;
6957
- overflow: hidden;
6958
- padding: 0;
6959
- }
6960
-
6961
- .loading-error-title {
6962
- padding-top: 8px;
6963
- }
6964
-
6965
- .refresh-page {
6966
- overflow: hidden;
6967
- text-overflow: ellipsis;
6968
- padding: 0;
6969
- }
6970
- }
6971
- }
6972
- }
6973
-
6974
- .control-panel-log-row {
6975
- .control-panel-log-table-row-color-set();
6976
-
6977
- .log-entry {
6978
- .log-entry-time {
6979
- color: @log-entry-time-color;
6980
- }
6981
-
6982
- .log-entry-level-debug {
6983
- color: @log-entry-level-debug-color;
6984
- }
6985
-
6986
- .log-entry-level-info {
6987
- color: @log-entry-level-info-color;
6988
- }
6989
-
6990
- .log-entry-level-warn, .log-entry-level-warning {
6991
- color: @log-entry-level-warn-color;
6992
- }
6993
-
6994
- .log-entry-level-error {
6995
- color: @log-entry-level-error-color;
6996
- }
6997
-
6998
- .log-entry-message {
6999
- font-weight: 600;
7000
- }
7001
- }
7002
- }
7003
-
7004
- .more-info-wrapper {
7005
- .more-info-color-set();
7004
+ .more-info-wrapper {
7005
+ .more-info-color-set();
7006
7006
 
7007
7007
  position: relative;
7008
7008
  display: inline-flex;
@@ -7160,6 +7160,45 @@ yx-axis
7160
7160
  }
7161
7161
  }
7162
7162
 
7163
+ .igz-navigation-tabs {
7164
+ .navigation-tabs-color-set();
7165
+
7166
+ background-color: @navigation-tabs-bg-color;
7167
+ height: 56px;
7168
+ padding-top: 7px;
7169
+
7170
+ .navigation-tab {
7171
+ float: left;
7172
+ height: 32px;
7173
+ padding: 15px 24px 0;
7174
+ font-family: @font-family-sans-serif;
7175
+ color: @navigation-tab-color;
7176
+ font-size: 14px;
7177
+ text-align: center;
7178
+ cursor: pointer;
7179
+ border-bottom: @navigation-tab-border-bottom;
7180
+ box-sizing: content-box;
7181
+
7182
+ &.active, &.active:hover {
7183
+ background-color: @navigation-tab-active-hover-bg-color;
7184
+ color: @navigation-tab-active-hover-color;
7185
+ border-bottom: @navigation-tab-active-hover-border-bottom;
7186
+ }
7187
+
7188
+ &:hover {
7189
+ background-color: @navigation-tab-hover-bg-color;
7190
+ }
7191
+
7192
+ &.active {
7193
+ background-color: @navigation-tab-active-bg-color;
7194
+ }
7195
+
7196
+ @media screen and (max-width: 940px) {
7197
+ padding: 15px 12px 0;
7198
+ }
7199
+ }
7200
+ }
7201
+
7163
7202
  .igz-multiple-checkboxes {
7164
7203
  .multiple-checkboxes-color-set();
7165
7204
 
@@ -7356,45 +7395,6 @@ yx-axis
7356
7395
  }
7357
7396
  }
7358
7397
 
7359
- .igz-navigation-tabs {
7360
- .navigation-tabs-color-set();
7361
-
7362
- background-color: @navigation-tabs-bg-color;
7363
- height: 56px;
7364
- padding-top: 7px;
7365
-
7366
- .navigation-tab {
7367
- float: left;
7368
- height: 32px;
7369
- padding: 15px 24px 0;
7370
- font-family: @font-family-sans-serif;
7371
- color: @navigation-tab-color;
7372
- font-size: 14px;
7373
- text-align: center;
7374
- cursor: pointer;
7375
- border-bottom: @navigation-tab-border-bottom;
7376
- box-sizing: content-box;
7377
-
7378
- &.active, &.active:hover {
7379
- background-color: @navigation-tab-active-hover-bg-color;
7380
- color: @navigation-tab-active-hover-color;
7381
- border-bottom: @navigation-tab-active-hover-border-bottom;
7382
- }
7383
-
7384
- &:hover {
7385
- background-color: @navigation-tab-hover-bg-color;
7386
- }
7387
-
7388
- &.active {
7389
- background-color: @navigation-tab-active-bg-color;
7390
- }
7391
-
7392
- @media screen and (max-width: 940px) {
7393
- padding: 15px 12px 0;
7394
- }
7395
- }
7396
- }
7397
-
7398
7398
  .igz-number-input {
7399
7399
  .number-input-color-set();
7400
7400
 
@@ -7696,6 +7696,97 @@ yx-axis
7696
7696
  }
7697
7697
  }
7698
7698
  }
7699
+ .igz-size {
7700
+ .size-color-set();
7701
+
7702
+ align-items: center;
7703
+ display: flex;
7704
+ justify-content: space-between;
7705
+ min-height: 40px;
7706
+
7707
+ &:after {
7708
+ content: ' ';
7709
+ display: inline-block;
7710
+ vertical-align: middle;
7711
+ }
7712
+
7713
+ .size-value {
7714
+ line-height: 1;
7715
+ flex: 0 0 100px;
7716
+ min-width: 100px;
7717
+
7718
+ > span {
7719
+ line-height: 25px;
7720
+ }
7721
+
7722
+ &.short {
7723
+ flex: 0 0 75px;
7724
+ min-width: 75px;
7725
+ }
7726
+
7727
+ &.shorten {
7728
+ flex: 0 0 60px;
7729
+ min-width: 60px;
7730
+ }
7731
+
7732
+ &.shortest {
7733
+ flex: 0 0 40px;
7734
+ min-width: 40px;
7735
+ }
7736
+ }
7737
+
7738
+ .size-reserved {
7739
+ color: @size-reserved-color;
7740
+ font-size: 12px;
7741
+
7742
+ .icon-font-arrow-right:before {
7743
+ color: @size-reserved-arrow-right-before-color;
7744
+ font-size: 10px;
7745
+ padding: 0 4px 0 4px;
7746
+ }
7747
+
7748
+ .icon-font-infinity:before {
7749
+ color: @size-reserved-infinity-before-color;
7750
+ font-size: 10px;
7751
+ }
7752
+ }
7753
+
7754
+ .size-chart {
7755
+ flex: 1 1 auto;
7756
+ min-width: 0;
7757
+
7758
+ div.highcharts-tooltip {
7759
+ position: fixed !important;
7760
+
7761
+ .igz-tooltip-wrapper {
7762
+ color: @size-chart-tooltip-wrapper-color;
7763
+
7764
+ &.used-capacity-tooltip-wrapper {
7765
+ .igz-row {
7766
+ .tooltip-label,
7767
+ .tooltip-value {
7768
+ text-overflow: unset;
7769
+ }
7770
+ }
7771
+ }
7772
+
7773
+ .tooltip-header {
7774
+ padding-bottom: 6px;
7775
+ margin-bottom: 5px;
7776
+ line-height: 1.1;
7777
+ text-align: center;
7778
+ }
7779
+ }
7780
+ }
7781
+ }
7782
+
7783
+ .igz-highcharts-wrapper {
7784
+ height: 40px;
7785
+ position: relative;
7786
+ width: 100%;
7787
+ }
7788
+ }
7789
+
7699
7790
  .search-input {
7700
7791
  .search-input-color-set();
7701
7792
 
@@ -7883,97 +7974,6 @@ yx-axis
7883
7974
  }
7884
7975
  }
7885
7976
  }
7886
- .igz-size {
7887
- .size-color-set();
7888
-
7889
- align-items: center;
7890
- display: flex;
7891
- justify-content: space-between;
7892
- min-height: 40px;
7893
-
7894
- &:after {
7895
- content: ' ';
7896
- display: inline-block;
7897
- vertical-align: middle;
7898
- }
7899
-
7900
- .size-value {
7901
- line-height: 1;
7902
- flex: 0 0 100px;
7903
- min-width: 100px;
7904
-
7905
- > span {
7906
- line-height: 25px;
7907
- }
7908
-
7909
- &.short {
7910
- flex: 0 0 75px;
7911
- min-width: 75px;
7912
- }
7913
-
7914
- &.shorten {
7915
- flex: 0 0 60px;
7916
- min-width: 60px;
7917
- }
7918
-
7919
- &.shortest {
7920
- flex: 0 0 40px;
7921
- min-width: 40px;
7922
- }
7923
- }
7924
-
7925
- .size-reserved {
7926
- color: @size-reserved-color;
7927
- font-size: 12px;
7928
-
7929
- .icon-font-arrow-right:before {
7930
- color: @size-reserved-arrow-right-before-color;
7931
- font-size: 10px;
7932
- padding: 0 4px 0 4px;
7933
- }
7934
-
7935
- .icon-font-infinity:before {
7936
- color: @size-reserved-infinity-before-color;
7937
- font-size: 10px;
7938
- }
7939
- }
7940
-
7941
- .size-chart {
7942
- flex: 1 1 auto;
7943
- min-width: 0;
7944
-
7945
- div.highcharts-tooltip {
7946
- position: fixed !important;
7947
-
7948
- .igz-tooltip-wrapper {
7949
- color: @size-chart-tooltip-wrapper-color;
7950
-
7951
- &.used-capacity-tooltip-wrapper {
7952
- .igz-row {
7953
- .tooltip-label,
7954
- .tooltip-value {
7955
- text-overflow: unset;
7956
- }
7957
- }
7958
- }
7959
-
7960
- .tooltip-header {
7961
- padding-bottom: 6px;
7962
- margin-bottom: 5px;
7963
- line-height: 1.1;
7964
- text-align: center;
7965
- }
7966
- }
7967
- }
7968
- }
7969
-
7970
- .igz-highcharts-wrapper {
7971
- height: 40px;
7972
- position: relative;
7973
- width: 100%;
7974
- }
7975
- }
7976
-
7977
7977
  .igz-slider-input-block {
7978
7978
  .igz-slider-input-block-color-set();
7979
7979
 
@@ -8080,27 +8080,104 @@ yx-axis
8080
8080
  line-height: 30px;
8081
8081
  }
8082
8082
 
8083
- // Units dropdown
8084
- .igz-slider-input-units-dropdown {
8085
- float: left;
8083
+ // Units dropdown
8084
+ .igz-slider-input-units-dropdown {
8085
+ float: left;
8086
+
8087
+ .default-dropdown {
8088
+ height: 30px;
8089
+
8090
+ .default-dropdown-field {
8091
+ border: none;
8092
+ background-color: @default-dropdown-field-bg-color;
8093
+
8094
+ .dropdown-selected-item {
8095
+ padding-left: 0;
8096
+ }
8097
+
8098
+ .dropdown-arrow {
8099
+ margin-right: 0;
8100
+ }
8101
+ }
8102
+ }
8103
+ }
8104
+ }
8105
+
8106
+ .ngdialog.text-edit {
8107
+ .text-edit-color-set();
8108
+
8109
+ .ngdialog-content {
8110
+ padding: 0;
8111
+ width: 1000px;
8112
+ height: 678px;
8113
+
8114
+ .text-preview-directive-wrapper {
8115
+ .title {
8116
+ margin: 25px 0 0 24px;
8117
+ padding: 0 70px 0 0;
8118
+ }
8119
+
8120
+ .close-button {
8121
+ position: absolute;
8122
+ top: 24px;
8123
+ right: 24px;
8124
+ font-size: 18px;
8125
+ color: @close-btn-color;
8126
+ }
8127
+
8128
+ .buttons {
8129
+ margin-right: 24px;
8130
+ }
8086
8131
 
8087
- .default-dropdown {
8088
- height: 30px;
8132
+ .text-preview-wrapper {
8133
+ background-color: @text-preview-wrapper-bg-color;
8134
+ border-top: @text-preview-wrapper-border-top;
8135
+ border-bottom: @text-preview-wrapper-border-bottom;
8136
+ border-radius: 2px;
8137
+ margin-bottom: 16px;
8138
+ padding: 15px 22px 17px;
8139
+ min-width: 690px;
8140
+ height: 550px;
8089
8141
 
8090
- .default-dropdown-field {
8091
- border: none;
8092
- background-color: @default-dropdown-field-bg-color;
8142
+ .text-preview-container {
8143
+ width: 100%;
8144
+ line-height: 1.9;
8145
+ text-align: left;
8146
+ padding-right: 22px;
8147
+ font-size: 13px;
8148
+ color: @text-preview-container-color;
8149
+ resize: none;
8150
+ overflow: hidden;
8151
+ border-color: @text-preview-container-border-color;
8152
+ background-color: @text-preview-container-bg-color;
8153
+ cursor: text;
8154
+ }
8093
8155
 
8094
- .dropdown-selected-item {
8095
- padding-left: 0;
8156
+ .text-preview-container:focus {
8157
+ outline: 0;
8096
8158
  }
8097
8159
 
8098
- .dropdown-arrow {
8099
- margin-right: 0;
8160
+ .word-wrap-checkbox-wrapper {
8161
+ width: 100%;
8162
+ display: flex;
8163
+ justify-content: flex-end;
8164
+
8165
+ .col-checkbox {
8166
+ line-height: normal;
8167
+ height: 25px;
8168
+
8169
+ label:before {
8170
+ font-size: 16px;
8171
+ }
8172
+ }
8100
8173
  }
8101
8174
  }
8102
8175
  }
8103
8176
  }
8177
+
8178
+ .ncl-monaco {
8179
+ height: 500px;
8180
+ }
8104
8181
  }
8105
8182
 
8106
8183
  .splash-screen {
@@ -8210,83 +8287,6 @@ yx-axis
8210
8287
  }
8211
8288
  }
8212
8289
  }
8213
- .ngdialog.text-edit {
8214
- .text-edit-color-set();
8215
-
8216
- .ngdialog-content {
8217
- padding: 0;
8218
- width: 1000px;
8219
- height: 678px;
8220
-
8221
- .text-preview-directive-wrapper {
8222
- .title {
8223
- margin: 25px 0 0 24px;
8224
- padding: 0 70px 0 0;
8225
- }
8226
-
8227
- .close-button {
8228
- position: absolute;
8229
- top: 24px;
8230
- right: 24px;
8231
- font-size: 18px;
8232
- color: @close-btn-color;
8233
- }
8234
-
8235
- .buttons {
8236
- margin-right: 24px;
8237
- }
8238
-
8239
- .text-preview-wrapper {
8240
- background-color: @text-preview-wrapper-bg-color;
8241
- border-top: @text-preview-wrapper-border-top;
8242
- border-bottom: @text-preview-wrapper-border-bottom;
8243
- border-radius: 2px;
8244
- margin-bottom: 16px;
8245
- padding: 15px 22px 17px;
8246
- min-width: 690px;
8247
- height: 550px;
8248
-
8249
- .text-preview-container {
8250
- width: 100%;
8251
- line-height: 1.9;
8252
- text-align: left;
8253
- padding-right: 22px;
8254
- font-size: 13px;
8255
- color: @text-preview-container-color;
8256
- resize: none;
8257
- overflow: hidden;
8258
- border-color: @text-preview-container-border-color;
8259
- background-color: @text-preview-container-bg-color;
8260
- cursor: text;
8261
- }
8262
-
8263
- .text-preview-container:focus {
8264
- outline: 0;
8265
- }
8266
-
8267
- .word-wrap-checkbox-wrapper {
8268
- width: 100%;
8269
- display: flex;
8270
- justify-content: flex-end;
8271
-
8272
- .col-checkbox {
8273
- line-height: normal;
8274
- height: 25px;
8275
-
8276
- label:before {
8277
- font-size: 16px;
8278
- }
8279
- }
8280
- }
8281
- }
8282
- }
8283
- }
8284
-
8285
- .ncl-monaco {
8286
- height: 500px;
8287
- }
8288
- }
8289
-
8290
8290
  .toast-status-panel {
8291
8291
  .toast-status-panel-color-set();
8292
8292
 
@@ -10225,55 +10225,195 @@ igz-info-page-content {
10225
10225
  color: @text-search-input-focus-placeholder-color;
10226
10226
  }
10227
10227
 
10228
- &:-ms-input-placeholder {
10229
- color: @text-search-input-focus-placeholder-color;
10230
- }
10228
+ &:-ms-input-placeholder {
10229
+ color: @text-search-input-focus-placeholder-color;
10230
+ }
10231
+ }
10232
+ }
10233
+
10234
+ .info-page-filters-accordion {
10235
+ padding: 0;
10236
+ border-bottom: none;
10237
+
10238
+ .panel-group {
10239
+ margin: 0;
10240
+
10241
+ .date-time-picker .datetimepicker-input {
10242
+ width: 302px;
10243
+ }
10244
+
10245
+ .panel {
10246
+ background-color: inherit;
10247
+ border-width: 0 0 1px 0;
10248
+ border-radius: 0;
10249
+ box-shadow: none;
10250
+ border-color: #ddd;
10251
+
10252
+ &.panel-default {
10253
+ border-color: @accordion-panel-default-border-color;
10254
+
10255
+ & > .panel-heading {
10256
+ background-color: inherit;
10257
+ border: 0;
10258
+ }
10259
+ }
10260
+ }
10261
+ }
10262
+ }
10263
+ }
10264
+ }
10265
+
10266
+ .info-page-filters-footer {
10267
+ display: flex;
10268
+ justify-content: flex-end;
10269
+ position: absolute;
10270
+ height: 70px;
10271
+ padding: 16px 18px;
10272
+ bottom: 0;
10273
+ width: 100%;
10274
+
10275
+ button:not(:first-child) {
10276
+ margin-left: 5px;
10277
+ }
10278
+ }
10279
+ }
10280
+
10281
+ .ncl-breadcrumbs-dropdown {
10282
+ display: inline-grid;
10283
+
10284
+ .breadcrumb-toggle {
10285
+ cursor: pointer;
10286
+ font-weight: bold;
10287
+
10288
+ .igz-icon-right {
10289
+ display: block;
10290
+ margin: 1.5px 0 0 7px;
10291
+ }
10292
+
10293
+ .breadcrumb-arrow {
10294
+ display: inline-block;
10295
+ width: 24px;
10296
+ height: 24px;
10297
+ margin: 0 8px;
10298
+ border-radius: 50%;
10299
+ background-color: transparent;
10300
+
10301
+ &:hover {
10302
+ background-color: @pale-grey;
10303
+ transition: transform .2s linear;
10304
+ }
10305
+ }
10306
+
10307
+ .ncl-dropdown-expanded {
10308
+ background-color: @pale-grey;
10309
+ transform: rotate(90deg);
10310
+
10311
+ .igz-icon-right {
10312
+ color: @dusk-three;
10313
+ }
10314
+ }
10315
+ }
10316
+
10317
+ .dropdown-menu {
10318
+ margin: 0;
10319
+ border: none;
10320
+ min-width: inherit;
10321
+ padding: 5px 0 8px;
10322
+ width: 230px;
10323
+ box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
10324
+
10325
+ .search-input {
10326
+ text-align: center;
10327
+ margin-top: 3px;
10328
+
10329
+ .igz-icon-search {
10330
+ .greyishPurple(0.34);
10331
+ font-size: 18px;
10332
+ color: @color;
10333
+ position: absolute;
10334
+ top: 6px;
10335
+ left: 16px;
10336
+ }
10337
+
10338
+ input {
10339
+ width: 210px;
10340
+ height: 32px;
10341
+ border: solid 1px @pale-grey;
10342
+ outline: none;
10343
+ padding-left: 29px;
10344
+ color: @dusk-three;
10345
+ font-size: 13px;
10346
+
10347
+ &::-webkit-input-placeholder {
10348
+ color: @pale-grey;
10231
10349
  }
10232
- }
10233
10350
 
10234
- .info-page-filters-accordion {
10235
- padding: 0;
10236
- border-bottom: none;
10351
+ &::-moz-placeholder {
10352
+ color: @pale-grey;
10353
+ }
10237
10354
 
10238
- .panel-group {
10239
- margin: 0;
10355
+ &:focus, &:active {
10356
+ outline: none;
10357
+ border: solid 1px @dark-sky-blue;
10240
10358
 
10241
- .date-time-picker .datetimepicker-input {
10242
- width: 302px;
10359
+ + .igz-icon-search {
10360
+ color: @greyish-purple;
10243
10361
  }
10244
10362
 
10245
- .panel {
10246
- background-color: inherit;
10247
- border-width: 0 0 1px 0;
10248
- border-radius: 0;
10249
- box-shadow: none;
10250
- border-color: #ddd;
10251
-
10252
- &.panel-default {
10253
- border-color: @accordion-panel-default-border-color;
10363
+ &::-webkit-input-placeholder {
10364
+ color: transparent;
10365
+ }
10254
10366
 
10255
- & > .panel-heading {
10256
- background-color: inherit;
10257
- border: 0;
10258
- }
10259
- }
10367
+ &::-moz-placeholder {
10368
+ color: transparent;
10260
10369
  }
10261
10370
  }
10262
10371
  }
10263
10372
  }
10264
10373
  }
10265
10374
 
10266
- .info-page-filters-footer {
10267
- display: flex;
10268
- justify-content: flex-end;
10269
- position: absolute;
10270
- height: 70px;
10271
- padding: 16px 18px;
10272
- bottom: 0;
10273
- width: 100%;
10375
+ .dropdown-list {
10376
+ font-size: 13px;
10377
+ font-weight: 500;
10378
+ text-align: left;
10379
+ max-height: 375px;
10380
+ list-style: none;
10381
+ padding: 8px 0 0;
10382
+ margin: 0;
10383
+ border-radius: 2px;
10384
+ background-color: @white;
10274
10385
 
10275
- button:not(:first-child) {
10276
- margin-left: 5px;
10386
+ li {
10387
+ height: 32px;
10388
+ line-height: 32px;
10389
+ width: 239px;
10390
+
10391
+ .item-name {
10392
+ display: inline-block;
10393
+ width: 170px;
10394
+ overflow: hidden;
10395
+ white-space: nowrap;
10396
+ text-overflow: ellipsis;
10397
+ margin-left: 16px;
10398
+ color: @dusk-three;
10399
+ vertical-align:top;
10400
+ text-decoration: none;
10401
+ height: 32px;
10402
+ }
10403
+
10404
+ .igz-icon-tick {
10405
+ display: inline-block;
10406
+ font-size: 16px;
10407
+ width: 41px;
10408
+ height: 32px;
10409
+ padding: 0 19px 0 12px;
10410
+ vertical-align: top;
10411
+ }
10412
+
10413
+ &:hover {
10414
+ height: 32px;
10415
+ background-color: @pale-grey-two;
10416
+ }
10277
10417
  }
10278
10418
  }
10279
10419
  }
@@ -10468,146 +10608,6 @@ ncl-breadcrumbs {
10468
10608
  }
10469
10609
  }
10470
10610
  }
10471
- .ncl-breadcrumbs-dropdown {
10472
- display: inline-grid;
10473
-
10474
- .breadcrumb-toggle {
10475
- cursor: pointer;
10476
- font-weight: bold;
10477
-
10478
- .igz-icon-right {
10479
- display: block;
10480
- margin: 1.5px 0 0 7px;
10481
- }
10482
-
10483
- .breadcrumb-arrow {
10484
- display: inline-block;
10485
- width: 24px;
10486
- height: 24px;
10487
- margin: 0 8px;
10488
- border-radius: 50%;
10489
- background-color: transparent;
10490
-
10491
- &:hover {
10492
- background-color: @pale-grey;
10493
- transition: transform .2s linear;
10494
- }
10495
- }
10496
-
10497
- .ncl-dropdown-expanded {
10498
- background-color: @pale-grey;
10499
- transform: rotate(90deg);
10500
-
10501
- .igz-icon-right {
10502
- color: @dusk-three;
10503
- }
10504
- }
10505
- }
10506
-
10507
- .dropdown-menu {
10508
- margin: 0;
10509
- border: none;
10510
- min-width: inherit;
10511
- padding: 5px 0 8px;
10512
- width: 230px;
10513
- box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
10514
-
10515
- .search-input {
10516
- text-align: center;
10517
- margin-top: 3px;
10518
-
10519
- .igz-icon-search {
10520
- .greyishPurple(0.34);
10521
- font-size: 18px;
10522
- color: @color;
10523
- position: absolute;
10524
- top: 6px;
10525
- left: 16px;
10526
- }
10527
-
10528
- input {
10529
- width: 210px;
10530
- height: 32px;
10531
- border: solid 1px @pale-grey;
10532
- outline: none;
10533
- padding-left: 29px;
10534
- color: @dusk-three;
10535
- font-size: 13px;
10536
-
10537
- &::-webkit-input-placeholder {
10538
- color: @pale-grey;
10539
- }
10540
-
10541
- &::-moz-placeholder {
10542
- color: @pale-grey;
10543
- }
10544
-
10545
- &:focus, &:active {
10546
- outline: none;
10547
- border: solid 1px @dark-sky-blue;
10548
-
10549
- + .igz-icon-search {
10550
- color: @greyish-purple;
10551
- }
10552
-
10553
- &::-webkit-input-placeholder {
10554
- color: transparent;
10555
- }
10556
-
10557
- &::-moz-placeholder {
10558
- color: transparent;
10559
- }
10560
- }
10561
- }
10562
- }
10563
- }
10564
-
10565
- .dropdown-list {
10566
- font-size: 13px;
10567
- font-weight: 500;
10568
- text-align: left;
10569
- max-height: 375px;
10570
- list-style: none;
10571
- padding: 8px 0 0;
10572
- margin: 0;
10573
- border-radius: 2px;
10574
- background-color: @white;
10575
-
10576
- li {
10577
- height: 32px;
10578
- line-height: 32px;
10579
- width: 239px;
10580
-
10581
- .item-name {
10582
- display: inline-block;
10583
- width: 170px;
10584
- overflow: hidden;
10585
- white-space: nowrap;
10586
- text-overflow: ellipsis;
10587
- margin-left: 16px;
10588
- color: @dusk-three;
10589
- vertical-align:top;
10590
- text-decoration: none;
10591
- height: 32px;
10592
- }
10593
-
10594
- .igz-icon-tick {
10595
- display: inline-block;
10596
- font-size: 16px;
10597
- width: 41px;
10598
- height: 32px;
10599
- padding: 0 19px 0 12px;
10600
- vertical-align: top;
10601
- }
10602
-
10603
- &:hover {
10604
- height: 32px;
10605
- background-color: @pale-grey-two;
10606
- }
10607
- }
10608
- }
10609
- }
10610
-
10611
10611
  .ncl-edit-item {
10612
10612
  width: 100%;
10613
10613
  padding: 6px 0;
@@ -11787,7 +11787,7 @@ ncl-navigation-tabs {
11787
11787
  height: 95%;
11788
11788
 
11789
11789
  .info-page-filters {
11790
- z-index: 990;
11790
+ z-index: 1000;
11791
11791
 
11792
11792
  .multiple-checkboxes-option {
11793
11793
  margin: 10px 0;
@@ -13887,6 +13887,17 @@ ncl-navigation-tabs {
13887
13887
  }
13888
13888
  }
13889
13889
 
13890
+ .ncl-version-configuration-logging {
13891
+ .row {
13892
+ display: flex;
13893
+ position: relative;
13894
+
13895
+ .logging-wrapper {
13896
+ width: 100%;
13897
+ }
13898
+ }
13899
+ }
13900
+
13890
13901
  @desktop-middle: 1550px;
13891
13902
 
13892
13903
  .ncl-version-configuration-resources {
@@ -14059,17 +14070,6 @@ ncl-navigation-tabs {
14059
14070
  }
14060
14071
  }
14061
14072
 
14062
- .ncl-version-configuration-logging {
14063
- .row {
14064
- display: flex;
14065
- position: relative;
14066
-
14067
- .logging-wrapper {
14068
- width: 100%;
14069
- }
14070
- }
14071
- }
14072
-
14073
14073
  .version-configuration-build-dialog-wrapper {
14074
14074
  font-family: Roboto;
14075
14075