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

74 lines
1.1 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-09-05 22:13:15 -07:00
max-width: 1100px;
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-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 {
2013-04-30 20:28:26 -07:00
background: #555;
2013-04-25 16:28:01 -07:00
}
.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;
}
}