diff options
author | thomascube <thomas@roundcube.net> | 2011-12-16 19:23:04 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-12-16 19:23:04 +0000 |
commit | 74d4c7f9ada668d0bf53361a407b00be7d10488c (patch) | |
tree | 7c86fa86be25a8115aa1751a05280f38c0a0b038 /skins/larry/googiespell.css | |
parent | f94e442469deca30b39f3fa08aade83cbd0ede70 (diff) |
Setup dialogs (using jquery UI) and compose form for Larry
Diffstat (limited to 'skins/larry/googiespell.css')
-rw-r--r-- | skins/larry/googiespell.css | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/skins/larry/googiespell.css b/skins/larry/googiespell.css new file mode 100644 index 000000000..1e4d5dfab --- /dev/null +++ b/skins/larry/googiespell.css @@ -0,0 +1,94 @@ +/***** modified styles for GoogieSpell *****/ + +.googie_window { + font-size: 11px; + width: 185px; + margin: 0; + padding: 0; +} + +.googie_edit_layer { + padding: 8px; + font-size: 9pt; + font-family: monospace; + background-color: #fff; + border: 0; +} + +.googie_edit_layer span { + font-family: monospace; +} + +.googie_list { + width: 100%; + margin: 0; + padding: 0; + border-spacing: 0; +} + +.googie_list td { + min-width: 80px; + width: auto; +} + +.googie_list td.googie_list_selected { + background: #4db0d2; +} + +.googie_list_close { + font-size: 11px; + color: #b91414; +} + +.googie_list_onhover .googie_list_close { + color: #fff; +} + +.googie_list_revert { + font-size: 11px; + color: #b91414; +} + +.googie_list_revert:hover { + color: #fff; +} + +.googie_link { + color: #b91414; + text-decoration: underline; + cursor: pointer; + font-size: 9pt; + font-family: monospace; +} + +.googie_check_spelling_link { + color: #0069A6; + font-size: 11px; + text-decoration: underline; + cursor: pointer; +} + +.googie_no_style { + text-decoration: none; +} + +.googie_check_spelling_ok, +.googie_resume_editing { + color: green; + font-size: 11px; + cursor: pointer; + text-decoration: underline; +} + +.googie_check_spelling_ok:hover, +.googie_resume_editing:hover { + text-decoration: underline; +} + +.googie_lang_3d_click img, +.googie_lang_3d_on img { + vertical-align: middle; + cursor: pointer; + border: 0; +} + |