Commit def7af7fa8e53cfeef2f5eb886137c8a050a8e91

Authored by Marcel Kawski
1 parent c8bfdbf1

Edit navbar anchors font color when hover

collector/storage/static/storage/css/document.css
... ... @@ -271,6 +271,7 @@ tr.item textarea {
271 271 :root {
272 272 --table-color: #7195c3;
273 273 --navbar-font-color: #0030a7;
  274 + --navbar-hover-font-color: #2857b9;
274 275 --correct-color: green;
275 276 --in-correction-color: #c19015;
276 277 --to-correct-color: #d90000;
... ... @@ -292,7 +293,7 @@ tr.item textarea {
292 293 }
293 294  
294 295 .main-navbar a:hover {
295   - color: var(--navbar-font-color);
  296 + color: var(--navbar-hover-font-color);
296 297 }
297 298  
298 299 .main-brand {
... ... @@ -416,3 +417,7 @@ ul.legend {
416 417 width: 50%;
417 418 text-align: center;
418 419 }
  420 +
  421 +.navbar-brand:hover, .nav-item:hover {
  422 + color: #0a79df;
  423 +}
... ...