flexmonster 2.9.18 → 2.9.19
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/flexmonster.css +99 -1
- package/flexmonster.es5.full.js +2553 -2549
- package/flexmonster.es5.js +2552 -2548
- package/flexmonster.full.js +2366 -2364
- package/flexmonster.js +2365 -2363
- package/flexmonster.min.css +1 -1
- package/lib/flexmonster.highcharts.js +6 -0
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +99 -1
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +99 -1
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +99 -1
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +99 -1
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +116 -1
- package/theme/green/flexmonster.css +99 -1
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +99 -1
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +99 -1
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +99 -1
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +99 -1
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +99 -1
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +99 -1
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +99 -1
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +99 -1
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +99 -1
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +99 -1
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +99 -1
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +1 -1
- package/types/flexmonster.d.ts +7 -3
package/flexmonster.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--fm-version: "2.9.
|
|
2
|
+
--fm-version: "2.9.19";
|
|
3
3
|
}
|
|
4
4
|
/* ===== RESET STYLES ===== */
|
|
5
5
|
#fm-pivot-view,
|
|
@@ -4848,10 +4848,104 @@
|
|
|
4848
4848
|
}
|
|
4849
4849
|
#fm-pivot-view div.fm-calculated-view .fm-popup-content {
|
|
4850
4850
|
position: relative;
|
|
4851
|
+
/*Calculated view search */
|
|
4851
4852
|
}
|
|
4852
4853
|
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-name-input {
|
|
4853
4854
|
margin-bottom: 20px;
|
|
4854
4855
|
}
|
|
4856
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header {
|
|
4857
|
+
background: #f7f7f7;
|
|
4858
|
+
position: relative;
|
|
4859
|
+
border: 1px solid #d5d5d5;
|
|
4860
|
+
border-bottom: 0px;
|
|
4861
|
+
}
|
|
4862
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-list-header-label-wrap {
|
|
4863
|
+
width: calc(100% - 40px);
|
|
4864
|
+
width: -webkit-calc(60%);
|
|
4865
|
+
padding: 10px;
|
|
4866
|
+
}
|
|
4867
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header span.fm-ui-label {
|
|
4868
|
+
color: #999;
|
|
4869
|
+
}
|
|
4870
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap {
|
|
4871
|
+
position: absolute;
|
|
4872
|
+
top: 0;
|
|
4873
|
+
right: 0;
|
|
4874
|
+
width: 40px;
|
|
4875
|
+
height: 100%;
|
|
4876
|
+
border-left: 1px solid #d5d5d5;
|
|
4877
|
+
z-index: 9;
|
|
4878
|
+
}
|
|
4879
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-search-btn {
|
|
4880
|
+
position: absolute;
|
|
4881
|
+
width: 100%;
|
|
4882
|
+
height: 38px;
|
|
4883
|
+
cursor: pointer;
|
|
4884
|
+
z-index: 3;
|
|
4885
|
+
border: none;
|
|
4886
|
+
background: transparent;
|
|
4887
|
+
}
|
|
4888
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-search-btn .fm-icon-act_search {
|
|
4889
|
+
color: #999;
|
|
4890
|
+
position: absolute;
|
|
4891
|
+
top: 5px;
|
|
4892
|
+
right: 7px;
|
|
4893
|
+
}
|
|
4894
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-search-btn .fm-icon-act_search::before {
|
|
4895
|
+
font-size: 25px;
|
|
4896
|
+
}
|
|
4897
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened {
|
|
4898
|
+
width: 100%;
|
|
4899
|
+
height: 100%;
|
|
4900
|
+
border-left: none;
|
|
4901
|
+
}
|
|
4902
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened .fm-icon-act_close,
|
|
4903
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened .fm-search-inp {
|
|
4904
|
+
visibility: visible;
|
|
4905
|
+
opacity: 1;
|
|
4906
|
+
}
|
|
4907
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened .fm-select-counter {
|
|
4908
|
+
display: none;
|
|
4909
|
+
}
|
|
4910
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened .fm-search-btn {
|
|
4911
|
+
font-size: 0;
|
|
4912
|
+
width: 40px;
|
|
4913
|
+
left: 0;
|
|
4914
|
+
pointer-events: none;
|
|
4915
|
+
}
|
|
4916
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened .fm-search-btn .fm-icon-act_search:before {
|
|
4917
|
+
color: #e9e9e9;
|
|
4918
|
+
}
|
|
4919
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-icon-act_close {
|
|
4920
|
+
visibility: hidden;
|
|
4921
|
+
position: absolute;
|
|
4922
|
+
right: 0;
|
|
4923
|
+
top: 0;
|
|
4924
|
+
height: 100%;
|
|
4925
|
+
width: 39px;
|
|
4926
|
+
cursor: pointer;
|
|
4927
|
+
z-index: 3;
|
|
4928
|
+
color: #999;
|
|
4929
|
+
}
|
|
4930
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-icon-act_close::before {
|
|
4931
|
+
font-size: 26px;
|
|
4932
|
+
position: absolute;
|
|
4933
|
+
top: 5px;
|
|
4934
|
+
left: 6px;
|
|
4935
|
+
}
|
|
4936
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-search-inp {
|
|
4937
|
+
visibility: hidden;
|
|
4938
|
+
position: absolute;
|
|
4939
|
+
right: 0;
|
|
4940
|
+
top: 0px;
|
|
4941
|
+
width: 100%;
|
|
4942
|
+
height: 37px;
|
|
4943
|
+
padding-left: 40px;
|
|
4944
|
+
padding-right: 40px;
|
|
4945
|
+
border-top: 0px;
|
|
4946
|
+
border-right: 0px;
|
|
4947
|
+
border-left: 0px;
|
|
4948
|
+
}
|
|
4855
4949
|
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-content {
|
|
4856
4950
|
border: 1px solid #d5d5d5;
|
|
4857
4951
|
margin-bottom: 20px;
|
|
@@ -4883,6 +4977,10 @@
|
|
|
4883
4977
|
width: calc(100% - 50px);
|
|
4884
4978
|
width: -webkit-calc(100% - 50px);
|
|
4885
4979
|
}
|
|
4980
|
+
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-lst-measures li .fm-text-display .fm-search-highlight {
|
|
4981
|
+
background-color: #FFFF00;
|
|
4982
|
+
font-weight: inherit;
|
|
4983
|
+
}
|
|
4886
4984
|
#fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-lst-measures li .fm-aggr-display {
|
|
4887
4985
|
width: 32px;
|
|
4888
4986
|
height: 100%;
|