forked from External/greenlight
34 lines
657 B
SCSS
34 lines
657 B
SCSS
// Place all the styles related to the landing controller here.
|
|
// They will automatically be included in application.css.
|
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
|
|
|
.rooms {
|
|
|
|
.table-wrapper {
|
|
padding: 40px 50px 10px 50px;
|
|
|
|
#recordings {
|
|
thead {
|
|
th:after {
|
|
content: none; //removes the sort icon in table header
|
|
}
|
|
}
|
|
.dataTables_empty {
|
|
text-align: center;
|
|
}
|
|
.recording-update:hover > {
|
|
.default {
|
|
display: none;
|
|
}
|
|
.hover {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
.fa.hover {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|