diff options
author | Steve <nilslice@gmail.com> | 2016-10-19 00:09:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-19 00:09:28 -0700 |
commit | 0c77f3e89ac26913ce4b7de68fe9f5589ae77d8f (patch) | |
tree | 859e76f6d1335133ba8f62da72f068e79331880c /system/admin/static | |
parent | 2f3985491363dc0658ad8cf3a415a77c1825a67a (diff) | |
parent | c74bcc2ec1be59ded3634de1a871c73d9dffba98 (diff) |
Merge pull request #3 from bosssauce/ponzu-dev
[fundamental feature] Content type posts are sorted by time and cached in Admin, API coming soon.
Diffstat (limited to 'system/admin/static')
-rw-r--r-- | system/admin/static/dashboard/css/admin.css | 23 | ||||
-rw-r--r-- | system/admin/static/editor/js/materialNote.js | 4 |
2 files changed, 25 insertions, 2 deletions
diff --git a/system/admin/static/dashboard/css/admin.css b/system/admin/static/dashboard/css/admin.css index 7da4154..e23658e 100644 --- a/system/admin/static/dashboard/css/admin.css +++ b/system/admin/static/dashboard/css/admin.css @@ -158,6 +158,29 @@ footer p { margin-left: 10px; } +span.post-detail { + font-size: 11px; + color: #9e9e9e; + font-style: italic; +} + +.quick-delete-post { + display: none; +} + +li:hover .quick-delete-post { + display: inline-block; +} + +.quick-delete-post span { + cursor: pointer; + color: #F44336; + text-transform: uppercase; + font-size: 11px; + font-weight: bold; + margin-right: 20px; +} + /* OVERRIDE Bootstrap + Materialize conflicts */ .iso-texteditor.input-field label { diff --git a/system/admin/static/editor/js/materialNote.js b/system/admin/static/editor/js/materialNote.js index a036053..a43fc05 100644 --- a/system/admin/static/editor/js/materialNote.js +++ b/system/admin/static/editor/js/materialNote.js @@ -6108,7 +6108,7 @@ var dom = (function() { var hasDefaultFont = agent.isFontInstalled(options.defaultFontName); var defaultFontName = (hasDefaultFont) ? options.defaultFontName : realFontList[0]; var label = '<div class="note-current-fontname">' + defaultFontName + '</div>'; - console.log('editing right file...') + // console.log('editing right file...') return tplButton(label, { title: lang.font.name, className: 'note-fontname', @@ -6886,7 +6886,7 @@ var dom = (function() { var isFullscreen = $editor.hasClass('fullscreen'); if (isFullscreen) { - console.log("fullscreen"); + // console.log("fullscreen"); return false; } |