iguazio.dashboard-controls 1.2.9 → 1.2.11

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,149 +5531,6 @@ 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
- }
5403
-
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
- }
5411
-
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;
5420
-
5421
- background-color: #ffffff;
5422
- right: auto;
5423
- position: absolute;
5424
- z-index: 1;
5425
- }
5426
-
5427
- .ui-layout-row > .ui-splitbar {
5428
- height: 8px;
5429
- width: 100%;
5430
- cursor: row-resize;
5431
- text-align: center;
5432
- justify-content: center;
5433
- align-items: center;
5434
- background: linear-gradient(to bottom, #fff 0%, #eee 100%);
5435
- overflow-y: hidden;
5436
- }
5437
-
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
- }
5447
-
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
- }
5455
-
5456
- .ui-layout-column > .ui-splitbar > a:nth-child(2) {
5457
- margin-top: 0.35rem;
5458
- }
5459
-
5460
- .ui-layout-row > .ui-splitbar > a:nth-child(2) {
5461
- margin-left: 0.35rem;
5462
- }
5463
-
5464
-
5465
- /**
5466
- * Icons
5467
- **/
5468
-
5469
- .ui-splitbar-icon {
5470
- width: 0;
5471
- height: 0;
5472
- display: inline-block;
5473
- }
5474
-
5475
- .ui-splitbar-icon-up {
5476
- border-left: 0.45em solid transparent;
5477
- border-right: 0.45em solid transparent;
5478
- border-bottom: 0.45em solid;
5479
- }
5480
-
5481
- .ui-splitbar-icon-down {
5482
- border-left: 0.45em solid transparent;
5483
- border-right: 0.45em solid transparent;
5484
- border-top: 0.45em solid;
5485
- margin-right: 0.45em;
5486
- }
5487
-
5488
- .ui-splitbar-icon-right {
5489
- border-top: 0.45em solid transparent;
5490
- border-bottom: 0.45em solid transparent;
5491
- border-left: 0.45em solid;
5492
-
5493
- }
5494
-
5495
- .ui-splitbar-icon-left {
5496
- border-top: 0.45em solid transparent;
5497
- border-bottom: 0.45em solid transparent;
5498
- border-right: 0.45em solid;
5499
- margin-top: 0.45em;
5500
- }
5501
-
5502
- /* Allow disabling of icons */
5503
- .no-toggle .ui-splitbar-icon {
5504
- display: none;
5505
- }
5506
-
5507
- @media only screen and (max-device-width: 480px) {
5508
- .no-mobile-toggle .ui-splitbar-icon {
5509
- display: none;
5510
- }
5511
- }
5512
-
5513
- @media print {
5514
- .ui-splitbar {
5515
- display: none;
5516
- }
5517
-
5518
- .stretch {
5519
- position: relative;
5520
- }
5521
-
5522
- /* The last item can take up any amount of space. */
5523
- .stretch.ui-layout-container:last-child {
5524
- position: static;
5525
- overflow: visible;
5526
- }
5527
- }
5528
-
5529
- /* Make sure hidden elements are in fact not rendered. */
5530
- .ui-layout-hidden {
5531
- display: none;
5532
- }
5533
-
5534
5534
  .action-checkbox {
5535
5535
  .action-checkbox-color-set();
5536
5536
 
@@ -6996,6 +6996,7 @@ yx-axis
6996
6996
  }
6997
6997
 
6998
6998
  .log-entry-message {
6999
+ line-break: anywhere;
6999
7000
  font-weight: 600;
7000
7001
  }
7001
7002
  }
@@ -7696,6 +7697,97 @@ yx-axis
7696
7697
  }
7697
7698
  }
7698
7699
  }
7700
+ .igz-size {
7701
+ .size-color-set();
7702
+
7703
+ align-items: center;
7704
+ display: flex;
7705
+ justify-content: space-between;
7706
+ min-height: 40px;
7707
+
7708
+ &:after {
7709
+ content: ' ';
7710
+ display: inline-block;
7711
+ vertical-align: middle;
7712
+ }
7713
+
7714
+ .size-value {
7715
+ line-height: 1;
7716
+ flex: 0 0 100px;
7717
+ min-width: 100px;
7718
+
7719
+ > span {
7720
+ line-height: 25px;
7721
+ }
7722
+
7723
+ &.short {
7724
+ flex: 0 0 75px;
7725
+ min-width: 75px;
7726
+ }
7727
+
7728
+ &.shorten {
7729
+ flex: 0 0 60px;
7730
+ min-width: 60px;
7731
+ }
7732
+
7733
+ &.shortest {
7734
+ flex: 0 0 40px;
7735
+ min-width: 40px;
7736
+ }
7737
+ }
7738
+
7739
+ .size-reserved {
7740
+ color: @size-reserved-color;
7741
+ font-size: 12px;
7742
+
7743
+ .icon-font-arrow-right:before {
7744
+ color: @size-reserved-arrow-right-before-color;
7745
+ font-size: 10px;
7746
+ padding: 0 4px 0 4px;
7747
+ }
7748
+
7749
+ .icon-font-infinity:before {
7750
+ color: @size-reserved-infinity-before-color;
7751
+ font-size: 10px;
7752
+ }
7753
+ }
7754
+
7755
+ .size-chart {
7756
+ flex: 1 1 auto;
7757
+ min-width: 0;
7758
+
7759
+ div.highcharts-tooltip {
7760
+ position: fixed !important;
7761
+
7762
+ .igz-tooltip-wrapper {
7763
+ color: @size-chart-tooltip-wrapper-color;
7764
+
7765
+ &.used-capacity-tooltip-wrapper {
7766
+ .igz-row {
7767
+ .tooltip-label,
7768
+ .tooltip-value {
7769
+ text-overflow: unset;
7770
+ }
7771
+ }
7772
+ }
7773
+
7774
+ .tooltip-header {
7775
+ padding-bottom: 6px;
7776
+ margin-bottom: 5px;
7777
+ line-height: 1.1;
7778
+ text-align: center;
7779
+ }
7780
+ }
7781
+ }
7782
+ }
7783
+
7784
+ .igz-highcharts-wrapper {
7785
+ height: 40px;
7786
+ position: relative;
7787
+ width: 100%;
7788
+ }
7789
+ }
7790
+
7699
7791
  .search-input {
7700
7792
  .search-input-color-set();
7701
7793
 
@@ -7860,120 +7952,29 @@ yx-axis
7860
7952
  border: @create-item-btn-border;
7861
7953
  text-transform: uppercase;
7862
7954
 
7863
- &:hover {
7864
- background-color: @create-item-btn-hover-bg-color;
7865
- box-shadow: @create-item-btn-hover-box-shadow;
7866
- border: @create-item-btn-hover-border;
7867
- }
7868
-
7869
- &:focus {
7870
- outline: none;
7871
- }
7872
-
7873
- &:active {
7874
- background-color: @create-item-btn-active-bg-color;
7875
- box-shadow: @create-item-btn-active-box-shadow;
7876
- border: none;
7877
- }
7878
-
7879
- .igz-icon-add {
7880
- font-size: 10px;
7881
- line-height: 15px;
7882
- padding-right: 8px;
7883
- }
7884
- }
7885
- }
7886
- .igz-size {
7887
- .size-color-set();
7888
-
7889
- align-items: center;
7890
- display: flex;
7891
- justify-content: space-between;
7892
- min-height: 40px;
7893
-
7894
- &:after {
7895
- content: ' ';
7896
- display: inline-block;
7897
- vertical-align: middle;
7898
- }
7899
-
7900
- .size-value {
7901
- line-height: 1;
7902
- flex: 0 0 100px;
7903
- min-width: 100px;
7904
-
7905
- > span {
7906
- line-height: 25px;
7907
- }
7908
-
7909
- &.short {
7910
- flex: 0 0 75px;
7911
- min-width: 75px;
7912
- }
7913
-
7914
- &.shorten {
7915
- flex: 0 0 60px;
7916
- min-width: 60px;
7917
- }
7918
-
7919
- &.shortest {
7920
- flex: 0 0 40px;
7921
- min-width: 40px;
7922
- }
7923
- }
7924
-
7925
- .size-reserved {
7926
- color: @size-reserved-color;
7927
- font-size: 12px;
7928
-
7929
- .icon-font-arrow-right:before {
7930
- color: @size-reserved-arrow-right-before-color;
7931
- font-size: 10px;
7932
- padding: 0 4px 0 4px;
7933
- }
7934
-
7935
- .icon-font-infinity:before {
7936
- color: @size-reserved-infinity-before-color;
7937
- font-size: 10px;
7938
- }
7939
- }
7940
-
7941
- .size-chart {
7942
- flex: 1 1 auto;
7943
- min-width: 0;
7944
-
7945
- div.highcharts-tooltip {
7946
- position: fixed !important;
7947
-
7948
- .igz-tooltip-wrapper {
7949
- color: @size-chart-tooltip-wrapper-color;
7955
+ &:hover {
7956
+ background-color: @create-item-btn-hover-bg-color;
7957
+ box-shadow: @create-item-btn-hover-box-shadow;
7958
+ border: @create-item-btn-hover-border;
7959
+ }
7950
7960
 
7951
- &.used-capacity-tooltip-wrapper {
7952
- .igz-row {
7953
- .tooltip-label,
7954
- .tooltip-value {
7955
- text-overflow: unset;
7956
- }
7957
- }
7958
- }
7961
+ &:focus {
7962
+ outline: none;
7963
+ }
7959
7964
 
7960
- .tooltip-header {
7961
- padding-bottom: 6px;
7962
- margin-bottom: 5px;
7963
- line-height: 1.1;
7964
- text-align: center;
7965
- }
7966
- }
7965
+ &:active {
7966
+ background-color: @create-item-btn-active-bg-color;
7967
+ box-shadow: @create-item-btn-active-box-shadow;
7968
+ border: none;
7967
7969
  }
7968
- }
7969
7970
 
7970
- .igz-highcharts-wrapper {
7971
- height: 40px;
7972
- position: relative;
7973
- width: 100%;
7971
+ .igz-icon-add {
7972
+ font-size: 10px;
7973
+ line-height: 15px;
7974
+ padding-right: 8px;
7975
+ }
7974
7976
  }
7975
7977
  }
7976
-
7977
7978
  .igz-slider-input-block {
7978
7979
  .igz-slider-input-block-color-set();
7979
7980
 
@@ -8210,70 +8211,6 @@ yx-axis
8210
8211
  }
8211
8212
  }
8212
8213
  }
8213
- .toast-status-panel {
8214
- .toast-status-panel-color-set();
8215
-
8216
- margin-bottom: 20px;
8217
- padding: 16px 36px 16px 12px;
8218
- background-color: @toast-panel-bg-color;
8219
- border: @toast-panel-border;
8220
- position: relative;
8221
-
8222
- &.in-progress {
8223
- background-color: @toast-panel-in-progress-bg-color;
8224
- border: @toast-panel-in-progress-border;
8225
- }
8226
-
8227
- &.failed {
8228
- background-color: @toast-panel-failed-bg-color;
8229
- border: @toast-panel-failed-border;
8230
- }
8231
-
8232
- .panel-status {
8233
- color: @toast-panel-status-color;
8234
- line-height: 24px;
8235
- font-size: 14px;
8236
- font-weight: 700;
8237
- font-family: @font-family-sans-serif;
8238
- align-items: center;
8239
- display: flex;
8240
- justify-content: center;
8241
-
8242
- &.in-progress {
8243
- color: @toast-panel-status-in-progress-color;
8244
- }
8245
-
8246
- &.failed {
8247
- color: @toast-panel-status-failed-color;
8248
- }
8249
-
8250
- .panel-status-icon {
8251
- font-size: 24px;
8252
-
8253
- &.igz-icon-properties {
8254
- -webkit-animation: rotation 4s infinite linear;
8255
-
8256
- @-webkit-keyframes rotation {
8257
- from {
8258
- -webkit-transform: rotate(0deg);
8259
- }
8260
- to {
8261
- -webkit-transform: rotate(359deg);
8262
- }
8263
- }
8264
- }
8265
- }
8266
-
8267
- .msg-scrollable-container {
8268
- max-height: 300px;
8269
-
8270
- .panel-status-msg {
8271
- margin: 0 8px;
8272
- }
8273
- }
8274
- }
8275
- }
8276
-
8277
8214
  .ngdialog.text-edit {
8278
8215
  .text-edit-color-set();
8279
8216
 
@@ -8351,6 +8288,70 @@ yx-axis
8351
8288
  }
8352
8289
  }
8353
8290
 
8291
+ .toast-status-panel {
8292
+ .toast-status-panel-color-set();
8293
+
8294
+ margin-bottom: 20px;
8295
+ padding: 16px 36px 16px 12px;
8296
+ background-color: @toast-panel-bg-color;
8297
+ border: @toast-panel-border;
8298
+ position: relative;
8299
+
8300
+ &.in-progress {
8301
+ background-color: @toast-panel-in-progress-bg-color;
8302
+ border: @toast-panel-in-progress-border;
8303
+ }
8304
+
8305
+ &.failed {
8306
+ background-color: @toast-panel-failed-bg-color;
8307
+ border: @toast-panel-failed-border;
8308
+ }
8309
+
8310
+ .panel-status {
8311
+ color: @toast-panel-status-color;
8312
+ line-height: 24px;
8313
+ font-size: 14px;
8314
+ font-weight: 700;
8315
+ font-family: @font-family-sans-serif;
8316
+ align-items: center;
8317
+ display: flex;
8318
+ justify-content: center;
8319
+
8320
+ &.in-progress {
8321
+ color: @toast-panel-status-in-progress-color;
8322
+ }
8323
+
8324
+ &.failed {
8325
+ color: @toast-panel-status-failed-color;
8326
+ }
8327
+
8328
+ .panel-status-icon {
8329
+ font-size: 24px;
8330
+
8331
+ &.igz-icon-properties {
8332
+ -webkit-animation: rotation 4s infinite linear;
8333
+
8334
+ @-webkit-keyframes rotation {
8335
+ from {
8336
+ -webkit-transform: rotate(0deg);
8337
+ }
8338
+ to {
8339
+ -webkit-transform: rotate(359deg);
8340
+ }
8341
+ }
8342
+ }
8343
+ }
8344
+
8345
+ .msg-scrollable-container {
8346
+ max-height: 300px;
8347
+
8348
+ .panel-status-msg {
8349
+ margin: 0 8px;
8350
+ }
8351
+ }
8352
+ }
8353
+ }
8354
+
8354
8355
  .validating-input-field {
8355
8356
  .validating-input-field-color-set();
8356
8357
 
@@ -10608,24 +10609,6 @@ ncl-breadcrumbs {
10608
10609
  }
10609
10610
  }
10610
10611
  }
10611
- .view-yaml-dialog-wrapper {
10612
- .ngdialog-content {
10613
- .view-yaml-dialog-header {
10614
- .title {
10615
- margin-bottom: 10px;
10616
- }
10617
-
10618
- .copy-to-clipboard {
10619
- width: 20px;
10620
- }
10621
- }
10622
-
10623
- .monaco-editor {
10624
- min-width: 700px;
10625
- min-height: 450px;
10626
- }
10627
- }
10628
- }
10629
10612
  .ncl-edit-item {
10630
10613
  width: 100%;
10631
10614
  padding: 6px 0;
@@ -10726,6 +10709,50 @@ ncl-breadcrumbs {
10726
10709
  }
10727
10710
  }
10728
10711
 
10712
+ .view-yaml-dialog-wrapper {
10713
+ .ngdialog-content {
10714
+ .view-yaml-dialog-header {
10715
+ .title {
10716
+ margin-bottom: 10px;
10717
+ }
10718
+
10719
+ .copy-to-clipboard {
10720
+ width: 20px;
10721
+ }
10722
+ }
10723
+
10724
+ .monaco-editor {
10725
+ min-width: 700px;
10726
+ min-height: 450px;
10727
+ }
10728
+ }
10729
+ }
10730
+ .ncl-monaco {
10731
+ .ncl-monaco-wrapper {
10732
+ padding-top: 20px;
10733
+ height: 100%;
10734
+ border: 1px solid @pale-grey;
10735
+ background-color: @white;
10736
+
10737
+ &.no-top-padding {
10738
+ padding-top: 0;
10739
+ }
10740
+
10741
+ .ncl-monaco-top-row {
10742
+ display: block;
10743
+ }
10744
+
10745
+ .ncl-monaco-editor {
10746
+ height: 100%;
10747
+ }
10748
+ }
10749
+
10750
+ .ncl-monaco-dark {
10751
+ background-color: @vs-dark;
10752
+ }
10753
+ }
10754
+
10755
+
10729
10756
  .ncl-key-value-input {
10730
10757
  .input-wrapper {
10731
10758
  width: 100%;
@@ -10940,32 +10967,6 @@ ncl-breadcrumbs {
10940
10967
  }
10941
10968
  }
10942
10969
 
10943
- .ncl-monaco {
10944
- .ncl-monaco-wrapper {
10945
- padding-top: 20px;
10946
- height: 100%;
10947
- border: 1px solid @pale-grey;
10948
- background-color: @white;
10949
-
10950
- &.no-top-padding {
10951
- padding-top: 0;
10952
- }
10953
-
10954
- .ncl-monaco-top-row {
10955
- display: block;
10956
- }
10957
-
10958
- .ncl-monaco-editor {
10959
- height: 100%;
10960
- }
10961
- }
10962
-
10963
- .ncl-monaco-dark {
10964
- background-color: @vs-dark;
10965
- }
10966
- }
10967
-
10968
-
10969
10970
  ncl-navigation-tabs {
10970
10971
  .ncl-navigation-tabs-color-set();
10971
10972