mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 22:40:39 +02:00
[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
This commit is contained in:
committed by
Vjacheslav Trushkin
parent
2f1cf0d287
commit
dffe790f19
@@ -11,7 +11,6 @@ fieldset {
|
|||||||
|
|
||||||
input {
|
input {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
cursor: pointer;
|
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
padding: 0 3px;
|
padding: 0 3px;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
@@ -279,7 +278,6 @@ fieldset.submit-buttons input {
|
|||||||
.inputbox {
|
.inputbox {
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
cursor: text;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputbox:hover, .inputbox:focus {
|
.inputbox:hover, .inputbox:focus {
|
||||||
@@ -337,6 +335,10 @@ input.button3 {
|
|||||||
font-variant: small-caps;
|
font-variant: small-caps;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type="button"], input[type="submit"], input[type="reset"] {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
/* Alternative button */
|
/* Alternative button */
|
||||||
a.button2, input.button2, input.button3 {
|
a.button2, input.button2, input.button3 {
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
|
Reference in New Issue
Block a user