2015-08-10 11:05:06 +02:00
|
|
|
// Place all the styles related to the carte controller here.
|
|
|
|
// They will automatically be included in application.css.
|
|
|
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
2015-11-25 10:26:55 +01:00
|
|
|
@import "bootstrap";
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2017-04-12 11:12:05 +02:00
|
|
|
#carte-page {
|
2015-12-08 11:32:29 +01:00
|
|
|
#map {
|
|
|
|
height: 600px;
|
2018-10-10 20:01:54 +02:00
|
|
|
z-index: 0;
|
2015-12-08 11:32:29 +01:00
|
|
|
}
|
|
|
|
|
2018-10-10 20:01:54 +02:00
|
|
|
#map.edit {
|
2016-06-14 11:00:57 +02:00
|
|
|
width: 70%;
|
2015-12-08 11:32:29 +01:00
|
|
|
}
|
2016-01-15 11:53:00 +01:00
|
|
|
|
|
|
|
.list {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
2015-11-25 10:26:55 +01:00
|
|
|
}
|
|
|
|
|
2016-06-14 11:00:57 +02:00
|
|
|
.leaflet-container path {
|
2017-04-12 10:52:14 +02:00
|
|
|
cursor: url("/assets/edit.png"), default !important;
|
2016-06-14 11:00:57 +02:00
|
|
|
}
|
|
|
|
|
2015-11-10 18:08:47 +01:00
|
|
|
#map.mode-create {
|
2017-04-12 10:52:14 +02:00
|
|
|
cursor: url("/assets/pencil.png"), crosshair !important;
|
2015-11-10 18:08:47 +01:00
|
|
|
}
|
|
|
|
|
2018-10-03 10:39:35 +02:00
|
|
|
#map g path.leaflet-polygon {
|
2015-11-12 17:34:12 +01:00
|
|
|
transition: all 0.25s;
|
|
|
|
stroke-width: 4px;
|
|
|
|
stroke-opacity: 1;
|
|
|
|
stroke: #D7217E;
|
|
|
|
position: absolute;
|
2018-10-10 20:01:54 +02:00
|
|
|
z-index: 100;
|
2015-11-12 17:34:12 +01:00
|
|
|
fill: #D7217E;
|
2017-04-11 18:45:35 +02:00
|
|
|
fill-opacity: 0.75;
|
2015-11-12 17:34:12 +01:00
|
|
|
}
|
|
|
|
|
2018-10-10 20:01:54 +02:00
|
|
|
#map.mode-delete path.leaflet-polygon {
|
2015-11-12 17:34:12 +01:00
|
|
|
cursor: no-drop !important;
|
|
|
|
|
2018-10-10 20:01:54 +02:00
|
|
|
&:hover {
|
|
|
|
fill: #4D4D4D !important;
|
|
|
|
}
|
2015-11-12 17:34:12 +01:00
|
|
|
}
|
|
|
|
|
2018-10-03 10:39:35 +02:00
|
|
|
#map div.leaflet-edge {
|
2017-04-11 18:45:35 +02:00
|
|
|
box-shadow: 0 0 0 2px #FFFFFF, 0 0 10px rgba(0, 0, 0, 0.35);
|
2015-11-12 17:34:12 +01:00
|
|
|
border: 5px solid #D7217E;
|
|
|
|
border-radius: 10px;
|
|
|
|
transition: opacity 0.25s;
|
|
|
|
cursor: move;
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 0 !important;
|
|
|
|
height: 0 !important;
|
|
|
|
}
|
|
|
|
|
2018-10-03 10:39:35 +02:00
|
|
|
#map.mode-edit div.leaflet-edge {
|
2015-11-12 17:34:12 +01:00
|
|
|
opacity: 1;
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
.info {
|
|
|
|
padding: 6px 8px;
|
|
|
|
font: 14px/16px Arial, Helvetica, sans-serif;
|
2015-12-08 11:32:29 +01:00
|
|
|
background: rgba(255, 255, 255, 0.8);
|
|
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
|
2015-08-10 11:05:06 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2015-12-08 11:32:29 +01:00
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
.info h4 {
|
|
|
|
margin: 0 0 5px;
|
2017-04-11 18:37:02 +02:00
|
|
|
color: #777777;
|
2016-06-24 16:41:44 +02:00
|
|
|
}
|
|
|
|
|
2017-04-12 11:12:05 +02:00
|
|
|
#search-by-address {
|
2018-08-22 15:06:19 +02:00
|
|
|
.algolia-autocomplete {
|
2016-06-24 16:41:44 +02:00
|
|
|
width: 555px;
|
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2018-08-22 15:06:19 +02:00
|
|
|
.aa-dropdown-menu {
|
2016-06-24 16:41:44 +02:00
|
|
|
width: 555px;
|
|
|
|
}
|
|
|
|
}
|