Fixed layout issues and joke message
This commit is contained in:
2026-06-06 18:31:05 +02:00
parent c3b7321005
commit b404ff5bc9
2 changed files with 44 additions and 25 deletions
+1 -11
View File
@@ -169,16 +169,6 @@ pub fn submit_ticket_component() -> Html {
let valid_rooms: HashSet<i16> = VALID_ROOMS.iter().copied().collect(); let valid_rooms: HashSet<i16> = VALID_ROOMS.iter().copied().collect();
{
let message = "Bevor sie zum Support weitergeleitet werden prüfen sie ob: \r\n - Ob das Problem durch Neustarten gelößt wird \r\n - Ob sie die richtigen Anmeldedaten genutzt habem \r\n - Alle notwendigen Kabel eingesteckt sind".to_string();
use_effect(move || {
if let Some(win) = web_sys::window() {
let _ = win.alert_with_message(&message);
}
|| ()
});
}
let onsubmit = { let onsubmit = {
let category = category.clone(); let category = category.clone();
let betreff = betreff.clone(); let betreff = betreff.clone();
@@ -684,7 +674,7 @@ pub fn all_tickets_component() -> Html {
_ => "To-Do" _ => "To-Do"
}; };
html! { html! {
<div class={classes!{status_class, "ticketbox"}}> <div class={classes!{status_class, "listbox"}}>
<li key={t.id.to_string()}> <li key={t.id.to_string()}>
<Link<crate::Route> to={crate::Route::TicketById{id: t.id}}><h3>{ format!("{} - #{}", t.betreff, t.id) }</h3></Link<crate::Route>> <Link<crate::Route> to={crate::Route::TicketById{id: t.id}}><h3>{ format!("{} - #{}", t.betreff, t.id) }</h3></Link<crate::Route>>
<p>{ &t.description }</p> <p>{ &t.description }</p>
+38 -9
View File
@@ -16,31 +16,46 @@ body {
} }
.admin { display: flex; } .admin { display: flex; }
.content { flex: 1; padding: variables.$spacing-md; }
.layout { .layout {
display: flex; display: flex;
min-height: 100vh; height: 100vh;
overflow: hidden;
box-sizing: border-box;
} }
.sidebar { .sidebar {
width: 260px; width: 260px;
flex-shrink: 0; flex-shrink: 0;
height: 100%;
overflow-y: auto;
box-sizing: border-box;
} }
.content { .content {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
height: 100%;
overflow-y: auto;
padding: variables.$spacing-md;
box-sizing: border-box;
} }
@media (max-width: 768px) { @media (max-width: 768px) {
.sidebar { position: fixed; left: -100%; transition: left .2s; } .sidebar {
position: fixed;
top: 0;
bottom: 0;
left: -100%;
transition: left .2s;
z-index: 1000;
height: 100%;
box-sizing: border-box;
}
.sidebar.open { left: 0; } .sidebar.open { left: 0; }
.content { margin-left: 0; } .content { margin-left: 0; padding: variables.$spacing-md; box-sizing: border-box; }
} }
.rundbg { .rundbg {
display: flex; display: flex;
justify-content: center; justify-content: center;
@@ -59,15 +74,24 @@ body {
box-shadow: 20px 20px 10px rgb(43, 43, 43); box-shadow: 20px 20px 10px rgb(43, 43, 43);
font-size: 26px; font-size: 26px;
label {
display: block;
width: 100%;
box-sizing: border-box;
}
input, button { input, select, button {
width: 100%;
box-sizing: border-box;
padding: 16px; padding: 16px;
font-size: 1.8rem; font-size: 1.8rem;
background-color: #f0f0f0; background-color: #f0f0f0;
box-shadow: #6d6d6d; box-shadow: #6d6d6d;
box-shadow: 6px 6px 8px box-shadow: 6px 6px 8px;
}
input[type="checkbox"] {
width: auto;
} }
button { button {
@@ -78,3 +102,8 @@ body {
margin-top: 96px; margin-top: 96px;
} }
} }
.setup-form input {
width: 100%;
box-sizing: border-box;
}