Closed
Bug 1294593
Opened 8 years ago
Closed 8 years ago
CSS override for input::-webkit-inner-spin-button does not work anymore
Categories
(Core :: CSS Parsing and Computation, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: richardkbr, Unassigned)
References
()
Details
Attachments
(1 file)
109.54 KB,
image/png
|
Details |
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36
Steps to reproduce:
Access page
https://developer.mozilla.org/en-US/docs/Web/CSS/::-webkit-inner-spin-button
Actual results:
spin button shows
Expected results:
do not show spin button
Reporter | ||
Updated•8 years ago
|
Severity: normal → minor
OS: Unspecified → Windows 10
Hardware: Unspecified → x86_64
Comment 1•8 years ago
|
||
was it working at some point?
If so, which version do you refer?
Flags: needinfo?(richardkbr)
Reporter | ||
Comment 2•8 years ago
|
||
I was running ok on other versions (i don't remember what). But now on 47-48 doesn't work anymore. Spinner shows even with override to hide spinner.
Reporter | ||
Comment 3•8 years ago
|
||
Look at screenshot in first post.
Comment 4•8 years ago
|
||
If you mean Firefox 28 or older, type="number" wasn't supported at that point and the spinner wasn't shown.
Reporter | ||
Comment 5•8 years ago
|
||
Ok Tooru, but now.... even with override to not display the spinners, they are showed! This method for hide spinner are listed on "https://developer.mozilla.org/en-US/docs/Web/CSS/::-webkit-inner-spin-button" and does not work anymore.
Reporter | ||
Comment 6•8 years ago
|
||
Have you firefox installed? Try to enter in link above. The spinner is visible when need to be hide.
Comment 7•8 years ago
|
||
Those selector and rule are specific to WebKit/Blink, and have no effect on other browsers.
Comment 8•8 years ago
|
||
anyway, moving to Core - CSS Parsing and Computation, as this might be a part of bug 1170789.
(not sure how important this is tho)
QA Whiteboard: [bugday-20160815]
Component: Untriaged → CSS Parsing and Computation
Flags: needinfo?(richardkbr)
Product: Firefox → Core
See Also: → 1170789
Comment 9•8 years ago
|
||
Given the selector in the screenshot, this is likely invalid -- we've never supported ::-webkit-inner-spin-button (and a -moz-prefixed rule inside that selector won't ever work).
If you'd like to hide the number controls, you can do something like this:
[type=number] {
-moz-appearance: textfield;
}
Status: UNCONFIRMED → RESOLVED
Closed: 8 years ago
Resolution: --- → INVALID
Comment 10•7 years ago
|
||
Found a site using this
https://webcompat.com/issues/9886
The fix is working.
input.qty-remove-defaults { -moz-appearance: textfield;}
QA Whiteboard: [bugday-20160815] → [bugday-20160815] [webcompat]
Flags: webcompat?
See Also: → https://webcompat.com/issues/9886
You need to log in
before you can comment on or make changes to this bug.
Description
•