1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/css/detailtable.css

88 lines
1.5 KiB
CSS
Raw Normal View History

2013-04-25 23:31:10 -04:00
.detailTableContainer {
2013-04-25 19:28:01 -04:00
width: 100%;
2013-04-25 23:31:10 -04:00
text-align: center;
2013-04-25 19:28:01 -04:00
}
2013-04-25 23:31:10 -04:00
.detailTable {
border-collapse: collapse;
border-spacing: 0;
text-align: left;
width: 100%;
margin: 0 auto;
2013-04-25 19:28:01 -04:00
}
.stretchedDetailTable {
width: 100%;
}
.detailTable a {
text-decoration: none;
}
.detailTable a:hover {
text-decoration: underline;
}
.detailTable td {
border-spacing: 0;
2013-12-01 01:25:19 -05:00
padding: 5px 5px;
2013-04-25 19:28:01 -04:00
}
.detailTable th {
border-spacing: 0;
padding: 5px;
2013-12-01 01:25:19 -05:00
font-weight: bold;
2013-04-25 19:28:01 -04:00
text-align: left;
vertical-align: top;
2013-04-30 18:34:10 -04:00
}
2013-04-25 19:28:01 -04:00
.userDataCell {
2013-04-30 15:13:06 -04:00
width: 130px;
text-align: right;
2013-04-25 19:28:01 -04:00
}
2013-04-27 18:04:14 -04:00
2013-12-01 01:25:19 -05:00
.tabletColumn, .desktopColumn {
2013-04-27 18:04:14 -04:00
display: none;
}
2013-04-30 15:39:30 -04:00
.detailTable .btnPlay {
margin: 0;
}
2014-01-18 12:58:05 -05:00
.detailTableButtonsCell {
white-space: nowrap;
}
2015-06-23 18:13:06 -04:00
.detailTableButtonsCell button {
margin-top: 0;
margin-bottom: 0;
2014-01-18 12:58:05 -05:00
}
2015-06-23 18:13:06 -04:00
.detailTableButtonsCell button + button {
margin-left: .5em;
}
2013-12-01 01:25:19 -05:00
@media all and (min-width: 600px) {
2013-04-27 18:04:14 -04:00
.tabletColumn {
display: table-cell;
}
}
2013-12-01 01:25:19 -05:00
@media all and (min-width: 1100px) {
.desktopColumn {
display: table-cell;
}
}
.detailTable tbody tr:nth-child(odd) td,
.detailTable tbody tr:nth-child(odd) th {
background-color: #eeeeee; /* non-RGBA fallback */
background-color: rgba(0,0,0,.1);
}
2014-01-21 01:10:58 -05:00
.stripedTable tbody tr:nth-child(odd) td,
.stripedTable tbody tr:nth-child(odd) th {
background-color: #eeeeee; /* non-RGBA fallback */
background-color: rgba(0,0,0,.04);
}