Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 7 additions & 2 deletions webroot/css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ code {
line-height: 22pt;
}

.code {
background: var(--light_panel_background);
line-height: 22pt;
font-family: monospace
}

a {
color: var(--accent);
text-decoration: none;
Expand Down Expand Up @@ -186,8 +192,7 @@ input[type=radio] {
select {
border: 1px solid var(--light_borders);
background: white;
padding: 5px;
width: 100%;
padding: 5px 10px 5px 20px;
max-width: 300px;
border-radius: 5px;
}
Expand Down
2 changes: 1 addition & 1 deletion webroot/panel/account.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@

<form action="" method="POST">
<input type="hidden" name="form_type" value="loginshell" />
<select id="loginSelector" name="shellSelect">
<select id="loginSelector" class="code" name="shellSelect">
<?php
foreach ($CONFIG["loginshell"]["shell"] as $shell) {
echo "<option>$shell</option>";
Expand Down
Loading