In the course of designing several templates, the way bullets are done everywhere is a real pain in the ass, Scattered throughout the code, are snippets like this:
<td class="bullet"><span>·</span></td>
I propose making this change throughout the entire Dolphin script. It can easily be done with a search/replace.
1. Make the above example look like this:
<td class="sys-icon bullet"></td>
Most other areas where bullets are used, involves a similar code reduction, and adding the sys-icon class
2. Add the following to /templates/base/icons.css
.sys-icon.bullet:before {
content: "\f0c8";
font-size:6px;
color:#333333;
line-height: 35px;
}
This way, bullets will look more like bullets, can be any Font Awesome icon, and can be easily resized.