aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm/ImageLabelHandler.scss
diff options
context:
space:
mode:
authoreleanor-park <eleanor_park@brown.edu>2024-06-20 16:42:44 -0400
committereleanor-park <eleanor_park@brown.edu>2024-06-20 16:42:44 -0400
commit3d14f06ad1297a6adc851945804211efb9dff7ff (patch)
treee48202e43999230b5e202af53d31df9aaf1901c7 /src/client/views/collections/collectionFreeForm/ImageLabelHandler.scss
parentbd64bbd29a38ae4979b2165d1fa9b9c76c2600d5 (diff)
user customization added
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 */
+ }
+}