Skip to content

Commit

Permalink
Fix dark theme border-bottom CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
Commifreak committed Apr 15, 2023
1 parent c6709e4 commit 8afa46d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/pages/content/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@
if (strstr('white,azure', $display['theme'])) {
$bgcolor = '#f2f2f2';
} else {
$bgcolor = '#1c1c1c';
$bgcolor = '#1c1c1c';
$selectBorder = '1px solid #1c1b1b';
}

?>
Expand All @@ -157,6 +158,13 @@
background-color: unset;
}

<?php if(isset($selectBorder)): ?>
blockquote select, blockquote textarea {
border-bottom: <?= $selectBorder ?>;
}

<?php endif; ?>

.dockerSettings dt {
width: 54%;
}
Expand Down

0 comments on commit 8afa46d

Please sign in to comment.