diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-22 01:48:16 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-22 01:48:16 -0700 |
commit | 5d23a75c98e291fe10c7f84f927906d01e4ca098 (patch) | |
tree | 742161e941bfe0c73cac4ed47064c30dd6450390 /system/admin/static | |
parent | 893088e94206831a4b1a60ff48f2a89616fbc3bd (diff) |
adding initial support to edit and add admin users
Diffstat (limited to 'system/admin/static')
-rw-r--r-- | system/admin/static/dashboard/css/admin.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/admin/static/dashboard/css/admin.css b/system/admin/static/dashboard/css/admin.css index e23658e..7998579 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; |