Refactor: Enqueue assets, add docblocks, bump version to 1.5.0

This commit is contained in:
2025-04-11 22:48:47 +01:00
parent b883a222c0
commit 613c4f43b6
3 changed files with 439 additions and 302 deletions

View File

@ -0,0 +1,28 @@
.prc-notice {
border-left: 4px solid #ffba00;
background-color: #fff8e5;
padding: 10px 12px;
margin: 5px 0 15px;
font-size: 14px;
position: relative;
}
.prc-notice h3 {
margin-top: 0;
color: #826200;
}
.prc-notice::before {
content: "";
position: absolute;
top: -10px;
left: 20px;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #fff8e5;
}
/* Style for highlighting the missing plugin row */
tr.inactive.prc-highlight-missing {
background-color: #fff8e5 !important; /* Use !important to override default styles */
}