diff options
author | Edward <contact@langdon.slmail.me> | 2022-10-09 19:04:15 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-09 19:04:15 +0530 |
commit | 26abc5d2c9f671d359be8a7bf503632242abb2c2 (patch) | |
tree | ab05b3b2906fbc8423eea3abe1bd8efeccefa439 /src/pages/stylesheets/styles.css | |
parent | Update messages.json (diff) | |
parent | Merge pull request #404 from marcelocripe/patch-1 (diff) | |
download | libredirect-26abc5d2c9f671d359be8a7bf503632242abb2c2.zip |
Merge branch 'master' into patch-3
Diffstat (limited to 'src/pages/stylesheets/styles.css')
-rw-r--r-- | src/pages/stylesheets/styles.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/pages/stylesheets/styles.css b/src/pages/stylesheets/styles.css index 06abab3a..072b5d5b 100644 --- a/src/pages/stylesheets/styles.css +++ b/src/pages/stylesheets/styles.css @@ -80,11 +80,13 @@ select { margin: 0; max-width: 500px; border-radius: 3px; + cursor: pointer; } input[type="url"], input[type="text"] { width: 400px; + cursor: text; } input:invalid { @@ -141,6 +143,7 @@ input[type="range"] { height: 7px; border-radius: 50px; background: var(--text); + cursor: ew-resize; } input[type="range"]:hover { @@ -464,3 +467,18 @@ div.about > div { div.about h4 { width: auto; } + +select:disabled { + opacity: 0.6; + cursor: not-allowed; +} + +input:disabled { + opacity: 0.6; + cursor: not-allowed; +} + +div.about a { + width: 500px; + display: inline-block; +} |