By
Weregoose
Description
This simple CSS code will allow site authors to modify the vertical separators inside editor toolbars.
Code
Go to your site manager and publish the following CSS code in a custom theme:
.wd-editor-toolbar-panel li.hseparator {
width: 22px;
height: 22px;
margin: 1px;
}
Here, you may change the background properties, add a border, and so on. If you choose to modify the dimensions already listed, you'll be opting out of having a refreshing grid-like pattern within the toolbar!
In action
The above customized toolbar results from this CSS code:
.wd-editor-toolbar-panel li.hseparator {
background: #f00 url('http://snippets.wikidot.com/local--files/code:custom-toolbar-separators/dot.png');
width: 22px;
height: 22px;
margin: 1px;
}
Rate this solution
If you think this solution is useful — rate it up! Or dump it otherwise.





