jsuites 5.6.5 → 5.7.0

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/dist/jsuites.css CHANGED
@@ -262,2816 +262,6 @@ div[data-before]:before {
262
262
  height: 28px;
263
263
  background-color: black;
264
264
  }
265
- /** Loading */
266
- .jloading {
267
- position:fixed;
268
- z-index:10001;
269
- width:100%;
270
- left:0;
271
- right:0;
272
- top:0;
273
- bottom:0;
274
- background-color: rgba(0,0,0,0.7);
275
- }
276
-
277
- .jloading::after {
278
- content:'';
279
- display:block;
280
- margin:0 auto;
281
- margin-top:50vh;
282
- width:40px;
283
- height:40px;
284
- border-style:solid;
285
- border-color:white;
286
- border-top-color:transparent;
287
- border-width:4px;
288
- border-radius:50%;
289
- -webkit-animation: jspin .8s linear infinite;
290
- animation: jspin .8s linear infinite;
291
- }
292
-
293
- .jloading.jspin {
294
- background-color:transparent;
295
- }
296
-
297
- .jloading.jspin::after {
298
- margin:0 auto;
299
- margin-top:80px;
300
- border-color:#aaa;
301
- border-top-color:transparent;
302
- }
303
-
304
- /** Animations **/
305
- .jfade-in {
306
- animation: jfade-in 2s forwards;
307
- }
308
-
309
- .jfade-out {
310
- animation: jfade-out 1s forwards;
311
- }
312
-
313
- .jslide-left-in {
314
- position: relative;
315
- animation: jslide-left-in 0.4s forwards;
316
- }
317
-
318
- .jslide-left-out {
319
- position: relative;
320
- animation: jslide-left-out 0.4s forwards;
321
- }
322
-
323
- .jslide-right-in {
324
- position: relative;
325
- animation: jslide-right-in 0.4s forwards;
326
- }
327
-
328
- .jslide-right-out {
329
- position: relative;
330
- animation: jslide-right-out 0.4s forwards;
331
- }
332
-
333
- .jslide-top-in {
334
- position: relative;
335
- animation: jslide-top-in 0.4s forwards;
336
- }
337
-
338
- .jslide-top-out {
339
- position: relative;
340
- animation: jslide-top-out 0.2s forwards;
341
- }
342
-
343
- .jslide-bottom-in {
344
- position: relative;
345
- animation: jslide-bottom-in 0.4s forwards;
346
- }
347
-
348
- .jslide-bottom-out {
349
- position: relative;
350
- animation: jslide-bottom-out 0.1s forwards;
351
- }
352
-
353
- .jslide-left-in > div {
354
- -webkit-transform: translateZ(0px);
355
- -webkit-transform: translate3d(0,0,0);
356
- }
357
-
358
- .jslide-left-out > div {
359
- -webkit-transform: translateZ(0px);
360
- -webkit-transform: translate3d(0,0,0);
361
- }
362
-
363
- .jslide-right-in > div {
364
- -webkit-transform: translateZ(0px);
365
- -webkit-transform: translate3d(0,0,0);
366
- }
367
-
368
- .jslide-right-out > div {
369
- -webkit-transform: translateZ(0px);
370
- -webkit-transform: translate3d(0,0,0);
371
- }
372
-
373
- .jspin {
374
- animation: jspin 2s infinite linear;
375
- }
376
-
377
- /** Fadein and Fadeout **/
378
- @keyframes jfade-in {
379
- 0% { opacity: 0; }
380
- 100% { opacity: 100; }
381
- }
382
-
383
- @-webkit-keyframes jfade-in {
384
- 0% { opacity: 0; }
385
- 100% { opacity: 100; }
386
- }
387
-
388
- @keyframes jfade-out {
389
- 0% { opacity: 100; }
390
- 100% { opacity: 0; }
391
- }
392
-
393
- @-webkit-keyframes jfade-out {
394
- 0% { opacity: 100; }
395
- 100% { opacity: 0; }
396
- }
397
-
398
- /** Keyframes Left to Right **/
399
- @keyframes jslide-left-in {
400
- 0% { left: -100%; }
401
- 100% { left: 0%; }
402
- }
403
-
404
- @-webkit-keyframes jslide-left-in {
405
- 0% { left: -100%; }
406
- 100% { left: 0%; }
407
- }
408
-
409
- @keyframes jslide-left-out {
410
- 0% { left: 0%; }
411
- 100% { left: -100%; }
412
- }
413
-
414
- @-webkit-keyframes jslide-left-out {
415
- 0% { left: 0%; }
416
- 100% { left: -100%; }
417
- }
418
-
419
- /** Keyframes Right to Left **/
420
- @keyframes jslide-right-in {
421
- 0% { left: 100%; }
422
- 100% { left: 0%; }
423
- }
424
-
425
- @-webkit-keyframes jslide-right-in
426
- {
427
- 0% { left: 100%; }
428
- 100% { left: 0%; }
429
- }
430
-
431
- @keyframes jslide-right-out {
432
- 0% { left: 0%; }
433
- 100% { left: 100%; }
434
- }
435
-
436
- @-webkit-keyframes jslide-right-out {
437
- 0% { left: 0%; }
438
- 100% { left: 100%; }
439
- }
440
-
441
- /** Keyframes Top to Bottom **/
442
- @keyframes jslide-top-in {
443
- 0% { transform: translateY(-100%); }
444
- 100% { transform: translateY(0%); }
445
- }
446
-
447
- @-webkit-keyframes jslide-top-in {
448
- 0% { transform: translateY(-100%); }
449
- 100% { -webkit-transform: translateY(0%); }
450
- }
451
-
452
- @keyframes jslide-top-out {
453
- 0% { transform: translateY(0%); }
454
- 100% { transform: translateY(-100%); }
455
- }
456
-
457
- @-webkit-keyframes jslide-top-out {
458
- 0% { -webkit-transform: translateY(0%); }
459
- 100% { -webkit-transform: translateY(-100%); }
460
- }
461
-
462
- /** Keyframes Bottom to Top **/
463
- @keyframes jslide-bottom-in {
464
- 0% { transform: translateY(100%); }
465
- 100% { transform: translateY(0%); }
466
- }
467
-
468
- @-webkit-keyframes jslide-bottom-in {
469
- 0% { transform: translateY(100%); }
470
- 100% { -webkit-transform: translateY(0%); }
471
- }
472
-
473
- @keyframes jslide-bottom-out {
474
- 0% { transform: translateY(0%); }
475
- 100% { transform: translateY(100%); }
476
- }
477
-
478
- @-webkit-keyframes jslide-bottom-out {
479
- 0% { -webkit-transform: translateY(0%); }
480
- 100% { -webkit-transform: translateY(100%); }
481
- }
482
-
483
- @-webkit-keyframes jspin {
484
- from {
485
- -webkit-transform:rotate(0deg);
486
- }
487
- to {
488
- -webkit-transform:rotate(359deg);
489
- }
490
- }
491
-
492
- @keyframes jspin {
493
- from {
494
- transform:rotate(0deg);
495
- }
496
- to {
497
- transform:rotate(359deg);
498
- }
499
- }
500
- .jcalendar {
501
- position:absolute;
502
- z-index:9000;
503
- display:none;
504
- box-sizing:border-box;
505
- -webkit-touch-callout: none;
506
- -webkit-user-select: none;
507
- -khtml-user-select: none;
508
- -moz-user-select: none;
509
- -ms-user-select: none;
510
- user-select: none;
511
- -webkit-tap-highlight-color: rgba(0,0,0,0);
512
- -webkit-tap-highlight-color: transparent;
513
- min-width:280px;
514
- }
515
-
516
- .jcalendar.jcalendar-focus {
517
- display:block;
518
- }
519
-
520
- .jcalendar .jcalendar-backdrop {
521
- position:fixed;
522
- top:0px;
523
- left:0px;
524
- z-index:9000;
525
- min-width:100%;
526
- min-height:100%;
527
- background-color:rgba(0,0,0,0.5);
528
- border:0px;
529
- padding:0px;
530
- display:none;
531
- }
532
-
533
- .jcalendar .jcalendar-container {
534
- position:relative;
535
- box-sizing:border-box;
536
- }
537
-
538
- .jcalendar .jcalendar-content {
539
- position:absolute;
540
- z-index:9001;
541
- -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
542
- -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
543
- box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
544
- background-color:#fff;
545
- }
546
-
547
- .jcalendar-header {
548
- text-align:center;
549
- }
550
-
551
- .jcalendar-header span {
552
- margin-right:4px;
553
- font-size:1.1em;
554
- font-weight:bold;
555
- }
556
-
557
- .jcalendar-prev {
558
- cursor:pointer;
559
- background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z%27 fill=%27%23000%27 /%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0V0z%27/%3E%3C/svg%3E");
560
- background-position:center;
561
- background-repeat:no-repeat;
562
- }
563
-
564
- .jcalendar-next {
565
- cursor:pointer;
566
- background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z%27 fill=%27%23000%27 /%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0V0z%27/%3E%3C/svg%3E");
567
- background-position:center;
568
- background-repeat:no-repeat;
569
- }
570
-
571
- .jcalendar-weekday {
572
- font-weight: 600;
573
- background-color: #fcfcfc;
574
- padding: 14px;
575
- }
576
-
577
- .jcalendar-table {
578
- padding: 10px;
579
- }
580
-
581
- .jcalendar-table > table {
582
- width:100%;
583
- background-color:#fff;
584
- }
585
-
586
- .jcalendar-table > table > thead {
587
- cursor: pointer;
588
- }
589
-
590
- .jcalendar-table thead td {
591
- padding: 10px;
592
- height: 40px;
593
- }
594
-
595
- .jcalendar-table > table > tbody > tr {
596
- height: 34px;
597
- }
598
-
599
- .jcalendar-table > table > tbody td {
600
- box-sizing:border-box;
601
- cursor:pointer;
602
- padding:9px;
603
- font-size:0.9em;
604
- }
605
-
606
- .jcalendar-table tfoot td {
607
- padding:10px;
608
- }
609
-
610
- .jcalendar-months td, .jcalendar-years td {
611
- height:24px;
612
- }
613
-
614
- .jcalendar-input {
615
- padding-right:18px;
616
- background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 24 24%27 fill=%27gray%27%3E%3Cpath d=%27M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z%27/%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0z%27/%3E%3C/svg%3E");
617
- background-position:top 50% right 5px;
618
- background-repeat:no-repeat;
619
- box-sizing: border-box;
620
- }
621
-
622
- .jcalendar-done {
623
- -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
624
- -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
625
- box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.39);
626
- background-color:#fff;
627
- }
628
-
629
- .jcalendar-update {
630
- border:1px solid #ccc;
631
- background-color:#fff;
632
- border-radius:4px;
633
- padding:5px;
634
- width:100%;
635
- }
636
-
637
- .jcalendar-container select {
638
- width:55px;
639
- display:inline-block;
640
- border:0px;
641
- padding:4px;
642
- text-align:center;
643
- font-size:1.1em;
644
- user-select:none;
645
- margin-right:10px;
646
- }
647
-
648
- .jcalendar-container select:first-child {
649
- margin-right:2px;
650
- }
651
-
652
- .jcalendar-selected {
653
- background-color:#eee;
654
- }
655
-
656
- .jcalendar-reset, .jcalendar-confirm {
657
- text-transform:uppercase;
658
- cursor:pointer;
659
- color: var(--jactive-color);
660
- }
661
-
662
- .jcalendar-controls {
663
- padding:15px;
664
-
665
- -webkit-box-sizing: border-box;
666
- box-sizing: border-box;
667
- vertical-align:middle;
668
-
669
- display: -webkit-box;
670
- display: -moz-box;
671
- display: -ms-flexbox;
672
- display: -webkit-flex;
673
- display: flex;
674
-
675
- -webkit-flex-flow: row wrap;
676
- justify-content: space-between;
677
- align-items:center;
678
- }
679
-
680
- .jcalendar-controls div {
681
- font-weight:bold;
682
- }
683
-
684
- .jcalendar-fullsize {
685
- position:fixed;
686
- width:100%;
687
- top:0px;
688
- left:0px;
689
- }
690
-
691
- .jcalendar-fullsize .jcalendar-content
692
- {
693
- position:fixed;
694
- width:100%;
695
- left:0px;
696
- bottom:0px;
697
- }
698
-
699
- .jcalendar-focus.jcalendar-fullsize .jcalendar-backdrop {
700
- display:block;
701
- }
702
-
703
- .jcalendar-sunday {
704
- color: red;
705
- }
706
- .jcalendar-disabled {
707
- color: #ccc;
708
- }
709
-
710
- .jcalendar-time {
711
- display:flex;
712
- }
713
-
714
- .jcalendar_warning {
715
- color: red;
716
- }
717
-
718
- .jcalendar-hide-controls .jcalendar-controls {
719
- display: none;
720
- }
721
-
722
- .jcolor {
723
- display: none;
724
- outline: none;
725
- position: absolute;
726
- }
727
-
728
- .jcolor-input {
729
- padding-right: 24px !important;
730
- background: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27black%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z%27/%3E%3C/svg%3E") top 50% right 4px no-repeat, content-box;
731
- box-sizing: border-box;
732
- }
733
-
734
- .jcolor-content {
735
- position: absolute;
736
- z-index: 9000;
737
- user-select: none;
738
- -webkit-font-smoothing: antialiased;
739
- font-size: .875rem;
740
- letter-spacing: .2px;
741
- -webkit-border-radius: 4px;
742
- border-radius: 4px;
743
- -webkit-box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
744
- box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
745
- background-color:#fff;
746
- box-sizing: border-box;
747
- min-width: 260px;
748
- }
749
-
750
- .jmodal .jcolor-content {
751
- position: fixed;
752
- }
753
-
754
- .jcolor-controls {
755
- display: flex;
756
- padding: 10px;
757
- border-bottom: 1px solid #eee;
758
- margin-bottom: 5px;
759
- }
760
-
761
- .jcolor-controls div {
762
- flex: 1;
763
- font-size: 1em;
764
- color: var(--jactive-color);
765
- text-transform: uppercase;
766
- font-weight: bold;
767
- box-sizing: border-box;
768
- }
769
-
770
- .jcolor-content table {
771
- border-collapse: collapse;
772
- box-sizing: border-box;
773
- }
774
-
775
- .jcolor-focus {
776
- display:block;
777
- }
778
-
779
- .jcolor table {
780
- width:100%;
781
- height:100%;
782
- min-height: 160px;
783
- }
784
-
785
- .jcolor td {
786
- padding: 7px;
787
- }
788
-
789
- .jcolor-selected {
790
- background-repeat:no-repeat;
791
- background-size: 16px;
792
- background-position: center;
793
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z%27 fill=%27white%27/%3E%3C/svg%3E");
794
- }
795
-
796
- .jcolor-fullscreen {
797
- position: fixed;
798
- left: 0px;
799
- bottom: 0px;
800
- width:100%;
801
- max-height: 290px;
802
- border-radius: 0px;
803
- box-sizing: border-box;
804
- }
805
-
806
- .jcolor-fullscreen .jcolor-controls {
807
- padding: 15px;
808
- -webkit-box-shadow: 1px 0px 1px 0px rgba(0,0,0,0.39);
809
- -moz-box-shadow: 1px 0px 1px 0px rgba(0,0,0,0.39);
810
- box-shadow: 1px 0px 1px 0px rgba(0,0,0,0.39);
811
- }
812
-
813
- .jcolor-reset {
814
- text-align: left;
815
- }
816
-
817
- .jcolor-close {
818
- text-align: right;
819
- }
820
-
821
- .jcolor-backdrop {
822
- position: fixed;
823
- top: 0px;
824
- left: 0px;
825
- min-width: 100%;
826
- min-height: 100%;
827
- background-color: rgba(0,0,0,0.5);
828
- border: 0px;
829
- padding: 0px;
830
- z-index: 8000;
831
- display: none;
832
-
833
- -webkit-touch-callout: none; /* iOS Safari */
834
- -webkit-user-select: none; /* Safari */
835
- -khtml-user-select: none; /* Konqueror HTML */
836
- -moz-user-select: none; /* Firefox */
837
- -ms-user-select: none; /* Internet Explorer/Edge */
838
- user-select: none; /* Non-prefixed version, currently
839
- supported by Chrome and Opera */
840
- }
841
-
842
- .jcolor-content .jtabs-content {
843
- padding: 7px;
844
- }
845
-
846
- .jcolor-grid tr:first-child > td:first-child {
847
- border-top-left-radius: 3px;
848
- }
849
-
850
- .jcolor-grid tr:first-child > td:last-child {
851
- border-top-right-radius: 3px;
852
- }
853
-
854
- .jcolor-grid tr:last-child > td:first-child {
855
- border-bottom-left-radius: 3px;
856
- }
857
-
858
- .jcolor-grid tr:last-child > td:last-child {
859
- border-bottom-right-radius: 3px;
860
- }
861
-
862
- .jcolor-hsl {
863
- box-sizing: border-box;
864
- }
865
-
866
- .jcolor-hsl > div {
867
- height: 100%;
868
- position: relative;
869
- }
870
-
871
- .jcolor-hsl canvas {
872
- display: block;
873
- border-radius: 4px;
874
- -webkit-user-drag: none;
875
- }
876
-
877
- .jcolor-point {
878
- height: 5px;
879
- width: 5px;
880
- background-color: #000;
881
- position: absolute;
882
- top: 50%;
883
- left: 50%;
884
- transform: translate(-50%, -50%);
885
- border-radius: 50%;
886
- }
887
-
888
- .jcolor-sliders {
889
- padding: 10px 20px 10px 10px;
890
- }
891
-
892
- .jcolor-sliders input {
893
- -webkit-appearance: none;
894
-
895
- height: 12px;
896
- width: 80%;
897
-
898
- background: #d3d3d3;
899
- opacity: 1;
900
-
901
- border-radius: 30px;
902
- outline: none;
903
- }
904
-
905
- .jcolor-sliders-input-subcontainer {
906
- display: flex;
907
- justify-content: space-between;
908
- align-items: center;
909
- }
910
-
911
- .jcolor-sliders-input-container {
912
- margin-top: 4px;
913
- line-height: 0.8em;
914
- text-align: left;
915
- }
916
-
917
- .jcolor-sliders-input-container > label {
918
- font-size: 10px;
919
- text-transform: uppercase;
920
- color: #bbbbbd;
921
- }
922
-
923
- .jcolor-sliders-input-subcontainer > input {
924
- border: 0px;
925
- padding: 1px;
926
- }
927
-
928
- .jcolor-sliders-input-container input::-webkit-slider-thumb {
929
- -webkit-appearance: none;
930
- height: 12px;
931
- width: 12px;
932
- border-radius: 50%;
933
- background: #000;
934
- border: 2px solid #fff;
935
- cursor: pointer;
936
- }
937
-
938
- .jcolor-sliders-input-container input::-moz-range-thumb {
939
- -webkit-appearance: none;
940
- height: 12px;
941
- width: 12px;
942
- border-radius: 50%;
943
- background: #000;
944
- border: 2px solid #fff;
945
- cursor: pointer;
946
- }
947
-
948
- .jcolor-sliders-final-color {
949
- padding: 6px;
950
- user-select: all;
951
- margin-top: 10px;
952
- text-align: center;
953
- }
954
-
955
- .jcolor-sliders-final-color > div:nth-child(2) {
956
- width: 71px;
957
- text-transform: uppercase;
958
- }
959
-
960
- .jcolor .jtabs .jtabs-headers-container .jtabs-controls {
961
- display: none !important;
962
- }
963
-
964
- .jcolor .jtabs .jtabs-headers-container {
965
- display: flex !important;
966
- justify-content: center;
967
- padding: 4px;
968
- }
969
-
970
- .jcolor .jtabs-headers > div:not(.jtabs-border) {
971
- padding: 2px !important;
972
- padding-left: 15px !important;
973
- padding-right: 15px !important;
974
- font-size: 0.8em;
975
- }
976
- .jcontextmenu {
977
- position:fixed;
978
- z-index:10000;
979
- background:#fff;
980
- color: #555;
981
- font-size: 11px;
982
- -webkit-user-select: none;
983
- -moz-user-select: none;
984
- user-select: none;
985
- -webkit-box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
986
- -moz-box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
987
- box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
988
- border: 1px solid #C6C6C6;
989
- padding: 0px;
990
- padding-top:4px;
991
- padding-bottom:4px;
992
- margin:0px;
993
- outline:none;
994
- display:none;
995
- }
996
-
997
- .jcontextmenu.jcontextmenu-focus {
998
- display:inline-block;
999
- }
1000
-
1001
- .jcontextmenu > div {
1002
- box-sizing: border-box;
1003
- display: flex;
1004
- padding: 8px 8px 8px 32px;
1005
- width: 250px;
1006
- position: relative;
1007
- cursor: default;
1008
- font-size: 11px;
1009
- font-family:sans-serif;
1010
- text-align: left;
1011
- -webkit-box-align: center;
1012
- align-items: center;
1013
- }
1014
-
1015
- .jcontextmenu > div::before {
1016
- content: attr(data-icon);
1017
- font-family: 'Material Icons' !important;
1018
- font-size: 15px;
1019
- position: absolute;
1020
- left: 9px;
1021
- line-height: 24px;
1022
- }
1023
-
1024
- .jcontextmenu.symbols > div::before {
1025
- font-family: 'Material Symbols Outlined' !important;
1026
- }
1027
-
1028
- .jcontextmenu > div.header {
1029
- display: none;
1030
- }
1031
-
1032
- .jcontextmenu > div a {
1033
- color: #555;
1034
- text-decoration: none;
1035
- flex: 1;
1036
- cursor: pointer;
1037
- }
1038
-
1039
- .jcontextmenu > div span {
1040
- margin-right: 10px;
1041
- font-size: 0.9em;
1042
- }
1043
-
1044
- .jcontextmenu .jcontextmenu-disabled a {
1045
- color: #ccc;
1046
- }
1047
-
1048
- .jcontextmenu .jcontextmenu-disabled::before {
1049
- color: #ccc;
1050
- }
1051
-
1052
- .jcontextmenu > div:hover {
1053
- background: #ebebeb;
1054
- }
1055
-
1056
- .jcontextmenu hr {
1057
- border: 1px solid #e9e9e9;
1058
- border-bottom: 0;
1059
- margin-top:5px;
1060
- margin-bottom:5px;
1061
- }
1062
-
1063
- .jcontextmenu > hr:hover {
1064
- background: transparent;
1065
- }
1066
-
1067
- .jcontextmenu .jcontextmenu {
1068
- top: 4px;
1069
- left: 99%;
1070
- opacity: 0;
1071
- position: absolute;
1072
- }
1073
-
1074
- .jcontextmenu > div:hover > .jcontextmenu {
1075
- display: block;
1076
- opacity: 1;
1077
- -webkit-transform: translate(0, 0) scale(1);
1078
- transform: translate(0, 0) scale(1);
1079
- pointer-events: auto;
1080
- }
1081
-
1082
- @media only screen and (max-width: 420px) {
1083
- .jcontextmenu {
1084
- top: initial !important;
1085
- left: 0px !important;
1086
- bottom: 0px !important;
1087
- width: 100vw;
1088
- height: 260px;
1089
- overflow: scroll;
1090
- animation: jslide-bottom-in 0.4s forwards;
1091
- padding-top: 0px;
1092
- }
1093
- .jcontextmenu div {
1094
- width: 100%;
1095
- text-align: center;
1096
- border-bottom: 1px solid #ccc;
1097
- padding: 15px;
1098
- }
1099
- .jcontextmenu > div.header {
1100
- background-color: lightgray;
1101
- padding: 5px;
1102
- top: 0px;
1103
- position: sticky;
1104
- z-index: 2;
1105
- }
1106
- .jcontextmenu > div.header > a.title {
1107
- text-align: left;
1108
- }
1109
-
1110
- .jcontextmenu > div.header > a.close {
1111
- text-align: right;
1112
- }
1113
- .jcontextmenu a {
1114
- font-size: 1.4em;
1115
- text-transform: uppercase;
1116
- }
1117
- .jcontextmenu span {
1118
- display: none;
1119
- }
1120
- .jcontextmenu span {
1121
- display: none;
1122
- }
1123
- .jcontextmenu hr {
1124
- display: none;
1125
- }
1126
- }
1127
-
1128
- .jdropdown {
1129
- cursor:pointer;
1130
- -webkit-touch-callout: none;
1131
- -webkit-user-select: none;
1132
- -khtml-user-select: none;
1133
- -moz-user-select: none;
1134
- -ms-user-select: none;
1135
- user-select: none;
1136
- box-sizing: border-box;
1137
- background:#fff;
1138
- -webkit-tap-highlight-color: transparent;
1139
- display: inline-block;
1140
- }
1141
-
1142
- .jdropdown-backdrop {
1143
- position:fixed;
1144
- top:0px;
1145
- left:0px;
1146
- min-width:100%;
1147
- min-height:100%;
1148
- background-color:rgba(0,0,0,0.5);
1149
- border:0px;
1150
- padding:0px;
1151
- z-index:8000;
1152
- display:none;
1153
- }
1154
-
1155
- .jdropdown[disabled] {
1156
- opacity: 0.5;
1157
- pointer-events: none;
1158
- }
1159
-
1160
- .jdropdown-focus {
1161
- position:relative;
1162
- }
1163
-
1164
- .jdropdown-focus .jdropdown-container {
1165
- transform: translate3d(0,0,0);
1166
- }
1167
-
1168
- .jdropdown-default.jdropdown-focus .jdropdown-header {
1169
- outline:auto 5px -webkit-focus-ring-color;
1170
- }
1171
-
1172
- .jdropdown-default.jdropdown-focus .jdropdown-header.jdropdown-add {
1173
- background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27gray%27 width=%2724px%27 height=%2724px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z%27/%3E%3C/svg%3E");
1174
- }
1175
-
1176
- .jdropdown-container-header {
1177
- padding:0px;
1178
- margin:0px;
1179
- position:relative;
1180
- box-sizing: border-box;
1181
- }
1182
-
1183
- .jdropdown-header {
1184
- width:100%;
1185
- appearance: none;
1186
- background-repeat: no-repeat;
1187
- background-position:top 50% right 5px;
1188
- background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0V0z%27/%3E%3Cpath d=%27M7 10l5 5 5-5H7z%27 fill=%27gray%27/%3E%3C/svg%3E");
1189
- text-overflow: ellipsis;
1190
- cursor:pointer;
1191
- box-sizing: border-box;
1192
- -webkit-appearance: none;
1193
- -moz-appearance: none;
1194
- padding-right:30px !important;
1195
- }
1196
-
1197
- .jdropdown-insert-button {
1198
- font-size: 1.4em;
1199
- text-transform: uppercase;
1200
- position:absolute;
1201
- right: 30px;
1202
- top: 4px;
1203
- display:none;
1204
- }
1205
-
1206
- .jdropdown-container {
1207
- min-width: inherit;
1208
- transform: translate3d(-10000px,0,0);
1209
- position:absolute;
1210
- z-index:9001;
1211
- }
1212
-
1213
- .jdropdown-close {
1214
- display:none;
1215
- font-size:1em;
1216
- color: var(--jactive-color);
1217
- text-transform:uppercase;
1218
- text-align:right;
1219
- padding:12px;
1220
- font-weight:bold;
1221
- }
1222
-
1223
- .jdropdown-content {
1224
- min-width:inherit;
1225
- margin:0px;
1226
- box-sizing:border-box;
1227
- }
1228
-
1229
- .jdropdown-content:empty {
1230
- }
1231
-
1232
- .jdropdown-item {
1233
- white-space: nowrap;
1234
- text-align: left;
1235
- text-overflow: ellipsis;
1236
- overflow-x: hidden;
1237
- color: #000;
1238
- display: flex;
1239
- align-items: center;
1240
- }
1241
-
1242
- .jdropdown-description {
1243
- text-overflow: ellipsis;
1244
- overflow: hidden;
1245
- line-height: 1.5em;
1246
- }
1247
-
1248
- .jdropdown-image {
1249
- margin-right:10px;
1250
- width: 32px;
1251
- height: 32px;
1252
- border-radius:20px;
1253
- }
1254
-
1255
- .jdropdown-image-small {
1256
- width:24px;
1257
- height:24px;
1258
- }
1259
-
1260
- .jdropdown-icon {
1261
- margin-right:10px;
1262
- font-size: 30px;
1263
- margin-left: -5px;
1264
- }
1265
-
1266
- .jdropdown-icon-small {
1267
- font-size: 24px;
1268
- margin-left: 0px;
1269
- }
1270
-
1271
- .jdropdown-title {
1272
- font-size: 0.7em;
1273
- text-overflow: ellipsis;
1274
- overflow-x: hidden;
1275
- display: block;
1276
- }
1277
-
1278
- /** Default visual **/
1279
-
1280
- .jdropdown-default .jdropdown-header {
1281
- border:1px solid #ccc;
1282
- padding:5px;
1283
- padding-left:10px;
1284
- padding-right:16px;
1285
- }
1286
-
1287
- .jdropdown-default .jdropdown-container {
1288
- background-color:#fff;
1289
- }
1290
-
1291
- .jdropdown-default.jdropdown-focus.jdropdown-insert .jdropdown-header {
1292
- padding-right:50px;
1293
- }
1294
-
1295
- .jdropdown-default.jdropdown-focus.jdropdown-insert .jdropdown-insert-button {
1296
- display:block;
1297
- }
1298
-
1299
- .jdropdown-default .jdropdown-content
1300
- {
1301
- min-width:inherit;
1302
- border:1px solid #8fb1e3;
1303
- margin:0px;
1304
- background-color:#fff;
1305
- box-sizing:border-box;
1306
- min-height:10px;
1307
- max-height:215px;
1308
- overflow-y:auto;
1309
- }
1310
-
1311
- .jdropdown-default .jdropdown-item
1312
- {
1313
- padding:4px;
1314
- padding-left:8px;
1315
- padding-right:40px;
1316
- }
1317
-
1318
- .jdropdown-default .jdropdown-item:hover
1319
- {
1320
- background-color:#1f93ff;
1321
- color:#fff;
1322
- }
1323
-
1324
- .jdropdown-default .jdropdown-cursor
1325
- {
1326
- background-color:#eee;
1327
- }
1328
-
1329
- .jdropdown-default .jdropdown-selected
1330
- {
1331
- background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIiAvPjxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiIGZpbGw9IndoaXRlIiAvPjwvc3ZnPgo=);
1332
- background-repeat:no-repeat;
1333
- background-position:top 50% right 5px;
1334
- background-color:#1f93ff;
1335
- color:#fff;
1336
- }
1337
-
1338
- .jdropdown-default .jdropdown-group {
1339
- margin-top:5px;
1340
- }
1341
-
1342
- .jdropdown-default .jdropdown-group .jdropdown-item {
1343
- padding-left:16px;
1344
- }
1345
-
1346
- .jdropdown-default .jdropdown-group-name {
1347
- padding-left: 8px;
1348
- font-weight: bold;
1349
- text-align: left;
1350
- }
1351
-
1352
- .jdropdown-default .jdropdown-reset_ {
1353
- content:'x';
1354
- position:absolute;
1355
- top:0;
1356
- right:0;
1357
- margin:5px;
1358
- margin-right:10px;
1359
- font-size:12px;
1360
- width:12px;
1361
- cursor:pointer;
1362
- text-shadow: 0px 0px 5px #fff;
1363
- display:none;
1364
- line-height: 1.8em;
1365
- }
1366
-
1367
- .jdropdown-default.jdropdown-focus .jdropdown-reset_ {
1368
- display:block;
1369
- }
1370
-
1371
- /** Default render for mobile **/
1372
-
1373
- .jdropdown-picker.jdropdown-focus .jdropdown-backdrop {
1374
- display:block;
1375
- }
1376
-
1377
- .jdropdown-picker .jdropdown-header {
1378
- outline: none;
1379
- }
1380
-
1381
- .jdropdown-picker .jdropdown-container
1382
- {
1383
- position:fixed;
1384
- bottom:0px;
1385
- left:0px;
1386
- border-bottom:1px solid #e6e6e8;
1387
- width:100%;
1388
- background-color:#fff;
1389
- box-sizing: border-box;
1390
- }
1391
-
1392
- .jdropdown-picker .jdropdown-close
1393
- {
1394
- -webkit-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.39);
1395
- -moz-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.39);
1396
- box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.39);
1397
- background-color:#fff;
1398
- display:block;
1399
- }
1400
-
1401
- .jdropdown-picker .jdropdown-content
1402
- {
1403
- overflow-y:scroll;
1404
- height:280px;
1405
- background-color:#fafafa;
1406
- border-top:1px solid #e6e6e8;
1407
- }
1408
-
1409
- .jdropdown-picker .jdropdown-group-name
1410
- {
1411
- font-size: 1em;
1412
- text-transform: uppercase;
1413
- padding-top:10px;
1414
- padding-bottom:10px;
1415
- display: block;
1416
- border-bottom: 1px solid #e6e6e8;
1417
- padding-left:20px;
1418
- padding-right:20px;
1419
- text-align:center;
1420
- font-weight:bold;
1421
- }
1422
-
1423
- .jdropdown-picker .jdropdown-item
1424
- {
1425
- font-size: 1em;
1426
- text-transform: uppercase;
1427
- padding-top:10px;
1428
- padding-bottom:10px;
1429
- border-bottom: 1px solid #e6e6e8;
1430
- padding-left:20px;
1431
- padding-right:20px;
1432
- }
1433
-
1434
- .jdropdown-picker .jdropdown-selected
1435
- {
1436
- background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIiAvPjxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiIGZpbGw9IndoaXRlIiAvPjwvc3ZnPgo=);
1437
- background-repeat:no-repeat;
1438
- background-position:top 50% right 15px;
1439
- background-color:#1f93ff;
1440
- color:#fff;
1441
- }
1442
-
1443
- .jdropdown-picker .jdropdown-cursor
1444
- {
1445
- background-color:#1f93ff;
1446
- color:#fff;
1447
- }
1448
-
1449
- /** Default render for mobile searchbar **/
1450
-
1451
- .jdropdown-searchbar.jdropdown-focus
1452
- {
1453
- position:fixed;
1454
- top:0px !important;
1455
- left:0px !important;
1456
- width:100% !important;
1457
- height:100% !important;
1458
- background-color:#fafafa;
1459
- padding:0px;
1460
- z-index:9001;
1461
- overflow-y:scroll;
1462
- will-change: scroll-position;
1463
- -webkit-overflow-scrolling: touch;
1464
- }
1465
-
1466
- .jdropdown-searchbar.jdropdown-focus .jdropdown-container-header
1467
- {
1468
- position: fixed;
1469
- top: 0px;
1470
- left: 0px;
1471
- z-index: 9002;
1472
- padding: 6px;
1473
- background-color:#fff;
1474
- box-shadow: 0 1px 2px rgba(0,0,0,.1);
1475
- width: 100%;
1476
- height: 40px;
1477
- }
1478
-
1479
- .jdropdown-searchbar.jdropdown-focus .jdropdown-header
1480
- {
1481
- border: 0px !important;
1482
- background-position-x: 0% !important;
1483
- background-position-y: 40% !important;
1484
- background-repeat: no-repeat;
1485
- background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTUuNSAxNGgtLjc5bC0uMjgtLjI3QzE1LjQxIDEyLjU5IDE2IDExLjExIDE2IDkuNSAxNiA1LjkxIDEzLjA5IDMgOS41IDNTMyA1LjkxIDMgOS41IDUuOTEgMTYgOS41IDE2YzEuNjEgMCAzLjA5LS41OSA0LjIzLTEuNTdsLjI3LjI4di43OWw1IDQuOTlMMjAuNDkgMTlsLTQuOTktNXptLTYgMEM3LjAxIDE0IDUgMTEuOTkgNSA5LjVTNy4wMSA1IDkuNSA1IDE0IDcuMDEgMTQgOS41IDExLjk5IDE0IDkuNSAxNHoiIGZpbGw9IiNlNmU2ZTgiLz48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PC9zdmc+);
1486
- padding-left: 30px !important;
1487
- padding-right: 60px !important;
1488
- }
1489
-
1490
- .jdropdown-searchbar.jdropdown-focus .jdropdown-close
1491
- {
1492
- display:block;
1493
- }
1494
-
1495
- .jdropdown-searchbar .jdropdown-header {
1496
- outline: none;
1497
- }
1498
-
1499
- .jdropdown-searchbar .jdropdown-container
1500
- {
1501
- margin-top: 40px;
1502
- width:100%;
1503
- }
1504
-
1505
- .jdropdown-searchbar .jdropdown-close
1506
- {
1507
- position:fixed;
1508
- top:0px;
1509
- right:0px;
1510
- }
1511
-
1512
- .jdropdown-searchbar .jdropdown-content
1513
- {
1514
- margin-top:10px;
1515
- }
1516
-
1517
- .jdropdown-searchbar .jdropdown-group
1518
- {
1519
- margin-top:10px;
1520
- margin-bottom:15px;
1521
- background-color:#fff;
1522
- }
1523
-
1524
- .jdropdown-searchbar .jdropdown-group-name
1525
- {
1526
- border-top: 1px solid #e6e6e8;
1527
- border-bottom: 1px solid #e6e6e8;
1528
- padding:10px;
1529
- padding-left:12px;
1530
- font-weight:bold;
1531
- }
1532
-
1533
- .jdropdown-searchbar .jdropdown-group-arrow
1534
- {
1535
- float:right;
1536
- width:24px;
1537
- height:24px;
1538
- background-repeat:no-repeat;
1539
- }
1540
-
1541
- .jdropdown-searchbar .jdropdown-group-arrow-down
1542
- {
1543
- background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNNy40MSA4LjU5TDEyIDEzLjE3bDQuNTktNC41OEwxOCAxMGwtNiA2LTYtNiAxLjQxLTEuNDF6Ii8+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgwVjB6Ii8+PC9zdmc+);
1544
- }
1545
-
1546
- .jdropdown-searchbar .jdropdown-group-arrow-up
1547
- {
1548
- background-image: url(data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTcuNDEgMTUuNDFMMTIgMTAuODNsNC41OSA0LjU4TDE4IDE0bC02LTYtNiA2eiIvPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=);
1549
- }
1550
-
1551
- .jdropdown-searchbar .jdropdown-item
1552
- {
1553
- padding-top:10px;
1554
- padding-bottom:10px;
1555
- border-bottom: 1px solid #e6e6e8;
1556
- padding-left:15px;
1557
- padding-right:40px;
1558
- background-color:#fff;
1559
- font-size:0.9em;
1560
- }
1561
-
1562
- .jdropdown-searchbar .jdropdown-description {
1563
- text-overflow: ellipsis;
1564
- overflow: hidden;
1565
- max-width: calc(100% - 20px);
1566
- }
1567
-
1568
- .jdropdown-searchbar .jdropdown-content > .jdropdown-item:first-child
1569
- {
1570
- border-top: 1px solid #e6e6e8;
1571
- }
1572
-
1573
- .jdropdown-searchbar .jdropdown-selected
1574
- {
1575
- background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTkgMTYuMTdMNC44MyAxMmwtMS40MiAxLjQxTDkgMTkgMjEgN2wtMS40MS0xLjQxeiIgZmlsbD0iIzAwN2FmZiIvPjwvc3ZnPg==);
1576
- background-repeat:no-repeat;
1577
- background-position:top 50% right 15px;
1578
- }
1579
-
1580
- /** List render **/
1581
-
1582
- .jdropdown-list
1583
- {
1584
- }
1585
-
1586
- .jdropdown-list .jdropdown-container
1587
- {
1588
- display:block;
1589
- }
1590
-
1591
- .jdropdown-list .jdropdown-header
1592
- {
1593
- display:none;
1594
- }
1595
-
1596
- .jdropdown-list .jdropdown-group
1597
- {
1598
- background-color:#fff;
1599
- }
1600
-
1601
- .jdropdown-list .jdropdown-group-name
1602
- {
1603
- border-bottom: 1px solid #e6e6e8;
1604
- padding-top:10px;
1605
- padding-bottom:10px;
1606
- font-weight:bold;
1607
- }
1608
-
1609
- .jdropdown-list .jdropdown-item
1610
- {
1611
- padding-top:10px;
1612
- padding-bottom:10px;
1613
- border-bottom: 1px solid #e6e6e8;
1614
- padding-left:10px;
1615
- padding-right:40px;
1616
- background-color:#fff;
1617
- }
1618
-
1619
- .jdropdown-list .jdropdown-selected
1620
- {
1621
- background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTkgMTYuMTdMNC44MyAxMmwtMS40MiAxLjQxTDkgMTkgMjEgN2wtMS40MS0xLjQxeiIgZmlsbD0iIzAwN2FmZiIvPjwvc3ZnPg==);
1622
- background-repeat:no-repeat;
1623
- background-position:top 50% right 10px;
1624
- }
1625
-
1626
- @media only screen and (max-width : 800px)
1627
- {
1628
- .jdropdown-list {
1629
- width:100% !important;
1630
- border:0px;
1631
- padding:0px;
1632
- }
1633
-
1634
- .jdropdown-list .jdropdown-container {
1635
- min-width:100%;
1636
- }
1637
-
1638
- .jdropdown-searchbar.jdropdown-focus .jdropdown-description {
1639
- text-transform: uppercase;
1640
- }
1641
- }
1642
-
1643
- .app .jdropdown-item {
1644
- text-transform:uppercase;
1645
- }
1646
-
1647
- .jdropdown-create-container {
1648
- margin: 10px;
1649
- border: 1px solid #ccc;
1650
- border-radius: 2px;
1651
- padding: 6px;
1652
- }
1653
-
1654
- .jdropdown-color {
1655
- background-color: #fff;
1656
- border: 1px solid transparent;
1657
- border-radius: 12px;
1658
- width: 12px;
1659
- height: 12px;
1660
- margin-right: 6px;
1661
- }
1662
-
1663
- .jdropdown-item[data-disabled] {
1664
- opacity: 0.5;
1665
- pointer-events: none;
1666
- }
1667
- .jeditor-container {
1668
- border:1px solid #ccc;
1669
- box-sizing: border-box;
1670
- }
1671
-
1672
- .jeditor-container.with-margin {
1673
- background-color: #f2f2f2;
1674
- max-width: 1200px;
1675
- }
1676
-
1677
- .jeditor-dragging {
1678
- border:1px dashed #000;
1679
- }
1680
-
1681
- .jeditor {
1682
- outline:none;
1683
- word-break: break-word;
1684
- }
1685
-
1686
- .jeditor-container.with-margin .jeditor {
1687
- background-color: #fff;
1688
- margin: 80px;
1689
- min-height: 800px;
1690
- padding: 80px;
1691
- max-width: 800px;
1692
- }
1693
-
1694
- .jeditor[data-placeholder]:empty:before {
1695
- content: attr(data-placeholder);
1696
- color: lightgray;
1697
- }
1698
-
1699
- /** Snippet **/
1700
-
1701
- .jsnippet {
1702
- margin-top:15px;
1703
- cursor:pointer;
1704
- border: 1px solid #ccc;
1705
- position:relative;
1706
- }
1707
-
1708
- .jsnippet:focus {
1709
- outline: none;
1710
- }
1711
-
1712
- .jsnippet img {
1713
- width:100%;
1714
- }
1715
-
1716
- .jsnippet .jsnippet-title {
1717
- padding:15px;
1718
- font-size:1.4em;
1719
- }
1720
-
1721
- .jsnippet .jsnippet-description {
1722
- padding-left:15px;
1723
- padding-right:15px;
1724
- font-size:1em;
1725
- }
1726
-
1727
- .jsnippet .jsnippet-host {
1728
- padding:15px;
1729
- text-transform:uppercase;
1730
- font-size:0.8em;
1731
- color:#777;
1732
- text-align:right;
1733
- }
1734
-
1735
- .jsnippet .jsnippet-url {
1736
- display:none;
1737
- }
1738
-
1739
- .jeditor .jsnippet:after {
1740
- content: 'close';
1741
- font-family: 'Material icons';
1742
- font-size: 24px;
1743
- width: 24px;
1744
- height: 24px;
1745
- line-height: 24px;
1746
- cursor: pointer;
1747
- text-shadow: 0px 0px 2px #fff;
1748
- position: absolute;
1749
- top: 12px;
1750
- right: 12px;
1751
- }
1752
-
1753
- .jsnippet * {
1754
- -webkit-user-select: none;
1755
- -khtml-user-select: none;
1756
- -moz-user-select: none;
1757
- -o-user-select: none;
1758
- user-select: none;
1759
-
1760
- -webkit-user-drag: none;
1761
- -khtml-user-drag: none;
1762
- -moz-user-drag: none;
1763
- -o-user-drag: none;
1764
- }
1765
-
1766
- .jeditor img {
1767
- border:2px solid transparent;
1768
- box-sizing: border-box;
1769
- }
1770
-
1771
- .jeditor img.resizing {
1772
- -webkit-user-select: none;
1773
- -khtml-user-select: none;
1774
- -moz-user-select: none;
1775
- -o-user-select: none;
1776
- user-select: none;
1777
-
1778
- -webkit-user-drag: none;
1779
- -khtml-user-drag: none;
1780
- -moz-user-drag: none;
1781
- -o-user-drag: none;
1782
- }
1783
-
1784
- .jeditor img:focus {
1785
- border: 2px solid #0096FD;
1786
- outline: #0096FD;
1787
- }
1788
-
1789
- .jeditor .pdf {
1790
- background-image: url("data:image/svg+xml,%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512;%27 xml:space=%27preserve%27%3E%3Cpath style=%27fill:%23C30B15;%27 d=%27M511.344,274.266C511.77,268.231,512,262.143,512,256C512,114.615,397.385,0,256,0S0,114.615,0,256 c0,117.769,79.53,216.949,187.809,246.801L511.344,274.266z%27/%3E%3Cpath style=%27fill:%2385080E;%27 d=%27M511.344,274.266L314.991,77.913L119.096,434.087l68.714,68.714C209.522,508.787,232.385,512,256,512 C391.243,512,501.976,407.125,511.344,274.266z%27/%3E%3Cpolygon style=%27fill:%23FFFFFF;%27 points=%27278.328,333.913 255.711,77.913 119.096,77.913 119.096,311.652 %27/%3E%3Cpolygon style=%27fill:%23E8E6E6;%27 points=%27392.904,311.652 392.904,155.826 337.252,133.565 314.991,77.913 255.711,77.913 256.067,333.913 %27/%3E%3Cpolygon style=%27fill:%23FFFFFF;%27 points=%27314.991,155.826 314.991,77.913 392.904,155.826 %27/%3E%3Crect x=%27119.096%27 y=%27311.652%27 style=%27fill:%23FC0F1A;%27 width=%27273.809%27 height=%27122.435%27/%3E%3Cg%3E%3Cpath style=%27fill:%23FFFFFF;%27 d=%27M204.871,346.387c13.547,0,21.341,6.659,21.341,18.465c0,12.412-7.795,19.601-21.341,19.601h-9.611 v14.909h-13.471v-52.975L204.871,346.387L204.871,346.387z M195.26,373.858h8.93c5.904,0,9.308-2.952,9.308-8.552 c0-5.525-3.406-8.324-9.308-8.324h-8.93V373.858z%27/%3E%3Cpath style=%27fill:%23FFFFFF;%27 d=%27M257.928,346.387c16.649,0,28.152,10.746,28.152,26.487c0,15.666-11.655,26.488-28.683,26.488 h-22.25v-52.975H257.928z M248.619,388.615h9.611c8.249,0,14.151-6.357,14.151-15.665c0-9.384-6.205-15.817-14.757-15.817h-9.006 V388.615z%27/%3E%3Cpath style=%27fill:%23FFFFFF;%27 d=%27M308.563,356.982v12.26h23.763v10.596h-23.763v19.525h-13.471v-52.975h39.277v10.595h-25.806 V356.982z%27/%3E%3C/g%3E%3C/svg%3E%0A");
1791
- background-repeat: no-repeat;
1792
- background-size: cover;
1793
- width:60px;
1794
- height:60px;
1795
- }
1796
-
1797
- .jeditor-toolbar {
1798
- width: fit-content;
1799
- max-width: 100%;
1800
- box-sizing: border-box;
1801
- margin: 10px;
1802
- }
1803
-
1804
- .toolbar-on-top .jeditor-toolbar {
1805
- width: initial;
1806
- margin: 0px;
1807
- box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
1808
- display: block;
1809
- }
1810
-
1811
- .toolbar-on-top .jeditor {
1812
- padding: 15px;
1813
- }
1814
-
1815
- .toolbar-on-top .jtoolbar .material-icons {
1816
- font-size: 24px;
1817
- transform: initial;
1818
- margin: 4px;
1819
- }
1820
-
1821
- .toolbar-on-top .jtoolbar .jpicker-header {
1822
- font-size: 1em;
1823
- margin-top: 4px;
1824
- margin-bottom: 4px;
1825
- }
1826
-
1827
- .jeditor table {
1828
- border-collapse: collapse;
1829
- }
1830
-
1831
- .jeditor table td {
1832
- border: 1px solid #bbb;
1833
- height: 2em;
1834
- }
1835
-
1836
- .jeditor table td:focus {
1837
- border: 1px solid blue;
1838
- }
1839
-
1840
- .jeditor .line-break {
1841
- border-top: 1px dashed #ccc;
1842
- display: flex;
1843
- justify-content: center;
1844
- pointer-events: none;
1845
- }
1846
-
1847
- .jeditor .line-break:before {
1848
- content: 'New page';
1849
- background-color: #fff;
1850
- color: #ccc;
1851
- margin: -1em;
1852
- padding: 6px;
1853
- position: absolute;
1854
- }
1855
- .jfloating {
1856
- position:fixed;
1857
- bottom:0px;
1858
- right:0px;
1859
- margin-right:5px;
1860
-
1861
- -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.2);
1862
- -moz-box-shadow: 0 2px 10px rgba(0,0,0,.2);
1863
- border:1px solid #ccc;
1864
- background-color:#fff;
1865
- box-sizing: border-box;
1866
- padding-top:50px !important;
1867
- z-index:9002;
1868
- border-radius: 8px;
1869
- }
1870
-
1871
- .jfloating.jfloating-big {
1872
- width: 510px !important;
1873
- height: 472px !important;
1874
- }
1875
-
1876
- .jfloating.jfloating-small {
1877
- width: 300px !important;
1878
- height: 320px !important;
1879
- }
1880
-
1881
- .jfloating.jfloating-large {
1882
- width: 600px !important;
1883
- height: 600px !important;
1884
- }
1885
-
1886
- .jfloating:before {
1887
- position:absolute;
1888
- top:0;
1889
- left:0;
1890
- width:100%;
1891
- content:attr(title);
1892
- padding:15px;
1893
- box-sizing: border-box;
1894
- font-size:1.2em;
1895
- box-shadow: 1px 1px 3px rgba(0,0,0,.2);
1896
- background-color: #fff;
1897
- border-radius: 8px 8px 0px 0px;
1898
- background-color: #404040;
1899
- font-size: .93rem;
1900
- font-weight: 600;
1901
- color: white;
1902
- letter-spacing: .5px;
1903
- }
1904
-
1905
- .jfloating:after {
1906
- content:'';
1907
- background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27%23FFF%27 d=%27M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
1908
- position:absolute;
1909
- top:0;
1910
- right:0;
1911
- margin:14px;
1912
- font-size:24px;
1913
- width:24px;
1914
- height:24px;
1915
- cursor:pointer;
1916
- text-shadow: 0px 0px 5px #fff;
1917
- }
1918
-
1919
- .jfloating_content {
1920
- padding:20px;
1921
- overflow-y:auto;
1922
- max-height:100%;
1923
- box-sizing: border-box;
1924
- height: -webkit-fill-available;
1925
- }
1926
-
1927
- .jfloating.jfloating-minimized {
1928
- height: 50px !important;
1929
- }
1930
-
1931
- .jfloating.jfloating-minimized .jfloating_content {
1932
- display: none;
1933
- }
1934
-
1935
- .jmodal {
1936
- position:fixed;
1937
- top:50%;
1938
- left:50%;
1939
- width:60%;
1940
- height:60%;
1941
- -webkit-box-shadow: 0 2px 12px rgba(0,0,0,.2);
1942
- -moz-box-shadow: 0 2px 12px rgba(0,0,0,.2);
1943
- border:1px solid #ccc;
1944
- background-color:#fff;
1945
- transform: translate(-50%, -50%);
1946
- box-sizing: border-box;
1947
- z-index:9002;
1948
- border-radius: 4px;
1949
- display: flex;
1950
- flex-direction: column;
1951
- }
1952
-
1953
- .jmodal_title {
1954
- padding: 20px;
1955
- height: 70px;
1956
- box-sizing: border-box;
1957
- font-size: 1.4em;
1958
- background-color: #fff;
1959
- border-radius: 8px 8px 0px 0px;
1960
- pointer-events: none;
1961
- display: flex;
1962
- -webkit-align-items: center;
1963
- -webkit-box-align: center;
1964
- align-items: center;
1965
- border-bottom: 1px solid #eee;
1966
- }
1967
-
1968
- .jmodal_title > div {
1969
- font-size: 1.4em;
1970
- }
1971
-
1972
- .jmodal_title[data-icon]:before {
1973
- content: attr(data-icon);
1974
- font-family: 'Material Icons' !important;
1975
- width: 24px;
1976
- height: 24px;
1977
- font-size: 24px;
1978
- margin-right: 10px;
1979
- line-height: 24px;
1980
- }
1981
-
1982
- .jmodal_content {
1983
- padding: 20px;
1984
- overflow-y: auto;
1985
- height: 100%;
1986
- box-sizing: border-box;
1987
- scrollbar-width: thin;
1988
- scrollbar-color: #333 transparent;
1989
- }
1990
-
1991
- .jmodal_title:empty {
1992
- display: none;
1993
- }
1994
-
1995
- .jmodal_title:empty + .jmodal_content {
1996
- height: 100%;
1997
- }
1998
-
1999
- .jmodal_content::-webkit-scrollbar {
2000
- height: 12px;
2001
- }
2002
-
2003
- .jmodal_content::-webkit-scrollbar {
2004
- width: 12px;
2005
- }
2006
-
2007
- .jmodal_content::-webkit-scrollbar-track {
2008
- border: 1px solid #fff;
2009
- background: #eee;
2010
- }
2011
-
2012
- .jmodal_content::-webkit-scrollbar-thumb {
2013
- border: 1px solid #fff;
2014
- background: #888;
2015
- }
2016
-
2017
- .jmodal:after {
2018
- content: '';
2019
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2020
- position: absolute;
2021
- top: 0;
2022
- right: 0;
2023
- margin: 25px;
2024
- font-size: 24px;
2025
- width: 24px;
2026
- height: 24px;
2027
- cursor: pointer;
2028
- text-shadow: 0px 0px 5px #fff;
2029
- }
2030
-
2031
- .jmodal_fullscreen {
2032
- width: 100% !important;
2033
- height: 100% !important;
2034
- top: 0px;
2035
- left: 0px;
2036
- transform: none;
2037
- border: 0px;
2038
- border-radius: 0px;
2039
- }
2040
-
2041
- .jmodal_backdrop {
2042
- position: fixed;
2043
- top: 0px;
2044
- left: 0px;
2045
- min-width: 100%;
2046
- min-height: 100%;
2047
- background-color: rgba(0,0,0,0.2);
2048
- border: 0px;
2049
- padding: 0px;
2050
- z-index: 8000;
2051
- display: none;
2052
-
2053
- -webkit-touch-callout: none; /* iOS Safari */
2054
- -webkit-user-select: none; /* Safari */
2055
- -khtml-user-select: none; /* Konqueror HTML */
2056
- -moz-user-select: none; /* Firefox */
2057
- -ms-user-select: none; /* Internet Explorer/Edge */
2058
- user-select: none; /* Non-prefixed version, currently
2059
- supported by Chrome and Opera */
2060
- }
2061
-
2062
- .jmodal_content .jcalendar .jcalendar-content,
2063
- .jmodal_content .jdropdown-container {
2064
- position: fixed;
2065
- }
2066
-
2067
- .jnotification {
2068
- position: fixed;
2069
- z-index: 10000;
2070
- -webkit-box-sizing: border-box;
2071
- box-sizing: border-box;
2072
- padding: 10px;
2073
- bottom: 0px;
2074
- }
2075
-
2076
- .jnotification-container {
2077
- -webkit-box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.7);
2078
- box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.7);
2079
- padding: 12px;
2080
- border-radius: 8px;
2081
-
2082
- background-color: #000;
2083
- background: rgba(92,92,92,1);
2084
- background: linear-gradient(0deg, rgba(92,92,92,1) 0%, rgba(77,77,77,1) 100%);
2085
- color: #fff;
2086
- width: 320px;
2087
- margin: 30px;
2088
- padding: 20px;
2089
- }
2090
-
2091
- .jnotification-close {
2092
- content: '';
2093
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 24 24%27 fill=%27white%27%3E%3Cpath d=%27M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2094
- font-size: 20px;
2095
- width: 20px;
2096
- height: 20px;
2097
- cursor: pointer;
2098
- }
2099
-
2100
- .jnotification-title {
2101
- font-weight: bold;
2102
- }
2103
-
2104
- .jnotification-header {
2105
- display: flex;
2106
- padding-bottom: 5px;
2107
- }
2108
-
2109
- .jnotification-header:empty {
2110
- display: none;
2111
- }
2112
-
2113
- .jnotification-image {
2114
- margin-right: 5px;
2115
- }
2116
-
2117
- .jnotification-image:empty {
2118
- display: none;
2119
- }
2120
-
2121
- .jnotification-image img {
2122
- width: 24px;
2123
- }
2124
-
2125
- .jnotification-name {
2126
- text-transform: uppercase;
2127
- font-size: 0.9em;
2128
- flex: 1;
2129
- letter-spacing: 0.1em;
2130
- }
2131
-
2132
- .jnotification-error .jnotification-container {
2133
- background: rgb(182,38,6);
2134
- background: linear-gradient(0deg, rgba(170,41,13,1) 0%, rgba(149,11,11,1) 100%);
2135
- }
2136
-
2137
- @media (max-width: 800px) {
2138
- .jnotification {
2139
- top: calc(0px + var(--jsafe-area-top));
2140
- width: 100%;
2141
- }
2142
- .jnotification-container {
2143
- background: rgba(255,255,255,0.95);
2144
- border: 1px solid #eee;
2145
- color: #444;
2146
- margin: 0px;
2147
- width: initial;
2148
- }
2149
- .jnotification-error .jnotification-container {
2150
- background: rgba(255,255,255,0.95);
2151
- color: #790909;
2152
- }
2153
- .jnotification-close {
2154
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 24 24%27 fill=%27black%27%3E%3Cpath d=%27M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2155
- }
2156
- }
2157
-
2158
- .jnotification-header {
2159
- display: -webkit-box;
2160
- display: -webkit-flex;
2161
- display: -ms-flexbox;
2162
- display: flex;
2163
- -webkit-box-pack: start;
2164
- -webkit-justify-content: flex-start;
2165
- -ms-flex-pack: start;
2166
- justify-content: flex-start;
2167
- -webkit-box-align: center;
2168
- -webkit-align-items: center;
2169
- -ms-flex-align: center;
2170
- align-items: center;
2171
- }
2172
- .jpicker {
2173
- cursor: pointer;
2174
- white-space: nowrap;
2175
- display: inline-flex;
2176
- -webkit-user-select: none;
2177
- -moz-user-select: none;
2178
- -ms-user-select: none;
2179
- user-select: none;
2180
- outline: none;
2181
- position: relative;
2182
- min-height: 26px;
2183
- }
2184
-
2185
- .jpicker-header {
2186
- background-repeat: no-repeat;
2187
- background-position: top 50% right 5px;
2188
- background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27none%27 d=%27M0 0h24v24H0V0z%27/%3E%3Cpath d=%27M7 10l5 5 5-5H7z%27 fill=%27gray%27/%3E%3C/svg%3E");
2189
- text-overflow: ellipsis;
2190
- cursor: pointer;
2191
- box-sizing: border-box;
2192
- text-align: left;
2193
- outline: none;
2194
- line-height: 24px;
2195
- padding: 2px 35px 2px 12px;
2196
- border-radius: 4px;
2197
- }
2198
-
2199
- .jpicker-header:hover {
2200
- background-color: #f2f2f2;
2201
- }
2202
-
2203
- .jpicker-content {
2204
- position: absolute;
2205
- top: 0;
2206
- display: none;
2207
- box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
2208
- border-radius: 4px;
2209
- background-color: #fff;
2210
- padding: 4px;
2211
- z-index: 50;
2212
- text-align: left;
2213
- max-height: 250px;
2214
- scrollbar-width: thin;
2215
- scrollbar-color: #333 transparent;
2216
- }
2217
-
2218
- .jpicker-content::-webkit-scrollbar {
2219
- width: 8px;
2220
- }
2221
-
2222
- .jpicker-content::-webkit-scrollbar-track {
2223
- background: #eee;
2224
- }
2225
-
2226
- .jpicker-content::-webkit-scrollbar-thumb {
2227
- background: #888;
2228
- }
2229
-
2230
- .jpicker-content > div {
2231
- padding: 6px;
2232
- padding-left: 15px;
2233
- padding-right: 15px;
2234
- }
2235
-
2236
- .jpicker-focus > .jpicker-content {
2237
- display: block;
2238
- }
2239
-
2240
- .jpicker-content > div:hover {
2241
- background-color:#efefef;
2242
- }
2243
-
2244
- .jpicker-content > div:empty {
2245
- opacity: 0;
2246
- }
2247
-
2248
- .jpicker-header > i, .jpicker-header > div {
2249
- display: block;
2250
- }
2251
-
2252
- .jpicker-focus > .jpicker-content.jpicker-columns {
2253
- display: flex !important ;
2254
- justify-content: center;
2255
- flex-wrap: wrap;
2256
- }
2257
-
2258
- .jpicker-focus .jpicker-content.jpicker-grid {
2259
- display: inline-grid;
2260
- }
2261
-
2262
-
2263
-
2264
- .jprogressbar
2265
- {
2266
- cursor:pointer;
2267
- -webkit-touch-callout: none;
2268
- -webkit-user-select: none;
2269
- -khtml-user-select: none;
2270
- -moz-user-select: none;
2271
- -ms-user-select: none;
2272
- user-select: none;
2273
- box-sizing: border-box;
2274
- background:#fff;
2275
- -webkit-tap-highlight-color: transparent;
2276
- display: inline-block;
2277
- box-sizing: border-box;
2278
- cursor:pointer;
2279
- border:1px solid #ccc;
2280
- position:relative;
2281
- }
2282
-
2283
- .jprogressbar::before {
2284
- content:attr(data-value);
2285
- position:absolute;
2286
- margin:5px;
2287
- margin-left:10px;
2288
- }
2289
-
2290
- .jprogressbar-header::placeholder
2291
- {
2292
- color:#000;
2293
- }
2294
-
2295
- .jprogressbar::focus {
2296
- outline: auto 5px -webkit-focus-ring-color;
2297
- }
2298
-
2299
- .jprogressbar > div {
2300
- background-color: #eee;
2301
- background-color: red;
2302
- box-sizing: border-box;
2303
- height:31px;
2304
- }
2305
- .jrating {
2306
- display:flex;
2307
- }
2308
- .jrating > div {
2309
- width:24px;
2310
- height:24px;
2311
- line-height:24px;
2312
- background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z%27 fill=%27gray%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2313
- }
2314
-
2315
- .jrating .jrating-over {
2316
- background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27black%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2317
- opacity: 0.7;
2318
- }
2319
-
2320
- .jrating .jrating-selected {
2321
- background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27red%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2322
- }
2323
-
2324
- .jsearch {
2325
- position: relative;
2326
- display: none;
2327
- -webkit-user-select: none;
2328
- -moz-user-select: none;
2329
- -ms-user-select: none;
2330
- user-select: none;
2331
- }
2332
-
2333
- .jsearch_container {
2334
- position: absolute;
2335
- box-shadow: 0 1px 2px 0 rgba(60,64,67,0.302), 0 2px 6px 2px rgba(60,64,67,0.149);
2336
- border: none;
2337
- -webkit-border-radius: 4px;
2338
- border-radius: 4px;
2339
- width: 280px;
2340
- padding: 8px 0;
2341
- z-index: 1;
2342
-
2343
- -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
2344
- box-shadow: 0 2px 4px rgba(0,0,0,0.2);
2345
- -webkit-transition: opacity .218s;
2346
- transition: opacity .218s;
2347
- background: #fff;
2348
- border: 1px solid rgba(0,0,0,.2);
2349
- cursor: pointer;
2350
- margin: 0;
2351
- min-width: 300px;
2352
- outline: none;
2353
- width: auto;
2354
- -webkit-user-select: none;
2355
- -moz-user-select: none;
2356
- -ms-user-select: none;
2357
- user-select: none;
2358
- }
2359
-
2360
- .jsearch_container:empty:after {
2361
- content: attr(data-placeholder);
2362
- }
2363
-
2364
- .jsearch_container > div {
2365
- color: #333;
2366
- cursor: pointer;
2367
- display: -webkit-box;
2368
- display: -webkit-flex;
2369
- display: flex;
2370
- padding: 5px 10px;
2371
- user-select: none;
2372
- -webkit-align-items: center;
2373
- align-items: center;
2374
-
2375
- -webkit-user-select: none;
2376
- -moz-user-select: none;
2377
- -ms-user-select: none;
2378
- user-select: none;
2379
- }
2380
-
2381
- .jsearch_container > div:hover {
2382
- background-color: #e8eaed;
2383
- }
2384
-
2385
- .jsearch_container > div > img {
2386
- width: 32px;
2387
- height: 32px;
2388
- user-select: none;
2389
- border-radius: 16px;
2390
- margin-right: 2px;
2391
- }
2392
-
2393
- .jsearch_container > div > div {
2394
- overflow: hidden;
2395
- text-overflow: ellipsis;
2396
- margin-left: 2px;
2397
- max-width: 300px;
2398
- white-space: nowrap;
2399
- user-select: none;
2400
- }
2401
-
2402
- .jsearch_container .selected {
2403
- background-color: #e8eaed;
2404
- }
2405
- .jslider {
2406
- outline: none;
2407
- }
2408
-
2409
- .jslider-focus {
2410
- width: 100% !important;
2411
- height: 100% !important;
2412
- }
2413
-
2414
- .jslider-focus img {
2415
- display: none;
2416
- }
2417
-
2418
- .jslider img {
2419
- width: 100px;
2420
- }
2421
-
2422
- .jslider-left::before {
2423
- position: fixed;
2424
- left: 15px;
2425
- top: 50%;
2426
- content:'arrow_back_ios';
2427
- color: #fff;
2428
- width: 30px;
2429
- height: 30px;
2430
- font-family: 'Material Icons';
2431
- font-size: 30px;
2432
- /* before it was 0px 0px 0px #000 */
2433
- text-shadow: 0px 0px 6px rgb(56,56,56);
2434
- text-align: center;
2435
- cursor: pointer;
2436
- }
2437
-
2438
- .jslider-right::after {
2439
- position: fixed;
2440
- right: 15px;
2441
- top: 50%;
2442
- content: 'arrow_forward_ios';
2443
- color: #fff;
2444
- width: 30px;
2445
- height: 30px;
2446
- font-family: 'Material Icons';
2447
- font-size: 30px;
2448
- /* before it was 0px 0px 0px #000 */
2449
- text-shadow: 0px 0px 6px rgb(56,56,56);
2450
- text-align: center;
2451
- cursor: pointer;
2452
- }
2453
-
2454
- .jslider-close {
2455
- width:24px;
2456
- height:24px;
2457
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27white%27%3E%3Cpath d=%27M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2458
- position:fixed;
2459
- top:15px;
2460
- right:15px;
2461
- cursor:pointer;
2462
- z-index:3000;
2463
-
2464
- display: block !important;
2465
- }
2466
-
2467
- .jslider-counter {
2468
- height:24px;
2469
- background-color: transparent;
2470
- position:fixed;
2471
- left: 50%;
2472
- transform: translateX(-50%);
2473
- bottom: 15px;
2474
- cursor:pointer;
2475
- z-index:3000;
2476
-
2477
- display: flex;
2478
- display: -webkit-flex;
2479
- -webkit-justify-content: center;
2480
- -webkit-align-items: center;
2481
- -webkit-flex-direction: row;
2482
- justify-content: center;
2483
- align-items: center;
2484
- flex-direction: row;
2485
- }
2486
-
2487
- .jslider-caption {
2488
- position: fixed;
2489
- max-width: 90vw;
2490
- text-overflow: ellipsis;
2491
- white-space: nowrap;
2492
- overflow: hidden;
2493
- top:15px;
2494
- left: 15px;
2495
- z-index:3000;
2496
- color: #FFF;
2497
- font-size: 1rem;
2498
-
2499
- display: block !important;
2500
- }
2501
-
2502
- .jslider-counter div {
2503
- width: 10px;
2504
- height: 10px;
2505
- background: #fff;
2506
- border-radius: 50%;
2507
- margin: 0px 5px;
2508
-
2509
- display: block !important;
2510
- }
2511
-
2512
- .jslider-counter .jslider-counter-focus {
2513
- background-color: cornflowerblue;
2514
- pointer-events: none;
2515
- }
2516
-
2517
- .jslider-focus {
2518
- position:fixed;
2519
- left:0;
2520
- top:0;
2521
- width: 100%;
2522
- min-height:100%;
2523
- max-height:100%;
2524
- z-index:2000;
2525
- margin:0px;
2526
- box-sizing:border-box;
2527
-
2528
- background-color:rgba(0,0,0,0.8);
2529
- -webkit-transition-duration: .05s;
2530
- transition-duration: .05s;
2531
- display: flex;
2532
- -ms-flex-align: center;
2533
- -webkit-align-items: center;
2534
- -webkit-box-align: center;
2535
-
2536
- align-items: center;
2537
- }
2538
-
2539
- .jslider-focus img {
2540
- width: 50vw;
2541
- height: auto;
2542
- box-sizing: border-box;
2543
- margin:0 auto;
2544
- vertical-align:middle;
2545
- display:none;
2546
- }
2547
-
2548
- .jslider-focus img.jslider-vertical {
2549
- width: auto;
2550
- /* before it was 50vh */
2551
- height: 80vh;
2552
- }
2553
-
2554
- @media only screen and (max-width: 576px) {
2555
- .jslider-focus img.jslider-vertical {
2556
- width: 99vw !important;
2557
- height: auto !important;
2558
- }
2559
-
2560
- .jslider-focus img {
2561
- width: 100vw !important;
2562
- height: auto !important;
2563
- }
2564
- }
2565
-
2566
- .jslider-grid {
2567
- display: -ms-grid;
2568
- display: grid;
2569
- grid-gap: 1px;
2570
- position: relative;
2571
- }
2572
-
2573
- .jslider-grid[data-number='2'] {
2574
- -ms-grid-columns: 1fr 50%;
2575
- grid-template-columns: 1fr 50%;
2576
- }
2577
-
2578
- .jslider-grid[data-number='3'] {
2579
- -ms-grid-columns: 1fr 33%;
2580
- grid-template-columns: 1fr 33%;
2581
- }
2582
-
2583
- .jslider-grid[data-number='4'] {
2584
- -ms-grid-columns: 1fr 25%;
2585
- grid-template-columns: 1fr 25%;
2586
- }
2587
-
2588
- .jslider-grid img {
2589
- display: none;
2590
- width: 100%;
2591
- height: 100%;
2592
- object-fit: cover;
2593
- }
2594
-
2595
- .jslider-grid[data-total]:after {
2596
- content: attr(data-total) "+";
2597
- font-size: 1.5em;
2598
- position:absolute;
2599
- color: #fff;
2600
- right: 15px;
2601
- bottom: 6px;
2602
- }
2603
-
2604
- .jslider-grid img:first-child {
2605
- -ms-grid-column: 1;
2606
- -ms-grid-row: 1;
2607
- grid-column: 1;
2608
- grid-row: 1;
2609
- display: block;
2610
- }
2611
-
2612
- .jslider-grid[data-number='2'] img:nth-child(2) {
2613
- -ms-grid-column: 2;
2614
- -ms-grid-row: 1;
2615
- grid-column: 2;
2616
- grid-row: 1;
2617
- display: block;
2618
- }
2619
-
2620
- .jslider-grid[data-number='3'] img:first-child {
2621
- -ms-grid-column: 1 / 2;
2622
- -ms-grid-row: 1 / 4;
2623
- grid-column: 1 / 2;
2624
- grid-row: 1 / 4;
2625
- }
2626
-
2627
- .jslider-grid[data-number='3'] img:nth-child(2) {
2628
- -ms-grid-column: 2;
2629
- -ms-grid-row: 1;
2630
- grid-column: 2;
2631
- grid-row: 1;
2632
- display: block;
2633
- }
2634
-
2635
- .jslider-grid[data-number='3'] img:nth-child(3) {
2636
- -ms-grid-column: 2;
2637
- -ms-grid-row: 2;
2638
- grid-column: 2;
2639
- grid-row: 2;
2640
- display: block;
2641
- }
2642
-
2643
- .jslider-grid[data-number='4'] img:first-child {
2644
- -ms-grid-column: 1 / 2;
2645
- -ms-grid-row: 1 / 4;
2646
- grid-column: 1 / 2;
2647
- grid-row: 1 / 4;
2648
- }
2649
-
2650
- .jslider-grid[data-number='4'] img:nth-child(2) {
2651
- -ms-grid-column: 2;
2652
- -ms-grid-row: 1;
2653
- grid-column: 2;
2654
- grid-row: 1;
2655
- display: block;
2656
- }
2657
-
2658
- .jslider-grid[data-number='4'] img:nth-child(3) {
2659
- -ms-grid-column: 2;
2660
- -ms-grid-row: 2;
2661
- grid-column: 2;
2662
- grid-row: 2;
2663
- display: block;
2664
- }
2665
-
2666
- .jslider-grid[data-number='4'] img:nth-child(4) {
2667
- -ms-grid-column: 2;
2668
- -ms-grid-row: 3;
2669
- grid-column: 2;
2670
- grid-row: 3;
2671
- display: block;
2672
- }
2673
-
2674
- .jtabs {
2675
- max-width: 100vw;
2676
- position: relative;
2677
- }
2678
-
2679
- .jtabs .jtabs-headers-container {
2680
- display: flex;
2681
- align-items: center;
2682
- }
2683
-
2684
- .jtabs .jtabs-headers {
2685
- display: flex;
2686
- align-items: center;
2687
- overflow: hidden;
2688
- position: relative;
2689
- }
2690
-
2691
- .jtabs .jtabs-headers > div:not(.jtabs-border) {
2692
- padding: 8px;
2693
- padding-left: 20px;
2694
- padding-right: 20px;
2695
- margin-left: 1px;
2696
- margin-right: 1px;
2697
- background-color: #f1f1f1;
2698
- cursor: pointer;
2699
- white-space: nowrap;
2700
- text-align: center;
2701
- }
2702
-
2703
- .jtabs .jtabs-headers > div.jtabs-selected {
2704
- background-color: #e8e8e8;
2705
- color: #000;
2706
- }
2707
-
2708
- .jtabs .jtabs-headers > div > div {
2709
- color: #555;
2710
- width: 100%;
2711
- overflow: hidden;
2712
- }
2713
-
2714
- .jtabs .jtabs-headers i {
2715
- display: block;
2716
- margin: auto;
2717
- }
2718
-
2719
- .jtabs .jtabs-content {
2720
- box-sizing: border-box;
2721
- }
2722
-
2723
- .jtabs .jtabs-content > div {
2724
- display: none;
2725
- box-sizing: border-box;
2726
- }
2727
-
2728
- .jtabs .jtabs-content > div.jtabs-selected {
2729
- display: block;
2730
- }
2731
-
2732
- .jtabs .jtabs-border {
2733
- position: absolute;
2734
- height: 2px;
2735
- background-color: #888;
2736
- transform-origin: left;
2737
- transition: all .2s cubic-bezier(0.4,0,0.2,1);
2738
- transition-property: color,left,transform;
2739
- display: none;
2740
- pointer-events: none;
2741
- }
2742
-
2743
- .jtabs-animation .jtabs-border {
2744
- display: initial;
2745
- }
2746
-
2747
- .jtabs .jtabs-controls {
2748
- margin: 3px;
2749
- margin-left: 10px;
2750
- display: flex;
2751
- min-width: 82px;
2752
- }
2753
-
2754
- .jtabs .jtabs-controls > div {
2755
- cursor: pointer;
2756
- background-position: center;
2757
- background-repeat: no-repeat;
2758
- width: 24px;
2759
- height: 24px;
2760
- line-height: 24px;
2761
- }
2762
-
2763
- .jtabs .jtabs-prev {
2764
- margin-left: 10px;
2765
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27gray%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z%27/%3E%3C/svg%3E");
2766
- }
2767
-
2768
- .jtabs .jtabs-prev.disabled {
2769
- margin-left: 10px;
2770
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27lightgray%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z%27/%3E%3C/svg%3E");
2771
- }
2772
-
2773
- .jtabs .jtabs-next {
2774
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27gray%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z%27/%3E%3C/svg%3E");
2775
- }
2776
-
2777
- .jtabs .jtabs-next.disabled {
2778
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27lightgray%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z%27/%3E%3C/svg%3E");
2779
- }
2780
-
2781
- .jtabs .jtabs-add {
2782
- background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 height=%2724%27 viewBox=%270 0 24 24%27 width=%2724%27%3E%3Cpath d=%27M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z%27 fill=%27%23bbbbbb%27/%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3C/svg%3E");
2783
- }
2784
-
2785
- /** Modern skin **/
2786
-
2787
- .jtabs.jtabs-modern .jtabs-headers > div:not(.jtabs-border) {
2788
- padding: 4px;
2789
- padding-left: 10px;
2790
- padding-right: 10px;
2791
- background-color: #fff;
2792
- }
2793
-
2794
- .jtabs.jtabs-modern .jtabs-headers > .jtabs-selected {
2795
- color: #000;
2796
- }
2797
-
2798
- .jtabs.jtabs-modern .jtabs-headers > .jtabs-selected .material-icons {
2799
- color: #000;
2800
- }
2801
-
2802
- .jtabs.jtabs-modern .jtabs-headers {
2803
- background: #EEEEEF !important;
2804
- padding: 2px;
2805
- border-radius: 4px;
2806
- }
2807
-
2808
- .jtabs.jtabs-modern .jtabs-headers .jtabs-border {
2809
- border-color: #EEEEEF !important;
2810
- }
2811
-
2812
- .jtabs.jtabs-modern .jtabs-border {
2813
- background-color: rgba(194, 197, 188, 0.884);
2814
- }
2815
- .jtags {
2816
- display: flex;
2817
- flex-wrap: wrap;
2818
- -ms-flex-direction: row;
2819
- -webkit-flex-direction: row;
2820
- flex-direction: row;
2821
- -ms-flex-pack: flex-start;
2822
- -webkit-justify-content: space-between;
2823
- justify-content: flex-start;
2824
- padding: 1px;
2825
- border: 1px solid #ccc;
2826
- position: relative;
2827
- }
2828
-
2829
- .jtags.jtags-empty:not(.jtags-focus)::before {
2830
- position: absolute;
2831
- margin: 3px;
2832
- color: #ccc;
2833
- content: attr(data-placeholder);
2834
- top: 0;
2835
- margin-left: 6px;
2836
- }
2837
-
2838
- .jtags > div {
2839
- padding: 6px 22px 6px 10px;
2840
- font-size: 0.9em;
2841
- position: relative;
2842
- border-radius: 1px;
2843
- margin: 2px;
2844
- display: block;
2845
- outline: none;
2846
- }
2847
-
2848
- .jtags > div:empty:before {
2849
- content: " ";
2850
- white-space: pre;
2851
- }
2852
-
2853
- .jtags > div::after {
2854
- content: 'x';
2855
- position: absolute;
2856
- top: 7px;
2857
- right: 4px;
2858
- width: 12px;
2859
- height: 12px;
2860
- cursor: pointer;
2861
- font-size: 0.9em;
2862
- line-height: 1em;
2863
- display: none;
2864
- }
2865
-
2866
- .jtags_label {
2867
- background-color: #e4e4e4 !important;
2868
- }
2869
-
2870
- .jtags_label::after {
2871
- display: inline-block !important;
2872
- }
2873
-
2874
- .jtags_error::after {
2875
- color: #fff !important;
2876
- }
2877
-
2878
- .jtags_error {
2879
- background-color: #d93025 !important;
2880
- color: #fff;
2881
- }
2882
-
2883
- .jtoolbar-container {
2884
- border-radius: 2px;
2885
- box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
2886
- display: inline-flex !important;
2887
- }
2888
-
2889
- .jtoolbar {
2890
- cursor: pointer;
2891
- white-space: nowrap;
2892
- display: flex;
2893
- padding:4px;
2894
- -webkit-user-select: none;
2895
- -moz-user-select: none;
2896
- -ms-user-select: none;
2897
- user-select: none;
2898
- font-size: 13px;
2899
- }
2900
-
2901
- .jtoolbar-disabled {
2902
- pointer-events: none;
2903
- opacity: 0.4;
2904
- }
2905
-
2906
- .jtoolbar-mobile {
2907
- display: flex;
2908
- position:fixed;
2909
- bottom: 0;
2910
- margin: 0;
2911
- left: 0;
2912
- width: 100%;
2913
- background: #f7f7f8;
2914
- z-index: 1;
2915
- box-sizing: border-box;
2916
- box-shadow: 0 -1px 2px rgba(0,0,0,.1);
2917
- border-radius: 0px;
2918
- }
2919
-
2920
- .jtoolbar > div {
2921
- display: inline-flex;
2922
- align-items: center;
2923
- box-sizing: border-box;
2924
- vertical-align:middle;
2925
- justify-content: space-evenly;
2926
- }
2927
-
2928
- .jtoolbar-mobile > div {
2929
- display: flex;
2930
- width: 100%;
2931
- }
2932
-
2933
- .jtoolbar .jtoolbar-item {
2934
- text-align: center;
2935
- margin: auto;
2936
- padding: 2px;
2937
- padding-left:4px;
2938
- padding-right:4px;
2939
- }
2940
-
2941
- .jtoolbar-mobile .jtoolbar-item {
2942
- position: relative;
2943
- flex:1;
2944
- }
2945
-
2946
- .jtoolbar .jtoolbar-divisor {
2947
- width: 2px;
2948
- height: 18px;
2949
- padding: 0px;
2950
- margin-left: 4px;
2951
- margin-right: 4px;
2952
- background-color: #ddd;
2953
- }
2954
-
2955
- .jtoolbar .jtoolbar-label {
2956
- padding-left: 8px;
2957
- padding-right: 8px;
2958
- }
2959
-
2960
-
2961
-
2962
- .jtoolbar-mobile a
2963
- {
2964
- text-decoration:none;
2965
- display:inline-block;
2966
- }
2967
-
2968
- .jtoolbar-mobile i {
2969
- display: inline-flex !important;
2970
- color:#929292;
2971
- }
2972
-
2973
- .jtoolbar-mobile span {
2974
- font-size:0.7em;
2975
- display:block;
2976
- color:#929292;
2977
- }
2978
-
2979
- .jtoolbar-mobile .jtoolbar-selected a, .jtoolbar-mobile .jtoolbar-selected i, .jtoolbar-mobile .jtoolbar-selected span {
2980
- color:var(--jactive-color) !important;
2981
- background-color:transparent;
2982
- }
2983
-
2984
- .jtoolbar-item {
2985
- -webkit-user-select: none;
2986
- -moz-user-select: none;
2987
- -ms-user-select: none;
2988
- user-select: none;
2989
- }
2990
-
2991
- .jtoolbar-item i {
2992
- display: block;
2993
- color:#333;
2994
- }
2995
-
2996
- .jtoolbar-item:hover {
2997
- background-color:#f2f2f2;
2998
- }
2999
-
3000
-
3001
- .jtoolbar .jpicker {
3002
- padding-left:0px;
3003
- padding-right:0px;
3004
- }
3005
-
3006
- .jtoolbar .jpicker-header {
3007
- height: 24px;
3008
- line-height: 24px;
3009
- padding: 0px;
3010
- padding-right: 20px;
3011
- padding-left: 8px;
3012
- background-position: top 50% right 0px;
3013
- display: flex;
3014
- align-items: center;
3015
- font-size: 0.9em;
3016
- }
3017
-
3018
- .jtoolbar .jpicker-content > div {
3019
- padding: 6px;
3020
- }
3021
-
3022
- .jtoolbar-active {
3023
- background-color:#eee;
3024
- }
3025
-
3026
- .jtoolbar .fa {
3027
- width: 18px;
3028
- height: 18px;
3029
- display: block;
3030
- line-height: 18px;
3031
- font-size: 14px;
3032
- }
3033
-
3034
- .jtoolbar .material-icons {
3035
- font-size: 18px;
3036
- width: 24px;
3037
- height: 24px;
3038
- display: block;
3039
- line-height: 24px;
3040
- transform: rotate(0.03deg);
3041
- text-align: center;
3042
- }
3043
-
3044
- .jtoolbar .jtoolbar-arrow {
3045
- background-repeat: no-repeat;
3046
- background-position: center;
3047
- background-image: url("data:image/svg+xml,%0A%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27black%27 width=%2718px%27 height=%2718px%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath d=%27M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z%27/%3E%3C/svg%3E");
3048
- width: 24px;
3049
- height: 16px;
3050
- margin-left: 4px;
3051
- border-left: 1px solid #f2f2f2;
3052
- }
3053
-
3054
- .jtoolbar-floating {
3055
- position: absolute;
3056
- display: none;
3057
- box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
3058
- border-radius: 4px;
3059
- background-color: #fff;
3060
- padding: 4px;
3061
- z-index: 50;
3062
- text-align: left;
3063
- margin-right: 20px;
3064
- }
3065
-
3066
- .jtoolbar-floating .jtoolbar-divisor {
3067
- display: none;
3068
- }
3069
-
3070
- .jtoolbar-arrow-selected .jtoolbar-floating {
3071
- display: flex;
3072
- flex-wrap: wrap;
3073
- }
3074
-
3075
265
 
3076
266
  /** Loading */
3077
267
  .jloading {