Skip to content
This repository has been archived by the owner on Jan 24, 2025. It is now read-only.

Commit

Permalink
fix browse.twig
Browse files Browse the repository at this point in the history
  • Loading branch information
PF94 committed Nov 9, 2021
1 parent 8cafcc5 commit 608ba75
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion assets/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ padding: 0;
margin-top: 4px;
/* Style the buttons that are used to open the tab content */
button {
background-color: inherit;
background-color: #0000; // BUG: IE USES SOME WEIRD BEIGE COLOR ON CLASSIC THEME
border: none;
outline: none;
cursor: pointer;
Expand Down
4 changes: 2 additions & 2 deletions templates/sbnext-finalium/browse.twig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% block content %}
<h1>{{ title }}</h1>
<div class="grid">
<div class="col-4">
<div class="col-md-4">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">{{ __("Categories") }}</li>
Expand All @@ -21,7 +21,7 @@
</ul>
</div>
</div>
<div class="col-8">
<div class="col-md-8">
{% for level in levels %}
{{ video_box(level) }}
{% else %}
Expand Down
2 changes: 1 addition & 1 deletion templates/sbnext-finalium/user.twig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{% block content %}
<style>
.channel-header-bg {
background: url('/assets/backgrounds/{{ userpagedata.name }}.png'), linear-gradient(#888, #444);
background: url('/assets/backgrounds/{{ userpagedata.name }}.png'), linear-gradient(#888, #444) !important;
background-position: center;
}
</style>
Expand Down

0 comments on commit 608ba75

Please sign in to comment.