From dffe790f19a17e45b25ab44391d14ca8b36ba420 Mon Sep 17 00:00:00 2001 From: erangamapa Date: Sun, 19 May 2013 19:10:20 +0530 Subject: [PATCH 1/2] [ticket/11030] Fixing cursor appearing in file upload browse button. Removed unnecessary cursor CSS properties added for form inputs in both acp and prosilver styles. Added cursor:pointer property only for buttons. PHPBB3-11030 --- phpBB/styles/prosilver/theme/forms.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css index f128450955..dd0ef0e50e 100644 --- a/phpBB/styles/prosilver/theme/forms.css +++ b/phpBB/styles/prosilver/theme/forms.css @@ -11,7 +11,6 @@ fieldset { input { font-weight: normal; - cursor: pointer; vertical-align: middle; padding: 0 3px; font-size: 1em; @@ -279,7 +278,6 @@ fieldset.submit-buttons input { .inputbox { border: 1px solid transparent; padding: 2px; - cursor: text; } .inputbox:hover, .inputbox:focus { @@ -337,6 +335,10 @@ input.button3 { font-variant: small-caps; } +input[type="button"], input[type="submit"], input[type="reset"] { + cursor: pointer; +} + /* Alternative button */ a.button2, input.button2, input.button3 { border: 1px solid transparent; From 7ce34f3f909a9b19ab98d453af411d5be1c644bc Mon Sep 17 00:00:00 2001 From: Vjacheslav Trushkin Date: Wed, 30 Oct 2013 11:51:16 +0200 Subject: [PATCH 2/2] [ticket/11030] Fix cursor for checkboxes PHPBB3-11030 --- phpBB/styles/prosilver/theme/forms.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css index dd0ef0e50e..1ee364ce93 100644 --- a/phpBB/styles/prosilver/theme/forms.css +++ b/phpBB/styles/prosilver/theme/forms.css @@ -335,7 +335,7 @@ input.button3 { font-variant: small-caps; } -input[type="button"], input[type="submit"], input[type="reset"] { +input[type="button"], input[type="submit"], input[type="reset"], input[type="checkbox"], input[type="radio"] { cursor: pointer; }