jdan / 98.css

A design system for building faithful recreations of old UIs
https://jdan.github.io/98.css
MIT License
9.01k stars 299 forks source link

Couple of problems on Twitter iOS browser(probably it is safari, safari has same problems too) #5

Closed myhalici closed 4 years ago

myhalici commented 4 years ago

38734E8A-9073-4CC1-BE59-BE7D0C862F65 8F182BD9-63D2-4DFE-9644-B58AE6BC8DE7 3E58DB2F-1452-41F8-B84F-2453876F2142

myhalici commented 4 years ago

Dropdown has radius, Textbox not rendered like win98, Radio elements has strange bg when disabled and selected

hedgehog-online commented 4 years ago

It also looks like the title bar buttons are too far away from one another in Safari: image

jdan commented 4 years ago

Thanks for the detail on this one.

chadlavi commented 4 years ago

Reproducible in non-in-app Safari too

loama commented 4 years ago

textbox is fixed with

input[type="text"],
select,
textarea {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   border-radius: 0;
}

Already sent a PR

jdan commented 4 years ago

Looks like these have all been addressed <3. Left one straggler in #61. Thanks all!