Update Go Pro buttons to use darker green colors with consistent hover states

This commit is contained in:
Marcus Quinn
2025-03-24 21:52:39 +00:00
parent 5f90586044
commit a4b594c0e2
3 changed files with 7 additions and 6 deletions

View File

@ -903,16 +903,17 @@ input:checked + .wp-toggle-slider:before {
.wpa-pro-plugin .button-group .button.button-primary,
.go-pro-button {
transition: all 0.3s ease !important;
background-color: #27ae60 !important;
border-color: #219653 !important;
background-color: #219653 !important; /* Darker green */
border-color: #1e874b !important; /* Even darker for border */
color: #ffffff !important;
}
.button.button-primary[style*="background-color: #27ae60"]:hover,
.theme-install-actions .button.button-primary:hover,
.wpa-pro-plugin .button-group .button.button-primary:hover,
.go-pro-button:hover {
background-color: #219653 !important;
border-color: #1e874b !important;
background-color: #1b7b42 !important; /* Even darker green on hover */
border-color: #186a39 !important; /* Darkest for border */
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}