mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
63 lines
973 B
CSS
63 lines
973 B
CSS
.detailTableContainer {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.detailTable {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
text-align: left;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.stretchedDetailTable {
|
|
width: 100%;
|
|
}
|
|
|
|
.detailTable a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.detailTable a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.detailTable td {
|
|
border-spacing: 0;
|
|
border-top: 1px solid #444;
|
|
border-bottom: 1px solid #444;
|
|
padding: 3px 5px;
|
|
}
|
|
|
|
.detailTable th {
|
|
border-spacing: 0;
|
|
border-bottom: 1px solid #444;
|
|
padding: 5px;
|
|
font-weight: normal;
|
|
text-align: left;
|
|
vertical-align: top;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.detailTable .imgUserItemRating {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.userDataCell {
|
|
width: 140px;
|
|
}
|
|
|
|
.tabletColumn {
|
|
display: none;
|
|
}
|
|
|
|
@media all and (min-width: 750px) {
|
|
.tabletColumn {
|
|
display: table-cell;
|
|
}
|
|
}
|