X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9ac57b0bc6cb5d90da57c943df489401c63b7a7f..2128e03298979fd9aa01365464c7390be5a90c8f:/apps/workbench/app/assets/stylesheets/application.css.scss diff --git a/apps/workbench/app/assets/stylesheets/application.css.scss b/apps/workbench/app/assets/stylesheets/application.css.scss index bab72893bd..8822d5c0a0 100644 --- a/apps/workbench/app/assets/stylesheets/application.css.scss +++ b/apps/workbench/app/assets/stylesheets/application.css.scss @@ -1,3 +1,7 @@ +// Copyright (C) The Arvados Authors. All rights reserved. +// +// SPDX-License-Identifier: AGPL-3.0 + /* * This is a manifest file that'll be compiled into application.css, which will include all the files * listed below. @@ -7,15 +11,15 @@ * * You're free to add application-wide styles to this file and they'll appear at the top of the * compiled file, but it's generally better to create a new file per style scope. + * + *= require_self + *= require bootstrap + *= require bootstrap3-editable/bootstrap-editable + *= require morris + *= require awesomplete + *= require_tree . */ -@import 'bootstrap-sprockets'; -@import 'bootstrap'; -@import 'bootstrap3-editable/bootstrap-editable'; - -//= require morris -//= require_tree . - .contain-align-left { text-align: left; } @@ -200,6 +204,10 @@ li.notification { padding: 10px; } +td.trash-project-msg { + white-space: normal; +} + // See HeaderRowFixer in application.js table.table-fixed-header-row { width: 100%; @@ -220,6 +228,10 @@ table.table-fixed-header-row tbody { overflow-y: auto; } +.dropdown-menu a { + cursor: pointer; +} + .row-fill-height, .row-fill-height>div[class*='col-'] { display: flex; } @@ -309,3 +321,33 @@ ul.nav.nav-tabs { { width: 98%!important; } + +/* Needed for awesomplete to play nice with bootstrap */ +div.awesomplete { + display: block; +} +/* Makes awesomplete listings to be scrollable */ +.awesomplete > ul { + max-height: 410px; + overflow-y: auto; +} + +.dropdown-menu > li > form > button { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.428571429; + color: #333333; + white-space: nowrap; + cursor: pointer; + text-decoration: none; + background: transparent; + border-style: none; +} + +.dropdown-menu > li > form > button:hover { + text-decoration: none; + color: #262626; + background-color: #f5f5f5; +}