2024-05-28 13:28:57 +02:00
|
|
|
@media (min-width: 992px) {
|
|
|
|
body.logged-in #main-view {
|
2024-06-01 12:57:27 +02:00
|
|
|
display: flex;
|
2024-05-28 13:28:57 +02:00
|
|
|
}
|
|
|
|
|
2024-05-29 23:03:05 +02:00
|
|
|
body.logged-in #sidebar {
|
|
|
|
position: sticky;
|
|
|
|
top: 5rem;
|
2024-06-01 12:57:27 +02:00
|
|
|
margin-right: 3rem;
|
2024-05-29 23:03:05 +02:00
|
|
|
}
|
|
|
|
|
2024-05-28 13:28:57 +02:00
|
|
|
body:not(.logged-in) #sidebar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body:not(.logged-in) .navbar-toggler,
|
|
|
|
body:not(.logged-in) .nav-item.dropdown,
|
|
|
|
body:not(.logged-in) #refresh-note {
|
|
|
|
display: none;
|
|
|
|
}
|
2024-06-16 21:49:41 +02:00
|
|
|
|
|
|
|
td.text-end > a > svg {
|
|
|
|
fill: currentColor;
|
|
|
|
height: 1em;
|
|
|
|
margin-left: 0.5em;
|
|
|
|
margin-bottom: 4px; /* to centre the icon */
|
|
|
|
}
|
2024-06-29 13:49:58 +02:00
|
|
|
|
|
|
|
/* if an item name is super long, ensure it doesn't prevent the user from using actions */
|
|
|
|
.card-body {
|
|
|
|
overflow: auto;
|
|
|
|
}
|