mirror of https://gitlab.com/octtspacc/OcttKB
9 lines
187 B
CSS
9 lines
187 B
CSS
|
.tc-tiddler-frame .tc-titlebar button {
|
||
|
opacity: 0;
|
||
|
transition: opacity .5s ease-in-out;
|
||
|
}
|
||
|
.tc-tiddler-frame:hover .tc-titlebar button {
|
||
|
zoom: 1;
|
||
|
filter: alpha(opacity=100);
|
||
|
opacity: 1;
|
||
|
}
|