Skip to content

Commit 608ba75

Browse files
committed
fix browse.twig
1 parent 8cafcc5 commit 608ba75

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

assets/scss/style.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ padding: 0;
887887
margin-top: 4px;
888888
/* Style the buttons that are used to open the tab content */
889889
button {
890-
background-color: inherit;
890+
background-color: #0000; // BUG: IE USES SOME WEIRD BEIGE COLOR ON CLASSIC THEME
891891
border: none;
892892
outline: none;
893893
cursor: pointer;

templates/sbnext-finalium/browse.twig

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% block content %}
66
<h1>{{ title }}</h1>
77
<div class="grid">
8-
<div class="col-4">
8+
<div class="col-md-4">
99
<div class="well sidebar-nav">
1010
<ul class="nav nav-list">
1111
<li class="nav-header">{{ __("Categories") }}</li>
@@ -21,7 +21,7 @@
2121
</ul>
2222
</div>
2323
</div>
24-
<div class="col-8">
24+
<div class="col-md-8">
2525
{% for level in levels %}
2626
{{ video_box(level) }}
2727
{% else %}

templates/sbnext-finalium/user.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{% block content %}
1010
<style>
1111
.channel-header-bg {
12-
background: url('/assets/backgrounds/{{ userpagedata.name }}.png'), linear-gradient(#888, #444);
12+
background: url('/assets/backgrounds/{{ userpagedata.name }}.png'), linear-gradient(#888, #444) !important;
1313
background-position: center;
1414
}
1515
</style>

0 commit comments

Comments
 (0)