20032: Fix unnecessary race in test.
[arvados.git] / apps / workbench / app / assets / stylesheets / collections.css.scss
index 2edd683511408271e9cb442566c4b3bc51a8fdf6..c5cc699b3311c0ceac8aad4b91bacfed14471b6a 100644 (file)
@@ -1,3 +1,55 @@
+// Copyright (C) The Arvados Authors. All rights reserved.
+//
+// SPDX-License-Identifier: AGPL-3.0
+
+/* Style for _show_files tree view. */
+
+ul#collection_files {
+  padding: 0 .5em;
+}
+
+ul.collection_files {
+  line-height: 2.5em;
+  list-style-type: none;
+  padding-left: 2.3em;
+}
+
+ul.collection_files li {
+  clear: both;
+}
+
+.collection_files_row {
+  padding: 1px;  /* Replaced by border for :hover */
+}
+
+.collection_files_row:hover {
+  background-color: #D9EDF7;
+  padding: 0px;
+  border: 1px solid #BCE8F1;
+  border-radius: 3px;
+}
+
+.collection_files_inline {
+  clear: both;
+  width: 80%;
+  margin: 0 3em;
+}
+
+.collection_files_inline img {
+  max-height: 15em;
+}
+
+.collection_files_name {
+  padding-left: .5em;
+  white-space: nowrap;
+  overflow: hidden;
+  text-overflow: ellipsis;
+}
+
+.collection_files_name i.fa-fw:first-child {
+  width: 1.6em;
+}
+
 /*
   "active" and "inactive" colors are too similar for a toggle switch
   in the default bootstrap theme.
 $inactive-bg: #5bc0de;
 $active-bg: #39b3d7;
 
-.btn-group[data-toggle=buttons] label {
+.btn-group.toggle-persist .btn {
+    width: 6em;
+}
+.btn-group.toggle-persist .btn-info {
     background-color: lighten($inactive-bg, 15%);
 }
 
-.btn-group[data-toggle=buttons] label.active {
+.btn-group.toggle-persist .btn-info.active {
     background-color: $active-bg;
-    opacity: 1;
+}
+
+.lock-collection-btn {
+    display: inline-block;
+    padding: .5em 2em;
+    margin: 0 1em;
+}
+
+.collection-tag-field * {
+  display: inline-block;
 }