diff options
author | Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com> | 2021-04-11 18:21:26 +0000 |
---|---|---|
committer | Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com> | 2021-04-11 18:21:26 +0000 |
commit | b9807ce23dff8a8ac0ae258b4d62d4042a6ff43c (patch) | |
tree | 7ec41dcb67125a0326029d5de98a392cd2d5173d | |
parent | CSS: remove unused symlink class (diff) | |
download | miniserve-b9807ce23dff8a8ac0ae258b4d62d4042a6ff43c.tar.gz miniserve-b9807ce23dff8a8ac0ae258b4d62d4042a6ff43c.zip |
Don't use different syle for symlink symbol
Diffstat (limited to '')
-rw-r--r-- | data/style.scss | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/data/style.scss b/data/style.scss index 82ab663..e94436a 100644 --- a/data/style.scss +++ b/data/style.scss @@ -88,7 +88,7 @@ a.file:hover { .symlink-symbol::after { content: "⇢"; display: inline-block; - border: 1px solid var(--symlink_link_color); + border: 1px solid; margin-left: 0.5rem; border-radius: 0.2rem; padding: 0 0.1rem; @@ -521,7 +521,6 @@ th span.active span { --text_color: #323232; --directory_link_color: #d02474; --file_link_color: #0086b3; - --symlink_link_color: #ed6a43; --table_background: #ffffff; --table_text_color: #323232; --table_header_background: #323232; @@ -566,7 +565,6 @@ th span.active span { --text_color: #fefefe; --directory_link_color: #03a9f4; --file_link_color: #ea95ff; - --symlink_link_color: #ff9800; --table_background: #353946; --table_text_color: #eeeeee; --table_header_background: #5294e2; @@ -611,7 +609,6 @@ th span.active span { --text_color: #efefef; --directory_link_color: #f0dfaf; --file_link_color: #87d6d5; - --symlink_link_color: #ffccee; --table_background: #4a4949; --table_text_color: #efefef; --table_header_background: #7f9f7f; @@ -656,7 +653,6 @@ th span.active span { --text_color: #f8f8f2; --directory_link_color: #f92672; --file_link_color: #a6e22e; - --symlink_link_color: #fd971f; --table_background: #3b3a32; --table_text_color: #f8f8f0; --table_header_background: #75715e; |