From abcf0cf5507633e22df6c862dccb947c8ddb0cae Mon Sep 17 00:00:00 2001 From: Aron Carroll Date: Mon, 30 Apr 2012 15:21:30 +0100 Subject: [PATCH] [2204] Tidy up delete buttons Now square with same border on all sides plus they only show on hover. --- ckan/public/css/style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ckan/public/css/style.css b/ckan/public/css/style.css index e63766e536f..6a3e840c22b 100644 --- a/ckan/public/css/style.css +++ b/ckan/public/css/style.css @@ -1447,6 +1447,19 @@ body.editresources .error-explanation { height: auto; } +.thumbnail .close { + padding-bottom: 7px; + padding-top: 2px; + position: relative; + top: -1px; + right: -1px; + display: none; +} + +.thumbnail:hover .close { + display: block; +} + .thumbnail .empty { color: #ccc; }