diff options
author | plegall <plg@piwigo.org> | 2005-06-30 21:00:07 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-06-30 21:00:07 +0000 |
commit | b4458ec2dbcca66fbbc6e126e9f24fe076c9f5a7 (patch) | |
tree | 3161e166c832fb493c5b639d13308913eed77f45 /template/default/default.css | |
parent | 3c2b8d230e0ca85bf7fc22124769c131cc47ac80 (diff) |
- categories management : new display with icon for actions (delete,
sub-categories, elements, edit, jump to, permissions)
- categories management : semantic HTML layout (using common lists)
- categories management : new way to order categories of the same level : a
text field let the admin reorder all categories at once.
git-svn-id: http://piwigo.org/svn/trunk@798 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/default/default.css')
-rw-r--r-- | template/default/default.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/template/default/default.css b/template/default/default.css index e8e63c8a5..f02f33ce3 100644 --- a/template/default/default.css +++ b/template/default/default.css @@ -383,6 +383,35 @@ label:hover { } /** + * Categories management + */ + +form#categoryOrdering>ul { + list-style: none; + padding: 0; + margin: 0; +} + +form#categoryOrdering>ul>li { + border: 1px solid grey; + padding: 0px 5px; + margin-bottom: 5px; +} + +form#categoryOrdering ul.categoryActions { + float: right; + margin-top: 5px; +} + +ul.categoryActions>li { + display: inline; +} + +ul.categoryActions a img { + border: none; +} + +/** * Errors box in administration */ #errors { |