Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -156,26 +156,30 @@ custom_css = """
|
|
| 156 |
transition: all 0.2s ease-in-out !important;
|
| 157 |
}
|
| 158 |
|
| 159 |
-
/*
|
| 160 |
-
|
| 161 |
-
color: #f97316 !important;
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
border-bottom: 3px solid #f97316 !important; /* Garis bawah oranye tebal */
|
| 165 |
-
border-radius: 0 !important;
|
| 166 |
font-weight: 600 !important;
|
|
|
|
|
|
|
| 167 |
}
|
| 168 |
|
| 169 |
-
/*
|
| 170 |
-
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
background: transparent !important;
|
| 175 |
-
border: none !important;
|
| 176 |
-
border-bottom: 3px solid #f97316 !important; /* Garis bawah oranye tebal */
|
| 177 |
-
border-radius: 0 !important;
|
| 178 |
font-weight: 600 !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 179 |
}
|
| 180 |
|
| 181 |
/* EFEK HOVER (SAAT MOUSE DI ATAS TAB TIDAK AKTIF) */
|
|
|
|
| 156 |
transition: all 0.2s ease-in-out !important;
|
| 157 |
}
|
| 158 |
|
| 159 |
+
/* Gaya untuk tab aktif */
|
| 160 |
+
button[role="tab"][aria-selected="true"] {
|
| 161 |
+
color: #f97316 !important;
|
| 162 |
+
opacity: 1 !important;
|
| 163 |
+
filter: none !important;
|
|
|
|
|
|
|
| 164 |
font-weight: 600 !important;
|
| 165 |
+
border-bottom: 3px solid #f97316 !important;
|
| 166 |
+
background: transparent !important;
|
| 167 |
}
|
| 168 |
|
| 169 |
+
/* Gaya untuk tab tidak aktif */
|
| 170 |
+
button[role="tab"][aria-selected="false"] {
|
| 171 |
+
color: #4b5563 !important; /* Tailwind Gray 600 agar tetap terbaca */
|
| 172 |
+
opacity: 1 !important;
|
| 173 |
+
filter: none !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 174 |
font-weight: 600 !important;
|
| 175 |
+
border-bottom: 3px solid #e5e7eb !important;
|
| 176 |
+
background: transparent !important;
|
| 177 |
+
}
|
| 178 |
+
|
| 179 |
+
/* Hapus efek pudar dari emoji dan teks */
|
| 180 |
+
button[role="tab"][aria-selected="false"] * {
|
| 181 |
+
opacity: 1 !important;
|
| 182 |
+
filter: none !important;
|
| 183 |
}
|
| 184 |
|
| 185 |
/* EFEK HOVER (SAAT MOUSE DI ATAS TAB TIDAK AKTIF) */
|