Fix for the double bars in Tall format
Ok, so after taking a look....it seems that for some reason, the background images used in the Tall bars for showing disk usage where positioned starting in the center, and wrapping around. This is what was causing the bars to look like they were doubled.
No idea why it started happening, but here's a solution to the CSS file to fix it. Not sure if some ML update will change this in the future, so use at your own risk. I'll repeat Budlus's instructions for finding the file:
1. Locate your widget, it will be under /Library/Widgets or ~/Library/Widgets
2. Right click it and select: "Show Package Contents"
3. Open core.css in some editor
4. Locate the block (for me it's starting on line 7) and add the following line in RED.
Code:
.verticalbarbg {
background-image:url(./images/common/bar_vertical_bg.png);
width:8px;
overflow:hidden;
[B][COLOR="Red"]background-position: -4px 0;[/COLOR][/B]
}
5. Directly under this block, ADD the following CSS statement:
Code:
[B].verticalbar {
background-position: -4px 0;
}[/B]
By adding this statement to the core.css file, it will affect all colors for the widget.
6. You can either remove and re-add the widget, or just kill the Dock and restart Dashboard by going to terminal and entering: killall Dock
----------------------
-Kevin