add no canvas to old devices

This commit is contained in:
Ashley 2023-10-12 20:15:40 +00:00
parent bc8fcc2fc1
commit 0a824d3034

View file

@ -433,6 +433,31 @@ text-shadow: 1px 1px #000,1px 1px 0.1px #000;!important;
.video-sub-info.description { .video-sub-info.description {
font-family:ubuntu !important; font-family:ubuntu !important;
} }
canvas {
display:none;
}
<% if (lightOrDark(color) == "light") { %>
.player.video-ambient-container {
box-shadow: 0 -8px 5.9em <%=color%>;
}
<% } %>
<% if (lightOrDark(color) == "dark") { %>
.player.video-ambient-container {
box-shadow: 0 -8px 5.9em <%=color2%>;
}
<% } %>
<% if (a) { %>
.player.video-ambient-container {
box-shadow: 0 0 0em <%=color%>;
}
<% } %>
</style> </style>
<% } %> <% } %>