@bmlt-enabled/croutonjs 3.22.1 → 3.22.2
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-core.css +70 -1
- package/crouton-core.min.css +1 -1
- package/crouton-gmaps.js +338 -21
- package/crouton-gmaps.min.js +23 -6
- package/crouton-gmaps.min.js.map +1 -1
- package/crouton.css +70 -1
- package/crouton.js +338 -21
- package/crouton.min.css +1 -1
- package/crouton.min.js +22 -5
- package/crouton.min.js.map +1 -1
- package/crouton.nojquery.js +338 -21
- package/crouton.nojquery.min.js +22 -5
- package/crouton.nojquery.min.js.map +1 -1
- package/package.json +1 -1
package/crouton.css
CHANGED
|
@@ -683,7 +683,76 @@ table.tablesaw {
|
|
|
683
683
|
}
|
|
684
684
|
input#search_radius, input#search_count {
|
|
685
685
|
width: auto;
|
|
686
|
-
}
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
.directions-map-modal {
|
|
690
|
+
display: none;
|
|
691
|
+
position: fixed;
|
|
692
|
+
z-index: 1000;
|
|
693
|
+
left: 0;
|
|
694
|
+
top: 0;
|
|
695
|
+
width: 100%;
|
|
696
|
+
height: 100%;
|
|
697
|
+
background-color: rgba(0,0,0,0.4);
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.directions-map-modal-content {
|
|
701
|
+
background-color: #fefefe;
|
|
702
|
+
margin: 15% auto;
|
|
703
|
+
padding: 20px;
|
|
704
|
+
border: 1px solid #888;
|
|
705
|
+
width: 80%;
|
|
706
|
+
max-width: 500px;
|
|
707
|
+
border-radius: 5px;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.directions-map-modal-close {
|
|
711
|
+
color: #aaa;
|
|
712
|
+
float: right;
|
|
713
|
+
font-size: 28px;
|
|
714
|
+
font-weight: bold;
|
|
715
|
+
cursor: pointer;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.directions-map-modal-close:hover,
|
|
719
|
+
.directions-map-modal-close:focus {
|
|
720
|
+
color: black;
|
|
721
|
+
text-decoration: none;
|
|
722
|
+
cursor: pointer;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.directions-map-map-option {
|
|
726
|
+
display: flex;
|
|
727
|
+
align-items: center;
|
|
728
|
+
padding: 10px;
|
|
729
|
+
border-bottom: 1px solid #eee;
|
|
730
|
+
cursor: pointer;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.directions-map-option:hover {
|
|
734
|
+
background-color: #f5f5f5;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.directions-map-option-icon {
|
|
738
|
+
width: 24px;
|
|
739
|
+
height: 24px;
|
|
740
|
+
margin-right: 10px;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.directions-map-option-text {
|
|
744
|
+
flex: 1;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.directions-map-option-title {
|
|
748
|
+
font-weight: bold;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.directions-map-option-desc {
|
|
752
|
+
font-size: 0.9em;
|
|
753
|
+
color: #666;
|
|
754
|
+
}
|
|
755
|
+
|
|
687
756
|
div.bmlt_map_container_div
|
|
688
757
|
{
|
|
689
758
|
width: 100%;
|