Moved code from broken branch.

This commit is contained in:
PeekabooSteam
2023-08-13 15:34:59 +01:00
parent 14552913a3
commit 6da84dd7b0
12 changed files with 3351 additions and 2054 deletions

View File

@@ -1075,7 +1075,7 @@ dl.ol-data-grid {
}
dl.ol-data-grid dd {
width: fit-content;
width: 60%;
}
dl.ol-data-grid dt.icon {

View File

@@ -264,6 +264,9 @@
width: 16px;
}
/* Buttons */
#center-map::before {
content: url("/resources/theme/images/icons/arrows-to-eye-solid.svg");
}
@@ -443,4 +446,41 @@
margin-top: 5px;
text-align: center;
width: 100%;
}
/* Airbase context menu */
#airbase-contextmenu #airbase-runways {
display:flex;
flex-direction: column;
row-gap:4px;
}
#airbase-contextmenu #airbase-runways > .runway {
border:1px solid #ccc;
display:flex;
flex-direction: row;
justify-content: space-between;
}
#airbase-contextmenu #airbase-runways > .runway abbr {
cursor:help;
text-decoration: none;
}
#airbase-contextmenu #airbase-runways > .runway > .heading {
align-items: center;
column-gap: 4px;
display:flex;
flex-direction: row;
}
#airbase-contextmenu #airbase-runways > .runway > .heading > abbr {
font-weight: var( --font-weight-bolder );
padding:4px;
}
#airbase-contextmenu #airbase-runways > .runway > .heading:last-of-type {
flex-direction: row-reverse;
}