diff options
author | Steve <nilslice@gmail.com> | 2016-10-24 16:13:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-24 16:13:04 -0700 |
commit | a18e708ffba7ea6fb1f4d418048165fbb5672c29 (patch) | |
tree | c21b72d8c168be1257a990c5d711206d3d2d3a15 /system/admin/static | |
parent | 737a3f796b87c0ee8236ef949fff81e2238fc071 (diff) | |
parent | 2fd308a18701d8d9da9f86480eabdc5c367e2f5c (diff) |
Merge pull request #8 from bosssauce/ponzu-dev
[core] User management
Diffstat (limited to 'system/admin/static')
-rw-r--r-- | system/admin/static/dashboard/css/admin.css | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/system/admin/static/dashboard/css/admin.css b/system/admin/static/dashboard/css/admin.css index e23658e..7acffab 100644 --- a/system/admin/static/dashboard/css/admin.css +++ b/system/admin/static/dashboard/css/admin.css @@ -44,7 +44,7 @@ padding: 0px !important; } -ul.posts li { +ul.posts li, ul.users li { display: block; margin: 0 0 20px 0; padding: 0 0 20px 0 !important; @@ -164,15 +164,15 @@ span.post-detail { font-style: italic; } -.quick-delete-post { +.quick-delete-post, .delete-user { display: none; } -li:hover .quick-delete-post { +li:hover .quick-delete-post, li:hover .delete-user { display: inline-block; } -.quick-delete-post span { +.quick-delete-post span, .delete-user span { cursor: pointer; color: #F44336; text-transform: uppercase; @@ -181,6 +181,10 @@ li:hover .quick-delete-post { margin-right: 20px; } +.user-management { + padding: 20px; +} + /* OVERRIDE Bootstrap + Materialize conflicts */ .iso-texteditor.input-field label { |