fix: improve tab style

This commit is contained in:
2025-08-25 08:47:05 +02:00
parent 1edca872f9
commit 0538add358
2 changed files with 14 additions and 9 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 KiB

After

Width:  |  Height:  |  Size: 143 KiB

View File

@@ -286,19 +286,22 @@ p {
/* Tab Styles */ /* Tab Styles */
.tabs-container { .tabs-container {
margin-top: 1rem; margin-top: 1rem;
background: rgba(255, 255, 255, 0.03);
border-radius: 8px;
padding: 0.5rem;
} }
.tabs-header { .tabs-header {
display: flex; display: flex;
border-bottom: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.15);
margin-bottom: 1rem; margin-bottom: 1rem;
gap: 0.5rem; gap: 0.5rem;
} }
.tab-button { .tab-button {
background: rgba(0, 0, 0, 0.3); background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15);
color: rgba(255, 255, 255, 0.7); color: rgba(255, 255, 255, 0.8);
padding: 0.5rem 1rem; padding: 0.5rem 1rem;
border-radius: 8px 8px 0 0; border-radius: 8px 8px 0 0;
cursor: pointer; cursor: pointer;
@@ -308,14 +311,16 @@ p {
} }
.tab-button:hover { .tab-button:hover {
background: rgba(0, 0, 0, 0.5); background: rgba(255, 255, 255, 0.15);
color: rgba(255, 255, 255, 0.9); color: rgba(255, 255, 255, 0.95);
border-color: rgba(255, 255, 255, 0.25);
} }
.tab-button.active { .tab-button.active {
background: rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.2);
color: #ecf0f1; color: #ffffff;
border-color: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.3);
box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
} }
.tab-content { .tab-content {