File:  [LON-CAPA] / loncom / html / adm / spellcheck / css / spellchecker.css
Revision 1.1: download - view: text, annotated - select for diffs
Tue Aug 28 10:18:15 2012 UTC (12 years, 5 months ago) by foxr
Branches: MAIN
CVS tags: version_2_12_X, version_2_11_X, version_2_11_6_msu, version_2_11_6, version_2_11_5_msu, version_2_11_5, version_2_11_4_uiuc, version_2_11_4_msu, version_2_11_4, version_2_11_3_uiuc, version_2_11_3_msu, version_2_11_3, version_2_11_2_uiuc, version_2_11_2_msu, version_2_11_2_educog, version_2_11_2, version_2_11_1, version_2_11_0_RC3, version_2_11_0_RC2, version_2_11_0_RC1, version_2_11_0, HEAD
Add jquery-spellchecker to the repository.

    1: .spellcheck-suggestbox {
    2: 	position: absolute;
    3: 	display: none;
    4: 	z-index: 9999;
    5: 	overflow: none;
    6: 	padding: 0px 9px 9px 0px;
    7: 	background: transparent url(../img/spellchecker_shadow.png) no-repeat scroll right bottom;
    8: 	font: normal 13px arial;
    9: }
   10: .spellcheck-suggestbox em {
   11: 	border-top: 1px solid #ccc;
   12: 	border-left: 1px solid #bbb;
   13: 	border-right: 1px solid #bbb;
   14: 	padding: 3px 6px 3px 6px;
   15: 	display: block;
   16: 	margin: 0px;
   17: 	text-decoration: none;
   18: 	color: #333;
   19: 	font-style: italic;
   20: }
   21: .spellcheck-suggestbox a, .spellcheck-suggestbox a:visited {
   22: 	border-left: 1px solid #bbb;
   23: 	border-right: 1px solid #bbb;
   24: 	padding: 3px 6px 3px 6px;
   25: 	display: block;
   26: 	margin: 0px;
   27: 	text-decoration: none;
   28: 	color: #333;
   29: 	outline: none;
   30: }
   31: .spellcheck-suggestbox a.first, .spellcheck-suggestbox a.first:visited {
   32: 	border-top: 1px solid #ccc;
   33: }
   34: .spellcheck-suggestbox a:hover {
   35: 	color: #000;
   36: 	background: #ddd;
   37: }
   38: .spellcheck-suggestbox-words {
   39: 	background: #fff;
   40: }
   41: .spellcheck-suggestbox-foot {
   42: 	border-top: 1px solid #ddd;
   43: 	background: #fff;
   44: }
   45: .spellcheck-suggestbox-foot a, .spellcheck-suggestbox-foot a:visited {
   46: 	outline: none;
   47: } 
   48: .pellcheck-focus-helper {
   49: 	position: absolute;
   50: 	top: -2000px;
   51: 	z-index: 0;
   52: }
   53: .spellcheck-word-highlight {
   54: 	color: #d70303;
   55: 	text-decoration: none;
   56: 	background: url(../img/spellchecker_bg.gif) repeat-x 100% 100%;
   57: 	cursor: pointer;
   58: }
   59: .spellcheck-badwords {
   60: 	margin-bottom: 2em;
   61: 	margin-top: -0.5em;
   62: 	font-size: 12px;
   63: 	border: 1px solid #bbb;
   64: 	padding: 4px 6px;
   65: }
   66: .spellcheck-sep {
   67: 	padding-right: 0.5em;
   68: }
   69: .spellcheck-sep-last {
   70: 	display: none;
   71: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>