Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 18 additions & 43 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -674,60 +674,35 @@ input.error {
}
}

.input-group {
display: flex;
align-items: stretch; /* Ensures all children have the same height */
max-width: 100%;
gap: 0; /* Remove any gap if present */
}

.input-group input#alias {
flex: 1 1 0;
min-width: 0;
max-width: 350px; /* or whatever max you want */
width: 0;
box-sizing: border-box;
height: auto;
margin: 0;
}

.input-addon {
display: flex;
align-items: center;
padding: 0 0.75rem;
background: #f8f9fa;
border: 1px solid #ddd;
border-left: none;
border-right: none;
color: #666;
border-radius: 0;
height: auto;
}

/* Dice icon button styling */
.dice-btn {
display: flex;
align-items: center;
background: none;
border: 1px solid #ddd;
border-left: none;
border-radius: 0 4px 4px 0;
padding: 0 0.75em;
border: none;
padding: 0 0.5em;
margin-left: 0.25em;
font-size: 1.3em;
cursor: pointer;
color: #888;
transition: color 0.2s;
line-height: 1;
height: auto;
}

.form-row {
/* Remove background and outline on focus/active for dice button */
.dice-btn:focus,
.dice-btn:active {
background: none !important;
outline: none !important;
box-shadow: none !important;
}

.input-group {
display: flex;
gap: 1rem;
flex-wrap: wrap;
align-items: flex-end;
align-items: center;
}

.form-group {
flex: 1 1 250px;
.input-group input#alias {
width: 70% !important;
flex: 2.2 1 0% !important;
min-width: 200px;
max-width: 100%;
}
Loading