X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a59152e34814f453a7380e68a55534e2f8922d57..47e59a35d5ed9b2cdb052894d741972324058505:/apps/workbench/app/assets/stylesheets/collections.css.scss diff --git a/apps/workbench/app/assets/stylesheets/collections.css.scss b/apps/workbench/app/assets/stylesheets/collections.css.scss index c21e96d80f..c5cc699b33 100644 --- a/apps/workbench/app/assets/stylesheets/collections.css.scss +++ b/apps/workbench/app/assets/stylesheets/collections.css.scss @@ -1,3 +1,80 @@ -// 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/ +// 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.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; +} + +.lock-collection-btn { + display: inline-block; + padding: .5em 2em; + margin: 0 1em; +} + +.collection-tag-field * { + display: inline-block; +}