iguazio.dashboard-controls 1.2.15 → 1.2.16
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/SECURITY.md +21 -0
- package/dist/i18n/en/functions.json +2 -0
- package/dist/js/iguazio.dashboard-controls.js +4236 -4234
- package/dist/less/iguazio.dashboard-controls.less +937 -937
- package/package.json +1 -1
- package/src/i18n/en/functions.json +2 -0
- package/src/nuclio/functions/version/version-monitoring/version-monitoring.component.js +6 -4
- package/src/nuclio/functions/version/version-monitoring/version-monitoring.tpl.html +9 -0
|
@@ -5569,6 +5569,164 @@ yx-axis
|
|
|
5569
5569
|
}
|
|
5570
5570
|
}
|
|
5571
5571
|
}
|
|
5572
|
+
.igz-action-menu {
|
|
5573
|
+
.action-menu-color-set();
|
|
5574
|
+
.action-icon-color-set();
|
|
5575
|
+
|
|
5576
|
+
opacity: 1;
|
|
5577
|
+
position: relative;
|
|
5578
|
+
|
|
5579
|
+
.menu-button {
|
|
5580
|
+
color: @menu-btn-color;
|
|
5581
|
+
cursor: pointer;
|
|
5582
|
+
font-size: 18px;
|
|
5583
|
+
height: 19px;
|
|
5584
|
+
text-align: center;
|
|
5585
|
+
transition: @igz-basic-transition-color;
|
|
5586
|
+
width: 30px;
|
|
5587
|
+
|
|
5588
|
+
&.active,
|
|
5589
|
+
&:hover {
|
|
5590
|
+
color: @menu-btn-active-hover-color;
|
|
5591
|
+
}
|
|
5592
|
+
}
|
|
5593
|
+
|
|
5594
|
+
.menu-dropdown {
|
|
5595
|
+
visibility: hidden;
|
|
5596
|
+
background-color: @menu-dropdown-bg-color;
|
|
5597
|
+
border: @menu-dropdown-border;
|
|
5598
|
+
border-radius: 2px;
|
|
5599
|
+
box-shadow: @menu-dropdown-box-shadow;
|
|
5600
|
+
color: @menu-dropdown-color;
|
|
5601
|
+
font-family: @font-family-sans-serif;
|
|
5602
|
+
font-size: 13px;
|
|
5603
|
+
font-weight: 500;
|
|
5604
|
+
line-height: normal;
|
|
5605
|
+
margin-top: 9px;
|
|
5606
|
+
min-width: 129px;
|
|
5607
|
+
padding: 8px 0 0;
|
|
5608
|
+
position: absolute;
|
|
5609
|
+
z-index: 10;
|
|
5610
|
+
transform: translateX(-100%);
|
|
5611
|
+
|
|
5612
|
+
.actions-list {
|
|
5613
|
+
cursor: default;
|
|
5614
|
+
padding-bottom: 8px;
|
|
5615
|
+
|
|
5616
|
+
.tooltip {
|
|
5617
|
+
// !important used to overwrite third-party's inline style
|
|
5618
|
+
display: none !important;
|
|
5619
|
+
}
|
|
5620
|
+
}
|
|
5621
|
+
|
|
5622
|
+
.igz-action-item {
|
|
5623
|
+
color: @action-item-color;
|
|
5624
|
+
cursor: pointer;
|
|
5625
|
+
font-size: 13px;
|
|
5626
|
+
font-weight: 400;
|
|
5627
|
+
line-height: 32px;
|
|
5628
|
+
padding: 0 18px;
|
|
5629
|
+
text-align: left;
|
|
5630
|
+
white-space: nowrap;
|
|
5631
|
+
|
|
5632
|
+
&:hover,
|
|
5633
|
+
&.subtemplate-show {
|
|
5634
|
+
background-color: @action-item-hover-bg-color;
|
|
5635
|
+
}
|
|
5636
|
+
|
|
5637
|
+
&.inactive {
|
|
5638
|
+
color: @action-item-inactive-color;
|
|
5639
|
+
cursor: default;
|
|
5640
|
+
|
|
5641
|
+
&:hover {
|
|
5642
|
+
background-color: @menu-dropdown-bg-color;
|
|
5643
|
+
}
|
|
5644
|
+
}
|
|
5645
|
+
|
|
5646
|
+
.action-icon {
|
|
5647
|
+
color: @action-icon-color;
|
|
5648
|
+
display: inline-block;
|
|
5649
|
+
padding-right: 14px;
|
|
5650
|
+
|
|
5651
|
+
&.icon-placeholder {
|
|
5652
|
+
&:before {
|
|
5653
|
+
content: '';
|
|
5654
|
+
display: inline-block;
|
|
5655
|
+
}
|
|
5656
|
+
}
|
|
5657
|
+
|
|
5658
|
+
&:before {
|
|
5659
|
+
font-size: 16px;
|
|
5660
|
+
position: relative;
|
|
5661
|
+
text-align: center;
|
|
5662
|
+
width: 20px;
|
|
5663
|
+
top: 2px;
|
|
5664
|
+
}
|
|
5665
|
+
}
|
|
5666
|
+
|
|
5667
|
+
.action-label {
|
|
5668
|
+
display: inline-block;
|
|
5669
|
+
}
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
.shortcuts-list {
|
|
5673
|
+
padding-bottom: 8px;
|
|
5674
|
+
|
|
5675
|
+
&:not(.first-block) {
|
|
5676
|
+
border-top: @shortcuts-list-not-first-block-border;
|
|
5677
|
+
padding-top: 8px;
|
|
5678
|
+
}
|
|
5679
|
+
}
|
|
5680
|
+
|
|
5681
|
+
.shortcuts-header {
|
|
5682
|
+
font-family: @font-family-sans-serif;
|
|
5683
|
+
color: @shortcuts-header-color;
|
|
5684
|
+
line-height: 24px;
|
|
5685
|
+
font-size: 13px;
|
|
5686
|
+
font-weight: 400;
|
|
5687
|
+
padding: 0 15px 4px 22px;
|
|
5688
|
+
text-align: left;
|
|
5689
|
+
}
|
|
5690
|
+
|
|
5691
|
+
.shortcuts-item {
|
|
5692
|
+
color: @shortcuts-item-color;
|
|
5693
|
+
cursor: pointer;
|
|
5694
|
+
font-weight: 400;
|
|
5695
|
+
white-space: nowrap;
|
|
5696
|
+
line-height: 32px;
|
|
5697
|
+
padding: 0 26px 0 32px;
|
|
5698
|
+
text-align: left;
|
|
5699
|
+
transition: @igz-basic-transition-color;
|
|
5700
|
+
|
|
5701
|
+
&:hover {
|
|
5702
|
+
background-color: @shortcuts-item-hover-bg-color;
|
|
5703
|
+
}
|
|
5704
|
+
|
|
5705
|
+
}
|
|
5706
|
+
|
|
5707
|
+
}
|
|
5708
|
+
|
|
5709
|
+
&.small-action-menu {
|
|
5710
|
+
.menu-button {
|
|
5711
|
+
color: @small-action-menu-btn-color;
|
|
5712
|
+
width: auto;
|
|
5713
|
+
font-size: 12px;
|
|
5714
|
+
display: inline-block;
|
|
5715
|
+
height: auto;
|
|
5716
|
+
margin: 0;
|
|
5717
|
+
vertical-align: sub;
|
|
5718
|
+
}
|
|
5719
|
+
|
|
5720
|
+
.menu-dropdown {
|
|
5721
|
+
margin: 0;
|
|
5722
|
+
}
|
|
5723
|
+
}
|
|
5724
|
+
|
|
5725
|
+
.upward-menu {
|
|
5726
|
+
transform: translate(-100%, -100%);
|
|
5727
|
+
}
|
|
5728
|
+
}
|
|
5729
|
+
|
|
5572
5730
|
.igz-action-panel {
|
|
5573
5731
|
.action-panel-color-set();
|
|
5574
5732
|
.action-icon-color-set();
|
|
@@ -5747,193 +5905,35 @@ yx-axis
|
|
|
5747
5905
|
}
|
|
5748
5906
|
}
|
|
5749
5907
|
|
|
5750
|
-
.action-label {
|
|
5751
|
-
display: inline-block;
|
|
5752
|
-
white-space: nowrap;
|
|
5753
|
-
vertical-align: top;
|
|
5754
|
-
margin-right: 17px;
|
|
5755
|
-
}
|
|
5756
|
-
|
|
5757
|
-
.action-icon {
|
|
5758
|
-
color: @action-icon-color;
|
|
5759
|
-
font-size: 17px;
|
|
5760
|
-
display: inline-block;
|
|
5761
|
-
margin: 0 13px 0 21px;
|
|
5762
|
-
vertical-align: middle;
|
|
5763
|
-
}
|
|
5764
|
-
}
|
|
5765
|
-
}
|
|
5766
|
-
}
|
|
5767
|
-
}
|
|
5768
|
-
}
|
|
5769
|
-
|
|
5770
|
-
.action-subtemplate {
|
|
5771
|
-
border-bottom-left-radius: 4px;
|
|
5772
|
-
border-bottom-right-radius: 4px;
|
|
5773
|
-
border: @action-subtemplate-border;
|
|
5774
|
-
background-color: @action-subtemplate-bg-color;
|
|
5775
|
-
box-shadow: @action-subtemplate-box-shadow;
|
|
5776
|
-
position: fixed;
|
|
5777
|
-
margin: -2px 0 0 -1px;
|
|
5778
|
-
z-index: 10;
|
|
5779
|
-
}
|
|
5780
|
-
}
|
|
5781
|
-
|
|
5782
|
-
.igz-action-menu {
|
|
5783
|
-
.action-menu-color-set();
|
|
5784
|
-
.action-icon-color-set();
|
|
5785
|
-
|
|
5786
|
-
opacity: 1;
|
|
5787
|
-
position: relative;
|
|
5788
|
-
|
|
5789
|
-
.menu-button {
|
|
5790
|
-
color: @menu-btn-color;
|
|
5791
|
-
cursor: pointer;
|
|
5792
|
-
font-size: 18px;
|
|
5793
|
-
height: 19px;
|
|
5794
|
-
text-align: center;
|
|
5795
|
-
transition: @igz-basic-transition-color;
|
|
5796
|
-
width: 30px;
|
|
5797
|
-
|
|
5798
|
-
&.active,
|
|
5799
|
-
&:hover {
|
|
5800
|
-
color: @menu-btn-active-hover-color;
|
|
5801
|
-
}
|
|
5802
|
-
}
|
|
5803
|
-
|
|
5804
|
-
.menu-dropdown {
|
|
5805
|
-
visibility: hidden;
|
|
5806
|
-
background-color: @menu-dropdown-bg-color;
|
|
5807
|
-
border: @menu-dropdown-border;
|
|
5808
|
-
border-radius: 2px;
|
|
5809
|
-
box-shadow: @menu-dropdown-box-shadow;
|
|
5810
|
-
color: @menu-dropdown-color;
|
|
5811
|
-
font-family: @font-family-sans-serif;
|
|
5812
|
-
font-size: 13px;
|
|
5813
|
-
font-weight: 500;
|
|
5814
|
-
line-height: normal;
|
|
5815
|
-
margin-top: 9px;
|
|
5816
|
-
min-width: 129px;
|
|
5817
|
-
padding: 8px 0 0;
|
|
5818
|
-
position: absolute;
|
|
5819
|
-
z-index: 10;
|
|
5820
|
-
transform: translateX(-100%);
|
|
5821
|
-
|
|
5822
|
-
.actions-list {
|
|
5823
|
-
cursor: default;
|
|
5824
|
-
padding-bottom: 8px;
|
|
5825
|
-
|
|
5826
|
-
.tooltip {
|
|
5827
|
-
// !important used to overwrite third-party's inline style
|
|
5828
|
-
display: none !important;
|
|
5829
|
-
}
|
|
5830
|
-
}
|
|
5831
|
-
|
|
5832
|
-
.igz-action-item {
|
|
5833
|
-
color: @action-item-color;
|
|
5834
|
-
cursor: pointer;
|
|
5835
|
-
font-size: 13px;
|
|
5836
|
-
font-weight: 400;
|
|
5837
|
-
line-height: 32px;
|
|
5838
|
-
padding: 0 18px;
|
|
5839
|
-
text-align: left;
|
|
5840
|
-
white-space: nowrap;
|
|
5841
|
-
|
|
5842
|
-
&:hover,
|
|
5843
|
-
&.subtemplate-show {
|
|
5844
|
-
background-color: @action-item-hover-bg-color;
|
|
5845
|
-
}
|
|
5846
|
-
|
|
5847
|
-
&.inactive {
|
|
5848
|
-
color: @action-item-inactive-color;
|
|
5849
|
-
cursor: default;
|
|
5850
|
-
|
|
5851
|
-
&:hover {
|
|
5852
|
-
background-color: @menu-dropdown-bg-color;
|
|
5853
|
-
}
|
|
5854
|
-
}
|
|
5855
|
-
|
|
5856
|
-
.action-icon {
|
|
5857
|
-
color: @action-icon-color;
|
|
5858
|
-
display: inline-block;
|
|
5859
|
-
padding-right: 14px;
|
|
5860
|
-
|
|
5861
|
-
&.icon-placeholder {
|
|
5862
|
-
&:before {
|
|
5863
|
-
content: '';
|
|
5864
|
-
display: inline-block;
|
|
5865
|
-
}
|
|
5866
|
-
}
|
|
5867
|
-
|
|
5868
|
-
&:before {
|
|
5869
|
-
font-size: 16px;
|
|
5870
|
-
position: relative;
|
|
5871
|
-
text-align: center;
|
|
5872
|
-
width: 20px;
|
|
5873
|
-
top: 2px;
|
|
5874
|
-
}
|
|
5875
|
-
}
|
|
5876
|
-
|
|
5877
|
-
.action-label {
|
|
5878
|
-
display: inline-block;
|
|
5879
|
-
}
|
|
5880
|
-
}
|
|
5881
|
-
|
|
5882
|
-
.shortcuts-list {
|
|
5883
|
-
padding-bottom: 8px;
|
|
5884
|
-
|
|
5885
|
-
&:not(.first-block) {
|
|
5886
|
-
border-top: @shortcuts-list-not-first-block-border;
|
|
5887
|
-
padding-top: 8px;
|
|
5888
|
-
}
|
|
5889
|
-
}
|
|
5890
|
-
|
|
5891
|
-
.shortcuts-header {
|
|
5892
|
-
font-family: @font-family-sans-serif;
|
|
5893
|
-
color: @shortcuts-header-color;
|
|
5894
|
-
line-height: 24px;
|
|
5895
|
-
font-size: 13px;
|
|
5896
|
-
font-weight: 400;
|
|
5897
|
-
padding: 0 15px 4px 22px;
|
|
5898
|
-
text-align: left;
|
|
5899
|
-
}
|
|
5900
|
-
|
|
5901
|
-
.shortcuts-item {
|
|
5902
|
-
color: @shortcuts-item-color;
|
|
5903
|
-
cursor: pointer;
|
|
5904
|
-
font-weight: 400;
|
|
5905
|
-
white-space: nowrap;
|
|
5906
|
-
line-height: 32px;
|
|
5907
|
-
padding: 0 26px 0 32px;
|
|
5908
|
-
text-align: left;
|
|
5909
|
-
transition: @igz-basic-transition-color;
|
|
5910
|
-
|
|
5911
|
-
&:hover {
|
|
5912
|
-
background-color: @shortcuts-item-hover-bg-color;
|
|
5913
|
-
}
|
|
5914
|
-
|
|
5915
|
-
}
|
|
5916
|
-
|
|
5917
|
-
}
|
|
5918
|
-
|
|
5919
|
-
&.small-action-menu {
|
|
5920
|
-
.menu-button {
|
|
5921
|
-
color: @small-action-menu-btn-color;
|
|
5922
|
-
width: auto;
|
|
5923
|
-
font-size: 12px;
|
|
5924
|
-
display: inline-block;
|
|
5925
|
-
height: auto;
|
|
5926
|
-
margin: 0;
|
|
5927
|
-
vertical-align: sub;
|
|
5928
|
-
}
|
|
5929
|
-
|
|
5930
|
-
.menu-dropdown {
|
|
5931
|
-
margin: 0;
|
|
5908
|
+
.action-label {
|
|
5909
|
+
display: inline-block;
|
|
5910
|
+
white-space: nowrap;
|
|
5911
|
+
vertical-align: top;
|
|
5912
|
+
margin-right: 17px;
|
|
5913
|
+
}
|
|
5914
|
+
|
|
5915
|
+
.action-icon {
|
|
5916
|
+
color: @action-icon-color;
|
|
5917
|
+
font-size: 17px;
|
|
5918
|
+
display: inline-block;
|
|
5919
|
+
margin: 0 13px 0 21px;
|
|
5920
|
+
vertical-align: middle;
|
|
5921
|
+
}
|
|
5922
|
+
}
|
|
5923
|
+
}
|
|
5924
|
+
}
|
|
5932
5925
|
}
|
|
5933
5926
|
}
|
|
5934
5927
|
|
|
5935
|
-
.
|
|
5936
|
-
|
|
5928
|
+
.action-subtemplate {
|
|
5929
|
+
border-bottom-left-radius: 4px;
|
|
5930
|
+
border-bottom-right-radius: 4px;
|
|
5931
|
+
border: @action-subtemplate-border;
|
|
5932
|
+
background-color: @action-subtemplate-bg-color;
|
|
5933
|
+
box-shadow: @action-subtemplate-box-shadow;
|
|
5934
|
+
position: fixed;
|
|
5935
|
+
margin: -2px 0 0 -1px;
|
|
5936
|
+
z-index: 10;
|
|
5937
5937
|
}
|
|
5938
5938
|
}
|
|
5939
5939
|
|
|
@@ -6971,37 +6971,6 @@ yx-axis
|
|
|
6971
6971
|
}
|
|
6972
6972
|
}
|
|
6973
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
|
-
line-break: anywhere;
|
|
7000
|
-
font-weight: 600;
|
|
7001
|
-
}
|
|
7002
|
-
}
|
|
7003
|
-
}
|
|
7004
|
-
|
|
7005
6974
|
.more-info-wrapper {
|
|
7006
6975
|
.more-info-color-set();
|
|
7007
6976
|
|
|
@@ -7161,6 +7130,76 @@ yx-axis
|
|
|
7161
7130
|
}
|
|
7162
7131
|
}
|
|
7163
7132
|
|
|
7133
|
+
.control-panel-log-row {
|
|
7134
|
+
.control-panel-log-table-row-color-set();
|
|
7135
|
+
|
|
7136
|
+
.log-entry {
|
|
7137
|
+
.log-entry-time {
|
|
7138
|
+
color: @log-entry-time-color;
|
|
7139
|
+
}
|
|
7140
|
+
|
|
7141
|
+
.log-entry-level-debug {
|
|
7142
|
+
color: @log-entry-level-debug-color;
|
|
7143
|
+
}
|
|
7144
|
+
|
|
7145
|
+
.log-entry-level-info {
|
|
7146
|
+
color: @log-entry-level-info-color;
|
|
7147
|
+
}
|
|
7148
|
+
|
|
7149
|
+
.log-entry-level-warn, .log-entry-level-warning {
|
|
7150
|
+
color: @log-entry-level-warn-color;
|
|
7151
|
+
}
|
|
7152
|
+
|
|
7153
|
+
.log-entry-level-error {
|
|
7154
|
+
color: @log-entry-level-error-color;
|
|
7155
|
+
}
|
|
7156
|
+
|
|
7157
|
+
.log-entry-message {
|
|
7158
|
+
line-break: anywhere;
|
|
7159
|
+
font-weight: 600;
|
|
7160
|
+
}
|
|
7161
|
+
}
|
|
7162
|
+
}
|
|
7163
|
+
|
|
7164
|
+
.igz-navigation-tabs {
|
|
7165
|
+
.navigation-tabs-color-set();
|
|
7166
|
+
|
|
7167
|
+
background-color: @navigation-tabs-bg-color;
|
|
7168
|
+
height: 56px;
|
|
7169
|
+
padding-top: 7px;
|
|
7170
|
+
|
|
7171
|
+
.navigation-tab {
|
|
7172
|
+
float: left;
|
|
7173
|
+
height: 32px;
|
|
7174
|
+
padding: 15px 24px 0;
|
|
7175
|
+
font-family: @font-family-sans-serif;
|
|
7176
|
+
color: @navigation-tab-color;
|
|
7177
|
+
font-size: 14px;
|
|
7178
|
+
text-align: center;
|
|
7179
|
+
cursor: pointer;
|
|
7180
|
+
border-bottom: @navigation-tab-border-bottom;
|
|
7181
|
+
box-sizing: content-box;
|
|
7182
|
+
|
|
7183
|
+
&.active, &.active:hover {
|
|
7184
|
+
background-color: @navigation-tab-active-hover-bg-color;
|
|
7185
|
+
color: @navigation-tab-active-hover-color;
|
|
7186
|
+
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
7187
|
+
}
|
|
7188
|
+
|
|
7189
|
+
&:hover {
|
|
7190
|
+
background-color: @navigation-tab-hover-bg-color;
|
|
7191
|
+
}
|
|
7192
|
+
|
|
7193
|
+
&.active {
|
|
7194
|
+
background-color: @navigation-tab-active-bg-color;
|
|
7195
|
+
}
|
|
7196
|
+
|
|
7197
|
+
@media screen and (max-width: 940px) {
|
|
7198
|
+
padding: 15px 12px 0;
|
|
7199
|
+
}
|
|
7200
|
+
}
|
|
7201
|
+
}
|
|
7202
|
+
|
|
7164
7203
|
.igz-multiple-checkboxes {
|
|
7165
7204
|
.multiple-checkboxes-color-set();
|
|
7166
7205
|
|
|
@@ -7357,45 +7396,6 @@ yx-axis
|
|
|
7357
7396
|
}
|
|
7358
7397
|
}
|
|
7359
7398
|
|
|
7360
|
-
.igz-navigation-tabs {
|
|
7361
|
-
.navigation-tabs-color-set();
|
|
7362
|
-
|
|
7363
|
-
background-color: @navigation-tabs-bg-color;
|
|
7364
|
-
height: 56px;
|
|
7365
|
-
padding-top: 7px;
|
|
7366
|
-
|
|
7367
|
-
.navigation-tab {
|
|
7368
|
-
float: left;
|
|
7369
|
-
height: 32px;
|
|
7370
|
-
padding: 15px 24px 0;
|
|
7371
|
-
font-family: @font-family-sans-serif;
|
|
7372
|
-
color: @navigation-tab-color;
|
|
7373
|
-
font-size: 14px;
|
|
7374
|
-
text-align: center;
|
|
7375
|
-
cursor: pointer;
|
|
7376
|
-
border-bottom: @navigation-tab-border-bottom;
|
|
7377
|
-
box-sizing: content-box;
|
|
7378
|
-
|
|
7379
|
-
&.active, &.active:hover {
|
|
7380
|
-
background-color: @navigation-tab-active-hover-bg-color;
|
|
7381
|
-
color: @navigation-tab-active-hover-color;
|
|
7382
|
-
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
7383
|
-
}
|
|
7384
|
-
|
|
7385
|
-
&:hover {
|
|
7386
|
-
background-color: @navigation-tab-hover-bg-color;
|
|
7387
|
-
}
|
|
7388
|
-
|
|
7389
|
-
&.active {
|
|
7390
|
-
background-color: @navigation-tab-active-bg-color;
|
|
7391
|
-
}
|
|
7392
|
-
|
|
7393
|
-
@media screen and (max-width: 940px) {
|
|
7394
|
-
padding: 15px 12px 0;
|
|
7395
|
-
}
|
|
7396
|
-
}
|
|
7397
|
-
}
|
|
7398
|
-
|
|
7399
7399
|
.igz-number-input {
|
|
7400
7400
|
.number-input-color-set();
|
|
7401
7401
|
|
|
@@ -7690,104 +7690,13 @@ yx-axis
|
|
|
7690
7690
|
color: @input-field-color;
|
|
7691
7691
|
text-align: center;
|
|
7692
7692
|
|
|
7693
|
-
&:hover {
|
|
7694
|
-
border: @input-field-hover-border;
|
|
7695
|
-
}
|
|
7696
|
-
}
|
|
7697
|
-
}
|
|
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;
|
|
7693
|
+
&:hover {
|
|
7694
|
+
border: @input-field-hover-border;
|
|
7779
7695
|
}
|
|
7780
7696
|
}
|
|
7781
7697
|
}
|
|
7782
7698
|
}
|
|
7783
|
-
|
|
7784
|
-
.igz-highcharts-wrapper {
|
|
7785
|
-
height: 40px;
|
|
7786
|
-
position: relative;
|
|
7787
|
-
width: 100%;
|
|
7788
|
-
}
|
|
7789
7699
|
}
|
|
7790
|
-
|
|
7791
7700
|
.search-input {
|
|
7792
7701
|
.search-input-color-set();
|
|
7793
7702
|
|
|
@@ -7975,6 +7884,97 @@ yx-axis
|
|
|
7975
7884
|
}
|
|
7976
7885
|
}
|
|
7977
7886
|
}
|
|
7887
|
+
.igz-size {
|
|
7888
|
+
.size-color-set();
|
|
7889
|
+
|
|
7890
|
+
align-items: center;
|
|
7891
|
+
display: flex;
|
|
7892
|
+
justify-content: space-between;
|
|
7893
|
+
min-height: 40px;
|
|
7894
|
+
|
|
7895
|
+
&:after {
|
|
7896
|
+
content: ' ';
|
|
7897
|
+
display: inline-block;
|
|
7898
|
+
vertical-align: middle;
|
|
7899
|
+
}
|
|
7900
|
+
|
|
7901
|
+
.size-value {
|
|
7902
|
+
line-height: 1;
|
|
7903
|
+
flex: 0 0 100px;
|
|
7904
|
+
min-width: 100px;
|
|
7905
|
+
|
|
7906
|
+
> span {
|
|
7907
|
+
line-height: 25px;
|
|
7908
|
+
}
|
|
7909
|
+
|
|
7910
|
+
&.short {
|
|
7911
|
+
flex: 0 0 75px;
|
|
7912
|
+
min-width: 75px;
|
|
7913
|
+
}
|
|
7914
|
+
|
|
7915
|
+
&.shorten {
|
|
7916
|
+
flex: 0 0 60px;
|
|
7917
|
+
min-width: 60px;
|
|
7918
|
+
}
|
|
7919
|
+
|
|
7920
|
+
&.shortest {
|
|
7921
|
+
flex: 0 0 40px;
|
|
7922
|
+
min-width: 40px;
|
|
7923
|
+
}
|
|
7924
|
+
}
|
|
7925
|
+
|
|
7926
|
+
.size-reserved {
|
|
7927
|
+
color: @size-reserved-color;
|
|
7928
|
+
font-size: 12px;
|
|
7929
|
+
|
|
7930
|
+
.icon-font-arrow-right:before {
|
|
7931
|
+
color: @size-reserved-arrow-right-before-color;
|
|
7932
|
+
font-size: 10px;
|
|
7933
|
+
padding: 0 4px 0 4px;
|
|
7934
|
+
}
|
|
7935
|
+
|
|
7936
|
+
.icon-font-infinity:before {
|
|
7937
|
+
color: @size-reserved-infinity-before-color;
|
|
7938
|
+
font-size: 10px;
|
|
7939
|
+
}
|
|
7940
|
+
}
|
|
7941
|
+
|
|
7942
|
+
.size-chart {
|
|
7943
|
+
flex: 1 1 auto;
|
|
7944
|
+
min-width: 0;
|
|
7945
|
+
|
|
7946
|
+
div.highcharts-tooltip {
|
|
7947
|
+
position: fixed !important;
|
|
7948
|
+
|
|
7949
|
+
.igz-tooltip-wrapper {
|
|
7950
|
+
color: @size-chart-tooltip-wrapper-color;
|
|
7951
|
+
|
|
7952
|
+
&.used-capacity-tooltip-wrapper {
|
|
7953
|
+
.igz-row {
|
|
7954
|
+
.tooltip-label,
|
|
7955
|
+
.tooltip-value {
|
|
7956
|
+
text-overflow: unset;
|
|
7957
|
+
}
|
|
7958
|
+
}
|
|
7959
|
+
}
|
|
7960
|
+
|
|
7961
|
+
.tooltip-header {
|
|
7962
|
+
padding-bottom: 6px;
|
|
7963
|
+
margin-bottom: 5px;
|
|
7964
|
+
line-height: 1.1;
|
|
7965
|
+
text-align: center;
|
|
7966
|
+
}
|
|
7967
|
+
}
|
|
7968
|
+
}
|
|
7969
|
+
}
|
|
7970
|
+
|
|
7971
|
+
.igz-highcharts-wrapper {
|
|
7972
|
+
height: 40px;
|
|
7973
|
+
position: relative;
|
|
7974
|
+
width: 100%;
|
|
7975
|
+
}
|
|
7976
|
+
}
|
|
7977
|
+
|
|
7978
7978
|
.igz-slider-input-block {
|
|
7979
7979
|
.igz-slider-input-block-color-set();
|
|
7980
7980
|
|
|
@@ -8104,6 +8104,83 @@ yx-axis
|
|
|
8104
8104
|
}
|
|
8105
8105
|
}
|
|
8106
8106
|
|
|
8107
|
+
.ngdialog.text-edit {
|
|
8108
|
+
.text-edit-color-set();
|
|
8109
|
+
|
|
8110
|
+
.ngdialog-content {
|
|
8111
|
+
padding: 0;
|
|
8112
|
+
width: 1000px;
|
|
8113
|
+
height: 678px;
|
|
8114
|
+
|
|
8115
|
+
.text-preview-directive-wrapper {
|
|
8116
|
+
.title {
|
|
8117
|
+
margin: 25px 0 0 24px;
|
|
8118
|
+
padding: 0 70px 0 0;
|
|
8119
|
+
}
|
|
8120
|
+
|
|
8121
|
+
.close-button {
|
|
8122
|
+
position: absolute;
|
|
8123
|
+
top: 24px;
|
|
8124
|
+
right: 24px;
|
|
8125
|
+
font-size: 18px;
|
|
8126
|
+
color: @close-btn-color;
|
|
8127
|
+
}
|
|
8128
|
+
|
|
8129
|
+
.buttons {
|
|
8130
|
+
margin-right: 24px;
|
|
8131
|
+
}
|
|
8132
|
+
|
|
8133
|
+
.text-preview-wrapper {
|
|
8134
|
+
background-color: @text-preview-wrapper-bg-color;
|
|
8135
|
+
border-top: @text-preview-wrapper-border-top;
|
|
8136
|
+
border-bottom: @text-preview-wrapper-border-bottom;
|
|
8137
|
+
border-radius: 2px;
|
|
8138
|
+
margin-bottom: 16px;
|
|
8139
|
+
padding: 15px 22px 17px;
|
|
8140
|
+
min-width: 690px;
|
|
8141
|
+
height: 550px;
|
|
8142
|
+
|
|
8143
|
+
.text-preview-container {
|
|
8144
|
+
width: 100%;
|
|
8145
|
+
line-height: 1.9;
|
|
8146
|
+
text-align: left;
|
|
8147
|
+
padding-right: 22px;
|
|
8148
|
+
font-size: 13px;
|
|
8149
|
+
color: @text-preview-container-color;
|
|
8150
|
+
resize: none;
|
|
8151
|
+
overflow: hidden;
|
|
8152
|
+
border-color: @text-preview-container-border-color;
|
|
8153
|
+
background-color: @text-preview-container-bg-color;
|
|
8154
|
+
cursor: text;
|
|
8155
|
+
}
|
|
8156
|
+
|
|
8157
|
+
.text-preview-container:focus {
|
|
8158
|
+
outline: 0;
|
|
8159
|
+
}
|
|
8160
|
+
|
|
8161
|
+
.word-wrap-checkbox-wrapper {
|
|
8162
|
+
width: 100%;
|
|
8163
|
+
display: flex;
|
|
8164
|
+
justify-content: flex-end;
|
|
8165
|
+
|
|
8166
|
+
.col-checkbox {
|
|
8167
|
+
line-height: normal;
|
|
8168
|
+
height: 25px;
|
|
8169
|
+
|
|
8170
|
+
label:before {
|
|
8171
|
+
font-size: 16px;
|
|
8172
|
+
}
|
|
8173
|
+
}
|
|
8174
|
+
}
|
|
8175
|
+
}
|
|
8176
|
+
}
|
|
8177
|
+
}
|
|
8178
|
+
|
|
8179
|
+
.ncl-monaco {
|
|
8180
|
+
height: 500px;
|
|
8181
|
+
}
|
|
8182
|
+
}
|
|
8183
|
+
|
|
8107
8184
|
.splash-screen {
|
|
8108
8185
|
.splash-screen-color-set();
|
|
8109
8186
|
|
|
@@ -8199,95 +8276,18 @@ yx-axis
|
|
|
8199
8276
|
|
|
8200
8277
|
&:hover {
|
|
8201
8278
|
background-color: @alert-splash-screen-refresh-btn-hover-bg-color;
|
|
8202
|
-
box-shadow: @alert-splash-screen-refresh-btn-hover-box-shadow;
|
|
8203
|
-
}
|
|
8204
|
-
|
|
8205
|
-
.igz-icon-refresh {
|
|
8206
|
-
font-size: 16px;
|
|
8207
|
-
margin-right: 8px;
|
|
8208
|
-
vertical-align: middle;
|
|
8209
|
-
}
|
|
8210
|
-
}
|
|
8211
|
-
}
|
|
8212
|
-
}
|
|
8213
|
-
}
|
|
8214
|
-
.ngdialog.text-edit {
|
|
8215
|
-
.text-edit-color-set();
|
|
8216
|
-
|
|
8217
|
-
.ngdialog-content {
|
|
8218
|
-
padding: 0;
|
|
8219
|
-
width: 1000px;
|
|
8220
|
-
height: 678px;
|
|
8221
|
-
|
|
8222
|
-
.text-preview-directive-wrapper {
|
|
8223
|
-
.title {
|
|
8224
|
-
margin: 25px 0 0 24px;
|
|
8225
|
-
padding: 0 70px 0 0;
|
|
8226
|
-
}
|
|
8227
|
-
|
|
8228
|
-
.close-button {
|
|
8229
|
-
position: absolute;
|
|
8230
|
-
top: 24px;
|
|
8231
|
-
right: 24px;
|
|
8232
|
-
font-size: 18px;
|
|
8233
|
-
color: @close-btn-color;
|
|
8234
|
-
}
|
|
8235
|
-
|
|
8236
|
-
.buttons {
|
|
8237
|
-
margin-right: 24px;
|
|
8238
|
-
}
|
|
8239
|
-
|
|
8240
|
-
.text-preview-wrapper {
|
|
8241
|
-
background-color: @text-preview-wrapper-bg-color;
|
|
8242
|
-
border-top: @text-preview-wrapper-border-top;
|
|
8243
|
-
border-bottom: @text-preview-wrapper-border-bottom;
|
|
8244
|
-
border-radius: 2px;
|
|
8245
|
-
margin-bottom: 16px;
|
|
8246
|
-
padding: 15px 22px 17px;
|
|
8247
|
-
min-width: 690px;
|
|
8248
|
-
height: 550px;
|
|
8249
|
-
|
|
8250
|
-
.text-preview-container {
|
|
8251
|
-
width: 100%;
|
|
8252
|
-
line-height: 1.9;
|
|
8253
|
-
text-align: left;
|
|
8254
|
-
padding-right: 22px;
|
|
8255
|
-
font-size: 13px;
|
|
8256
|
-
color: @text-preview-container-color;
|
|
8257
|
-
resize: none;
|
|
8258
|
-
overflow: hidden;
|
|
8259
|
-
border-color: @text-preview-container-border-color;
|
|
8260
|
-
background-color: @text-preview-container-bg-color;
|
|
8261
|
-
cursor: text;
|
|
8262
|
-
}
|
|
8263
|
-
|
|
8264
|
-
.text-preview-container:focus {
|
|
8265
|
-
outline: 0;
|
|
8266
|
-
}
|
|
8267
|
-
|
|
8268
|
-
.word-wrap-checkbox-wrapper {
|
|
8269
|
-
width: 100%;
|
|
8270
|
-
display: flex;
|
|
8271
|
-
justify-content: flex-end;
|
|
8272
|
-
|
|
8273
|
-
.col-checkbox {
|
|
8274
|
-
line-height: normal;
|
|
8275
|
-
height: 25px;
|
|
8276
|
-
|
|
8277
|
-
label:before {
|
|
8278
|
-
font-size: 16px;
|
|
8279
|
-
}
|
|
8280
|
-
}
|
|
8279
|
+
box-shadow: @alert-splash-screen-refresh-btn-hover-box-shadow;
|
|
8280
|
+
}
|
|
8281
|
+
|
|
8282
|
+
.igz-icon-refresh {
|
|
8283
|
+
font-size: 16px;
|
|
8284
|
+
margin-right: 8px;
|
|
8285
|
+
vertical-align: middle;
|
|
8281
8286
|
}
|
|
8282
8287
|
}
|
|
8283
8288
|
}
|
|
8284
8289
|
}
|
|
8285
|
-
|
|
8286
|
-
.ncl-monaco {
|
|
8287
|
-
height: 500px;
|
|
8288
|
-
}
|
|
8289
8290
|
}
|
|
8290
|
-
|
|
8291
8291
|
.toast-status-panel {
|
|
8292
8292
|
.toast-status-panel-color-set();
|
|
8293
8293
|
|
|
@@ -9304,6 +9304,40 @@ body {
|
|
|
9304
9304
|
}
|
|
9305
9305
|
}
|
|
9306
9306
|
|
|
9307
|
+
.duplicate-function-dialog-wrapper {
|
|
9308
|
+
.main-content {
|
|
9309
|
+
.field-group {
|
|
9310
|
+
display: flex;
|
|
9311
|
+
flex-wrap: wrap;
|
|
9312
|
+
width: 450px;
|
|
9313
|
+
|
|
9314
|
+
.field-label.function-name-label,
|
|
9315
|
+
.field-input.function-name-input,
|
|
9316
|
+
.field-input.function-configuration-input {
|
|
9317
|
+
width: 100%;
|
|
9318
|
+
}
|
|
9319
|
+
|
|
9320
|
+
.field-label.function-configuration-label {
|
|
9321
|
+
width: 100%;
|
|
9322
|
+
line-height: 30px;
|
|
9323
|
+
}
|
|
9324
|
+
|
|
9325
|
+
.field-input.function-name-input,
|
|
9326
|
+
.field-input.function-configuration-input {
|
|
9327
|
+
.error {
|
|
9328
|
+
top: 38px;
|
|
9329
|
+
}
|
|
9330
|
+
}
|
|
9331
|
+
|
|
9332
|
+
.field-label.function-configuration-path {
|
|
9333
|
+
font-size: 14px;
|
|
9334
|
+
margin-left: 3px;
|
|
9335
|
+
line-height: 30px;
|
|
9336
|
+
}
|
|
9337
|
+
}
|
|
9338
|
+
}
|
|
9339
|
+
}
|
|
9340
|
+
|
|
9307
9341
|
.ncl-function-collapsing-row {
|
|
9308
9342
|
background-color: @white;
|
|
9309
9343
|
margin-bottom: 8px;
|
|
@@ -9438,40 +9472,6 @@ body {
|
|
|
9438
9472
|
}
|
|
9439
9473
|
}
|
|
9440
9474
|
|
|
9441
|
-
.duplicate-function-dialog-wrapper {
|
|
9442
|
-
.main-content {
|
|
9443
|
-
.field-group {
|
|
9444
|
-
display: flex;
|
|
9445
|
-
flex-wrap: wrap;
|
|
9446
|
-
width: 450px;
|
|
9447
|
-
|
|
9448
|
-
.field-label.function-name-label,
|
|
9449
|
-
.field-input.function-name-input,
|
|
9450
|
-
.field-input.function-configuration-input {
|
|
9451
|
-
width: 100%;
|
|
9452
|
-
}
|
|
9453
|
-
|
|
9454
|
-
.field-label.function-configuration-label {
|
|
9455
|
-
width: 100%;
|
|
9456
|
-
line-height: 30px;
|
|
9457
|
-
}
|
|
9458
|
-
|
|
9459
|
-
.field-input.function-name-input,
|
|
9460
|
-
.field-input.function-configuration-input {
|
|
9461
|
-
.error {
|
|
9462
|
-
top: 38px;
|
|
9463
|
-
}
|
|
9464
|
-
}
|
|
9465
|
-
|
|
9466
|
-
.field-label.function-configuration-path {
|
|
9467
|
-
font-size: 14px;
|
|
9468
|
-
margin-left: 3px;
|
|
9469
|
-
line-height: 30px;
|
|
9470
|
-
}
|
|
9471
|
-
}
|
|
9472
|
-
}
|
|
9473
|
-
}
|
|
9474
|
-
|
|
9475
9475
|
.override-function-dialog {
|
|
9476
9476
|
.sub-title {
|
|
9477
9477
|
font-size: 16px;
|
|
@@ -9724,27 +9724,221 @@ body {
|
|
|
9724
9724
|
}
|
|
9725
9725
|
}
|
|
9726
9726
|
|
|
9727
|
-
.label-value-row {
|
|
9728
|
-
margin: 0 10px 8px 27px;
|
|
9729
|
-
display: flex;
|
|
9730
|
-
flex-direction: row;
|
|
9731
|
-
font-size: 14px;
|
|
9732
|
-
line-height: 16px;
|
|
9727
|
+
.label-value-row {
|
|
9728
|
+
margin: 0 10px 8px 27px;
|
|
9729
|
+
display: flex;
|
|
9730
|
+
flex-direction: row;
|
|
9731
|
+
font-size: 14px;
|
|
9732
|
+
line-height: 16px;
|
|
9733
|
+
|
|
9734
|
+
.label-cell {
|
|
9735
|
+
color: @greyish-purple;
|
|
9736
|
+
width: 185px;
|
|
9737
|
+
}
|
|
9738
|
+
.value-cell {
|
|
9739
|
+
width: auto;
|
|
9740
|
+
padding-left: 23px;
|
|
9741
|
+
}
|
|
9742
|
+
}
|
|
9743
|
+
}
|
|
9744
|
+
}
|
|
9745
|
+
}
|
|
9746
|
+
}
|
|
9747
|
+
|
|
9748
|
+
// Style rules for actions bar
|
|
9749
|
+
.border-top > .igz-info-page-actions-bar {
|
|
9750
|
+
.info-page-actions-bar-color-set();
|
|
9751
|
+
|
|
9752
|
+
border-top: @info-page-actions-bar-border-top;
|
|
9753
|
+
}
|
|
9754
|
+
|
|
9755
|
+
.igz-info-page-actions-bar {
|
|
9756
|
+
.info-page-actions-bar-color-set();
|
|
9757
|
+
|
|
9758
|
+
background-color: @info-page-actions-bar-bg-color;
|
|
9759
|
+
position: absolute;
|
|
9760
|
+
top: 0;
|
|
9761
|
+
right: 0;
|
|
9762
|
+
left: 0;
|
|
9763
|
+
height: 56px;
|
|
9764
|
+
padding: 8px 20px 8px 16px;
|
|
9765
|
+
border-bottom: @info-page-actions-bar-border-bottom;
|
|
9766
|
+
transition: @igz-basic-transition;
|
|
9767
|
+
|
|
9768
|
+
&.upper-pane-opened {
|
|
9769
|
+
top: 150px;
|
|
9770
|
+
}
|
|
9771
|
+
|
|
9772
|
+
&.filters-opened {
|
|
9773
|
+
right: 376px;
|
|
9774
|
+
padding-right: 8px;
|
|
9775
|
+
}
|
|
9776
|
+
|
|
9777
|
+
&.info-pane-opened {
|
|
9778
|
+
right: 379px;
|
|
9779
|
+
padding-right: 8px;
|
|
9780
|
+
}
|
|
9781
|
+
|
|
9782
|
+
.actions-bar-left {
|
|
9783
|
+
float: left;
|
|
9784
|
+
height: 100%;
|
|
9785
|
+
}
|
|
9786
|
+
|
|
9787
|
+
.actions-bar-right {
|
|
9788
|
+
float: right;
|
|
9789
|
+
height: 100%;
|
|
9790
|
+
text-align: right;
|
|
9791
|
+
}
|
|
9792
|
+
|
|
9793
|
+
&:before, &:after {
|
|
9794
|
+
content: " ";
|
|
9795
|
+
display: table;
|
|
9796
|
+
}
|
|
9797
|
+
&:after {
|
|
9798
|
+
clear: both;
|
|
9799
|
+
}
|
|
9800
|
+
|
|
9801
|
+
.actions-panes-block {
|
|
9802
|
+
padding-left: 16px;
|
|
9803
|
+
border-left: @actions-panes-block-border-left;
|
|
9804
|
+
}
|
|
9805
|
+
|
|
9806
|
+
.actions-content-block {
|
|
9807
|
+
margin: 0 8px 0 32px;
|
|
9808
|
+
}
|
|
9809
|
+
|
|
9810
|
+
.actions-buttons-block {
|
|
9811
|
+
margin-left: 16px;
|
|
9812
|
+
margin-top: 1px;
|
|
9813
|
+
|
|
9814
|
+
[class^="igz-button"]:not(:first-child), [class*="igz-button"]:not(:first-child) {
|
|
9815
|
+
margin-left: 8px;
|
|
9816
|
+
}
|
|
9817
|
+
}
|
|
9818
|
+
}
|
|
9819
|
+
|
|
9820
|
+
.igz-info-page-content-wrapper {
|
|
9821
|
+
.info-page-content-color-set();
|
|
9822
|
+
|
|
9823
|
+
position: absolute;
|
|
9824
|
+
top: 56px;
|
|
9825
|
+
right: 0;
|
|
9826
|
+
bottom: 0;
|
|
9827
|
+
left: 0;
|
|
9828
|
+
padding-top: 0;
|
|
9829
|
+
transition: @igz-basic-transition;
|
|
9830
|
+
background-color: @page-content-bg-color;
|
|
9831
|
+
|
|
9832
|
+
&.upper-pane-opened {
|
|
9833
|
+
top: 216px;
|
|
9834
|
+
}
|
|
9835
|
+
|
|
9836
|
+
&.filters-opened {
|
|
9837
|
+
right: 377px;
|
|
9838
|
+
}
|
|
9839
|
+
|
|
9840
|
+
&.info-pane-opened {
|
|
9841
|
+
right: 379px;
|
|
9842
|
+
}
|
|
9843
|
+
|
|
9844
|
+
.igz-info-page-content {
|
|
9845
|
+
min-width: 946px;
|
|
9846
|
+
max-width: 100%;
|
|
9847
|
+
padding: 40px 25px;
|
|
9848
|
+
}
|
|
9849
|
+
}
|
|
9850
|
+
|
|
9851
|
+
igz-info-page-actions-bar {
|
|
9852
|
+
.igz-info-page-actions-bar .actions-content-block {
|
|
9853
|
+
margin-left: 14px;
|
|
9854
|
+
}
|
|
9855
|
+
}
|
|
9856
|
+
|
|
9857
|
+
igz-info-page-content {
|
|
9858
|
+
.info-page-content-color-set();
|
|
9859
|
+
|
|
9860
|
+
.container-data-access-policy-table, .data-lifecycle-table {
|
|
9861
|
+
&.common-table {
|
|
9862
|
+
.common-table-header {
|
|
9863
|
+
position: relative;
|
|
9864
|
+
height: 49px;
|
|
9865
|
+
line-height: 48px;
|
|
9866
|
+
|
|
9867
|
+
.common-table-cell {
|
|
9868
|
+
margin-top: -1px;
|
|
9869
|
+
height: 49px;
|
|
9870
|
+
|
|
9871
|
+
&.selected {
|
|
9872
|
+
background-color: @common-table-cell-selected-bg-color;
|
|
9873
|
+
border: @common-table-cell-selected-border;
|
|
9874
|
+
}
|
|
9875
|
+
|
|
9876
|
+
&:last-child {
|
|
9877
|
+
margin-right: 0;
|
|
9878
|
+
}
|
|
9879
|
+
|
|
9880
|
+
&.actions-menu {
|
|
9881
|
+
width: 0;
|
|
9882
|
+
}
|
|
9883
|
+
|
|
9884
|
+
&.check-all-rows {
|
|
9885
|
+
padding-left: 30px;
|
|
9886
|
+
|
|
9887
|
+
.action-checkbox-all {
|
|
9888
|
+
padding-top: 2px;
|
|
9889
|
+
}
|
|
9890
|
+
}
|
|
9891
|
+
}
|
|
9892
|
+
|
|
9893
|
+
.common-table-cells-container {
|
|
9894
|
+
margin-right: 45px;
|
|
9895
|
+
|
|
9896
|
+
.common-table-cell {
|
|
9897
|
+
height: 49px;
|
|
9898
|
+
padding: 0 15px;
|
|
9899
|
+
border-right: @common-table-cell-border-right;
|
|
9900
|
+
|
|
9901
|
+
&:first-child {
|
|
9902
|
+
padding-left: 7px;
|
|
9903
|
+
}
|
|
9904
|
+
}
|
|
9905
|
+
}
|
|
9906
|
+
}
|
|
9907
|
+
|
|
9908
|
+
.common-table-body {
|
|
9909
|
+
margin-top: 7px;
|
|
9733
9910
|
|
|
9734
|
-
|
|
9735
|
-
|
|
9736
|
-
width:
|
|
9737
|
-
}
|
|
9738
|
-
.value-cell {
|
|
9739
|
-
width: auto;
|
|
9740
|
-
padding-left: 23px;
|
|
9911
|
+
.common-table-cell {
|
|
9912
|
+
&.actions-menu {
|
|
9913
|
+
width: 45px;
|
|
9741
9914
|
}
|
|
9742
9915
|
}
|
|
9743
9916
|
}
|
|
9917
|
+
|
|
9918
|
+
.data-access-policy-layers, .data-lifecycle-layers {
|
|
9919
|
+
&:last-child {
|
|
9920
|
+
margin-bottom: 20px;
|
|
9921
|
+
}
|
|
9922
|
+
}
|
|
9923
|
+
}
|
|
9924
|
+
|
|
9925
|
+
.sortable-empty {
|
|
9926
|
+
background-color: @sortable-empty-bg-color;
|
|
9927
|
+
color: @sortable-empty-color;
|
|
9928
|
+
font-size: 14px;
|
|
9929
|
+
font-weight: 400;
|
|
9930
|
+
font-family: 'Open Sans', sans-serif;
|
|
9931
|
+
border-bottom: @sortable-empty-border;
|
|
9932
|
+
border-left: @sortable-empty-border;
|
|
9933
|
+
border-right: @sortable-empty-border;
|
|
9934
|
+
padding-left: 70px;
|
|
9935
|
+
height: 40px;
|
|
9936
|
+
line-height: 38px;
|
|
9744
9937
|
}
|
|
9745
9938
|
}
|
|
9746
9939
|
}
|
|
9747
9940
|
|
|
9941
|
+
|
|
9748
9942
|
.info-page-filters-bookmark {
|
|
9749
9943
|
.info-page-filters-color-set();
|
|
9750
9944
|
|
|
@@ -10047,234 +10241,40 @@ body {
|
|
|
10047
10241
|
|
|
10048
10242
|
.date-time-picker .datetimepicker-input {
|
|
10049
10243
|
width: 302px;
|
|
10050
|
-
}
|
|
10051
|
-
|
|
10052
|
-
.panel {
|
|
10053
|
-
background-color: inherit;
|
|
10054
|
-
border-width: 0 0 1px 0;
|
|
10055
|
-
border-radius: 0;
|
|
10056
|
-
box-shadow: none;
|
|
10057
|
-
border-color: #ddd;
|
|
10058
|
-
|
|
10059
|
-
&.panel-default {
|
|
10060
|
-
border-color: @accordion-panel-default-border-color;
|
|
10061
|
-
|
|
10062
|
-
& > .panel-heading {
|
|
10063
|
-
background-color: inherit;
|
|
10064
|
-
border: 0;
|
|
10065
|
-
}
|
|
10066
|
-
}
|
|
10067
|
-
}
|
|
10068
|
-
}
|
|
10069
|
-
}
|
|
10070
|
-
}
|
|
10071
|
-
}
|
|
10072
|
-
|
|
10073
|
-
.info-page-filters-footer {
|
|
10074
|
-
display: flex;
|
|
10075
|
-
justify-content: flex-end;
|
|
10076
|
-
position: absolute;
|
|
10077
|
-
height: 70px;
|
|
10078
|
-
padding: 16px 18px;
|
|
10079
|
-
bottom: 0;
|
|
10080
|
-
width: 100%;
|
|
10081
|
-
|
|
10082
|
-
button:not(:first-child) {
|
|
10083
|
-
margin-left: 5px;
|
|
10084
|
-
}
|
|
10085
|
-
}
|
|
10086
|
-
}
|
|
10087
|
-
|
|
10088
|
-
.igz-info-page-content-wrapper {
|
|
10089
|
-
.info-page-content-color-set();
|
|
10090
|
-
|
|
10091
|
-
position: absolute;
|
|
10092
|
-
top: 56px;
|
|
10093
|
-
right: 0;
|
|
10094
|
-
bottom: 0;
|
|
10095
|
-
left: 0;
|
|
10096
|
-
padding-top: 0;
|
|
10097
|
-
transition: @igz-basic-transition;
|
|
10098
|
-
background-color: @page-content-bg-color;
|
|
10099
|
-
|
|
10100
|
-
&.upper-pane-opened {
|
|
10101
|
-
top: 216px;
|
|
10102
|
-
}
|
|
10103
|
-
|
|
10104
|
-
&.filters-opened {
|
|
10105
|
-
right: 377px;
|
|
10106
|
-
}
|
|
10107
|
-
|
|
10108
|
-
&.info-pane-opened {
|
|
10109
|
-
right: 379px;
|
|
10110
|
-
}
|
|
10111
|
-
|
|
10112
|
-
.igz-info-page-content {
|
|
10113
|
-
min-width: 946px;
|
|
10114
|
-
max-width: 100%;
|
|
10115
|
-
padding: 40px 25px;
|
|
10116
|
-
}
|
|
10117
|
-
}
|
|
10118
|
-
|
|
10119
|
-
igz-info-page-actions-bar {
|
|
10120
|
-
.igz-info-page-actions-bar .actions-content-block {
|
|
10121
|
-
margin-left: 14px;
|
|
10122
|
-
}
|
|
10123
|
-
}
|
|
10124
|
-
|
|
10125
|
-
igz-info-page-content {
|
|
10126
|
-
.info-page-content-color-set();
|
|
10127
|
-
|
|
10128
|
-
.container-data-access-policy-table, .data-lifecycle-table {
|
|
10129
|
-
&.common-table {
|
|
10130
|
-
.common-table-header {
|
|
10131
|
-
position: relative;
|
|
10132
|
-
height: 49px;
|
|
10133
|
-
line-height: 48px;
|
|
10134
|
-
|
|
10135
|
-
.common-table-cell {
|
|
10136
|
-
margin-top: -1px;
|
|
10137
|
-
height: 49px;
|
|
10138
|
-
|
|
10139
|
-
&.selected {
|
|
10140
|
-
background-color: @common-table-cell-selected-bg-color;
|
|
10141
|
-
border: @common-table-cell-selected-border;
|
|
10142
|
-
}
|
|
10143
|
-
|
|
10144
|
-
&:last-child {
|
|
10145
|
-
margin-right: 0;
|
|
10146
|
-
}
|
|
10147
|
-
|
|
10148
|
-
&.actions-menu {
|
|
10149
|
-
width: 0;
|
|
10150
|
-
}
|
|
10151
|
-
|
|
10152
|
-
&.check-all-rows {
|
|
10153
|
-
padding-left: 30px;
|
|
10154
|
-
|
|
10155
|
-
.action-checkbox-all {
|
|
10156
|
-
padding-top: 2px;
|
|
10157
|
-
}
|
|
10158
|
-
}
|
|
10159
|
-
}
|
|
10160
|
-
|
|
10161
|
-
.common-table-cells-container {
|
|
10162
|
-
margin-right: 45px;
|
|
10163
|
-
|
|
10164
|
-
.common-table-cell {
|
|
10165
|
-
height: 49px;
|
|
10166
|
-
padding: 0 15px;
|
|
10167
|
-
border-right: @common-table-cell-border-right;
|
|
10168
|
-
|
|
10169
|
-
&:first-child {
|
|
10170
|
-
padding-left: 7px;
|
|
10171
|
-
}
|
|
10172
|
-
}
|
|
10173
|
-
}
|
|
10174
|
-
}
|
|
10175
|
-
|
|
10176
|
-
.common-table-body {
|
|
10177
|
-
margin-top: 7px;
|
|
10178
|
-
|
|
10179
|
-
.common-table-cell {
|
|
10180
|
-
&.actions-menu {
|
|
10181
|
-
width: 45px;
|
|
10182
|
-
}
|
|
10183
|
-
}
|
|
10184
|
-
}
|
|
10185
|
-
|
|
10186
|
-
.data-access-policy-layers, .data-lifecycle-layers {
|
|
10187
|
-
&:last-child {
|
|
10188
|
-
margin-bottom: 20px;
|
|
10189
|
-
}
|
|
10190
|
-
}
|
|
10191
|
-
}
|
|
10192
|
-
|
|
10193
|
-
.sortable-empty {
|
|
10194
|
-
background-color: @sortable-empty-bg-color;
|
|
10195
|
-
color: @sortable-empty-color;
|
|
10196
|
-
font-size: 14px;
|
|
10197
|
-
font-weight: 400;
|
|
10198
|
-
font-family: 'Open Sans', sans-serif;
|
|
10199
|
-
border-bottom: @sortable-empty-border;
|
|
10200
|
-
border-left: @sortable-empty-border;
|
|
10201
|
-
border-right: @sortable-empty-border;
|
|
10202
|
-
padding-left: 70px;
|
|
10203
|
-
height: 40px;
|
|
10204
|
-
line-height: 38px;
|
|
10205
|
-
}
|
|
10206
|
-
}
|
|
10207
|
-
}
|
|
10208
|
-
|
|
10209
|
-
|
|
10210
|
-
// Style rules for actions bar
|
|
10211
|
-
.border-top > .igz-info-page-actions-bar {
|
|
10212
|
-
.info-page-actions-bar-color-set();
|
|
10213
|
-
|
|
10214
|
-
border-top: @info-page-actions-bar-border-top;
|
|
10215
|
-
}
|
|
10216
|
-
|
|
10217
|
-
.igz-info-page-actions-bar {
|
|
10218
|
-
.info-page-actions-bar-color-set();
|
|
10219
|
-
|
|
10220
|
-
background-color: @info-page-actions-bar-bg-color;
|
|
10221
|
-
position: absolute;
|
|
10222
|
-
top: 0;
|
|
10223
|
-
right: 0;
|
|
10224
|
-
left: 0;
|
|
10225
|
-
height: 56px;
|
|
10226
|
-
padding: 8px 20px 8px 16px;
|
|
10227
|
-
border-bottom: @info-page-actions-bar-border-bottom;
|
|
10228
|
-
transition: @igz-basic-transition;
|
|
10229
|
-
|
|
10230
|
-
&.upper-pane-opened {
|
|
10231
|
-
top: 150px;
|
|
10232
|
-
}
|
|
10233
|
-
|
|
10234
|
-
&.filters-opened {
|
|
10235
|
-
right: 376px;
|
|
10236
|
-
padding-right: 8px;
|
|
10237
|
-
}
|
|
10238
|
-
|
|
10239
|
-
&.info-pane-opened {
|
|
10240
|
-
right: 379px;
|
|
10241
|
-
padding-right: 8px;
|
|
10242
|
-
}
|
|
10243
|
-
|
|
10244
|
-
.actions-bar-left {
|
|
10245
|
-
float: left;
|
|
10246
|
-
height: 100%;
|
|
10247
|
-
}
|
|
10248
|
-
|
|
10249
|
-
.actions-bar-right {
|
|
10250
|
-
float: right;
|
|
10251
|
-
height: 100%;
|
|
10252
|
-
text-align: right;
|
|
10253
|
-
}
|
|
10254
|
-
|
|
10255
|
-
&:before, &:after {
|
|
10256
|
-
content: " ";
|
|
10257
|
-
display: table;
|
|
10258
|
-
}
|
|
10259
|
-
&:after {
|
|
10260
|
-
clear: both;
|
|
10261
|
-
}
|
|
10244
|
+
}
|
|
10262
10245
|
|
|
10263
|
-
|
|
10264
|
-
|
|
10265
|
-
|
|
10266
|
-
|
|
10246
|
+
.panel {
|
|
10247
|
+
background-color: inherit;
|
|
10248
|
+
border-width: 0 0 1px 0;
|
|
10249
|
+
border-radius: 0;
|
|
10250
|
+
box-shadow: none;
|
|
10251
|
+
border-color: #ddd;
|
|
10267
10252
|
|
|
10268
|
-
|
|
10269
|
-
|
|
10253
|
+
&.panel-default {
|
|
10254
|
+
border-color: @accordion-panel-default-border-color;
|
|
10255
|
+
|
|
10256
|
+
& > .panel-heading {
|
|
10257
|
+
background-color: inherit;
|
|
10258
|
+
border: 0;
|
|
10259
|
+
}
|
|
10260
|
+
}
|
|
10261
|
+
}
|
|
10262
|
+
}
|
|
10263
|
+
}
|
|
10264
|
+
}
|
|
10270
10265
|
}
|
|
10271
10266
|
|
|
10272
|
-
.
|
|
10273
|
-
|
|
10274
|
-
|
|
10267
|
+
.info-page-filters-footer {
|
|
10268
|
+
display: flex;
|
|
10269
|
+
justify-content: flex-end;
|
|
10270
|
+
position: absolute;
|
|
10271
|
+
height: 70px;
|
|
10272
|
+
padding: 16px 18px;
|
|
10273
|
+
bottom: 0;
|
|
10274
|
+
width: 100%;
|
|
10275
10275
|
|
|
10276
|
-
|
|
10277
|
-
margin-left:
|
|
10276
|
+
button:not(:first-child) {
|
|
10277
|
+
margin-left: 5px;
|
|
10278
10278
|
}
|
|
10279
10279
|
}
|
|
10280
10280
|
}
|
|
@@ -10571,44 +10571,6 @@ ncl-breadcrumbs {
|
|
|
10571
10571
|
}
|
|
10572
10572
|
}
|
|
10573
10573
|
|
|
10574
|
-
.ncl-deploy-log-wrapper {
|
|
10575
|
-
.log-panel {
|
|
10576
|
-
.logs-common();
|
|
10577
|
-
background-color: @dark-grey;
|
|
10578
|
-
color: @light-grey-three;
|
|
10579
|
-
padding: 5px;
|
|
10580
|
-
margin: 21px 0 0 4px;
|
|
10581
|
-
min-height: 280px;
|
|
10582
|
-
max-height: 280px;
|
|
10583
|
-
height: 280px;
|
|
10584
|
-
|
|
10585
|
-
.log-entry {
|
|
10586
|
-
.log-entry-time {
|
|
10587
|
-
color: @solid-grey;
|
|
10588
|
-
}
|
|
10589
|
-
|
|
10590
|
-
.log-entry-level-debug{
|
|
10591
|
-
color: @dusty-blue;
|
|
10592
|
-
}
|
|
10593
|
-
|
|
10594
|
-
.log-entry-level-info {
|
|
10595
|
-
color: @cloudy-blue;
|
|
10596
|
-
}
|
|
10597
|
-
|
|
10598
|
-
.log-entry-level-warn{
|
|
10599
|
-
color: @sunflower-yellow;
|
|
10600
|
-
}
|
|
10601
|
-
|
|
10602
|
-
.log-entry-level-error {
|
|
10603
|
-
color: @darkish-pink;
|
|
10604
|
-
}
|
|
10605
|
-
|
|
10606
|
-
.log-entry-message {
|
|
10607
|
-
font-weight: 600;
|
|
10608
|
-
}
|
|
10609
|
-
}
|
|
10610
|
-
}
|
|
10611
|
-
}
|
|
10612
10574
|
.ncl-edit-item {
|
|
10613
10575
|
width: 100%;
|
|
10614
10576
|
padding: 6px 0;
|
|
@@ -10709,6 +10671,44 @@ ncl-breadcrumbs {
|
|
|
10709
10671
|
}
|
|
10710
10672
|
}
|
|
10711
10673
|
|
|
10674
|
+
.ncl-deploy-log-wrapper {
|
|
10675
|
+
.log-panel {
|
|
10676
|
+
.logs-common();
|
|
10677
|
+
background-color: @dark-grey;
|
|
10678
|
+
color: @light-grey-three;
|
|
10679
|
+
padding: 5px;
|
|
10680
|
+
margin: 21px 0 0 4px;
|
|
10681
|
+
min-height: 280px;
|
|
10682
|
+
max-height: 280px;
|
|
10683
|
+
height: 280px;
|
|
10684
|
+
|
|
10685
|
+
.log-entry {
|
|
10686
|
+
.log-entry-time {
|
|
10687
|
+
color: @solid-grey;
|
|
10688
|
+
}
|
|
10689
|
+
|
|
10690
|
+
.log-entry-level-debug{
|
|
10691
|
+
color: @dusty-blue;
|
|
10692
|
+
}
|
|
10693
|
+
|
|
10694
|
+
.log-entry-level-info {
|
|
10695
|
+
color: @cloudy-blue;
|
|
10696
|
+
}
|
|
10697
|
+
|
|
10698
|
+
.log-entry-level-warn{
|
|
10699
|
+
color: @sunflower-yellow;
|
|
10700
|
+
}
|
|
10701
|
+
|
|
10702
|
+
.log-entry-level-error {
|
|
10703
|
+
color: @darkish-pink;
|
|
10704
|
+
}
|
|
10705
|
+
|
|
10706
|
+
.log-entry-message {
|
|
10707
|
+
font-weight: 600;
|
|
10708
|
+
}
|
|
10709
|
+
}
|
|
10710
|
+
}
|
|
10711
|
+
}
|
|
10712
10712
|
.view-yaml-dialog-wrapper {
|
|
10713
10713
|
.ngdialog-content {
|
|
10714
10714
|
.view-yaml-dialog-header {
|
|
@@ -10727,6 +10727,32 @@ ncl-breadcrumbs {
|
|
|
10727
10727
|
}
|
|
10728
10728
|
}
|
|
10729
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
|
+
|
|
10730
10756
|
.ncl-key-value-input {
|
|
10731
10757
|
.input-wrapper {
|
|
10732
10758
|
width: 100%;
|
|
@@ -10941,32 +10967,6 @@ ncl-breadcrumbs {
|
|
|
10941
10967
|
}
|
|
10942
10968
|
}
|
|
10943
10969
|
|
|
10944
|
-
.ncl-monaco {
|
|
10945
|
-
.ncl-monaco-wrapper {
|
|
10946
|
-
padding-top: 20px;
|
|
10947
|
-
height: 100%;
|
|
10948
|
-
border: 1px solid @pale-grey;
|
|
10949
|
-
background-color: @white;
|
|
10950
|
-
|
|
10951
|
-
&.no-top-padding {
|
|
10952
|
-
padding-top: 0;
|
|
10953
|
-
}
|
|
10954
|
-
|
|
10955
|
-
.ncl-monaco-top-row {
|
|
10956
|
-
display: block;
|
|
10957
|
-
}
|
|
10958
|
-
|
|
10959
|
-
.ncl-monaco-editor {
|
|
10960
|
-
height: 100%;
|
|
10961
|
-
}
|
|
10962
|
-
}
|
|
10963
|
-
|
|
10964
|
-
.ncl-monaco-dark {
|
|
10965
|
-
background-color: @vs-dark;
|
|
10966
|
-
}
|
|
10967
|
-
}
|
|
10968
|
-
|
|
10969
|
-
|
|
10970
10970
|
ncl-navigation-tabs {
|
|
10971
10971
|
.ncl-navigation-tabs-color-set();
|
|
10972
10972
|
|
|
@@ -12074,36 +12074,135 @@ ncl-navigation-tabs {
|
|
|
12074
12074
|
padding-left: 0;
|
|
12075
12075
|
}
|
|
12076
12076
|
|
|
12077
|
-
.title-field-row .name-field, .item-row .item-name, .header-name {
|
|
12078
|
-
margin-right: 16px;
|
|
12079
|
-
width: 15%;
|
|
12080
|
-
}
|
|
12077
|
+
.title-field-row .name-field, .item-row .item-name, .header-name {
|
|
12078
|
+
margin-right: 16px;
|
|
12079
|
+
width: 15%;
|
|
12080
|
+
}
|
|
12081
|
+
|
|
12082
|
+
.title-field-row .class-field, .item-row .item-class, .header-class {
|
|
12083
|
+
margin-right: 16px;
|
|
12084
|
+
width: 10%;
|
|
12085
|
+
}
|
|
12086
|
+
|
|
12087
|
+
.title-field-row .class-field {
|
|
12088
|
+
width: auto;
|
|
12089
|
+
}
|
|
12090
|
+
}
|
|
12091
|
+
|
|
12092
|
+
.ncl-text-size-dropdown {
|
|
12093
|
+
display: flex;
|
|
12094
|
+
justify-content: flex-end;
|
|
12095
|
+
|
|
12096
|
+
.text-size-action-item {
|
|
12097
|
+
width: 35px;
|
|
12098
|
+
height: 35px;
|
|
12099
|
+
margin: 0 8px 0 0;
|
|
12100
|
+
display: flex;
|
|
12101
|
+
justify-content: space-evenly;
|
|
12102
|
+
font-size: 18px;
|
|
12103
|
+
|
|
12104
|
+
.action-icon {
|
|
12105
|
+
&.igz-icon-decrease {
|
|
12106
|
+
font-size: 10px;
|
|
12107
|
+
}
|
|
12108
|
+
}
|
|
12109
|
+
}
|
|
12110
|
+
}
|
|
12111
|
+
|
|
12112
|
+
.function-from-scratch-content {
|
|
12113
|
+
.splash-screen {
|
|
12114
|
+
top: 0;
|
|
12115
|
+
}
|
|
12116
|
+
|
|
12117
|
+
.title-wrapper {
|
|
12118
|
+
margin-left: 50px;
|
|
12119
|
+
|
|
12120
|
+
.title {
|
|
12121
|
+
color: @dusk-three;
|
|
12122
|
+
font-size: 16px;
|
|
12123
|
+
font-weight: bold;
|
|
12124
|
+
}
|
|
12125
|
+
}
|
|
12126
|
+
|
|
12127
|
+
.function-configuration {
|
|
12128
|
+
margin: 28px 0 0 0;
|
|
12129
|
+
|
|
12130
|
+
.configuration-form {
|
|
12131
|
+
display: flex;
|
|
12132
|
+
|
|
12133
|
+
.function-name-wrapper {
|
|
12134
|
+
width: 50%;
|
|
12135
|
+
display: flex;
|
|
12136
|
+
padding: 0 24px 0 74px;
|
|
12137
|
+
|
|
12138
|
+
.projects-drop-down {
|
|
12139
|
+
width: 40%;
|
|
12140
|
+
margin-right: 48px;
|
|
12141
|
+
|
|
12142
|
+
.input-label {
|
|
12143
|
+
font-size: 14px;
|
|
12144
|
+
font-weight: 600;
|
|
12145
|
+
color: @dusk-three;
|
|
12146
|
+
}
|
|
12147
|
+
|
|
12148
|
+
igz-default-dropdown {
|
|
12149
|
+
.default-dropdown {
|
|
12150
|
+
background-color: @white;
|
|
12151
|
+
|
|
12152
|
+
.default-dropdown-field {
|
|
12153
|
+
&:focus {
|
|
12154
|
+
background-color: inherit;
|
|
12155
|
+
}
|
|
12156
|
+
}
|
|
12157
|
+
}
|
|
12158
|
+
}
|
|
12159
|
+
}
|
|
12160
|
+
|
|
12161
|
+
.function-name {
|
|
12162
|
+
width: 100%;
|
|
12163
|
+
|
|
12164
|
+
.input-label {
|
|
12165
|
+
font-size: 14px;
|
|
12166
|
+
font-weight: 600;
|
|
12167
|
+
color: @dusk-three;
|
|
12168
|
+
}
|
|
12169
|
+
|
|
12170
|
+
igz-validating-input-field {
|
|
12171
|
+
margin-left: 2px;
|
|
12172
|
+
}
|
|
12173
|
+
}
|
|
12174
|
+
}
|
|
12081
12175
|
|
|
12082
|
-
|
|
12083
|
-
|
|
12084
|
-
|
|
12085
|
-
|
|
12176
|
+
.function-runtime-wrapper {
|
|
12177
|
+
width: 50%;
|
|
12178
|
+
padding-left: 24px;
|
|
12179
|
+
padding-right: 10%;
|
|
12086
12180
|
|
|
12087
|
-
|
|
12088
|
-
|
|
12089
|
-
|
|
12090
|
-
|
|
12181
|
+
.function-runtime {
|
|
12182
|
+
.input-label {
|
|
12183
|
+
font-size: 14px;
|
|
12184
|
+
font-weight: 600;
|
|
12185
|
+
color: @dusk-three;
|
|
12186
|
+
}
|
|
12091
12187
|
|
|
12092
|
-
|
|
12093
|
-
|
|
12094
|
-
|
|
12188
|
+
igz-default-dropdown {
|
|
12189
|
+
.default-dropdown {
|
|
12190
|
+
background-color: @white;
|
|
12095
12191
|
|
|
12096
|
-
|
|
12097
|
-
|
|
12098
|
-
|
|
12099
|
-
|
|
12100
|
-
|
|
12101
|
-
|
|
12102
|
-
|
|
12192
|
+
.default-dropdown-field {
|
|
12193
|
+
&:focus {
|
|
12194
|
+
background-color: inherit;
|
|
12195
|
+
}
|
|
12196
|
+
}
|
|
12197
|
+
}
|
|
12198
|
+
}
|
|
12103
12199
|
|
|
12104
|
-
|
|
12105
|
-
|
|
12106
|
-
|
|
12200
|
+
.bottom-bar {
|
|
12201
|
+
display: flex;
|
|
12202
|
+
justify-content: flex-end;
|
|
12203
|
+
margin-top: 48px;
|
|
12204
|
+
}
|
|
12205
|
+
}
|
|
12107
12206
|
}
|
|
12108
12207
|
}
|
|
12109
12208
|
}
|
|
@@ -12371,100 +12470,71 @@ ncl-navigation-tabs {
|
|
|
12371
12470
|
}
|
|
12372
12471
|
}
|
|
12373
12472
|
|
|
12374
|
-
.function-
|
|
12375
|
-
|
|
12376
|
-
|
|
12377
|
-
|
|
12378
|
-
|
|
12379
|
-
.title-wrapper {
|
|
12380
|
-
margin-left: 50px;
|
|
12381
|
-
|
|
12382
|
-
.title {
|
|
12383
|
-
color: @dusk-three;
|
|
12384
|
-
font-size: 16px;
|
|
12385
|
-
font-weight: bold;
|
|
12386
|
-
}
|
|
12387
|
-
}
|
|
12388
|
-
|
|
12389
|
-
.function-configuration {
|
|
12390
|
-
margin: 28px 0 0 0;
|
|
12391
|
-
|
|
12392
|
-
.configuration-form {
|
|
12393
|
-
display: flex;
|
|
12473
|
+
.function-import-wrapper-content {
|
|
12474
|
+
font-family: @font-family-sans-serif;
|
|
12475
|
+
padding-left: 3%;
|
|
12476
|
+
width: 96%;
|
|
12394
12477
|
|
|
12395
|
-
|
|
12396
|
-
|
|
12397
|
-
|
|
12398
|
-
|
|
12478
|
+
.function-import-form {
|
|
12479
|
+
display: flex;
|
|
12480
|
+
align-items: flex-end;
|
|
12481
|
+
margin-bottom: 10px;
|
|
12399
12482
|
|
|
12400
|
-
|
|
12401
|
-
|
|
12402
|
-
margin-right: 48px;
|
|
12483
|
+
.projects-drop-down {
|
|
12484
|
+
margin-right: 48px;
|
|
12403
12485
|
|
|
12404
|
-
|
|
12405
|
-
|
|
12406
|
-
|
|
12407
|
-
|
|
12408
|
-
|
|
12486
|
+
.input-label {
|
|
12487
|
+
font-size: 14px;
|
|
12488
|
+
font-weight: 600;
|
|
12489
|
+
color: @dusk-three;
|
|
12490
|
+
}
|
|
12409
12491
|
|
|
12410
|
-
|
|
12411
|
-
|
|
12412
|
-
|
|
12492
|
+
igz-default-dropdown {
|
|
12493
|
+
.default-dropdown {
|
|
12494
|
+
background-color: @white;
|
|
12413
12495
|
|
|
12414
|
-
|
|
12415
|
-
|
|
12416
|
-
|
|
12417
|
-
}
|
|
12418
|
-
}
|
|
12496
|
+
.default-dropdown-field {
|
|
12497
|
+
&:focus {
|
|
12498
|
+
background-color: inherit;
|
|
12419
12499
|
}
|
|
12420
12500
|
}
|
|
12421
12501
|
}
|
|
12502
|
+
}
|
|
12503
|
+
}
|
|
12422
12504
|
|
|
12423
|
-
|
|
12424
|
-
|
|
12505
|
+
.function-import-actions-bar {
|
|
12506
|
+
display: flex;
|
|
12425
12507
|
|
|
12426
|
-
|
|
12427
|
-
|
|
12428
|
-
|
|
12429
|
-
|
|
12430
|
-
}
|
|
12508
|
+
.function-import-file-picker {
|
|
12509
|
+
.file-picker-wrapper {
|
|
12510
|
+
margin: 0;
|
|
12511
|
+
line-height: 34px;
|
|
12431
12512
|
|
|
12432
|
-
igz-
|
|
12433
|
-
margin-
|
|
12513
|
+
.igz-icon-upload {
|
|
12514
|
+
margin-right: 10px;
|
|
12434
12515
|
}
|
|
12435
12516
|
}
|
|
12436
|
-
}
|
|
12437
|
-
|
|
12438
|
-
.function-runtime-wrapper {
|
|
12439
|
-
width: 50%;
|
|
12440
|
-
padding-left: 24px;
|
|
12441
|
-
padding-right: 10%;
|
|
12442
12517
|
|
|
12443
|
-
.function-
|
|
12444
|
-
|
|
12445
|
-
|
|
12446
|
-
|
|
12447
|
-
|
|
12448
|
-
|
|
12518
|
+
.function-import-input {
|
|
12519
|
+
opacity: 0;
|
|
12520
|
+
position: absolute;
|
|
12521
|
+
z-index: -1;
|
|
12522
|
+
}
|
|
12523
|
+
}
|
|
12524
|
+
}
|
|
12525
|
+
}
|
|
12449
12526
|
|
|
12450
|
-
|
|
12451
|
-
|
|
12452
|
-
|
|
12527
|
+
.splash-screen {
|
|
12528
|
+
top: 0;
|
|
12529
|
+
}
|
|
12453
12530
|
|
|
12454
|
-
|
|
12455
|
-
|
|
12456
|
-
|
|
12457
|
-
|
|
12458
|
-
}
|
|
12459
|
-
}
|
|
12460
|
-
}
|
|
12531
|
+
.function-import-monaco {
|
|
12532
|
+
.ncl-monaco {
|
|
12533
|
+
height: 370px;
|
|
12534
|
+
width: 100%;
|
|
12461
12535
|
|
|
12462
|
-
|
|
12463
|
-
|
|
12464
|
-
justify-content: flex-end;
|
|
12465
|
-
margin-top: 48px;
|
|
12466
|
-
}
|
|
12467
|
-
}
|
|
12536
|
+
.monaco-code-editor {
|
|
12537
|
+
height: 100%;
|
|
12468
12538
|
}
|
|
12469
12539
|
}
|
|
12470
12540
|
}
|
|
@@ -13162,76 +13232,6 @@ ncl-navigation-tabs {
|
|
|
13162
13232
|
}
|
|
13163
13233
|
}
|
|
13164
13234
|
|
|
13165
|
-
.function-import-wrapper-content {
|
|
13166
|
-
font-family: @font-family-sans-serif;
|
|
13167
|
-
padding-left: 3%;
|
|
13168
|
-
width: 96%;
|
|
13169
|
-
|
|
13170
|
-
.function-import-form {
|
|
13171
|
-
display: flex;
|
|
13172
|
-
align-items: flex-end;
|
|
13173
|
-
margin-bottom: 10px;
|
|
13174
|
-
|
|
13175
|
-
.projects-drop-down {
|
|
13176
|
-
margin-right: 48px;
|
|
13177
|
-
|
|
13178
|
-
.input-label {
|
|
13179
|
-
font-size: 14px;
|
|
13180
|
-
font-weight: 600;
|
|
13181
|
-
color: @dusk-three;
|
|
13182
|
-
}
|
|
13183
|
-
|
|
13184
|
-
igz-default-dropdown {
|
|
13185
|
-
.default-dropdown {
|
|
13186
|
-
background-color: @white;
|
|
13187
|
-
|
|
13188
|
-
.default-dropdown-field {
|
|
13189
|
-
&:focus {
|
|
13190
|
-
background-color: inherit;
|
|
13191
|
-
}
|
|
13192
|
-
}
|
|
13193
|
-
}
|
|
13194
|
-
}
|
|
13195
|
-
}
|
|
13196
|
-
|
|
13197
|
-
.function-import-actions-bar {
|
|
13198
|
-
display: flex;
|
|
13199
|
-
|
|
13200
|
-
.function-import-file-picker {
|
|
13201
|
-
.file-picker-wrapper {
|
|
13202
|
-
margin: 0;
|
|
13203
|
-
line-height: 34px;
|
|
13204
|
-
|
|
13205
|
-
.igz-icon-upload {
|
|
13206
|
-
margin-right: 10px;
|
|
13207
|
-
}
|
|
13208
|
-
}
|
|
13209
|
-
|
|
13210
|
-
.function-import-input {
|
|
13211
|
-
opacity: 0;
|
|
13212
|
-
position: absolute;
|
|
13213
|
-
z-index: -1;
|
|
13214
|
-
}
|
|
13215
|
-
}
|
|
13216
|
-
}
|
|
13217
|
-
}
|
|
13218
|
-
|
|
13219
|
-
.splash-screen {
|
|
13220
|
-
top: 0;
|
|
13221
|
-
}
|
|
13222
|
-
|
|
13223
|
-
.function-import-monaco {
|
|
13224
|
-
.ncl-monaco {
|
|
13225
|
-
height: 370px;
|
|
13226
|
-
width: 100%;
|
|
13227
|
-
|
|
13228
|
-
.monaco-code-editor {
|
|
13229
|
-
height: 100%;
|
|
13230
|
-
}
|
|
13231
|
-
}
|
|
13232
|
-
}
|
|
13233
|
-
}
|
|
13234
|
-
|
|
13235
13235
|
.function-from-template-dialog-wrapper {
|
|
13236
13236
|
.title {
|
|
13237
13237
|
font-size: 20px;
|