diff options
-rw-r--r-- | forged/static/style.css | 3 | ||||
-rw-r--r-- | sql/schema.sql | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/forged/static/style.css b/forged/static/style.css index 13a2c8e..4923771 100644 --- a/forged/static/style.css +++ b/forged/static/style.css @@ -42,7 +42,7 @@ html { --light-text-color: hsl(0, 0%, 78%); --darker-border-color: hsl(0, 0%, 35%); --lighter-border-color: hsl(0, 0%, 25%); - --text-decoration-color: hsl(0, 0%, 30%); + --text-decoration-color: hsl(0, 0%, 50%); --darker-box-background-color: hsl(0, 0%, 20%); --lighter-box-background-color: hsl(0, 0%, 15%); } @@ -304,6 +304,7 @@ th.tdinput input[type=password] { td.tdinput select { position: absolute; background-color: var(--background-color); + color: var(--text-color); border: none; /* width: 100%; diff --git a/sql/schema.sql b/sql/schema.sql index a6efc39..92ae605 100644 --- a/sql/schema.sql +++ b/sql/schema.sql @@ -39,7 +39,7 @@ CREATE TABLE mailing_list_emails ( CREATE TABLE users ( id INTEGER GENERATED ALWAYS AS IDENTITY PRIMARY KEY, username TEXT UNIQUE, - type TEXT NOT NULL CHECK (type IN ('pubkey_only', 'federated', 'registered')), + type TEXT NOT NULL CHECK (type IN ('pubkey_only', 'federated', 'registered', 'admin')), password TEXT ); |