Skip to content

Commit

Permalink
Fixed CSS styles for product management (#1767)
Browse files Browse the repository at this point in the history
  • Loading branch information
aschempp committed Mar 6, 2017
1 parent 4c6d836 commit e0d2c5e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
7 changes: 6 additions & 1 deletion system/modules/isotope/assets/css/backend-svg.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
margin-left: 0;
}

.iso_panels .tl_select {
.iso_panels .tl_select,
.iso_filter .tl_select {
width: auto;
margin-left: 3px;
}
Expand All @@ -60,3 +61,7 @@
margin-left: 8px;
margin-right: 4px;
}

.iso_filter .tl_submit.active {
background: #ffd;
}
2 changes: 1 addition & 1 deletion system/modules/isotope/assets/css/backend-svg.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions system/modules/isotope/assets/css/backend.css
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ table.multicolumnwizard .operations {

.iso_filter {
line-height: 28px;
margin-left: 2%;
}

.iso_filter .tl_submit.active {
Expand Down
2 changes: 1 addition & 1 deletion system/modules/isotope/assets/css/backend.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions system/modules/isotope/docs/CHANGELOG-2.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ Version 2.4.1 (2017-??-??)
- Giropay requires order ID with a least 4 digits (#1744)
- Disable buttons for order collection in backend (#1781)
- Load TCPDF config from core-bundle in Contao 4 (#1763)
- Improved CSS styles for backend modules (#1765, #1766, #1768)
- Improved CSS styles for reports (#1769, #1770)
- Improved CSS styles for order and rule edit modes (#1774, #1767)
- Improved CSS styles for backend modules (#1765, #1766, #1767, #1768, #1769, #1770, #1772, #1774)


Version 2.4.0 (2016-12-21)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static function generateFilterButtons()
);

return '
<div class="tl_filter iso_filter tl_subpanel">
<div class="iso_filter tl_subpanel">
' . implode("\n", $buttons) . '
</div>';
}
Expand Down Expand Up @@ -107,7 +107,7 @@ public static function generateAdvancedFilters()
];

$strBuffer = '
<div class="tl_filter iso_filter tl_subpanel">
<div class="tl_advanced_filter iso_filter tl_subpanel">
<strong>' . $GLOBALS['TL_LANG']['tl_iso_product']['filter'] . '</strong>' . "\n";

// Generate filters
Expand Down Expand Up @@ -139,7 +139,7 @@ public function generateSortingIcon()
}

return '
<div class="tl_sorting tl_subpanel tl_iso_category_sorting">
<div class="tl_subpanel tl_iso_category_sorting">
<a href="#" onclick="Backend.getScrollOffset();Isotope.openModalPageSelector({\'width\':765,\'title\':\'' . specialchars($GLOBALS['TL_LANG']['MOD']['page'][0]) . '\',\'url\':\'contao/page.php?do=' . \Input::get('do') . '&amp;table=tl_iso_product_category&amp;field=page_id&amp;value=0\',\'action\':\'sortByPage\'});return false" title="' . $GLOBALS['TL_LANG']['tl_iso_product']['sorting'] . '">' . \Image::getHtml('page.gif', $GLOBALS['TL_LANG']['tl_iso_product']['sorting']) . '</a>
</div>';
}
Expand Down

0 comments on commit e0d2c5e

Please sign in to comment.