Last active
February 23, 2019 00:29
-
-
Save muzzwood/6c9b10bf296177c3c9086dc2b6dbd827 to your computer and use it in GitHub Desktop.
Revisions
-
digitalpenguin revised this gist
Feb 23, 2019 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,10 @@ <?php // Manually specify which contexts/nodes should have a margin below in the :nth-child() part. $modx->regClientStartupHTMLBlock(' <style> #modx-leftbar-tabpanel > .x-tab-panel-bwrap {box-shadow:none;} .x-tree-root-node {background-color:#f2f2f2;} .x-tree-root-node > .x-tree-node {background-color:#fff; box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);} .x-tree-root-node > .x-tree-node:nth-child(3) { margin-bottom:30px;} .x-tree-root-node > .x-tree-node:nth-child(6) { margin-bottom:30px;} </style> -
digitalpenguin revised this gist
Feb 23, 2019 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,6 +5,7 @@ .x-tree-root-node {background-color:#f2f2f2;} .x-tree-root-node > .x-tree-node {background-color:#fff; box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);} // Manually specify which contexts/nodes should have a margin below. .x-tree-root-node > .x-tree-node:nth-child(3) { margin-bottom:30px;} .x-tree-root-node > .x-tree-node:nth-child(6) { margin-bottom:30px;} </style> -
digitalpenguin renamed this gist
Feb 23, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
digitalpenguin created this gist
Feb 23, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ <?php $modx->regClientStartupHTMLBlock(' <style> #modx-leftbar-tabpanel > .x-tab-panel-bwrap {box-shadow:none;} .x-tree-root-node {background-color:#f2f2f2;} .x-tree-root-node > .x-tree-node {background-color:#fff; box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);} .x-tree-root-node > .x-tree-node:nth-child(3) { margin-bottom:30px;} .x-tree-root-node > .x-tree-node:nth-child(6) { margin-bottom:30px;} </style> ');