I began playing with the .meaction the other night after noticing the default .meaction colours did not always complement a post area if different backgrounds were being used for the posting areas; the below images are the results.
What the below does is to first apply a colour to the hand and then a different colour to the text. There is also shadowing added to the text to make it stand out a bit.
If emanuele, spuds or josh like this I will do a PR. The colours for both .meactions can be the same for stock deployment and the user or themer can then implement their own colours.
Old code to remove...
/* original meaction starts at line 352 of index_light.css */
.meaction {
color: #50aa3a;
}
.meaction:before {
content: "\270c";
font-size: 1.714em;
line-height: 1em;
}
The new code...
/* meaction has a different color for different post windows */
/* this enables custom text styling based on the window background color */
.windowbg.post_wrapper .meaction {
color: #bf4c00;
font-style: italic;
text-shadow: -0.03em -0.03em #f9f9f9, 0.06em 0.06em #f0f0f0;
}
.windowbg.post_wrapper .meaction:before {
content: "\270c";
font-size: 1.714em;
line-height: 1em;
color: #803300;
}
/* meaction has a different color for different post windows */
/* this enables custom text styling based on the window background color */
.windowbg2.post_wrapper .meaction {
color: #009900;
font-style: italic;
text-shadow: -0.03em -0.03em #f9f9f9, 0.06em 0.06em #f0f0f0;
}
.windowbg2.post_wrapper .meaction:before {
content: "\270c";
font-size: 1.714em;
line-height: 1em;
color: #007a00;
}
Of course anyone is welcome to take this and use it in their themes. I have not found where this breaks anything but if you do, let me know.
Thanks!