summaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-16 21:12:28 -0700
committerAndrew Godwin2022-11-16 21:12:28 -0700
commit1b52acdb56346d939eb2e26ff449697b52fa7142 (patch)
tree222e5a3de47db230c392f18ab983abe69eb94c5d /static
parent44af0d4c59eed1c3715e9044e75c159cfddf54cc (diff)
downloadtakahe-1b52acdb56346d939eb2e26ff449697b52fa7142.tar.gz
takahe-1b52acdb56346d939eb2e26ff449697b52fa7142.tar.bz2
takahe-1b52acdb56346d939eb2e26ff449697b52fa7142.zip
Domains management pages
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css9
1 files changed, 8 insertions, 1 deletions
diff --git a/static/css/style.css b/static/css/style.css
index 01f9076..9c45eb3 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -81,6 +81,7 @@ a {
--color-bg-box: #1a2631;
--color-bg-error: rgb(87, 32, 32);
--color-highlight: #449c8c;
+ --color-delete: #8b2821;
--color-text-duller: #5f6983;
--color-text-dull: #99a;
@@ -148,7 +149,8 @@ header menu a {
border-right: 1px solid var(--color-bg-menu);
}
-header menu a:hover {
+header menu a:hover,
+header menu a.selected {
border-bottom: 3px solid var(--color-highlight);
}
@@ -438,6 +440,11 @@ form .button {
display: inline-block;
}
+form button.delete,
+form .button.delete {
+ background: var(--color-delete);
+}
+
form button.toggle,
form .button.toggle {
background: var(--color-bg-main);