Add assets and wiki directories
This commit is contained in:
21
assets/css/admin.css
Normal file
21
assets/css/admin.css
Normal 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
12
assets/js/admin.js
Normal file
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* Admin scripts for the plugin
|
||||
*/
|
||||
|
||||
(function($) {
|
||||
'use strict';
|
||||
|
||||
$(document).ready(function() {
|
||||
// Plugin admin functionality will go here
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user