2798: Merged branch with code to read environment variables with branch working on...
[arvados.git] / apps / workbench / app / assets / stylesheets / collections.css.scss
index c21e96d80fa86f8f3cc24179dfd31afb81f53578..24b08fa03ce9fbd039131a04c998e1c760cb84ec 100644 (file)
@@ -1,3 +1,18 @@
-// Place all the styles related to the Collections controller here.
-// They will automatically be included in application.css.
-// You can use Sass (SCSS) here: http://sass-lang.com/
+/*
+  "active" and "inactive" colors are too similar for a toggle switch
+  in the default bootstrap theme.
+  */
+
+$inactive-bg: #5bc0de;
+$active-bg: #39b3d7;
+
+.btn-group.toggle-persist .btn {
+    width: 6em;
+}
+.btn-group.toggle-persist .btn-info {
+    background-color: lighten($inactive-bg, 15%);
+}
+
+.btn-group.toggle-persist .btn-info.active {
+    background-color: $active-bg;
+}