diff --git a/theme/__init__.py b/theme/__init__.py index 10d0706..0138f30 100644 --- a/theme/__init__.py +++ b/theme/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.0.12' +__version__ = '0.0.13' # set default_app_config when using django earlier than 3.2 try: diff --git a/theme/static/assets/css/surface.css b/theme/static/assets/css/surface.css index 87c3609..2196362 100644 --- a/theme/static/assets/css/surface.css +++ b/theme/static/assets/css/surface.css @@ -195,6 +195,7 @@ ul li { position: relative; min-width: 0px; } -input[type=text].form-control { - width: 50%; + +input[type=text].form-control:not(#searchbar) { + width: 50%; } diff --git a/theme/templates/rangefilter/date_filter.html b/theme/templates/rangefilter/date_filter.html index 2dc60e8..b122284 100644 --- a/theme/templates/rangefilter/date_filter.html +++ b/theme/templates/rangefilter/date_filter.html @@ -44,6 +44,9 @@ }); dt_input.find('input').addClass("form-control"); dt_input.css("height", "46px"); + dt_input.find('input').css("width", "unset"); + dt_input.find('input').parent().css("height", "100%"); + dt_input.find('.input-group-append').css("height", "100%"); }); });