Design: no gradients, nicer default colors
Before, the gradient transparent black overlay made text hard to read in some cases. Torrents without a poster image showed up in blue-gray and didn't look good.
This commit is contained in:
@@ -48,7 +48,7 @@ module.exports = class TorrentList extends React.Component {
|
||||
// Background image: show some nice visuals, like a frame from the movie, if possible
|
||||
const style = {}
|
||||
if (torrentSummary.posterFileName) {
|
||||
const gradient = 'linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%)'
|
||||
const gradient = 'linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%)'
|
||||
const posterPath = TorrentSummary.getPosterPath(torrentSummary)
|
||||
style.backgroundImage = `${gradient}, url('${posterPath}')`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user