Initial commit

This commit is contained in:
ayakael 2025-03-31 12:02:18 -04:00
commit 57a2089dd9
No known key found for this signature in database
GPG key ID: 70904985A46AF9AF
1541 changed files with 595392 additions and 0 deletions

View file

@ -0,0 +1,10 @@
/**
* Featured Image Display
*
* Fixes the 0px featured image on edit screen
* WooCommerce Product, Sensei Course
*/
body #set-post-thumbnail,
body #postimagediv .inside img[src$=".svg"] {
width: 100%;
}

View file

@ -0,0 +1,6 @@
/**
* Hide advanced features
*/
.svgs-advanced {
display: none;
}

View file

@ -0,0 +1,45 @@
/**
* Settings Page
*/
.svgs-version {
font-size: 10px;
margin-left: 7px;
}
.postbox .inside a {
text-decoration: none;
}
h3 {
padding: 0 12px;
}
.help-tab-content h3 {
padding: 0;
}
h3.inner-title {
padding: 0;
font-size: 1.2em;
}
.metabox-holder {
.postbox>h3,
.stuffbox>h3,
h2.hndle,
h3.hndle {
font-size: 1.3em;
font-weight: 600;
}
}
.shortpixel-logo img {
position: absolute;
right: 10px;
bottom: 0;
width: 140px;
}
/**
* Media Library
*/
table.media .column-title .media-icon img {
width: 60px;
// height: 60px;
}

View file

@ -0,0 +1,17 @@
// .attachment img[src$=".svg"],
// .widget_media_image img[src$=".svg"] {
// width: 100%;
// }
.attachment,
.widget_media_image {
// img[src$=".svg"] {
// width: 100%;
// }
svg {
max-width: 100%;
height: auto;
}
}