2018-10-20 06:33:27 -04:00
|
|
|
/**
|
|
|
|
* Sidebar layout
|
|
|
|
*/
|
2018-09-11 15:59:37 -04:00
|
|
|
.info-container {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 3rem;
|
2019-01-22 13:39:43 -05:00
|
|
|
padding: 0.25em 0em 2em;
|
2018-09-11 15:59:37 -04:00
|
|
|
background: #fff;
|
2018-10-01 07:45:33 -04:00
|
|
|
background-color: rgba(255,255,255,0.98);
|
2018-09-11 15:59:37 -04:00
|
|
|
z-index: 1000;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2018-12-03 05:21:19 -05:00
|
|
|
.info-container h2:first-child {
|
2018-09-13 18:55:53 -04:00
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
margin-left: -0.1em;
|
2018-09-30 19:13:01 -04:00
|
|
|
padding: 0 0.75rem;
|
2018-09-13 18:55:53 -04:00
|
|
|
}
|
2018-10-01 07:45:33 -04:00
|
|
|
#root .leaflet-container .leaflet-control-attribution {
|
2018-09-11 15:59:37 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 3rem;
|
|
|
|
background: #fff;
|
2018-10-01 07:45:33 -04:00
|
|
|
background: rgba(255, 255, 255, 0.7);
|
2018-09-11 15:59:37 -04:00
|
|
|
}
|
|
|
|
.leaflet-right{
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
@media (min-width: 380px){
|
|
|
|
.info-container {
|
|
|
|
bottom: 2rem;
|
|
|
|
}
|
2018-10-01 07:45:33 -04:00
|
|
|
#root .leaflet-container .leaflet-control-attribution {
|
2018-09-11 15:59:37 -04:00
|
|
|
height: 2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (min-width: 768px){
|
|
|
|
.info-container {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2018-10-25 06:48:25 -04:00
|
|
|
width: 25rem;
|
2018-09-11 15:59:37 -04:00
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
.leaflet-right{
|
2018-10-25 06:48:25 -04:00
|
|
|
left: 25rem;
|
2018-09-11 15:59:37 -04:00
|
|
|
}
|
2018-10-01 07:45:33 -04:00
|
|
|
#root .leaflet-container .leaflet-control-attribution {
|
2018-09-11 15:59:37 -04:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
2018-10-01 12:20:25 -04:00
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
/**
|
|
|
|
* Sidebar main header
|
|
|
|
*/
|
2018-12-03 05:21:19 -05:00
|
|
|
.sidebar-header h2 {
|
2018-12-03 05:29:32 -05:00
|
|
|
margin-top: 0.45rem;
|
2018-10-01 12:20:25 -04:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.sidebar-header .icon-button {
|
|
|
|
margin-left: 0.25rem;
|
2018-12-03 05:29:32 -05:00
|
|
|
margin-top: 0.3rem;
|
2018-10-01 12:20:25 -04:00
|
|
|
}
|
|
|
|
.sidebar-header .icon-button:hover {
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
2018-10-20 06:33:27 -04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Data list section headers
|
|
|
|
*/
|
2018-10-25 07:15:19 -04:00
|
|
|
.section-header {
|
2018-10-20 06:33:27 -04:00
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
clear: both;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #222;
|
2019-01-22 13:39:43 -05:00
|
|
|
transition: border-color 0.2s;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: #fff;
|
|
|
|
border-width: 4px 0 4px 0;
|
2018-10-20 06:33:27 -04:00
|
|
|
}
|
2018-10-25 07:15:19 -04:00
|
|
|
.section-header h3 {
|
2018-10-20 06:33:27 -04:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2018-10-25 07:15:19 -04:00
|
|
|
.section-header > a {
|
2018-10-20 06:33:27 -04:00
|
|
|
display: block;
|
|
|
|
padding: 0.6rem 0.5rem 0.5rem 2.25rem;
|
|
|
|
color: #222;
|
2019-01-22 13:39:43 -05:00
|
|
|
outline: none;
|
2018-10-20 06:33:27 -04:00
|
|
|
}
|
2018-10-25 07:15:19 -04:00
|
|
|
.section-header.active,
|
|
|
|
.section-header:hover {
|
2018-10-20 06:33:27 -04:00
|
|
|
color: #222;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-01-22 13:39:43 -05:00
|
|
|
.section-header.active.location {
|
|
|
|
border-color: #edc40b;
|
|
|
|
}
|
|
|
|
.section-header.location:hover {
|
|
|
|
border-color: #fae897;
|
|
|
|
}
|
|
|
|
.section-header.active.use {
|
|
|
|
border-color: #f0ee0c;
|
|
|
|
}
|
|
|
|
.section-header.use:hover {
|
|
|
|
border-color: #f6f552;
|
|
|
|
}
|
|
|
|
.section-header.active.type {
|
|
|
|
border-color: #ff9100;
|
|
|
|
}
|
|
|
|
.section-header.type:hover {
|
|
|
|
border-color: #ffb24d;
|
|
|
|
}
|
|
|
|
.section-header.active.age {
|
|
|
|
border-color: #ee5f63;
|
|
|
|
}
|
|
|
|
.section-header.age:hover {
|
|
|
|
border-color: #f5a4a6;
|
|
|
|
}
|
|
|
|
.section-header.active.size {
|
|
|
|
border-color: #ee91bf;
|
|
|
|
}
|
|
|
|
.section-header.size:hover {
|
|
|
|
border-color: #f8d3e6;
|
|
|
|
}
|
|
|
|
.section-header.active.construction {
|
|
|
|
border-color: #aa7fa7;
|
|
|
|
}
|
|
|
|
.section-header.construction:hover {
|
|
|
|
border-color: #c9adc7;
|
|
|
|
}
|
|
|
|
.section-header.active.team {
|
|
|
|
border-color: #6f879c;
|
|
|
|
}
|
|
|
|
.section-header.team:hover {
|
|
|
|
border-color: #9cadbb;
|
|
|
|
}
|
|
|
|
.section-header.active.sustainability {
|
|
|
|
border-color: #5ec232;
|
|
|
|
}
|
|
|
|
.section-header.sustainability:hover {
|
|
|
|
border-color: #8bd868;
|
|
|
|
}
|
|
|
|
.section-header.active.greenery {
|
|
|
|
border-color: #6dbb8b;
|
|
|
|
}
|
|
|
|
.section-header.greenery:hover {
|
|
|
|
border-color: #8bd868;
|
|
|
|
}
|
|
|
|
.section-header.active.planning {
|
|
|
|
border-color: #65b7ff;
|
|
|
|
}
|
|
|
|
.section-header.planning:hover {
|
|
|
|
border-color: #b2dbff;
|
|
|
|
}
|
|
|
|
.section-header.active.demolition {
|
|
|
|
border-color: #a1a3a9;
|
|
|
|
}
|
|
|
|
.section-header.demolition:hover {
|
|
|
|
border-color: #c9cace;
|
|
|
|
}
|
|
|
|
.section-header.active.like {
|
|
|
|
border-color: #9c896d;
|
|
|
|
}
|
|
|
|
.section-header.like:hover {
|
|
|
|
border-color: #bbae9b;
|
|
|
|
}
|
|
|
|
|
2018-10-25 07:15:19 -04:00
|
|
|
.section-header > a::before {
|
2018-10-20 06:33:27 -04:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0.55rem;
|
|
|
|
top: 0.3rem;
|
|
|
|
width: 1.2rem;
|
|
|
|
height: 1rem;
|
|
|
|
text-align: center;
|
2018-10-25 05:36:27 -04:00
|
|
|
color: #222264;
|
2018-10-20 06:33:27 -04:00
|
|
|
font-size: 1.2rem;
|
2018-10-25 05:22:35 -04:00
|
|
|
content: '\25B8';
|
2018-10-20 06:33:27 -04:00
|
|
|
transition: color 0.2s;
|
|
|
|
}
|
2018-10-25 07:15:19 -04:00
|
|
|
.section-header:hover > a::before,
|
|
|
|
.section-header.active > a::before {
|
2018-10-25 05:36:27 -04:00
|
|
|
font-size: 1rem;
|
2018-10-20 06:33:27 -04:00
|
|
|
}
|
2018-10-25 07:15:19 -04:00
|
|
|
.section-header:hover > a::before,
|
|
|
|
.section-header.active > a::before {
|
2018-10-20 06:33:27 -04:00
|
|
|
content: '\25BC';
|
|
|
|
}
|
2018-10-25 07:15:19 -04:00
|
|
|
.section-header.view.active:hover > a::before {
|
2018-10-20 06:33:27 -04:00
|
|
|
content: '\25B2';
|
|
|
|
}
|
2018-10-25 05:36:27 -04:00
|
|
|
|
2019-01-22 13:39:43 -05:00
|
|
|
.data-section.inactive .section-header,
|
|
|
|
.data-section.inactive .section-header > a {
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
.data-section.inactive .section-header.active,
|
|
|
|
.data-section.inactive .section-header.active:hover > a,
|
|
|
|
.data-section.inactive .section-header.active > a {
|
|
|
|
color: #222;
|
|
|
|
}
|
2018-10-25 07:15:19 -04:00
|
|
|
.data-section.inactive .section-header > a::before,
|
|
|
|
.data-section.inactive .section-header:hover > a::before,
|
|
|
|
.data-section.inactive .section-header.active:hover > a::before {
|
2018-10-25 05:36:27 -04:00
|
|
|
opacity: 0.4;
|
|
|
|
color: #222;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
content: '\25B8';
|
|
|
|
}
|
2018-10-25 07:15:19 -04:00
|
|
|
.section-header .icon-buttons {
|
2018-10-20 06:33:27 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 0.6rem 0.5rem 0.5rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Icon buttons
|
|
|
|
*/
|
|
|
|
.icon-button {
|
|
|
|
display: inline-block;
|
2018-10-25 06:48:25 -04:00
|
|
|
background-color: transparent;
|
|
|
|
font-size: 0.8333rem;
|
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
color: #222;
|
|
|
|
vertical-align: top;
|
2018-10-25 06:48:25 -04:00
|
|
|
}
|
|
|
|
.icon-button:hover {
|
|
|
|
color: #222;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-button.tooltip-hint {
|
|
|
|
padding: 0;
|
2018-10-20 06:33:27 -04:00
|
|
|
}
|
|
|
|
.icon-button svg {
|
2018-10-25 06:48:25 -04:00
|
|
|
background-color: transparent;
|
|
|
|
transition: background-color color 0.2s;
|
|
|
|
display: inline-block;
|
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
color: #222;
|
|
|
|
margin-top: 2px;
|
2018-10-25 06:48:25 -04:00
|
|
|
width: 1.8rem;
|
|
|
|
height: 1.8rem;
|
|
|
|
padding: 0.4rem;
|
|
|
|
border-radius: 0.9rem;
|
|
|
|
margin: 0 0.05rem;
|
2018-10-20 06:33:27 -04:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2018-10-25 06:48:25 -04:00
|
|
|
.svg-inline--fa.fa-w-11,
|
|
|
|
.svg-inline--fa.fa-w-16,
|
|
|
|
.svg-inline--fa.fa-w-8 {
|
|
|
|
width: 1.8rem;
|
|
|
|
}
|
|
|
|
.icon-button:hover svg {
|
2018-10-20 06:33:27 -04:00
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.icon-button.edit:hover svg {
|
|
|
|
color: rgb(11, 225, 225);
|
|
|
|
}
|
2018-11-13 05:44:12 -05:00
|
|
|
.icon-button.help,
|
|
|
|
.section-header .icon-button.help {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
.icon-button.help:hover {
|
2018-10-20 06:33:27 -04:00
|
|
|
color: rgb(0, 81, 255)
|
|
|
|
}
|
|
|
|
.icon-button.tooltip-hint.active svg,
|
|
|
|
.icon-button.tooltip-hint:hover svg {
|
|
|
|
color: rgb(255, 11, 245);
|
|
|
|
}
|
2018-10-25 06:48:25 -04:00
|
|
|
.icon-button.close-edit svg {
|
2018-10-20 06:33:27 -04:00
|
|
|
margin-top: -1px;
|
|
|
|
}
|
2018-10-25 06:48:25 -04:00
|
|
|
.icon-button.close-edit:hover svg {
|
2018-10-20 06:33:27 -04:00
|
|
|
color: rgb(255, 72, 11)
|
|
|
|
}
|
|
|
|
.icon-button.save:hover svg {
|
|
|
|
color: rgb(11, 225, 72);
|
|
|
|
}
|
|
|
|
.section-header .icon-button {
|
|
|
|
float: right;
|
|
|
|
margin-top: -2px;
|
|
|
|
}
|
|
|
|
|
2018-10-25 06:48:25 -04:00
|
|
|
/* Back button */
|
|
|
|
.icon-button.back,
|
|
|
|
.icon-button.back:hover {
|
|
|
|
padding: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
.icon-button.back:hover svg {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
/**
|
|
|
|
* Data list sections
|
|
|
|
*/
|
|
|
|
.data-section .h3 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.data-intro {
|
2018-12-03 05:21:19 -05:00
|
|
|
padding: 0 0.5rem 0 2.25rem;
|
2018-10-20 06:33:27 -04:00
|
|
|
margin-top: 0.25rem;
|
|
|
|
}
|
|
|
|
.data-list {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 0.75rem;
|
2018-10-25 06:48:25 -04:00
|
|
|
padding-right: 0.75rem;
|
2018-10-20 06:33:27 -04:00
|
|
|
}
|
|
|
|
.data-section form {
|
|
|
|
padding: 0 0.75rem;
|
|
|
|
}
|
|
|
|
.data-list a {
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
.data-list a:focus,
|
|
|
|
.data-list a:active,
|
|
|
|
.data-list a:hover {
|
|
|
|
color: #222;
|
|
|
|
}
|
|
|
|
.data-list dt,
|
|
|
|
.data-section label {
|
|
|
|
display: block;
|
|
|
|
margin: 0.5em 0 0;
|
|
|
|
font-size: 0.8333rem;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #555;
|
|
|
|
}
|
2018-11-30 10:53:55 -05:00
|
|
|
.data-section input,
|
|
|
|
.data-section textarea,
|
|
|
|
.data-section select {
|
|
|
|
margin: 0 0 0.5em 0;
|
|
|
|
}
|
2018-10-20 06:33:27 -04:00
|
|
|
.data-list dd {
|
|
|
|
margin: 0 0 0.5rem;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
.data-list .no-data {
|
|
|
|
color: #999;
|
|
|
|
}
|
2018-10-25 09:36:52 -04:00
|
|
|
.data-list dd ul {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|