flexmonster 2.9.26 → 2.9.27
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 +11 -6
- package/flexmonster.es5.full.js +2815 -2805
- package/flexmonster.es5.js +2573 -2563
- package/flexmonster.full.js +2473 -2468
- package/flexmonster.js +2231 -2226
- package/flexmonster.min.css +1 -1
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +11 -6
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +11 -6
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +11 -6
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +11 -6
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +11 -6
- package/theme/green/flexmonster.css +11 -6
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +11 -6
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +11 -6
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +11 -6
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +11 -6
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +11 -6
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +11 -6
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +11 -6
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +11 -6
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +11 -6
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +11 -6
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +11 -6
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +22 -14
package/flexmonster.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--fm-version: "2.9.
|
|
2
|
+
--fm-version: "2.9.27";
|
|
3
3
|
}
|
|
4
4
|
/* ===== RESET STYLES ===== */
|
|
5
5
|
#fm-pivot-view,
|
|
@@ -6405,6 +6405,9 @@
|
|
|
6405
6405
|
#fm-toolbar-wrapper #fm-toolbar #fm-tab-charts-multiple {
|
|
6406
6406
|
border-top: 1px dotted #dcdcdc;
|
|
6407
6407
|
}
|
|
6408
|
+
#fm-toolbar-wrapper #fm-toolbar #fm-tab-charts-multiple > span.fm-tab-checkbox {
|
|
6409
|
+
position: absolute;
|
|
6410
|
+
}
|
|
6408
6411
|
#fm-toolbar-wrapper #fm-toolbar li#fm-tab-fullscreen {
|
|
6409
6412
|
width: 70px;
|
|
6410
6413
|
}
|
|
@@ -6423,7 +6426,7 @@
|
|
|
6423
6426
|
background: none;
|
|
6424
6427
|
vertical-align: top;
|
|
6425
6428
|
padding: 0;
|
|
6426
|
-
position:
|
|
6429
|
+
position: static;
|
|
6427
6430
|
width: 57px;
|
|
6428
6431
|
}
|
|
6429
6432
|
#fm-toolbar-wrapper #fm-toolbar a {
|
|
@@ -6431,6 +6434,7 @@
|
|
|
6431
6434
|
display: block;
|
|
6432
6435
|
text-decoration: none;
|
|
6433
6436
|
border: none;
|
|
6437
|
+
position: relative;
|
|
6434
6438
|
}
|
|
6435
6439
|
#fm-toolbar-wrapper #fm-toolbar a > span {
|
|
6436
6440
|
text-align: center;
|
|
@@ -6509,13 +6513,14 @@
|
|
|
6509
6513
|
right: -1px;
|
|
6510
6514
|
}
|
|
6511
6515
|
#fm-toolbar-wrapper #fm-toolbar .fm-dropdown-content {
|
|
6512
|
-
position: relative;
|
|
6513
6516
|
padding: 0;
|
|
6514
6517
|
list-style: none;
|
|
6515
6518
|
background: #fff;
|
|
6516
6519
|
border: 1px solid #d5d5d5;
|
|
6517
6520
|
display: flex;
|
|
6518
6521
|
flex-direction: column;
|
|
6522
|
+
overflow-x: auto;
|
|
6523
|
+
overflow-y: hidden;
|
|
6519
6524
|
}
|
|
6520
6525
|
#fm-toolbar-wrapper #fm-toolbar .fm-dropdown-content li {
|
|
6521
6526
|
width: 100%;
|
|
@@ -7160,6 +7165,7 @@
|
|
|
7160
7165
|
#fm-toolbar-wrapper .fm-left-scroll-button,
|
|
7161
7166
|
#fm-toolbar-wrapper .fm-right-scroll-button {
|
|
7162
7167
|
float: left;
|
|
7168
|
+
position: relative;
|
|
7163
7169
|
}
|
|
7164
7170
|
#fm-toolbar-wrapper .fm-left-scroll-button.fm-scroll-arrow {
|
|
7165
7171
|
margin-top: 15px;
|
|
@@ -7439,9 +7445,8 @@
|
|
|
7439
7445
|
/* Internet Explorer 10+ */
|
|
7440
7446
|
scrollbar-width: none;
|
|
7441
7447
|
/* Firefox */
|
|
7442
|
-
overflow-x:
|
|
7443
|
-
overflow-y:
|
|
7444
|
-
padding-bottom: 400px;
|
|
7448
|
+
overflow-x: hidden;
|
|
7449
|
+
overflow-y: auto;
|
|
7445
7450
|
}
|
|
7446
7451
|
#fm-toolbar-wrapper #fm-toolbar.fm-scroll-toolbar::-webkit-scrollbar {
|
|
7447
7452
|
display: none;
|