Changeset 1050
- Timestamp:
- 10/03/08 13:35:33 (2 months ago)
- Location:
- trunk
- Files:
-
- 27 added
- 4 modified
-
examples/files/ext_example-body.html (modified) (1 diff)
-
examples/files/full_example.css (modified) (1 diff)
-
examples/testbed.html (modified) (2 diffs)
-
plugins/DefinitionList/definition-list.css (modified) (1 diff)
-
plugins/InsertSnippet2 (added)
-
plugins/InsertSnippet2/InsertSnippet.css (added)
-
plugins/InsertSnippet2/dialog.html (added)
-
plugins/InsertSnippet2/img (added)
-
plugins/InsertSnippet2/img/1.PNG (added)
-
plugins/InsertSnippet2/img/10.PNG (added)
-
plugins/InsertSnippet2/img/11.PNG (added)
-
plugins/InsertSnippet2/img/12.PNG (added)
-
plugins/InsertSnippet2/img/13.PNG (added)
-
plugins/InsertSnippet2/img/14.PNG (added)
-
plugins/InsertSnippet2/img/15.PNG (added)
-
plugins/InsertSnippet2/img/16.PNG (added)
-
plugins/InsertSnippet2/img/2.PNG (added)
-
plugins/InsertSnippet2/img/3.PNG (added)
-
plugins/InsertSnippet2/img/4.PNG (added)
-
plugins/InsertSnippet2/img/5.PNG (added)
-
plugins/InsertSnippet2/img/6.PNG (added)
-
plugins/InsertSnippet2/img/7.PNG (added)
-
plugins/InsertSnippet2/img/8.PNG (added)
-
plugins/InsertSnippet2/img/9.PNG (added)
-
plugins/InsertSnippet2/img/ed_snippet.gif (added)
-
plugins/InsertSnippet2/insert-snippet2.js (added)
-
plugins/InsertSnippet2/lang (added)
-
plugins/InsertSnippet2/lang/de.js (added)
-
plugins/InsertSnippet2/readme.html (added)
-
plugins/InsertSnippet2/snippets.php (added)
-
plugins/InsertSnippet2/snippets.xml (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/files/ext_example-body.html
r999 r1050 114 114 xinha_config.flowToolbars = settings.flowToolbars; 115 115 xinha_config.showLoading = settings.showLoading; 116 xinha_config.pageStyleSheets = [" own.css"];116 xinha_config.pageStyleSheets = ["full_example.css"]; 117 117 118 118 // Create a default configuration for the plugins -
trunk/examples/files/full_example.css
r999 r1050 47 47 } 48 48 label {font-size: 11px;} 49 .navi_links { 50 width: 177px; 51 margin: 0; 52 padding: 0px; 53 list-style:none; 54 border: none; 55 } 56 57 .navi_links li { 58 margin:0 0 3px 0; 59 } 60 61 .navi_links li a { 62 font-size: 13px; 63 line-height: 16px; 64 height: 16px; 65 display:block; 66 color:#000; 67 text-decoration: none; 68 font-weight: bold; 69 background-color: #fff; 70 cursor: pointer; 71 border: 2px solid white; 72 73 } 74 75 .Link1 { 76 background-color: #DF1D1F !important; 77 78 } -
trunk/examples/testbed.html
r999 r1050 22 22 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 23 23 <title>Example of Xinha</title> 24 <link rel="stylesheet" href="f ull_example.css" />24 <link rel="stylesheet" href="files/full_example.css" /> 25 25 26 26 <script type="text/javascript"> … … 89 89 // We can load an external stylesheet like this - NOTE : YOU MUST GIVE AN ABSOLUTE URL 90 90 // otherwise it won't work! 91 xinha_config.stylistLoadStylesheet(document.location.href.replace(/[^\/]*\.html/, ' stylist.css'));91 xinha_config.stylistLoadStylesheet(document.location.href.replace(/[^\/]*\.html/, 'files/stylist.css')); 92 92 93 93 // Or we can load styles directly -
trunk/plugins/DefinitionList/definition-list.css
r677 r1050 1 1 dl { border: 1px dotted #800000; } 2 2 dt { 3 width: 18px;4 height: 18px;5 3 background-image: url(img/ed_dt.gif); 6 4 background-repeat: no-repeat; 7 5 background-position: left top; 8 6 padding-left: 19px; 9 display: block;10 7 color: #800000; 11 8 } 12 9 dd { 13 width: 18px;14 height: 18px;15 10 background-image: url(img/ed_dd.gif); 16 11 background-repeat: no-repeat; 17 12 background-position: left top; 18 13 padding-left: 19px; 19 display: block;20 14 color: #800000; 21 15 }
