2872: Hide unnecessary scroll bar
[arvados.git] / apps / workbench / app / assets / stylesheets / application.css.scss
1 /*
2  * This is a manifest file that'll be compiled into application.css, which will include all the files
3  * listed below.
4  *
5  * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6  * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7  *
8  * You're free to add application-wide styles to this file and they'll appear at the top of the
9  * compiled file, but it's generally better to create a new file per style scope.
10  *
11  *= require_self
12  *= require bootstrap
13  *= require bootstrap3-editable/bootstrap-editable
14  *= require_tree .
15  */
16
17 .contain-align-left {
18     text-align: left;
19 }
20 table.topalign>tbody>tr>td {
21     vertical-align: top;
22 }
23 table.topalign>thead>tr>td {
24     vertical-align: bottom;
25 }
26 tr.cell-valign-center>td {
27     vertical-align: middle;
28 }
29 tr.cell-noborder>td,tr.cell-noborder>th {
30     border: none;
31 }
32 table.table-justforlayout>tr>td,
33 table.table-justforlayout>tr>th,
34 table.table-justforlayout>thead>tr>td,
35 table.table-justforlayout>thead>tr>th,
36 table.table-justforlayout>tbody>tr>td,
37 table.table-justforlayout>tbody>tr>th{
38     border: none;
39 }
40 table.table-justforlayout {
41     margin-bottom: 0;
42 }
43 .smaller-text {
44     font-size: .8em;
45 }
46 .deemphasize {
47     font-size: .8em;
48     color: #888;
49 }
50 .arvados-filename,
51 .arvados-uuid {
52     font-size: .8em;
53     font-family: monospace;
54 }
55 table .data-size, .table .data-size {
56     text-align: right;
57 }
58 body .editable-empty {
59     color: #999;
60 }
61 body .editable-empty:hover {
62     color: #0088cc;
63 }
64 table.arv-index tbody td.arv-object-AuthorizedKey.arv-attr-public_key {
65     overflow-x: hidden;
66     max-width: 120px;
67 }
68 table.arv-index > thead > tr > th {
69     border-top: none;
70 }
71 table.table-fixedlayout {
72     white-space: nowrap;
73     table-layout: fixed;
74 }
75 table.table-fixedlayout td {
76     overflow: hidden;
77     overflow-x: hidden;
78     text-overflow: ellipsis;
79 }
80 table.table-smallcontent td {
81     font-size: 85%;
82 }
83 form input.search-mini {
84     padding: 0 6px;
85 }
86 form.small-form-margin {
87     margin-bottom: 2px;
88 }
89 .nowrap {
90     white-space: nowrap;
91 }
92
93 .navbar .nav li.nav-separator span {
94     display: block;
95     float: none;
96     color: #bbbbbb;
97     padding: 10px 0 10px;
98     text-decoration: none;
99     text-shadow: 0 1px 0 #ffffff;
100 }
101
102 .dax {
103     max-width: 10%;
104     margin-right: 1em;
105     float: left
106 }
107
108 .smart-scroll {
109     overflow: auto;
110 }
111
112 .inline-progress-container div.progress {
113     margin-bottom: 0;
114 }
115
116 .inline-progress-container {
117     width: 100%;
118     display:inline-block;
119 }
120
121 td.add-tag-button {
122     white-space: normal;
123 }
124 td.add-tag-button .add-tag-button {
125     margin-right: 4px;
126     opacity: 0.2;
127 }
128 td.add-tag-button .add-tag-button:hover {
129     opacity: 1;
130 }
131 span.removable-tag-container {
132     line-height: 1.6;
133 }
134 .label.removable-tag a {
135     color: #fff;
136     cursor: pointer;
137 }
138
139 li.notification {
140     padding: 10px;
141 }
142
143 // See HeaderRowFixer in application.js
144 table.table-fixed-header-row {
145     width: 100%;
146     border-spacing: 0px;
147     margin:0;
148 }
149 table.table-fixed-header-row thead {
150     position:fixed;
151     background: #fff;
152 }
153 table.table-fixed-header-row tbody {
154     position:relative;
155     top:1.5em;
156 }
157
158 /* Setting the height needs to be fixed with javascript. */
159 .dropdown-menu {
160     padding-right: 20px;
161     max-height: 440px;
162     width: 400px;
163     overflow-y: auto;
164 }
165
166 .row-fill-height, .row-fill-height>div[class*='col-'] {
167     display: flex;
168 }
169 .row-fill-height>div[class*='col-']>div {
170     width: 100%;
171 }
172
173 /* Show editable popover above side-nav */
174 .editable-popup.popover {
175     z-index:1055;
176 }
177
178 /* Do not leave space for left-nav */
179 div#wrapper {
180   padding-left: 0;
181 }
182
183 .arv-description-as-subtitle {
184   padding-bottom: 1em;
185 }
186 .arv-description-in-table {
187   max-height: 3.5em;
188   overflow-x: hidden;
189   overflow-y: hidden;
190 }
191 .arv-description-in-table:hover {
192   overflow-y: auto;
193 }
194
195 .btn.btn-nodecorate {
196   border: none;
197 }
198 svg text {
199     font-size: 6pt;
200 }