diff options
author | Simon Brazell <simon@brazell.com.au> | 2020-03-30 13:49:54 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-30 13:49:54 +1100 |
commit | 1c96a3354a9cf60eeb744fb520c2451fbc88730a (patch) | |
tree | e139c3968c49cc465b25578de6e7c97e741a0060 /pages | |
parent | Proactively remove Twitter service worker (diff) | |
parent | Fix overflowing inputs on some platforms. (diff) | |
download | libredirect-1c96a3354a9cf60eeb744fb520c2451fbc88730a.zip |
Merge pull request #29 from emilio/popup
Fix overflowing inputs on some platforms.
Diffstat (limited to 'pages')
-rw-r--r-- | pages/styles.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pages/styles.css b/pages/styles.css index a68d9bbc..003c32e5 100644 --- a/pages/styles.css +++ b/pages/styles.css @@ -86,11 +86,19 @@ footer a.button { input[type=url], select { width: 100%; + box-sizing: border-box; margin-bottom: 5px; } +input[type=url] { + padding: 1px 2px; +} + input[type=checkbox] { opacity: 0; + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; } .checkbox-label { |