jellyfin-web/dashboard-ui/css/detailtable.css

80 lines
1.2 KiB
CSS
Raw Normal View History

2013-04-25 20:31:10 -07:00
.detailTableContainer {
2013-04-25 16:28:01 -07:00
width: 100%;
2013-04-30 10:45:51 -07:00
max-width: 1000px;
2013-04-25 20:31:10 -07:00
text-align: center;
margin: 0 auto;
2013-04-25 16:28:01 -07:00
}
2013-04-25 20:31:10 -07:00
.detailTable {
border-collapse: collapse;
border-spacing: 0;
text-align: left;
width: 100%;
margin: 0 auto;
2013-04-29 19:00:42 -07:00
font-size: 14px;
2013-04-25 16:28:01 -07:00
}
.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;
2013-04-30 15:34:10 -07:00
}
.detailTable tr:hover {
background: #444;
2013-04-25 16:28:01 -07:00
}
.detailTable .imgUserItemRating {
width: 18px;
height: 18px;
}
.userDataCell {
2013-04-30 12:13:06 -07:00
width: 130px;
text-align: right;
2013-04-25 16:28:01 -07:00
}
2013-04-27 15:04:14 -07:00
.tabletColumn {
display: none;
}
2013-04-30 12:39:30 -07:00
.detailTable .btnPlay {
border: 0;
padding: 0;
margin: 0;
background: none;
cursor: pointer;
}
.detailTable .btnPlay:hover {
opacity: .6;
}
2013-04-27 15:04:14 -07:00
@media all and (min-width: 750px) {
.tabletColumn {
display: table-cell;
}
}