feature: displays have basic styling (#317)
This commit is contained in:
parent
7e34efd453
commit
8fbbd9b32c
|
|
@ -422,6 +422,7 @@ function createDirectoryBreadcrumb (title, link) {
|
|||
function marshalDisplay (item, fieldset) {
|
||||
const display = document.createElement('div')
|
||||
display.innerHTML = item.title
|
||||
display.classList.add('display')
|
||||
|
||||
fieldset.appendChild(display)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -202,22 +202,13 @@ tr.log-row span.icon {
|
|||
|
||||
.error {
|
||||
background-color: salmon;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.title.temporary-status-message {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
div.entity {
|
||||
background-color: white;
|
||||
box-shadow: 0 0 10px 0 #444;
|
||||
display: grid;
|
||||
grid-column: auto / span 2;
|
||||
grid-row: auto / span 2;
|
||||
grid-template-rows: auto min-content;
|
||||
grid-template-columns: minmax(min-content, auto);
|
||||
}
|
||||
|
||||
h2 {
|
||||
display: inline-block;
|
||||
font-size: 1em;
|
||||
|
|
@ -472,6 +463,13 @@ div.toolbar * {
|
|||
margin-right: 1em;
|
||||
}
|
||||
|
||||
div.display {
|
||||
align-content: center;
|
||||
border: 1px solid #666;
|
||||
box-shadow: 0 0 6px 0 #aaa;
|
||||
border-radius: .7em;
|
||||
}
|
||||
|
||||
@media screen and (width <= 600px) {
|
||||
fieldset {
|
||||
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
||||
|
|
@ -575,4 +573,8 @@ div.toolbar * {
|
|||
div.toolbar {
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
div.display {
|
||||
box-shadow: 0 0 6px 0 #444;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue