first commit

This commit is contained in:
2019-05-25 23:11:05 -04:00
commit 16f48376bc
6139 changed files with 990356 additions and 0 deletions
@@ -0,0 +1,26 @@
/* ------------------------------------------------------------------------------
*
* # Google Maps overrides
*
* Override Google Maps default styles
*
* Version: 1.0
* Latest update: May 25, 2015
*
* ---------------------------------------------------------------------------- */
// Container
.map-container {
height: 500px;
}
// Override popover text styles
.gm-style {
font-size: @font-size-base;
.gm-style-iw {
font-size: @font-size-base;
font-weight: 400;
}
}
@@ -0,0 +1,52 @@
/* ------------------------------------------------------------------------------
*
* # Vector maps
*
* Vector map container, tooltip and zooming
*
* Version: 1.0
* Latest update: May 25, 2015
*
* ---------------------------------------------------------------------------- */
// Container
.vector-map-container {
height: 500px;
}
// Map tooltip
.jvectormap-label {
position: absolute;
display: none;
border-radius: @border-radius-small;
background-color: @tooltip-bg;
color: @tooltip-color;
padding: @padding-base-vertical @padding-base-horizontal;
}
// Zoom buttons
.jvectormap-zoomin,
.jvectormap-zoomout {
position: absolute;
left: 10px;
border-radius: @border-radius-small;
padding: 8px;
color: white;
cursor: pointer;
font-size: @icon-font-size;
font-weight: 300;
line-height: 10px;
background-color: @color-slate-800;
text-align: center;
&:hover {
background-color: @color-slate-700;
}
}
.jvectormap-zoomin {
top: 10px;
}
.jvectormap-zoomout {
top: 40px;
}
@@ -0,0 +1,22 @@
/* ------------------------------------------------------------------------------
*
* # Google maps base
*
* Styles related to Google Maps: containers, sizing etc.
*
* Version: 1.0
* Latest update: May 25, 2015
*
* ---------------------------------------------------------------------------- */
// Maps wrapper
.map-wrapper {
width: 100%;
height: 400px;
.sidebar & {
height: 200px;
border: 1px solid @panel-inner-border;
}
}