diff options
author | Hygna <hygna@proton.me> | 2022-10-04 19:00:06 +0100 |
---|---|---|
committer | Hygna <hygna@proton.me> | 2022-10-04 19:00:06 +0100 |
commit | aa408a4c9b3fd61d355328490e20048f77d0c647 (patch) | |
tree | 841ec358fbab402b625b860d83432b10e2a1d32a /src/pages/stylesheets | |
parent | updated instances (diff) | |
parent | Display if server is not found, made images in settings clickable (diff) | |
download | libredirect-aa408a4c9b3fd61d355328490e20048f77d0c647.zip |
Merge branch 'optimizations'
Diffstat (limited to 'src/pages/stylesheets')
-rw-r--r-- | src/pages/stylesheets/styles.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/pages/stylesheets/styles.css b/src/pages/stylesheets/styles.css index 06abab3a..eb599656 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,13 @@ div.about > div { div.about h4 { width: auto; } + +select:disabled { + opacity: 0.6; + cursor: not-allowed; +} + +input:disabled { + opacity: 0.6; + cursor: not-allowed; +} |