flexmonster 2.9.25 → 2.9.26-1

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.
Files changed (41) hide show
  1. package/flexmonster.css +11 -6
  2. package/flexmonster.es5.full.js +2791 -2785
  3. package/flexmonster.es5.js +2546 -2540
  4. package/flexmonster.full.js +2446 -2444
  5. package/flexmonster.js +2367 -2365
  6. package/flexmonster.min.css +1 -1
  7. package/package.json +1 -1
  8. package/theme/accessible/flexmonster.css +11 -6
  9. package/theme/accessible/flexmonster.min.css +1 -1
  10. package/theme/blackorange/flexmonster.css +11 -6
  11. package/theme/blackorange/flexmonster.min.css +1 -1
  12. package/theme/brightorange/flexmonster.css +11 -6
  13. package/theme/brightorange/flexmonster.min.css +1 -1
  14. package/theme/dark/flexmonster.css +11 -6
  15. package/theme/dark/flexmonster.min.css +1 -1
  16. package/theme/flexmonster-base.less +11 -6
  17. package/theme/green/flexmonster.css +11 -6
  18. package/theme/green/flexmonster.min.css +1 -1
  19. package/theme/lightblue/flexmonster.css +11 -6
  20. package/theme/lightblue/flexmonster.min.css +1 -1
  21. package/theme/macos/flexmonster.css +11 -6
  22. package/theme/macos/flexmonster.min.css +1 -1
  23. package/theme/midnight/flexmonster.css +11 -6
  24. package/theme/midnight/flexmonster.min.css +1 -1
  25. package/theme/old/flexmonster.css +11 -6
  26. package/theme/old/flexmonster.min.css +1 -1
  27. package/theme/orange/flexmonster.css +11 -6
  28. package/theme/orange/flexmonster.min.css +1 -1
  29. package/theme/purple/flexmonster.css +11 -6
  30. package/theme/purple/flexmonster.min.css +1 -1
  31. package/theme/softdefault/flexmonster.css +11 -6
  32. package/theme/softdefault/flexmonster.min.css +1 -1
  33. package/theme/stripedblue/flexmonster.css +11 -6
  34. package/theme/stripedblue/flexmonster.min.css +1 -1
  35. package/theme/stripedteal/flexmonster.css +11 -6
  36. package/theme/stripedteal/flexmonster.min.css +1 -1
  37. package/theme/teal/flexmonster.css +11 -6
  38. package/theme/teal/flexmonster.min.css +1 -1
  39. package/theme/yellow/flexmonster.css +11 -6
  40. package/theme/yellow/flexmonster.min.css +1 -1
  41. package/toolbar/flexmonster.toolbar.js +22 -14
@@ -1,7 +1,7 @@
1
1
  @import (reference) "default/flexmonster.less";
2
2
 
3
3
  :root {
4
- --fm-version: "2.9.25";
4
+ --fm-version: "2.9.26";
5
5
  }
6
6
 
7
7
  /* ===== RESET STYLES ===== */
@@ -6204,6 +6204,9 @@
6204
6204
 
6205
6205
  #fm-tab-charts-multiple {
6206
6206
  border-top: @toolbar-dropdown-element-divider;
6207
+ > span.fm-tab-checkbox {
6208
+ position: absolute;
6209
+ }
6207
6210
  }
6208
6211
  }
6209
6212
 
@@ -6230,7 +6233,7 @@
6230
6233
  background: none;
6231
6234
  vertical-align: top;
6232
6235
  padding: 0;
6233
- position: relative;
6236
+ position: static;
6234
6237
  width: 57px;
6235
6238
  }
6236
6239
 
@@ -6239,6 +6242,7 @@
6239
6242
  display: block;
6240
6243
  text-decoration: none;
6241
6244
  border: none;
6245
+ position: relative;
6242
6246
  }
6243
6247
 
6244
6248
  #fm-toolbar-wrapper #fm-toolbar a > span {
@@ -6334,13 +6338,14 @@
6334
6338
  }
6335
6339
 
6336
6340
  #fm-toolbar-wrapper #fm-toolbar .fm-dropdown-content {
6337
- position: relative;
6338
6341
  padding: 0;
6339
6342
  list-style: none;
6340
6343
  background: @toolbar-dropdown-background-color;
6341
6344
  border: @toolbar-dropdown-border;
6342
6345
  display: flex;
6343
6346
  flex-direction: column;
6347
+ overflow-x: auto;
6348
+ overflow-y: hidden;
6344
6349
  }
6345
6350
 
6346
6351
  #fm-toolbar-wrapper #fm-toolbar .fm-dropdown-content li {
@@ -7134,6 +7139,7 @@
7134
7139
  #fm-toolbar-wrapper .fm-left-scroll-button,
7135
7140
  #fm-toolbar-wrapper .fm-right-scroll-button {
7136
7141
  float: left;
7142
+ position: relative;
7137
7143
  }
7138
7144
 
7139
7145
  #fm-toolbar-wrapper .fm-left-scroll-button.fm-scroll-arrow {
@@ -7483,9 +7489,8 @@
7483
7489
  #fm-toolbar.fm-scroll-toolbar {
7484
7490
  -ms-overflow-style: none; /* Internet Explorer 10+ */
7485
7491
  scrollbar-width: none; /* Firefox */
7486
- overflow-x: auto;
7487
- overflow-y: hidden;
7488
- padding-bottom: 400px;
7492
+ overflow-x: hidden;
7493
+ overflow-y: auto;
7489
7494
  }
7490
7495
  #fm-toolbar.fm-scroll-toolbar::-webkit-scrollbar {
7491
7496
  display: none; /* Safari and Chrome */
@@ -1,5 +1,5 @@
1
1
  :root {
2
- --fm-version: "2.9.25";
2
+ --fm-version: "2.9.26";
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: relative;
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 #b9d998;
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: auto;
7443
- overflow-y: hidden;
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;