Files
danbooru/app/javascript/src/styles/base/010_reset.scss
evazion a5b92dc9e6 css: fix disabled buttons appearing clickable.
Fix buttons appearing to be clickable when in the disabled state.

Submit buttons are normally disabled after a form is submitted. Before
these buttons would still look clickable. Now disabled buttons are greyed
out instead of looking the same as normal buttons.
2022-02-07 21:02:30 -06:00

37 lines
644 B
SCSS

html {
// Disable font boosting on mobile. By default, when desktop mode is enabled
// on mobile, mobile browsers will automagically increase the size of text.
// Usually they do so poorly, making things like headers smaller than body
// text, which breaks the layout.
text-size-adjust: none;
}
html, body {
height: 100%;
}
*, ::before, ::after {
box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, blockquote, dl, dd, menu, input {
margin: 0;
}
p, a, li {
line-height: 1.25em;
}
table {
border-collapse: collapse;
}
ol, ul {
padding: 0;
list-style: none;
}
a:focus {
outline: thin dotted;
}