2883: Adjusted task type column width. Commented out code for working with
[arvados.git] / apps / workbench / app / assets / stylesheets / log_viewer.scss
1 .log-viewer-table {
2  width: 100%;
3  font-family: "Lucida Console", Monaco, monospace;
4  font-size: 11px;
5  thead tr {
6    th {
7      padding-right: 1em;
8    }
9    th.id {
10      display: none;
11    }
12    th.timestamp {
13      width: 15em;
14    }
15    th.type {
16      width: 10em;
17    }
18    th.taskid {
19      width: 3em;
20    }
21  }
22  tbody tr {
23    vertical-align: top;
24    td {
25      padding-right: 1em;
26    }
27    td.id {
28      display: none;
29    }
30    td.taskid {
31      text-align: right;
32    }
33  }
34 }