Skip to content

Commit

Permalink
fix: disabled inputs on dark theme (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellite committed Mar 25, 2024
1 parent ae84065 commit 11f0e7c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion includes/version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
$version = "v1.18.0";
$version = "v1.18.1";
?>
11 changes: 11 additions & 0 deletions styles/dark-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@ select::placeholder {
color: #BBB;
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="date"]:disabled,
input[type="number"]:disabled,
select:disabled {
background-color: #999;
border-color: #666;
cursor: not-allowed;
}

input[type="button"].secondary-button {
background-color: #222;
}
Expand Down

0 comments on commit 11f0e7c

Please sign in to comment.