Add green styling to secondary buttons and Visit Website button across the plugin

This commit is contained in:
Marcus Quinn
2025-03-24 22:00:08 +00:00
parent a4b594c0e2
commit 1eb732684b
6 changed files with 47 additions and 10 deletions

View File

@ -917,6 +917,23 @@ input:checked + .wp-toggle-slider:before {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}
/* Green Secondary Button Styles */
.green-button-secondary,
.green-visit-website {
transition: all 0.3s ease !important;
color: #219653 !important; /* Darker green */
border-color: #219653 !important; /* Darker green */
background-color: transparent !important;
}
.green-button-secondary:hover,
.green-visit-website:hover {
color: #1b7b42 !important; /* Even darker green on hover */
border-color: #1b7b42 !important; /* Even darker green on hover */
background-color: rgba(33, 150, 83, 0.05) !important; /* Very light green background */
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}
/* Read Me Tab Panel */
#readme .wpa-pro-plugins {
display: block;