Removed runtime styling for hints (#40).
authorDaniel Carl <danielcarl@gmx.de>
Thu, 11 Jul 2013 20:29:18 +0000 (22:29 +0200)
committerDaniel Carl <danielcarl@gmx.de>
Thu, 11 Jul 2013 21:26:22 +0000 (23:26 +0200)
commitd4fe72f61952c41fb1305d23df76c40445f82698
treeff08e4df0f9406f1b02b657311f2b5c649de9fb1
parent96a49d35319028973afe6868252fd8ee7bed0219
Removed runtime styling for hints (#40).

There is no need to change the hints style properties during runtime. So this
settings are removed. But on the other side all hinted elements and hint label
have now classes to style them via user style. Following style is the default
used for the hints.

._hintLabel {
    position: absolute;
    z-index: 100000;
    font-family: monospace;
    font-weight: bold;
    font-size: 10px;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0px 1px;
    border: 1px solid #444;
    opacity: 0.7
}
._hintElem {
    background-color: #ff0 !important;
    color: #000 !important
}
._hintElem._hintFocus{
    background-color: #8f0 !important
}
._hintLabel._hintFocus{
    opacity: 1
}
src/config.h
src/hints.c
src/hints.js
src/main.h
src/setting.c