diff --git a/pixelegg/css/pixelegg.css b/pixelegg/css/pixelegg.css index 97ba141a10..105e16c252 100644 --- a/pixelegg/css/pixelegg.css +++ b/pixelegg/css/pixelegg.css @@ -1159,6 +1159,17 @@ background-image: url(../images/selectarrowdown.png); background-size: 16px 16px; } + /** + * Grid / nextmatch Hierarchy + */ + /** + * This class' margin-right is used to line up columns at each indent level + * Classes level_# are created programmatically with margin-right * depth + * Margin-right = -(indent + border) + */ + .indentation { + margin-right: -15px; + } /* End of hierarchy */ /* Mangled link-to widget inside a nextmatch - used for DnD uploads */ .et2_nextmatch * .et2_link_to { diff --git a/pixelegg/less/etemplate2.less b/pixelegg/less/etemplate2.less index c108132797..79c93272bb 100755 --- a/pixelegg/less/etemplate2.less +++ b/pixelegg/less/etemplate2.less @@ -1084,8 +1084,17 @@ button#admin-categories-index_add { background-image: url(../images/selectarrowdown.png); background-size: 16px 16px; } - - +/** + * Grid / nextmatch Hierarchy + */ +/** + * This class' margin-right is used to line up columns at each indent level + * Classes level_# are created programmatically with margin-right * depth + * Margin-right = -(indent + border) + */ +.indentation { + margin-right: -15px; +} /* End of hierarchy */