|
|
@@ -6,18 +6,18 @@ |
|
|
|
|
|
|
|
/* Torrent group details caticons */ |
|
|
|
/* margin: 0 auto ensures the caticons are always centered so the layout looks more ordered */ |
|
|
|
.cats_album { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/album.png') no-repeat center center/contain; } |
|
|
|
.cats_single { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/single.png') no-repeat center center/contain; } |
|
|
|
.cats_ep { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/ep.png') no-repeat center center/contain; } |
|
|
|
.cats_bluray { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/bluray.png') no-repeat center center/contain; } |
|
|
|
.cats_dvd { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/dvd.png') no-repeat center center/contain; } |
|
|
|
.cats_tvmusic { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/tvmusic.png') no-repeat center center/contain; } |
|
|
|
.cats_tvvariety { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/tvvariety.png') no-repeat center center/contain; } |
|
|
|
.cats_tvdrama { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/tvdrama.png') no-repeat center center/contain; } |
|
|
|
.cats_musicperformance { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/musicperformance.png') no-repeat center center/contain; } |
|
|
|
.cats_pv { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/pv.png') no-repeat center center/contain; } |
|
|
|
.cats_pictures { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/pictures.png') no-repeat center center/contain; } |
|
|
|
.cats_misc { margin: 0 auto; width: 48px; height: 48px; background: url('/static/common/caticons/misc.png') no-repeat center center/contain; } |
|
|
|
.cats_album { margin: 0 auto; background: url('/static/common/caticons/album.png') no-repeat center center/contain; } |
|
|
|
.cats_single { margin: 0 auto; background: url('/static/common/caticons/single.png') no-repeat center center/contain; } |
|
|
|
.cats_ep { margin: 0 auto; background: url('/static/common/caticons/ep.png') no-repeat center center/contain; } |
|
|
|
.cats_bluray { margin: 0 auto; background: url('/static/common/caticons/bluray.png') no-repeat center center/contain; } |
|
|
|
.cats_dvd { margin: 0 auto; background: url('/static/common/caticons/dvd.png') no-repeat center center/contain; } |
|
|
|
.cats_tvmusic { margin: 0 auto; background: url('/static/common/caticons/tvmusic.png') no-repeat center center/contain; } |
|
|
|
.cats_tvvariety { margin: 0 auto; background: url('/static/common/caticons/tvvariety.png') no-repeat center center/contain; } |
|
|
|
.cats_tvdrama { margin: 0 auto; background: url('/static/common/caticons/tvdrama.png') no-repeat center center/contain; } |
|
|
|
.cats_musicperformance { margin: 0 auto; background: url('/static/common/caticons/musicperformance.png') no-repeat center center/contain; } |
|
|
|
.cats_pv { margin: 0 auto; background: url('/static/common/caticons/pv.png') no-repeat center center/contain; } |
|
|
|
.cats_pictures { margin: 0 auto; background: url('/static/common/caticons/pictures.png') no-repeat center center/contain; } |
|
|
|
.cats_misc { margin: 0 auto; background: url('/static/common/caticons/misc.png') no-repeat center center/contain; } |
|
|
|
|
|
|
|
/* Reduced, normalised sizes for all torrent list views */ |
|
|
|
.cats_col .cats_album { width: 42px; height: 42px; } |
|
|
@@ -55,9 +55,56 @@ |
|
|
|
.tiny_cats_col { |
|
|
|
padding: 2px; |
|
|
|
width: 16px; /* Ensures that the column is always as tight as possible */ |
|
|
|
height: 16px; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.tiny_cat_label { |
|
|
|
position: absolute; |
|
|
|
bottom: 0; |
|
|
|
left: 0; |
|
|
|
margin: 4px; |
|
|
|
padding: 2px 4px; |
|
|
|
line-height: 12px; |
|
|
|
} |
|
|
|
|
|
|
|
.collage_text_label { |
|
|
|
position: absolute; |
|
|
|
background: #111111; |
|
|
|
opacity: 0.8; |
|
|
|
border-radius: 2px; |
|
|
|
font-weight: 500; |
|
|
|
color: white; |
|
|
|
margin: 4px; |
|
|
|
padding: 2px 4px; |
|
|
|
line-height: 12px; |
|
|
|
} |
|
|
|
|
|
|
|
.audioformat_or_ressel_label { |
|
|
|
top: 0; |
|
|
|
right: 0; |
|
|
|
} |
|
|
|
|
|
|
|
.duration_label { |
|
|
|
bottom: 0; |
|
|
|
right: 0; |
|
|
|
} |
|
|
|
|
|
|
|
.torrent_status_label { |
|
|
|
bottom: 0; |
|
|
|
left: 50%; |
|
|
|
transform: translate(-50%, 0%); |
|
|
|
} |
|
|
|
|
|
|
|
.Radio { |
|
|
|
display: inline-flex; |
|
|
|
align-items: center; |
|
|
|
} |
|
|
|
|
|
|
|
.Radio-Input { |
|
|
|
margin: 0 0.5em 0; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.box h3 { |
|
|
|
font-size: 140%; |
|
|
@@ -107,6 +154,7 @@ select { |
|
|
|
|
|
|
|
h2 .group_cat { |
|
|
|
margin: 0 8px; |
|
|
|
width: 48px; height: 48px; |
|
|
|
} |
|
|
|
|
|
|
|
.group_displayname { |
|
|
|