aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/stylesheets
diff options
context:
space:
mode:
authorHygna <hygna@proton.me>2022-10-04 19:00:06 +0100
committerHygna <hygna@proton.me>2022-10-04 19:00:06 +0100
commitaa408a4c9b3fd61d355328490e20048f77d0c647 (patch)
tree841ec358fbab402b625b860d83432b10e2a1d32a /src/pages/stylesheets
parentupdated instances (diff)
parentDisplay if server is not found, made images in settings clickable (diff)
downloadlibredirect-aa408a4c9b3fd61d355328490e20048f77d0c647.zip
Merge branch 'optimizations'
Diffstat (limited to 'src/pages/stylesheets')
-rw-r--r--src/pages/stylesheets/styles.css13
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;
+}