Skip to content

Commit

Permalink
Fixes long text in filter
Browse files Browse the repository at this point in the history
Resolves apache#100
  • Loading branch information
NejcZdovc committed Nov 8, 2022
1 parent 84e9137 commit 4d57c22
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions superset/static/blotout.css
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,11 @@ body > footer {
background: none;
}

/* Filter box */
.slice_container .filter_box > div {
overflow: initial !important;
}

.slice_container .filter_box .Select__multi-value__label {
white-space: initial !important;
}
2 changes: 1 addition & 1 deletion superset/templates/superset/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{{ super() }}
<link rel="icon" type="image/png" href="{{ assets_prefix }}/static/assets/images/favicon.png">
{{ css_bundle("theme") }}
<link media="all" rel="stylesheet" href="/static/blotout.css?v=3" />
<link media="all" rel="stylesheet" href="/static/blotout.css?v=4" />
{% endblock %}

{% block head_js %}
Expand Down
2 changes: 1 addition & 1 deletion superset/templates/superset/basic.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
{{ css_bundle(entry) }}
{% endif %}

<link media="all" rel="stylesheet" href="/static/blotout.css?v=3" />
<link media="all" rel="stylesheet" href="/static/blotout.css?v=4" />
{% endblock %}

{{ js_bundle("theme") }}
Expand Down

0 comments on commit 4d57c22

Please sign in to comment.