UI improvements: added Kadence theme buttons, fixed panel spacing, and added consistent styling across panels

This commit is contained in:
Marcus Quinn
2025-03-17 01:37:16 +00:00
parent 8afd7958d7
commit 3a6a89d2e8
4 changed files with 30 additions and 6 deletions

View File

@ -503,10 +503,16 @@ input:checked + .wp-toggle-slider:before {
position: relative;
background: #fff;
border: 1px solid #ddd;
border-radius: 3px;
box-shadow: 0 1px 1px rgba(0,0,0,.04);
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
margin-bottom: 20px;
overflow: hidden;
transition: all 0.2s ease;
}
.theme-card:hover {
border-color: #2271b1;
box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.theme-image {

View File

@ -428,11 +428,17 @@ body.wp-admin .plugin-card-bottom .compatibility-untested *,
padding: 0 10px;
background: #fff;
border: 1px solid #dcdcde;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
position: relative;
box-sizing: border-box;
width: 100%;
border-radius: 3px;
border-radius: 8px;
transition: all 0.2s ease;
}
.wp-filter:hover {
border-color: #2271b1;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.filter-links {