Skip to content

Commit

Permalink
improvements in mobile view #1868
Browse files Browse the repository at this point in the history
  • Loading branch information
Heklaterriol committed Dec 7, 2024
1 parent 25f94ae commit d72b877
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion media/css/jem-responsive.css
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ body.com_jem.body-overlayed {
#jem .jem-list-row {
display: flex;
flex-direction: row;
/* flex-wrap: wrap; */
flex-wrap: wrap;
justify-content: flex-start;
}

Expand Down
4 changes: 1 addition & 3 deletions site/common/views/tmpl/responsive/default_jem_eventslist.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,8 @@ function jem_common_show_filter(&$obj)
<?php echo $this->lists['filter']; ?>
<input type="text" name="filter_search" id="filter_search" class="inputbox form-control" value="<?php echo $this->lists['search'];?>" onchange="document.adminForm.submit();" />
</div>
<div>
<label for="filter_month"><?php echo Text::_('COM_JEM_SEARCH_MONTH'); ?></label>
</div>
<div class="jem-row jem-justify-start jem-nowrap">
<label for="filter_month"><?php echo Text::_('COM_JEM_SEARCH_MONTH'); ?></label>
<input type="month" name="filter_month" id="filter_month" pattern="[0-9]{4}-[0-9]{2}" title="<?php echo Text::_('COM_JEM_SEARCH_YYYY-MM_FORMAT'); ?>" required class="inputbox form-control" placeholder="<?php echo Text::_('COM_JEM_SEARCH_YYYY-MM'); ?>" size="7" value="<?php echo $this->lists['month'] ?? '';?>">
</div>
<div class="jem-row jem-justify-start jem-nowrap">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,8 @@ function jem_common_show_filter(&$obj) {
<?php echo $this->lists['filter']; ?>
<input type="text" name="filter_search" id="filter_search" class="inputbox form-control" value="<?php echo $this->lists['search'];?>" onchange="document.adminForm.submit();" />
</div>
<div>
<label for="filter_month"><?php echo Text::_('COM_JEM_SEARCH_MONTH'); ?></label>
</div>
<div class="jem-row jem-justify-start jem-nowrap">
<label for="filter_month"><?php echo Text::_('COM_JEM_SEARCH_MONTH'); ?></label>
<input type="month" name="filter_month" id="filter_month" pattern="[0-9]{4}-[0-9]{2}" title="<?php echo Text::_('COM_JEM_SEARCH_YYYY-MM_FORMAT'); ?>" required class="inputbox form-control" placeholder="<?php echo Text::_('COM_JEM_SEARCH_YYYY-MM'); ?>" size="7" value="<?php echo $this->lists['month'] ?? '';?>">
</div>
<div class="jem-row jem-justify-start jem-nowrap">
Expand Down

0 comments on commit d72b877

Please sign in to comment.