aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm/ImageLabelHandler.scss
diff options
context:
space:
mode:
authoreleanor-park <113556828+eleanor-park@users.noreply.github.com>2024-07-11 11:48:34 -0400
committerGitHub <noreply@github.com>2024-07-11 11:48:34 -0400
commit4438e7fe202ff4091b26f073122e7866ec9abb46 (patch)
tree19895e85364e58246ec2869459e9d29f6621526e /src/client/views/collections/collectionFreeForm/ImageLabelHandler.scss
parent59ca918ea0918b41f1e2fa4b6acb8725ca9b44af (diff)
parentf33e6c9e191092e6050f980892b4404ff0d0a1f2 (diff)
Merge branch 'eleanor-gptdraw' into master
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/ImageLabelHandler.scss')
-rw-r--r--src/client/views/collections/collectionFreeForm/ImageLabelHandler.scss14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/client/views/collections/collectionFreeForm/ImageLabelHandler.scss b/src/client/views/collections/collectionFreeForm/ImageLabelHandler.scss
index e7413bf8e..9b8727e1a 100644
--- a/src/client/views/collections/collectionFreeForm/ImageLabelHandler.scss
+++ b/src/client/views/collections/collectionFreeForm/ImageLabelHandler.scss
@@ -42,3 +42,17 @@
}
}
}
+
+.complexity-slider {
+ width: 50%; /* Full-width */
+ height: 25px; /* Specified height */
+ background: #d3d3d3; /* Grey background */
+ outline: none; /* Remove outline */
+ opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
+ -webkit-transition: 0.2s; /* 0.2 seconds transition on hover */
+ transition: opacity 0.2s;
+
+ :hover {
+ opacity: 1; /* Fully shown on mouse-over */
+ }
+}