Shift legend/logo layout
This commit is contained in:
parent
b504b8f5ae
commit
7ca7fb59ac
@ -6,7 +6,7 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 55px;
|
bottom: 55px;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
min-width: 7rem;
|
min-width: 12rem;
|
||||||
float: right;
|
float: right;
|
||||||
background: white;
|
background: white;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
@ -24,10 +24,14 @@
|
|||||||
bottom: 24px;
|
bottom: 24px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.map-legend h4,
|
.map-legend .h4,
|
||||||
|
.map-legend p,
|
||||||
.data-legend {
|
.data-legend {
|
||||||
padding: 0 0.5rem;
|
padding: 0 0.5rem;
|
||||||
}
|
}
|
||||||
|
.map-legend p {
|
||||||
|
margin: 0.25rem 0 0.5rem;
|
||||||
|
}
|
||||||
.data-legend {
|
.data-legend {
|
||||||
max-height: 30rem;
|
max-height: 30rem;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
@ -106,6 +106,24 @@ const Legend = (props) => {
|
|||||||
const elements = details.elements;
|
const elements = details.elements;
|
||||||
return (
|
return (
|
||||||
<div className="map-legend">
|
<div className="map-legend">
|
||||||
|
<h4 className="h4">{ title }</h4>
|
||||||
|
{
|
||||||
|
details.description?
|
||||||
|
<p>{details.description}</p>
|
||||||
|
: null
|
||||||
|
}
|
||||||
|
{
|
||||||
|
elements.length?
|
||||||
|
(<ul className="data-legend">
|
||||||
|
{
|
||||||
|
elements.map((data_item) => (
|
||||||
|
<LegendItem {...data_item} key={data_item.color} />
|
||||||
|
))
|
||||||
|
}
|
||||||
|
</ul>)
|
||||||
|
: (<p className="data-intro">Coming soon…</p>)
|
||||||
|
}
|
||||||
|
|
||||||
<div className="logo">
|
<div className="logo">
|
||||||
<div className="grid">
|
<div className="grid">
|
||||||
<div className="row">
|
<div className="row">
|
||||||
@ -132,18 +150,6 @@ const Legend = (props) => {
|
|||||||
<span>London</span>
|
<span>London</span>
|
||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
<h4 className="h4">{ title }</h4>
|
|
||||||
{
|
|
||||||
elements.length?
|
|
||||||
(<ul className="data-legend">
|
|
||||||
{
|
|
||||||
elements.map((data_item) => (
|
|
||||||
<LegendItem {...data_item} key={data_item.color} />
|
|
||||||
))
|
|
||||||
}
|
|
||||||
</ul>)
|
|
||||||
: (<p className="data-intro">Coming soon…</p>)
|
|
||||||
}
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -28,17 +28,17 @@
|
|||||||
letter-spacing: 0;
|
letter-spacing: 0;
|
||||||
}
|
}
|
||||||
.map-legend .logo {
|
.map-legend .logo {
|
||||||
margin-top: -5px;
|
padding: 0.5rem;
|
||||||
padding: 0 0.4rem 0.4rem 0.4rem;
|
|
||||||
}
|
}
|
||||||
.map-legend .logo .logotype {
|
.map-legend .logo .logotype {
|
||||||
|
font-size: 1.75rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 6px;
|
top: 3px;
|
||||||
}
|
}
|
||||||
.map-legend .logo .row .cell {
|
.map-legend .logo .row .cell {
|
||||||
background-color: #ccc;
|
background-color: #ccc;
|
||||||
height: 11px;
|
height: 10px;
|
||||||
width: 11px;
|
width: 10px;
|
||||||
animation: none !important;
|
animation: none !important;
|
||||||
}
|
}
|
||||||
.logo .grid {
|
.logo .grid {
|
||||||
|
Loading…
Reference in New Issue
Block a user