onion/sass/ascribe_table.scss

51 lines
998 B
SCSS
Raw Normal View History

2015-06-12 15:42:43 +02:00
.ascribe-table {
margin-bottom:0;
2015-07-08 11:29:48 +02:00
font-size: 1.1em;
2015-06-12 15:42:43 +02:00
}
/*This is aligning the first checkbox in pieclist detail with all the other ones*/
.table > thead:first-child > tr:first-child > th {
padding-left:0;
}
2015-07-08 11:29:48 +02:00
.table > thead > tr > th {
vertical-align: middle;
}
2015-06-12 15:42:43 +02:00
.ascribe-table-header-column > span {
display: table-cell;
vertical-align: middle;
font-family: 'Source Sans Pro';
font-weight: 600;
color: #424242;
}
.ascribe-table-item-column {
font-family: 'Source Sans Pro';
font-size: .8em;
height:3em;
2015-07-29 18:19:24 +02:00
vertical-align: middle;
display: table-cell;
2015-06-12 15:42:43 +02:00
}
.ascribe-table-item-column > * {
display: table-cell;
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ascribe-table-item-column > span > input {
2015-07-29 18:19:24 +02:00
margin-top:10px;
margin-left:2px;
2015-06-12 15:42:43 +02:00
}
.ascribe-table-item-selected {
background-color: rgba(2, 182, 163, 0.5);
}
.ascribe-table-item-selectable {
cursor: default;
}