1
0
mirror of https://github.com/moparisthebest/FireTray synced 2024-11-10 19:15:08 -05:00

display help cursor when tooltiptext

This commit is contained in:
foudfou 2012-01-01 03:33:28 +01:00
parent bdfdf5294c
commit 1d0c8ad6f7
3 changed files with 6 additions and 2 deletions

View File

@ -46,7 +46,8 @@
onclick="firetrayUIOptions.disableHidesOptions(this.checked);"/>
<checkbox id="ui_hides_single_window" preference="pref_bool_hides_single_window"
label="&bool_hides_single_window.label;"
accesskey="&bool_hides_single_window.accesskey;"/>
accesskey="&bool_hides_single_window.accesskey;"
tooltiptext="&bool_hides_single_window.tooltip;"/>
<checkbox id="ui_hides_on_minimize" preference="pref_bool_hides_on_minimize"
label="&bool_hides_on_minimize.label;"
accesskey="&bool_hides_on_minimize.accesskey;"

View File

@ -12,8 +12,9 @@
<!ENTITY bool_hides_on_close.label "Closing window hides to tray">
<!ENTITY bool_hides_on_close.accesskey "C">
<!ENTITY bool_hides_single_window.label "Hide the current window only (not all windows)">
<!ENTITY bool_hides_single_window.label "Hide the current window only">
<!ENTITY bool_hides_single_window.accesskey "H">
<!ENTITY bool_hides_single_window.tooltip "not all windows at once">
<!ENTITY bool_hides_on_minimize.label "Minimize window hides to tray">
<!ENTITY bool_hides_on_minimize.accesskey "M">

View File

@ -23,3 +23,5 @@ treechildren::-moz-tree-cell(disabled) {
background-color: #eeeeee;
}
*/
[tooltiptext] { cursor: help; }