Better sub-grid indenting

This commit is contained in:
Nathan Gray 2014-09-22 22:30:28 +00:00
parent f22796b03b
commit 0bc8a74135
2 changed files with 22 additions and 2 deletions

View File

@ -1159,6 +1159,17 @@
background-image: url(../images/selectarrowdown.png); background-image: url(../images/selectarrowdown.png);
background-size: 16px 16px; 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 */ /* End of hierarchy */
/* Mangled link-to widget inside a nextmatch - used for DnD uploads */ /* Mangled link-to widget inside a nextmatch - used for DnD uploads */
.et2_nextmatch * .et2_link_to { .et2_nextmatch * .et2_link_to {

View File

@ -1084,8 +1084,17 @@ button#admin-categories-index_add {
background-image: url(../images/selectarrowdown.png); background-image: url(../images/selectarrowdown.png);
background-size: 16px 16px; 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 */ /* End of hierarchy */