From 85e82e919e146454a8b3973ed4a2a69066b98aa3 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 9 Jun 2016 22:05:52 +0200 Subject: more style work --- view/theme/redbasic/css/style.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index ae2826516..6510fb525 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1138,10 +1138,20 @@ margin-right: 50px; list-style-type: none; } +.generic-icons { + font-size: 1.2em; + color: $toolicon_colour; + margin-right: 7px; +} + +.generic-icons:hover { + color: $toolicon_colour; +} + .admin-icons { font-size: 1.2em; color: $toolicon_colour; - margin-right: 10px; + margin-right: 7px; } a .drop-icons { -- cgit v1.2.3 From b6d425838f9025d8faf6dbfe90fce091d94b3cd7 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 13 Jun 2016 17:19:49 +0200 Subject: css fixes --- view/theme/redbasic/css/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 9e2a0431b..5768ccbd9 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1152,12 +1152,15 @@ margin-right: 50px; margin-right: 7px; } +.drop-icons, a .drop-icons { color: $toolicon_colour; font-size: 1.2em; text-decoration: none; + cursor: pointer; } - + +.drop-icons:hover, a .drop-icons:hover { color: #FF0000; } -- cgit v1.2.3 From 24569a18dbb423f47429905cb38282813b0a6462 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 14 Jun 2016 23:21:26 +0200 Subject: css fix --- view/css/widgets.css | 1 + 1 file changed, 1 insertion(+) (limited to 'view') diff --git a/view/css/widgets.css b/view/css/widgets.css index 38809896c..2a7c57f53 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -11,6 +11,7 @@ width: 100%; border-top-right-radius: 0px; border-bottom-right-radius: 0px; + border-right: 0px; } .tags { -- cgit v1.2.3 From 7a4efcf67f57d6437af5596ad99920c1793cf450 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 19 Jun 2016 20:34:38 +0200 Subject: return something so we can make a conclusion --- view/js/main.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index f279417d9..2caf5a1dd 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -941,6 +941,11 @@ function dropItem(url, object) { $('body').css('cursor', 'auto'); }); }); + return true; + + } + else { + return false; } } -- cgit v1.2.3