Minor CSS to improve Elementor's and WordPress' interfaces.
WP Elementor improvements by BloodyRain2k
Details
AuthorBloodyRain2k
LicenseNo License
CategoryAny site that uses default "{site}/wp-admin/" structure.
Created
Updated
Size758 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name WP Elementor improvements
@version 20230809.08.44
@namespace ?
==/UserStyle== */
@-moz-document regexp("https?://[^\\/]+/wp-admin/post\\.php\\?post=.+&action=elementor.*") {
/* more columns in less space */
.elementor-panel .elementor-responsive-panel {
grid-template-columns:repeat(auto-fill, minmax(min(100px, 50% - 5px), 1fr));
}
}
@-moz-document regexp("https?://[^\\/]+/wp-admin/edit\\.php\\?post_type=.+") {
tr.status-draft,
tr.status-private {
background-color: #f0a04010;
}
tr.status-draft:nth-child(2n+1),
tr.status-private:nth-child(2n+1) {
background-color: #f0a04018;
}
}
@-moz-document regexp(".+\\?elementor_library=.+") {
body.elementor-template-canvas {
background-color: #ccc;
}
}