Fix text overlap on desktop screens by increasing content margins and button width

This commit is contained in:
Marcus Quinn
2025-03-25 00:41:58 +00:00
parent 5f45ea85fa
commit 21b0ef599d
2 changed files with 26 additions and 9 deletions

View File

@ -1074,7 +1074,7 @@ body.wp-admin .button.pricing-button:hover,
#recommended .plugin-card .name,
#recommended .plugin-card .desc {
margin-left: 84px;
margin-right: 130px; /* Increase right margin to prevent text from going behind buttons */
margin-right: 150px; /* Increase right margin to prevent text going behind buttons */
}
#recommended .plugin-card .name h3 {
@ -1094,14 +1094,14 @@ body.wp-admin .button.pricing-button:hover,
#recommended .plugin-card .action-links {
position: absolute;
top: 0;
top: 24px;
right: 0;
width: 120px;
width: 140px; /* Slightly increase width for buttons */
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 8px;
padding-right: 20px; /* Add padding to give text more space */
padding-right: 20px; /* Keep padding to give text more space */
}
#recommended .plugin-card .plugin-action-buttons {
@ -1373,3 +1373,11 @@ body.wp-admin .button.pricing-button:hover,
margin-left: 0 !important;
list-style-type: disc !important;
}
@media screen and (min-width: 1100px) {
/* Ensure text doesn't overlap buttons on wide screens */
#recommended .plugin-card .name,
#recommended .plugin-card .desc {
margin-right: 160px;
}
}

View File

@ -81,7 +81,7 @@
/* Name and description positioning - improved text wrapping */
.name.column-name {
margin: 0 0 12px 84px !important;
margin-right: 130px !important; /* Increased to prevent text going behind buttons */
margin-right: 150px !important; /* Increased to prevent text going behind buttons */
}
.name.column-name h3 {
@ -95,7 +95,7 @@
.desc.column-description {
margin: 0 0 16px 84px !important;
margin-right: 130px !important; /* Increased to prevent text going behind buttons */
margin-right: 150px !important; /* Increased to prevent text going behind buttons */
font-size: 14px !important;
line-height: 1.6 !important;
color: #50575e !important;
@ -105,13 +105,13 @@
.action-links {
position: absolute !important;
top: 24px !important;
right: 24px !important;
width: 120px !important;
right: 0 !important;
width: 140px !important; /* Increased width for buttons */
display: flex !important;
flex-direction: column !important;
align-items: flex-end !important;
gap: 8px !important;
padding-right: 20px !important; /* Added padding to give text more space */
padding-right: 20px !important; /* Keep padding to give text more space */
}
.plugin-action-buttons {
@ -921,3 +921,12 @@ body.wp-admin .plugin-card-bottom .compatibility-untested *,
.theme-browser .theme:nth-child(2n) {
margin-right: 0;
}
/* Additional rule for wider screens */
@media screen and (min-width: 1100px) {
/* Ensure text doesn't overlap buttons on wide screens */
.name.column-name,
.desc.column-description {
margin-right: 160px !important;
}
}