Subbu1304 commited on
Commit
de9e9a1
·
verified ·
1 Parent(s): e617f01

Update templates/menu.html

Browse files
Files changed (1) hide show
  1. 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: background-color 0.3s, color 0.3s;
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
- background-color: #ff7043;
664
- color: white;
665
  }
666
 
667
- /* Highlight selected button */
668
  .active-btn {
669
- background-color: #ff7043;
670
- color: white;
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 */