@bmlt-enabled/croutonjs 3.17.10 → 3.18.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.
package/crouton.css CHANGED
@@ -560,6 +560,7 @@ table.tablesaw {
560
560
  }
561
561
  th#meeting-details-title {
562
562
  display: table-cell;
563
+ text-wrap: balance;
563
564
  }
564
565
  }
565
566
 
@@ -579,6 +580,9 @@ table.tablesaw {
579
580
  .tablesaw-stack td .tablesaw-cell-label,.tablesaw-stack th .tablesaw-cell-label {
580
581
  display: none !important;
581
582
  }
583
+ #meetingpage_map_td {
584
+ width: 25em;
585
+ }
582
586
  }
583
587
 
584
588
  @media only screen and (max-width: 480px) {
@@ -634,3 +638,1208 @@ table.tablesaw {
634
638
  .gm-svpc div img {
635
639
  position: relative !important;
636
640
  }
641
+ #meeting-details-table td {
642
+ vertical-align: top;
643
+ }
644
+ #meeting-details-table h4 {
645
+ margin-top: 0;
646
+ }
647
+ #meeting-details-title {
648
+ font-size: 1.5em;
649
+ }
650
+
651
+ /* required styles */
652
+
653
+ .leaflet-pane,
654
+ .leaflet-tile,
655
+ .leaflet-marker-icon,
656
+ .leaflet-marker-shadow,
657
+ .leaflet-tile-container,
658
+ .leaflet-pane > svg,
659
+ .leaflet-pane > canvas,
660
+ .leaflet-zoom-box,
661
+ .leaflet-image-layer,
662
+ .leaflet-layer {
663
+ position: absolute;
664
+ left: 0;
665
+ top: 0;
666
+ }
667
+ .leaflet-container {
668
+ overflow: hidden;
669
+ }
670
+ .leaflet-tile,
671
+ .leaflet-marker-icon,
672
+ .leaflet-marker-shadow {
673
+ -webkit-user-select: none;
674
+ -moz-user-select: none;
675
+ user-select: none;
676
+ -webkit-user-drag: none;
677
+ }
678
+ /* Prevents IE11 from highlighting tiles in blue */
679
+ .leaflet-tile::selection {
680
+ background: transparent;
681
+ }
682
+ /* Safari renders non-retina tile on retina better with this, but Chrome is worse */
683
+ .leaflet-safari .leaflet-tile {
684
+ image-rendering: -webkit-optimize-contrast;
685
+ }
686
+ /* hack that prevents hw layers "stretching" when loading new tiles */
687
+ .leaflet-safari .leaflet-tile-container {
688
+ width: 1600px;
689
+ height: 1600px;
690
+ -webkit-transform-origin: 0 0;
691
+ }
692
+ .leaflet-marker-icon,
693
+ .leaflet-marker-shadow {
694
+ display: block;
695
+ }
696
+ /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
697
+ /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
698
+ .leaflet-container .leaflet-overlay-pane svg,
699
+ .leaflet-container .leaflet-marker-pane img,
700
+ .leaflet-container .leaflet-shadow-pane img,
701
+ .leaflet-container .leaflet-tile-pane img,
702
+ .leaflet-container img.leaflet-image-layer,
703
+ .leaflet-container .leaflet-tile {
704
+ max-width: none !important;
705
+ max-height: none !important;
706
+ }
707
+
708
+ .leaflet-container.leaflet-touch-zoom {
709
+ -ms-touch-action: pan-x pan-y;
710
+ touch-action: pan-x pan-y;
711
+ }
712
+ .leaflet-container.leaflet-touch-drag {
713
+ -ms-touch-action: pinch-zoom;
714
+ /* Fallback for FF which doesn't support pinch-zoom */
715
+ touch-action: none;
716
+ touch-action: pinch-zoom;
717
+ }
718
+ .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
719
+ -ms-touch-action: none;
720
+ touch-action: none;
721
+ }
722
+ .leaflet-container {
723
+ -webkit-tap-highlight-color: transparent;
724
+ }
725
+ .leaflet-container a {
726
+ -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
727
+ }
728
+ .leaflet-tile {
729
+ filter: inherit;
730
+ visibility: hidden;
731
+ }
732
+ .leaflet-tile-loaded {
733
+ visibility: inherit;
734
+ }
735
+ .leaflet-zoom-box {
736
+ width: 0;
737
+ height: 0;
738
+ -moz-box-sizing: border-box;
739
+ box-sizing: border-box;
740
+ z-index: 800;
741
+ }
742
+ /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
743
+ .leaflet-overlay-pane svg {
744
+ -moz-user-select: none;
745
+ }
746
+
747
+ .leaflet-pane { z-index: 400; }
748
+
749
+ .leaflet-tile-pane { z-index: 200; }
750
+ .leaflet-overlay-pane { z-index: 400; }
751
+ .leaflet-shadow-pane { z-index: 500; }
752
+ .leaflet-marker-pane { z-index: 600; }
753
+ .leaflet-tooltip-pane { z-index: 650; }
754
+ .leaflet-popup-pane { z-index: 700; }
755
+
756
+ .leaflet-map-pane canvas { z-index: 100; }
757
+ .leaflet-map-pane svg { z-index: 200; }
758
+
759
+ .leaflet-vml-shape {
760
+ width: 1px;
761
+ height: 1px;
762
+ }
763
+ .lvml {
764
+ behavior: url(#default#VML);
765
+ display: inline-block;
766
+ position: absolute;
767
+ }
768
+
769
+
770
+ /* control positioning */
771
+
772
+ .leaflet-control {
773
+ position: relative;
774
+ z-index: 800;
775
+ pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
776
+ pointer-events: auto;
777
+ }
778
+ .leaflet-top,
779
+ .leaflet-bottom {
780
+ position: absolute;
781
+ z-index: 1000;
782
+ pointer-events: none;
783
+ }
784
+ .leaflet-top {
785
+ top: 0;
786
+ }
787
+ .leaflet-right {
788
+ right: 0;
789
+ }
790
+ .leaflet-bottom {
791
+ bottom: 0;
792
+ }
793
+ .leaflet-left {
794
+ left: 0;
795
+ }
796
+ .leaflet-control {
797
+ float: left;
798
+ clear: both;
799
+ }
800
+ .leaflet-right .leaflet-control {
801
+ float: right;
802
+ }
803
+ .leaflet-top .leaflet-control {
804
+ margin-top: 10px;
805
+ }
806
+ .leaflet-bottom .leaflet-control {
807
+ margin-bottom: 10px;
808
+ }
809
+ .leaflet-left .leaflet-control {
810
+ margin-left: 10px;
811
+ }
812
+ .leaflet-right .leaflet-control {
813
+ margin-right: 10px;
814
+ }
815
+
816
+
817
+ /* zoom and fade animations */
818
+
819
+ .leaflet-fade-anim .leaflet-tile {
820
+ will-change: opacity;
821
+ }
822
+ .leaflet-fade-anim .leaflet-popup {
823
+ opacity: 0;
824
+ -webkit-transition: opacity 0.2s linear;
825
+ -moz-transition: opacity 0.2s linear;
826
+ transition: opacity 0.2s linear;
827
+ }
828
+ .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
829
+ opacity: 1;
830
+ }
831
+ .leaflet-zoom-animated {
832
+ -webkit-transform-origin: 0 0;
833
+ -ms-transform-origin: 0 0;
834
+ transform-origin: 0 0;
835
+ }
836
+ .leaflet-zoom-anim .leaflet-zoom-animated {
837
+ will-change: transform;
838
+ }
839
+ .leaflet-zoom-anim .leaflet-zoom-animated {
840
+ -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
841
+ -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
842
+ transition: transform 0.25s cubic-bezier(0,0,0.25,1);
843
+ }
844
+ .leaflet-zoom-anim .leaflet-tile,
845
+ .leaflet-pan-anim .leaflet-tile {
846
+ -webkit-transition: none;
847
+ -moz-transition: none;
848
+ transition: none;
849
+ }
850
+
851
+ .leaflet-zoom-anim .leaflet-zoom-hide {
852
+ visibility: hidden;
853
+ }
854
+
855
+
856
+ /* cursors */
857
+
858
+ .leaflet-interactive {
859
+ cursor: pointer;
860
+ }
861
+ .leaflet-grab {
862
+ cursor: -webkit-grab;
863
+ cursor: -moz-grab;
864
+ cursor: grab;
865
+ }
866
+ .leaflet-crosshair,
867
+ .leaflet-crosshair .leaflet-interactive {
868
+ cursor: crosshair;
869
+ }
870
+ .leaflet-popup-pane,
871
+ .leaflet-control {
872
+ cursor: auto;
873
+ }
874
+ .leaflet-dragging .leaflet-grab,
875
+ .leaflet-dragging .leaflet-grab .leaflet-interactive,
876
+ .leaflet-dragging .leaflet-marker-draggable {
877
+ cursor: move;
878
+ cursor: -webkit-grabbing;
879
+ cursor: -moz-grabbing;
880
+ cursor: grabbing;
881
+ }
882
+
883
+ /* marker & overlays interactivity */
884
+ .leaflet-marker-icon,
885
+ .leaflet-marker-shadow,
886
+ .leaflet-image-layer,
887
+ .leaflet-pane > svg path,
888
+ .leaflet-tile-container {
889
+ pointer-events: none;
890
+ }
891
+
892
+ .leaflet-marker-icon.leaflet-interactive,
893
+ .leaflet-image-layer.leaflet-interactive,
894
+ .leaflet-pane > svg path.leaflet-interactive,
895
+ svg.leaflet-image-layer.leaflet-interactive path {
896
+ pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
897
+ pointer-events: auto;
898
+ }
899
+
900
+ /* visual tweaks */
901
+
902
+ .leaflet-container {
903
+ background: #ddd;
904
+ outline: 0;
905
+ }
906
+ .leaflet-container a {
907
+ color: #0078A8;
908
+ }
909
+ .leaflet-container a.leaflet-active {
910
+ outline: 2px solid orange;
911
+ }
912
+ .leaflet-zoom-box {
913
+ border: 2px dotted #38f;
914
+ background: rgba(255,255,255,0.5);
915
+ }
916
+
917
+
918
+ /* general typography */
919
+ .leaflet-container {
920
+ font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
921
+ }
922
+
923
+
924
+ /* general toolbar styles */
925
+
926
+ .leaflet-bar {
927
+ box-shadow: 0 1px 5px rgba(0,0,0,0.65);
928
+ border-radius: 4px;
929
+ }
930
+ .leaflet-bar a,
931
+ .leaflet-bar a:hover {
932
+ background-color: #fff;
933
+ border-bottom: 1px solid #ccc;
934
+ width: 26px;
935
+ height: 26px;
936
+ line-height: 26px;
937
+ display: block;
938
+ text-align: center;
939
+ text-decoration: none;
940
+ color: black;
941
+ }
942
+ .leaflet-bar a,
943
+ .leaflet-control-layers-toggle {
944
+ background-position: 50% 50%;
945
+ background-repeat: no-repeat;
946
+ display: block;
947
+ }
948
+ .leaflet-bar a:hover {
949
+ background-color: #f4f4f4;
950
+ }
951
+ .leaflet-bar a:first-child {
952
+ border-top-left-radius: 4px;
953
+ border-top-right-radius: 4px;
954
+ }
955
+ .leaflet-bar a:last-child {
956
+ border-bottom-left-radius: 4px;
957
+ border-bottom-right-radius: 4px;
958
+ border-bottom: none;
959
+ }
960
+ .leaflet-bar a.leaflet-disabled {
961
+ cursor: default;
962
+ background-color: #f4f4f4;
963
+ color: #bbb;
964
+ }
965
+
966
+ .leaflet-touch .leaflet-bar a {
967
+ width: 30px;
968
+ height: 30px;
969
+ line-height: 30px;
970
+ }
971
+ .leaflet-touch .leaflet-bar a:first-child {
972
+ border-top-left-radius: 2px;
973
+ border-top-right-radius: 2px;
974
+ }
975
+ .leaflet-touch .leaflet-bar a:last-child {
976
+ border-bottom-left-radius: 2px;
977
+ border-bottom-right-radius: 2px;
978
+ }
979
+
980
+ /* zoom control */
981
+
982
+ .leaflet-control-zoom-in,
983
+ .leaflet-control-zoom-out {
984
+ font: bold 18px 'Lucida Console', Monaco, monospace;
985
+ text-indent: 1px;
986
+ }
987
+
988
+ .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
989
+ font-size: 22px;
990
+ }
991
+
992
+
993
+ /* layers control */
994
+
995
+ .leaflet-control-layers {
996
+ box-shadow: 0 1px 5px rgba(0,0,0,0.4);
997
+ background: #fff;
998
+ border-radius: 5px;
999
+ }
1000
+ .leaflet-control-layers-toggle {
1001
+ background-image: url(images/layers.png);
1002
+ width: 36px;
1003
+ height: 36px;
1004
+ }
1005
+ .leaflet-retina .leaflet-control-layers-toggle {
1006
+ background-image: url(images/layers-2x.png);
1007
+ background-size: 26px 26px;
1008
+ }
1009
+ .leaflet-touch .leaflet-control-layers-toggle {
1010
+ width: 44px;
1011
+ height: 44px;
1012
+ }
1013
+ .leaflet-control-layers .leaflet-control-layers-list,
1014
+ .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
1015
+ display: none;
1016
+ }
1017
+ .leaflet-control-layers-expanded .leaflet-control-layers-list {
1018
+ display: block;
1019
+ position: relative;
1020
+ }
1021
+ .leaflet-control-layers-expanded {
1022
+ padding: 6px 10px 6px 6px;
1023
+ color: #333;
1024
+ background: #fff;
1025
+ }
1026
+ .leaflet-control-layers-scrollbar {
1027
+ overflow-y: scroll;
1028
+ overflow-x: hidden;
1029
+ padding-right: 5px;
1030
+ }
1031
+ .leaflet-control-layers-selector {
1032
+ margin-top: 2px;
1033
+ position: relative;
1034
+ top: 1px;
1035
+ }
1036
+ .leaflet-control-layers label {
1037
+ display: block;
1038
+ }
1039
+ .leaflet-control-layers-separator {
1040
+ height: 0;
1041
+ border-top: 1px solid #ddd;
1042
+ margin: 5px -10px 5px -6px;
1043
+ }
1044
+
1045
+ /* Default icon URLs */
1046
+ .leaflet-default-icon-path {
1047
+ background-image: url(images/marker-icon.png);
1048
+ }
1049
+
1050
+
1051
+ /* attribution and scale controls */
1052
+
1053
+ .leaflet-container .leaflet-control-attribution {
1054
+ background: #fff;
1055
+ background: rgba(255, 255, 255, 0.7);
1056
+ margin: 0;
1057
+ }
1058
+ .leaflet-control-attribution,
1059
+ .leaflet-control-scale-line {
1060
+ padding: 0 5px;
1061
+ color: #333;
1062
+ }
1063
+ .leaflet-control-attribution a {
1064
+ text-decoration: none;
1065
+ }
1066
+ .leaflet-control-attribution a:hover {
1067
+ text-decoration: underline;
1068
+ }
1069
+ .leaflet-container .leaflet-control-attribution,
1070
+ .leaflet-container .leaflet-control-scale {
1071
+ font-size: 11px;
1072
+ }
1073
+ .leaflet-left .leaflet-control-scale {
1074
+ margin-left: 5px;
1075
+ }
1076
+ .leaflet-bottom .leaflet-control-scale {
1077
+ margin-bottom: 5px;
1078
+ }
1079
+ .leaflet-control-scale-line {
1080
+ border: 2px solid #777;
1081
+ border-top: none;
1082
+ line-height: 1.1;
1083
+ padding: 2px 5px 1px;
1084
+ font-size: 11px;
1085
+ white-space: nowrap;
1086
+ overflow: hidden;
1087
+ -moz-box-sizing: border-box;
1088
+ box-sizing: border-box;
1089
+
1090
+ background: #fff;
1091
+ background: rgba(255, 255, 255, 0.5);
1092
+ }
1093
+ .leaflet-control-scale-line:not(:first-child) {
1094
+ border-top: 2px solid #777;
1095
+ border-bottom: none;
1096
+ margin-top: -2px;
1097
+ }
1098
+ .leaflet-control-scale-line:not(:first-child):not(:last-child) {
1099
+ border-bottom: 2px solid #777;
1100
+ }
1101
+
1102
+ .leaflet-touch .leaflet-control-attribution,
1103
+ .leaflet-touch .leaflet-control-layers,
1104
+ .leaflet-touch .leaflet-bar {
1105
+ box-shadow: none;
1106
+ }
1107
+ .leaflet-touch .leaflet-control-layers,
1108
+ .leaflet-touch .leaflet-bar {
1109
+ border: 2px solid rgba(0,0,0,0.2);
1110
+ background-clip: padding-box;
1111
+ }
1112
+
1113
+
1114
+ /* popup */
1115
+
1116
+ .leaflet-popup {
1117
+ position: absolute;
1118
+ text-align: center;
1119
+ margin-bottom: 20px;
1120
+ }
1121
+ .leaflet-popup-content-wrapper {
1122
+ padding: 1px;
1123
+ text-align: left;
1124
+ border-radius: 12px;
1125
+ }
1126
+ .leaflet-popup-content {
1127
+ margin: 13px 19px;
1128
+ line-height: 1.4;
1129
+ }
1130
+ .leaflet-popup-content p {
1131
+ margin: 18px 0;
1132
+ }
1133
+ .leaflet-popup-tip-container {
1134
+ width: 40px;
1135
+ height: 20px;
1136
+ position: absolute;
1137
+ left: 50%;
1138
+ margin-left: -20px;
1139
+ overflow: hidden;
1140
+ pointer-events: none;
1141
+ }
1142
+ .leaflet-popup-tip {
1143
+ width: 17px;
1144
+ height: 17px;
1145
+ padding: 1px;
1146
+
1147
+ margin: -10px auto 0;
1148
+
1149
+ -webkit-transform: rotate(45deg);
1150
+ -moz-transform: rotate(45deg);
1151
+ -ms-transform: rotate(45deg);
1152
+ transform: rotate(45deg);
1153
+ }
1154
+ .leaflet-popup-content-wrapper,
1155
+ .leaflet-popup-tip {
1156
+ background: white;
1157
+ color: #333;
1158
+ box-shadow: 0 3px 14px rgba(0,0,0,0.4);
1159
+ }
1160
+ .leaflet-container a.leaflet-popup-close-button {
1161
+ position: absolute;
1162
+ top: 0;
1163
+ right: 0;
1164
+ padding: 4px 4px 0 0;
1165
+ border: none;
1166
+ text-align: center;
1167
+ width: 18px;
1168
+ height: 14px;
1169
+ font: 16px/14px Tahoma, Verdana, sans-serif;
1170
+ color: #c3c3c3;
1171
+ text-decoration: none;
1172
+ font-weight: bold;
1173
+ background: transparent;
1174
+ }
1175
+ .leaflet-container a.leaflet-popup-close-button:hover {
1176
+ color: #999;
1177
+ }
1178
+ .leaflet-popup-scrolled {
1179
+ overflow: auto;
1180
+ border-bottom: 1px solid #ddd;
1181
+ border-top: 1px solid #ddd;
1182
+ }
1183
+
1184
+ .leaflet-oldie .leaflet-popup-content-wrapper {
1185
+ zoom: 1;
1186
+ }
1187
+ .leaflet-oldie .leaflet-popup-tip {
1188
+ width: 24px;
1189
+ margin: 0 auto;
1190
+
1191
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
1192
+ filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
1193
+ }
1194
+ .leaflet-oldie .leaflet-popup-tip-container {
1195
+ margin-top: -1px;
1196
+ }
1197
+
1198
+ .leaflet-oldie .leaflet-control-zoom,
1199
+ .leaflet-oldie .leaflet-control-layers,
1200
+ .leaflet-oldie .leaflet-popup-content-wrapper,
1201
+ .leaflet-oldie .leaflet-popup-tip {
1202
+ border: 1px solid #999;
1203
+ }
1204
+
1205
+
1206
+ /* div icon */
1207
+
1208
+ .leaflet-div-icon {
1209
+ background: #fff;
1210
+ border: 1px solid #666;
1211
+ }
1212
+
1213
+
1214
+ /* Tooltip */
1215
+ /* Base styles for the element that has a tooltip */
1216
+ .leaflet-tooltip {
1217
+ position: absolute;
1218
+ padding: 6px;
1219
+ background-color: #fff;
1220
+ border: 1px solid #fff;
1221
+ border-radius: 3px;
1222
+ color: #222;
1223
+ white-space: nowrap;
1224
+ -webkit-user-select: none;
1225
+ -moz-user-select: none;
1226
+ -ms-user-select: none;
1227
+ user-select: none;
1228
+ pointer-events: none;
1229
+ box-shadow: 0 1px 3px rgba(0,0,0,0.4);
1230
+ }
1231
+ .leaflet-tooltip.leaflet-clickable {
1232
+ cursor: pointer;
1233
+ pointer-events: auto;
1234
+ }
1235
+ .leaflet-tooltip-top:before,
1236
+ .leaflet-tooltip-bottom:before,
1237
+ .leaflet-tooltip-left:before,
1238
+ .leaflet-tooltip-right:before {
1239
+ position: absolute;
1240
+ pointer-events: none;
1241
+ border: 6px solid transparent;
1242
+ background: transparent;
1243
+ content: "";
1244
+ }
1245
+
1246
+ /* Directions */
1247
+
1248
+ .leaflet-tooltip-bottom {
1249
+ margin-top: 6px;
1250
+ }
1251
+ .leaflet-tooltip-top {
1252
+ margin-top: -6px;
1253
+ }
1254
+ .leaflet-tooltip-bottom:before,
1255
+ .leaflet-tooltip-top:before {
1256
+ left: 50%;
1257
+ margin-left: -6px;
1258
+ }
1259
+ .leaflet-tooltip-top:before {
1260
+ bottom: 0;
1261
+ margin-bottom: -12px;
1262
+ border-top-color: #fff;
1263
+ }
1264
+ .leaflet-tooltip-bottom:before {
1265
+ top: 0;
1266
+ margin-top: -12px;
1267
+ margin-left: -6px;
1268
+ border-bottom-color: #fff;
1269
+ }
1270
+ .leaflet-tooltip-left {
1271
+ margin-left: -6px;
1272
+ }
1273
+ .leaflet-tooltip-right {
1274
+ margin-left: 6px;
1275
+ }
1276
+ .leaflet-tooltip-left:before,
1277
+ .leaflet-tooltip-right:before {
1278
+ top: 50%;
1279
+ margin-top: -6px;
1280
+ }
1281
+ .leaflet-tooltip-left:before {
1282
+ right: 0;
1283
+ margin-right: -12px;
1284
+ border-left-color: #fff;
1285
+ }
1286
+ .leaflet-tooltip-right:before {
1287
+ left: 0;
1288
+ margin-left: -12px;
1289
+ border-right-color: #fff;
1290
+ }
1291
+ .leaflet-container.crosshair-cursor-enabled {
1292
+ cursor:crosshair;
1293
+ }
1294
+ .leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
1295
+ -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
1296
+ -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
1297
+ -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
1298
+ transition: transform 0.3s ease-out, opacity 0.3s ease-in;
1299
+ }
1300
+
1301
+ .leaflet-cluster-spider-leg {
1302
+ /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
1303
+ -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
1304
+ -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
1305
+ -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
1306
+ transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
1307
+ }
1308
+
1309
+ .marker-cluster-small {
1310
+ background-color: rgba(181, 226, 140, 0.6);
1311
+ }
1312
+ .marker-cluster-small div {
1313
+ background-color: rgba(110, 204, 57, 0.6);
1314
+ }
1315
+
1316
+ .marker-cluster-medium {
1317
+ background-color: rgba(241, 211, 87, 0.6);
1318
+ }
1319
+ .marker-cluster-medium div {
1320
+ background-color: rgba(240, 194, 12, 0.6);
1321
+ }
1322
+
1323
+ .marker-cluster-large {
1324
+ background-color: rgba(253, 156, 115, 0.6);
1325
+ }
1326
+ .marker-cluster-large div {
1327
+ background-color: rgba(241, 128, 23, 0.6);
1328
+ }
1329
+
1330
+ /* IE 6-8 fallback colors */
1331
+ .leaflet-oldie .marker-cluster-small {
1332
+ background-color: rgb(181, 226, 140);
1333
+ }
1334
+ .leaflet-oldie .marker-cluster-small div {
1335
+ background-color: rgb(110, 204, 57);
1336
+ }
1337
+
1338
+ .leaflet-oldie .marker-cluster-medium {
1339
+ background-color: rgb(241, 211, 87);
1340
+ }
1341
+ .leaflet-oldie .marker-cluster-medium div {
1342
+ background-color: rgb(240, 194, 12);
1343
+ }
1344
+
1345
+ .leaflet-oldie .marker-cluster-large {
1346
+ background-color: rgb(253, 156, 115);
1347
+ }
1348
+ .leaflet-oldie .marker-cluster-large div {
1349
+ background-color: rgb(241, 128, 23);
1350
+ }
1351
+
1352
+ .marker-cluster {
1353
+ background-clip: padding-box;
1354
+ border-radius: 20px;
1355
+ }
1356
+ .marker-cluster div {
1357
+ width: 30px;
1358
+ height: 30px;
1359
+ margin-left: 5px;
1360
+ margin-top: 5px;
1361
+
1362
+ text-align: center;
1363
+ border-radius: 15px;
1364
+ font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
1365
+ }
1366
+ .marker-cluster span {
1367
+ line-height: 30px;
1368
+ }
1369
+ div.bmlt_map_container_div
1370
+ {
1371
+ width: 100%;
1372
+ margin:auto;
1373
+ left:0;
1374
+ top:0;
1375
+ height:640px;
1376
+ }
1377
+
1378
+ div.bmlt_search_map_div {
1379
+ width: 100%;
1380
+ margin:auto;
1381
+ left:0;
1382
+ top:0;
1383
+ height:100%;
1384
+ z-index: 10;
1385
+ }
1386
+ div.bmlt_map_container_div .bmlt_map_throbber_div
1387
+ {
1388
+ position:absolute;
1389
+ top:50%;
1390
+ left:50%;
1391
+ height:48px;
1392
+ width:48px;
1393
+ margin:0;
1394
+ margin-top:-24px;
1395
+ margin-left:-24px;
1396
+ z-index:10000;
1397
+ }
1398
+ div.bmlt_map_throbber_div {
1399
+ background-color: transparent;
1400
+ border: 0px;
1401
+ }
1402
+ div.bmlt_map_container_div .bmlt_map_throbber_div img
1403
+ {
1404
+ display:block;
1405
+ height:40px;
1406
+ width:40px;
1407
+ margin:4px;
1408
+ }
1409
+
1410
+ div.bmlt_map_container_div .bmlt_search_map_div,
1411
+ div.bmlt_map_container_div .bmlt_map_throbber_div
1412
+ {
1413
+ border: 1px solid #555;
1414
+ border-radius: 3px;
1415
+ -moz-border-radius:3px;
1416
+ -webkit-border-radius: 3px;
1417
+ }
1418
+
1419
+ div.bmlt_map_container_div div.bmlt_search_map_div
1420
+ {
1421
+ width:100%;
1422
+ margin:auto;
1423
+ margin-top:2px;
1424
+ }
1425
+ .accordion {
1426
+
1427
+ box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
1428
+ min-width: 200px !important;
1429
+ /* Radio Inputs */
1430
+ /* Labels */
1431
+ /* Panel Content */
1432
+ }
1433
+ .accordion input[name='panel'] {
1434
+ display: none;
1435
+ }
1436
+ .accordion label {
1437
+ position: relative;
1438
+ display: block;
1439
+ padding-left: 1em;
1440
+ padding-right: 1em;
1441
+ padding-top: .25em;
1442
+ padding-bottom: .25em;
1443
+ background: linear-gradient(to bottom, #fefefe 0%, #d1d1d1 50%, #dbdbdb 55%, #e2e2e2 100%);
1444
+ border-top: 1px solid #fff;
1445
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
1446
+ box-shadow: inset 0 2px 0 #fff;
1447
+ font-size: 14px;
1448
+ font-weight: 700;
1449
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
1450
+ color: #666;
1451
+ cursor: pointer;
1452
+ transition: all 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87);
1453
+ }
1454
+ .accordion h4 {
1455
+ padding-top: .25em;
1456
+ font-size: 16px;
1457
+ font-weight: bold;
1458
+ margin-top: 8px;
1459
+ margin-bottom: 8px;
1460
+ }
1461
+ .accordion label:after {
1462
+ content: '+';
1463
+ position: absolute;
1464
+ right: 1em;
1465
+ width: 1em;
1466
+ height: 1em;
1467
+ color: #eee;
1468
+ text-align: center;
1469
+ border-radius: 50%;
1470
+ background: #27ae60;
1471
+ box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.5), 0 1px 0 #fff;
1472
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
1473
+ }
1474
+ .accordion label:hover {
1475
+ color: #444;
1476
+ }
1477
+ .accordion input:checked + label {
1478
+ color: #222;
1479
+ }
1480
+ .accordion input:checked + label:after {
1481
+ content: '-';
1482
+ /* adjsut line-height to vertically center icon */
1483
+ line-height: .8em;
1484
+ }
1485
+ .accordion .marker_div_meeting {
1486
+ overflow: hidden;
1487
+ height: 0px;
1488
+ position: relative;
1489
+ padding: 0 1.5em;
1490
+ box-shadow: inset 4px 0 0 0 #27ae60, inset 0 3px 6px rgba(0, 0, 0, 0.75);
1491
+ color: #444;
1492
+ transition: height 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87);
1493
+ }
1494
+ .accordion .marker_div_meeting:not(:last-of-type) {
1495
+ box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.25), inset 4px 0 0 0 #27ae60, inset 0 3px 6px rgba(0, 0, 0, 0.75);
1496
+ }
1497
+ .accordion .marker_div_meeting .accordion__header {
1498
+ padding: 1em 0;
1499
+ }
1500
+ .accordion .marker_div_meeting .accordion__body {
1501
+ font-size: .825em;
1502
+ line-height: 1.4em;
1503
+ }
1504
+ .active {
1505
+ display: block;
1506
+ }
1507
+ .hidden {
1508
+ display: none;
1509
+ }
1510
+ .hygene-button {
1511
+ padding: 3px 5px;
1512
+ font-size: 12px;
1513
+ background-color: #F1F1F1;
1514
+ color: #35414F;
1515
+ border-color: #C5C5C5;
1516
+ margin-bottom: 3px;
1517
+ }
1518
+ .bmlt-hygene-descr {
1519
+ padding-top: 2px;
1520
+ padding-bottom: 2px;
1521
+ font-size: 12px;
1522
+ border:0;
1523
+ }
1524
+
1525
+ .bmlt-hygene-header {
1526
+ font-weight: bold;
1527
+ padding-bottom: 2px;
1528
+ font-size:12px;
1529
+ border:0;
1530
+ }
1531
+ input[name='panel']:checked ~ .marker_div_meeting {
1532
+ height:auto;
1533
+ overflow: auto !important;
1534
+ padding-bottom:1em;
1535
+ }
1536
+
1537
+ .onoffswitch {
1538
+ position: relative; width: 170px !important;
1539
+ opacity: 1 !important;
1540
+ -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
1541
+ }
1542
+ .onoffswitch-checkbox {
1543
+ display: none !important;
1544
+ }
1545
+ .onoffswitch-label {
1546
+ display: block; overflow: hidden; cursor: pointer;
1547
+ border: 2px solid #2d5c88 !important; border-radius: 20px !important;
1548
+ box-shadow: 0 1px 4px rgba(0,0,0,0.3);
1549
+
1550
+ }
1551
+ .onoffswitch-inner {
1552
+ display: block !important; width: 200% !important; margin-left: -100% !important;
1553
+ transition: margin 0.3s ease-in 0s;
1554
+ }
1555
+ .onoffswitch-inner:before, .onoffswitch-inner:after {
1556
+ display: block; float: left; width: 50%; height: 30px; line-height: 30px;
1557
+ font-size: 14px !important; font-family: Roboto, Arial, sans-serif !important; font-weight: bold !important;
1558
+ box-sizing: border-box !important;
1559
+ }
1560
+
1561
+ .onoffswitch-switch {
1562
+ display: block !important; width: 18px !important; margin: 6px !important;
1563
+ background: #FFFFFF !important;
1564
+ position: absolute; top: 0; bottom: 0;
1565
+ right: 136px !important;
1566
+ border: 2px solid #2d5c88 !important; border-radius: 20px;
1567
+ transition: all 0.3s ease-in 0s;
1568
+ }
1569
+ .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
1570
+ margin-left: 0 !important;
1571
+ }
1572
+ .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
1573
+ right: 0px !important;
1574
+ }
1575
+ .mapSearchText {
1576
+ background-color: #fff !important;
1577
+ border: none !important;
1578
+ outline: none !important;
1579
+ font-size: 14px !important;font-family: Roboto, Arial, sans-serif !important; font-weight: bold !important;
1580
+ border-radius: 2px !important;
1581
+ box-shadow: 0 1px 4px rgba(0,0,0,0.3) !important;
1582
+ cursor: pointer !important;
1583
+ padding: 0px !important;
1584
+ margin-left: 10px !important;
1585
+ margin-bottom: 0px !important;
1586
+ height: 30px !important;
1587
+ }
1588
+ .si-content-wrapper {
1589
+ padding: 0;
1590
+ }
1591
+
1592
+ div.bmlt_map_container_div input {
1593
+ width: 100%;
1594
+ background-color: #fff;
1595
+ }
1596
+ div.bmlt_map_container_div button {
1597
+ background-color: #eeeeee !important;
1598
+ color: #2d5c88 !important;
1599
+ }
1600
+ #open_filter {
1601
+ width: inherit;
1602
+ }
1603
+ /* The Modal (background) */
1604
+ .modal {
1605
+ font-size: 14px !important; color: black; font-family: Roboto, Arial, sans-serif !important;
1606
+ display: none; /* Hidden by default */
1607
+ position: fixed; /* Stay in place */
1608
+ z-index: 1000; /* Sit on top */
1609
+ left: 0;
1610
+ top: 0;
1611
+ width: 100%; /* Full width */
1612
+ height: 100%; /* Full height */
1613
+ overflow: auto; /* Enable scroll if needed */
1614
+ background-color: rgb(0,0,0); /* Fallback color */
1615
+ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
1616
+ }
1617
+
1618
+ /* Modal Content/Box */
1619
+ .modal-content {
1620
+ background-color: #fefefe;
1621
+ position: absolute;
1622
+ top: 50%;
1623
+ left: 50%;
1624
+ transform: translate(-50%, -50%);
1625
+ padding: 20px;
1626
+ border: 1px solid #888;
1627
+ line-height: 1.2;
1628
+ }
1629
+ #meeting_modal .modal-content {
1630
+ transform: unset;
1631
+ top: 10%;
1632
+ left: 8%;
1633
+ max-width: 85%;
1634
+ overflow-y: auto;
1635
+ }
1636
+
1637
+ /* The Close Button */
1638
+ .modal-close {
1639
+ color: #aaa;
1640
+ float: right;
1641
+ font-size: 28px;
1642
+ font-weight: bold;
1643
+ line-height: 0;
1644
+ }
1645
+ .table-close {
1646
+ color: white;
1647
+ float: right;
1648
+ font-size: 20px;
1649
+ font-weight: bold;
1650
+ }
1651
+ .map-list-title {
1652
+ color: white;
1653
+ font-weight:bold;
1654
+ font-size: 20px;
1655
+ }
1656
+ .modal-close:hover,
1657
+ .modal-close:focus {
1658
+ color: black;
1659
+ text-decoration: none;
1660
+ cursor: pointer;
1661
+ }
1662
+ .modal-title {
1663
+ font-size: 18px;
1664
+ text-align: left;
1665
+ }
1666
+ #filter_modal p {
1667
+ margin-top: .5em;
1668
+ margin-bottom: 0;
1669
+ }
1670
+ .filter-button {
1671
+ background-color: #1abc9c;
1672
+ color: #fff;
1673
+ margin: 10px;
1674
+ border-radius: 3px;
1675
+ padding: .3em .5em;
1676
+ }
1677
+
1678
+ /* Style the buttons inside the tab */
1679
+ #modal-tab button {
1680
+ float: left;
1681
+ border: none;
1682
+ outline: none;
1683
+ cursor: pointer;
1684
+ padding: 8px 8px;
1685
+ transition: 0.3s;
1686
+ font-size: 13px;
1687
+ margin-left: 2px;
1688
+ margin-top: 6px;
1689
+ border-color: #C5C5C5 !important;
1690
+ color: #FFF !important;
1691
+ background-color: #DB4865 !important;
1692
+ }
1693
+ #table_content {
1694
+ font-size: 14px !important; font-family: Roboto, Arial, sans-serif !important;
1695
+ transform: translate(-50%, 0px);
1696
+ top: 15%;
1697
+ width: 75%;
1698
+ }
1699
+ #table_content h4 {
1700
+ font-size: 14px;
1701
+ font-weight: bold;
1702
+ margin-top: 0;
1703
+ line-height: 1.2;
1704
+ }
1705
+ .modal_times {
1706
+ font-size: 14px;
1707
+ font-weight: bold;
1708
+ color: #DB4865;
1709
+ }
1710
+ #table_content .meeting-header{
1711
+ background-color: #93c3cd !important;
1712
+ font-size: 14px;
1713
+ font-weight: 700 !important;
1714
+ color: #000 !important;
1715
+ }
1716
+
1717
+ #modal-day-button {
1718
+ margin-left:6px;
1719
+ }
1720
+
1721
+ /* Change background color of buttons on hover */
1722
+ #modal-tab button:hover {
1723
+ background-color: #F1F1F1 !important;
1724
+ border-color: #fff !important;
1725
+ }
1726
+
1727
+ /* Create an active/current tablink class */
1728
+ #modal-tab button.active {
1729
+ color: #000 !important;
1730
+ background-color: #93c3cd !important;
1731
+ }
1732
+
1733
+ /* Style the tab content */
1734
+ .modal-tabcontent {
1735
+ display: none;
1736
+ padding: 4px 4px;
1737
+ border: 1px solid #ccc;
1738
+ border-top: none;
1739
+ background-color: #35414F;
1740
+ }
1741
+ .modal-tabcontent td {
1742
+ background-color: inherit;
1743
+ }
1744
+
1745
+
1746
+ .modal-tabcontent tr:nth-child(even) {
1747
+ background-color: #F2F2F2 !important;
1748
+ }
1749
+
1750
+ .modal-tabcontent tr:nth-child(odd) {
1751
+ background: #FFF;
1752
+ }
1753
+
1754
+ #bmlt-tabs td {
1755
+ /* border-top: 0; */
1756
+ padding: .8em;
1757
+ }
1758
+ .menu-button {
1759
+ background-color: #EEEEEE !important;
1760
+ color: #2d5c88 !important;
1761
+ outline: none;
1762
+ width: 55px;
1763
+ height: 32px;
1764
+ border: 2px solid #2d5c88 !important; border-radius: 20px !important;
1765
+ box-shadow: 0 1px 4px rgba(0,0,0,0.3);
1766
+ cursor: pointer;
1767
+ margin-right: 10px;
1768
+ margin-top: 10px;
1769
+ padding: 0px;
1770
+ }
1771
+ .menu-button:hover, .menu-button:focus {
1772
+ background-color: #EEEEEE !important;
1773
+ }
1774
+ .menu-button-label {
1775
+ position: relative;
1776
+ top: -12px;
1777
+ left: -0.3em;
1778
+ font-weight: bold;
1779
+ font-size: 14px;
1780
+ color: #2d5c88 !important;
1781
+
1782
+ }
1783
+ #map-search-button {
1784
+ width: fit-content;
1785
+ height: fit-content;
1786
+ }
1787
+ #map-search-button .menu-button-label {
1788
+ margin: 10px;
1789
+ }
1790
+ .menu-button-child {
1791
+ width: 32px;
1792
+ height: 32px;
1793
+ background-size: 32px 32px;
1794
+ background-position: 1px -2px;
1795
+ background-repeat: no-repeat;
1796
+ font-size: 14px;
1797
+ display: inline-block;
1798
+ }
1799
+ .menu-button-childSmall {
1800
+ width: 32px;
1801
+ height: 32px;
1802
+ background-size: 24px 24px;
1803
+ background-position: 1px 2px;
1804
+ background-repeat: no-repeat;
1805
+ font-size: 14px;
1806
+ display: inline-block;
1807
+ }
1808
+ .menu-dropdown {
1809
+ display: none;
1810
+ background-color: #EEEEEE;
1811
+ color: #2d5c88;
1812
+ position: absolute;
1813
+ top: 45px;
1814
+ right: 10px;
1815
+ border-radius: 2px;
1816
+ box-shadow: 0 1px 4px rgba(0,0,0,0.3);
1817
+ min-width: 160px;
1818
+ }
1819
+ .menu-dropdown button {
1820
+ color: black;
1821
+ padding: 12px 16px;
1822
+ font-size: 14px !important; font-family: Roboto, Arial, sans-serif !important;
1823
+ font-weight: bold;
1824
+ text-decoration: none;
1825
+ display: block;
1826
+ width: 100%;
1827
+ }
1828
+ .leaflet-popup-content {
1829
+ margin: 0px 0px;
1830
+ }
1831
+
1832
+ .leaflet-pseudo-fullscreen {
1833
+ position:fixed!important;
1834
+ width:100%!important;
1835
+ height:100%!important;
1836
+ top:0!important;
1837
+ left:0!important;
1838
+ z-index:99999;
1839
+ }
1840
+ .gm-style-iw-d {
1841
+ overflow: hidden !important;
1842
+ }
1843
+ .gm-style .gm-style-iw-c {
1844
+ padding: 0px;
1845
+ }