diff options
| author | chrislu <chris.lu@gmail.com> | 2025-11-04 22:11:19 -0800 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2025-11-04 22:11:19 -0800 |
| commit | ca8cd631ff5b833feef665b610a24154b9156935 (patch) | |
| tree | 0221761a139c1d4198d99efab37ab69947cfa647 | |
| parent | 82f2c3757fb1a4479a389f62f19be87aa80da3c3 (diff) | |
| download | seaweedfs-ca8cd631ff5b833feef665b610a24154b9156935.tar.xz seaweedfs-ca8cd631ff5b833feef665b610a24154b9156935.zip | |
Update admin.css
| -rw-r--r-- | weed/admin/static/css/admin.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/weed/admin/static/css/admin.css b/weed/admin/static/css/admin.css index 30ada7543..7b5c2eea2 100644 --- a/weed/admin/static/css/admin.css +++ b/weed/admin/static/css/admin.css @@ -1,5 +1,14 @@ /* SeaweedFS Dashboard Custom Styles */ +/* Link colors - muted */ +a { + color: #5b7c99; +} + +a:hover { + color: #4a6a88; +} + /* Sidebar Styles */ .sidebar { position: fixed; @@ -106,6 +115,37 @@ main { background-color: #7a7d85 !important; } +/* Muted card background colors for text-bg-* utility classes */ +.text-bg-primary, +.card.text-bg-primary { + background-color: #6b8caf !important; + color: #fff !important; +} + +.text-bg-success, +.card.text-bg-success { + background-color: #5a8a72 !important; + color: #fff !important; +} + +.text-bg-info, +.card.text-bg-info { + background-color: #6a9aaa !important; + color: #fff !important; +} + +.text-bg-warning, +.card.text-bg-warning { + background-color: #b8995e !important; + color: #fff !important; +} + +.text-bg-danger, +.card.text-bg-danger { + background-color: #a5615c !important; + color: #fff !important; +} + /* Progress bars */ .progress { background-color: #f8f9fc; |
