DmitrMakeev
commited on
Commit
•
eb09465
1
Parent(s):
840bfef
Update data_gc_tab.html
Browse files- data_gc_tab.html +24 -0
data_gc_tab.html
CHANGED
@@ -188,6 +188,30 @@
|
|
188 |
font-size: 16px;
|
189 |
color: #666;
|
190 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
</style>
|
192 |
</head>
|
193 |
|
|
|
188 |
font-size: 16px;
|
189 |
color: #666;
|
190 |
}
|
191 |
+
#filter-field, #filter-type, #filter-value {
|
192 |
+
padding: 10px;
|
193 |
+
font-size: 16px;
|
194 |
+
margin: 5px;
|
195 |
+
border-radius: 5px;
|
196 |
+
border: 1px solid #ccc;
|
197 |
+
background-color: #f0f0f0;
|
198 |
+
transition: border-color 0.3s ease, box-shadow 0.3s ease;
|
199 |
+
}
|
200 |
+
|
201 |
+
#filter-field:focus, #filter-type:focus, #filter-value:focus {
|
202 |
+
border-color: #4CAF50;
|
203 |
+
box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
|
204 |
+
}
|
205 |
+
|
206 |
+
#filter-field option, #filter-type option {
|
207 |
+
background-color: #f0f0f0;
|
208 |
+
color: #333;
|
209 |
+
}
|
210 |
+
|
211 |
+
#filter-field:hover, #filter-type:hover, #filter-value:hover {
|
212 |
+
border-color: #4CAF50;
|
213 |
+
}
|
214 |
+
|
215 |
</style>
|
216 |
</head>
|
217 |
|