Add assets and wiki directories

This commit is contained in:
2025-04-18 17:56:38 +01:00
parent 0874c4f59e
commit 6784ef4824
9 changed files with 617 additions and 0 deletions

21
assets/css/admin.css Normal file
View File

@@ -0,0 +1,21 @@
/**
* Admin styles for the plugin
*/
.wpst-admin-container {
padding: 20px;
background: #fff;
border: 1px solid #ccd0d4;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
margin-top: 20px;
}
.wpst-admin-header {
margin-bottom: 20px;
border-bottom: 1px solid #eee;
padding-bottom: 20px;
}
.wpst-admin-header h1 {
margin-top: 0;
}

12
assets/js/admin.js Normal file
View File

@@ -0,0 +1,12 @@
/**
* Admin scripts for the plugin
*/
(function($) {
'use strict';
$(document).ready(function() {
// Plugin admin functionality will go here
});
})(jQuery);