mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Change channel banner to be CSS background image
This is to allow for contents to be placed on the channel banner itself;
something that is required for the links widget shown on Youtube.
(cherry picked from commit 04cc15500f
)
This commit is contained in:
parent
ed64def5a6
commit
619eca5ee3
2 changed files with 13 additions and 2 deletions
|
@ -15,6 +15,16 @@ body {
|
|||
background-color: rgb(255, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
#channel-banner-container {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
#banner {
|
||||
height: calc(100vw / 6.2 - 1px);
|
||||
background-size: cover !important;
|
||||
background-repeat: no-repeat !important;
|
||||
}
|
||||
|
||||
.channel-profile > * {
|
||||
font-size: 1.17em;
|
||||
font-weight: bold;
|
||||
|
|
|
@ -4,8 +4,9 @@
|
|||
<% end %>
|
||||
|
||||
<% if channel.banner %>
|
||||
<div class="h-box">
|
||||
<img style="width:100%" src="/ggpht<%= URI.parse(channel.banner.not_nil!.gsub("=w1060-", "=w1280-")).request_target %>">
|
||||
<div class="pure-g" id="channel-banner-container">
|
||||
<div class="pure-u-1" id="banner" style='background: url(/ggpht<%= URI.parse(channel.banner.not_nil!.gsub("=w1060-", "=w1280-")).request_target %>)'>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="h-box">
|
||||
|
|
Loading…
Reference in a new issue