diff --git a/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.css b/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.css index 11fc5a0..7a027c8 100755 --- a/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.css +++ b/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.css @@ -604,3 +604,26 @@ button.ready-to-print { min-width: 60px; font-weight: bold; } +/* BOX Button Styling */ +.btn.three { + background-color: #165d9b; /* Bootstrap secondary */ + color: #fff; + /* border: 1px solid transparent; */ +} + +/* Hover Style */ +.btn.three:hover:not(:disabled) { + background-color: #5a6268; /* Darker secondary on hover */ + border-color: #545b62; + cursor: pointer; + box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); +} + +/* Disabled Style */ +.btn.three:disabled { + background-color: #d6d6d6; + color: #888; + cursor: not-allowed; + border-color: #ccc; + opacity: 0.7; +} diff --git a/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.html b/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.html index b04639f..c19f009 100755 --- a/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.html +++ b/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.html @@ -9,7 +9,14 @@