Cleanup CSS and JS

Improve app loading error
This commit is contained in:
djmaze 2021-08-18 15:36:33 +02:00
parent 2c69da61f0
commit 7e43bfc6b0
3 changed files with 14 additions and 29 deletions

View file

@ -31,10 +31,7 @@ sup {
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
button {
-webkit-appearance: button;
}
@ -42,10 +39,7 @@ button,
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
button::-moz-focus-inner {
border-style: none;
padding: 0;
}
@ -54,10 +48,7 @@ button::-moz-focus-inner,
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
button:-moz-focusring {
outline: 1px dotted ButtonText;
}
@ -65,8 +56,8 @@ button:-moz-focusring,
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
@ -75,7 +66,7 @@ button:-moz-focusring,
* 2. Correct the outline style in Safari.
*/
[type="search"] {
input[type="search"] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
@ -84,7 +75,7 @@ button:-moz-focusring,
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-decoration {
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}