Index: trunk/extensions/SemanticGlossary/skins/SemanticGlossary.css |
— | — | @@ -19,24 +19,29 @@ |
20 | 20 | top: 0; |
21 | 21 | left: 0; |
22 | 22 | |
23 | | - padding: 1.5em 0 0 2em; |
24 | | - width: 20em; |
| 23 | + height: 3em; |
| 24 | + width: 23em; |
25 | 25 | |
| 26 | + font-weight: normal; |
| 27 | + font-size: medium; |
| 28 | + line-height: 1.2em; |
| 29 | + |
26 | 30 | z-index: 2; |
27 | 31 | } |
28 | 32 | |
29 | 33 | .tooltip_tip { |
30 | 34 | display: block; |
31 | 35 | |
32 | | - position: relative; |
33 | | - top: 0em; |
34 | | - left: 0em; |
| 36 | + position: absolute; |
| 37 | + top: 1.5em; |
| 38 | + left: 2em; |
35 | 39 | |
36 | | - background-color: #F9F9F9; |
| 40 | + width: 20em; |
| 41 | + |
37 | 42 | padding: 0.5em; |
38 | 43 | margin: 0; |
39 | | - line-height: 1.2em; |
40 | 44 | |
| 45 | + background-color: #F9F9F9; |
41 | 46 | border: 1px solid #aaa; |
42 | 47 | |
43 | 48 | -moz-border-radius: 5px; |
— | — | @@ -50,6 +55,10 @@ |
51 | 56 | display: block; |
52 | 57 | } |
53 | 58 | |
| 59 | +.tooltip:hover .tooltip_abbr { |
| 60 | + background-color:rgba(0,0,0,0.1); |
| 61 | +} |
| 62 | + |
54 | 63 | .tooltip:hover .tooltip_tipwrapper { |
55 | 64 | display: block; |
56 | 65 | } |
Index: trunk/extensions/SemanticGlossary/SemanticGlossary.php |
— | — | @@ -35,7 +35,7 @@ |
36 | 36 | $wgExtensionCredits[defined( 'SEMANTIC_EXTENSION_TYPE' ) ? 'semantic' : 'other'][] = array( |
37 | 37 | 'path' => __FILE__, |
38 | 38 | 'name' => 'Semantic Glossary', |
39 | | - 'author' => '[http://www.mediawiki.org/wiki/User:F.trott|Stephan Gambke]', |
| 39 | + 'author' => '[http://www.mediawiki.org/wiki/User:F.trott Stephan Gambke]', |
40 | 40 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Semantic_Glossary', |
41 | 41 | 'descriptionmsg' => 'semanticglossary-desc', |
42 | 42 | 'version' => SG_VERSION, |
— | — | @@ -49,7 +49,7 @@ |
50 | 50 | $wgExtensionMessagesFiles['SemanticGlossaryAlias'] = $dir . '/SemanticGlossary.alias.php'; |
51 | 51 | |
52 | 52 | // register class files with the Autoloader |
53 | | -$wgAutoloadClasses['SemanticGlossarySettings'] = $dir . '/SemanticGlossarySettings.php'; |
| 53 | +//$wgAutoloadClasses['SemanticGlossarySettings'] = $dir . '/SemanticGlossarySettings.php'; |
54 | 54 | $wgAutoloadClasses['SemanticGlossaryParser'] = $dir . '/SemanticGlossaryParser.php'; |
55 | 55 | $wgAutoloadClasses['SemanticGlossaryTree'] = $dir . '/SemanticGlossaryTree.php'; |
56 | 56 | $wgAutoloadClasses['SemanticGlossaryElement'] = $dir . '/SemanticGlossaryElement.php'; |