Ist es möglich, den gleichen Effekt mit aktivierter Title Bar zu erzielen?
Für Windows (geht nicht am Mac) ?
Das Ganze evtl. einfach ohne #main-window, wobei ich statt color: => fill: probieren würde.
CSS
/* Icon Farben ändern */
.titlebar-buttonbox .titlebar-button {
color: #fff !important;
}
/* Mouse-over Farbe ändern */
.titlebar-buttonbox .titlebar-button:hover {
border-radius: 5px !important;
color: black !important;
}
/***** links *****/
.titlebar-buttonbox .titlebar-min:hover {
background:#66FF66!important; /*Farbe: hellgrün*/
}
/***** mitte *****/
.titlebar-buttonbox .titlebar-max:hover {
background:#FFFF00!important; /*Farbe: gelb*/
}
.titlebar-buttonbox .titlebar-restore:hover {
background-color:#FFFF00!important; /*Farbe: gelb*/
}
/***** rechts *****/
.titlebar-buttonbox .titlebar-close:hover {
background:#FF0000!important; /*Farbe: rot*/
}
Alles anzeigen