Spaces:
Sleeping
Sleeping
Update templates/menu.html
Browse files- templates/menu.html +6 -7
templates/menu.html
CHANGED
@@ -647,7 +647,7 @@ form-check-input addon-option{
|
|
647 |
background-color: white;
|
648 |
font-size: 16px;
|
649 |
cursor: pointer;
|
650 |
-
transition:
|
651 |
width: 120px; /* Ensures buttons are of equal width */
|
652 |
text-align: center;
|
653 |
}
|
@@ -660,15 +660,14 @@ form-check-input addon-option{
|
|
660 |
|
661 |
/* Hover effect for buttons */
|
662 |
.category-btn:hover {
|
663 |
-
|
664 |
-
color:
|
665 |
}
|
666 |
|
667 |
-
/* Highlight selected button */
|
668 |
.active-btn {
|
669 |
-
|
670 |
-
color:
|
671 |
-
border: 2px solid #ff7043;
|
672 |
}
|
673 |
|
674 |
/* Example icons from Font Awesome, adjust based on your icon class */
|
|
|
647 |
background-color: white;
|
648 |
font-size: 16px;
|
649 |
cursor: pointer;
|
650 |
+
transition: color 0.3s, border 0.3s;
|
651 |
width: 120px; /* Ensures buttons are of equal width */
|
652 |
text-align: center;
|
653 |
}
|
|
|
660 |
|
661 |
/* Hover effect for buttons */
|
662 |
.category-btn:hover {
|
663 |
+
border-color: #ff7043; /* Change border color on hover */
|
664 |
+
color: #ff7043; /* Change text color on hover */
|
665 |
}
|
666 |
|
667 |
+
/* Highlight selected button (no background color change) */
|
668 |
.active-btn {
|
669 |
+
border-color: #ff7043; /* Border color remains orange */
|
670 |
+
color: #ff7043; /* Text color changes to orange */
|
|
|
671 |
}
|
672 |
|
673 |
/* Example icons from Font Awesome, adjust based on your icon class */
|