diff options
Diffstat (limited to 'res/admin.css')
-rw-r--r-- | res/admin.css | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/res/admin.css b/res/admin.css index beca966..d185acf 100644 --- a/res/admin.css +++ b/res/admin.css @@ -111,6 +111,7 @@ body{ width: 100%; position: absolute; bottom: 0; + left: 0; } #admin-paginate a { @@ -122,7 +123,7 @@ body{ text-align: center; line-height: 30px; float:left; - margin-right: 5px; + /*margin-right: 5px;*/ } #admin-paginate a:hover{ @@ -139,3 +140,44 @@ body{ display: block; } +#admin_tags{ + margin: 10px 0; +} + +.admin_tag { + display:inline-block; + height: 20px; + padding: 2px 5px; + box-sizing: border-box; + background: rgb(219, 219, 219); + border: 0px solid; + border-radius: 4px; + float:left; + margin-right: 10px; +} + +.admin_tag:hover { + background-color: black; + color:white; +} + +.admin_tag:hover a{ + color:white; +} + +.admin_tag a { + font-size: 12px; + text-decoration: none; + display: block; + float: left; +} + +.admin-tag-name{ + color:black; +} + +.admin-del-tag { + margin-left: 10px; + color:red; + font-weight: bold; +} |