--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/286da5f4-be53-4ef8-a7c9-b658dfcd9228%40googlegroups.com.
<$button class="mycolor">
adf
</$button>
<style>
.mycolor {background:red}
.mycolor:hover {background:yellow}
</style>
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/8eb42c1d-8748-49f7-8954-f53a51fe9294%40googlegroups.com.

.tc-editor-toolbar .tc-image-heading-1 {
background: blue;
fill: red;
}
.tc-editor-toolbar .tc-image-heading-1:hover {
background: green;
fill: yellow;
}
It's not perfect, because we should set the colors of button, but I cannot target the parent of the icon, thus I can manipulate only it.
This is where I replaced the icon in the core/ui/buttons/info
And this is what I get
.tc-image-info-button {
width: 35px;
height: 35px;
line-height: 30px;
border-radius: 10px;
border: 4px solid #1B3518;
overflow: hidden;
background-color: #7bc072;
color: black;
display:inline-block;
cursor:pointer;
font-family: uglyquaregular;
font-size: 20px;
font-weight:bold;
padding: 0px 3px;
text-align: center;
vertical-align: middle;
}
..tc-image-info-button:hover {
background-color: #F9DC39;
}--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/1d06d9e1-73ec-43d4-bbec-d0f796841acd%40googlegroups.com.
..tc-image-info-button:hover {
background-color: #F9DC39; }