Index: trunk/extensions/OnlineStatusBar/statusgreen.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Index: trunk/extensions/OnlineStatusBar/ext.onlinestatusbar.js |
— | — | @@ -1,43 +0,0 @@ |
2 | | -// script of Online Status Bar extension |
3 | | -// created by Brion Vibber and Petr Bena |
4 | | - |
5 | | -$(function() { |
6 | | - |
7 | | -var $statusbar = $('#status-top'), |
8 | | - $iconbar = $('.onlinestatusbaricon'); |
9 | | - |
10 | | -// Only do the rest if we have the statusbar! |
11 | | -if ($statusbar.length > 0) { |
12 | | - function updateOnlineStatusBar() { |
13 | | - // ... code to fetch and update |
14 | | - $.ajax({ |
15 | | - url: mw.config.get('wgScriptPath') + '/api' + mw.config.get('wgScriptExtension'), |
16 | | - data: { |
17 | | - action: "query", |
18 | | - prop: "onlinestatus", |
19 | | - onlinestatususer: mw.config.get('wgTitle'), |
20 | | - format: 'json' |
21 | | - }, |
22 | | - success: function( data ) { |
23 | | - // code to update the statusbar based on the returned message |
24 | | - var statusMap = { |
25 | | - offline:'red', |
26 | | - online:'green', |
27 | | - away:'orange', |
28 | | - busy:'orange' |
29 | | - }; |
30 | | - var imgName = statusMap[data.onlinestatus.result] + '.png'; |
31 | | - var $icon = mw.html.element('img', { |
32 | | - src: mw.config.values.wgExtensionAssetsPath + "/OnlineStatusBar/status" + imgName |
33 | | - }); |
34 | | - $statusbar.html(mw.msg('onlinestatusbar-line', mw.config.get('wgTitle'),$icon,mw.msg('onlinestatusbar-status-' + data.onlinestatus.result))); |
35 | | - } |
36 | | - }); |
37 | | - } |
38 | | - |
39 | | - // Update the status every couple minutes if we leave the page open |
40 | | - window.setInterval(updateOnlineStatusBar, 120 * 1000); |
41 | | - updateOnlineStatusBar(); |
42 | | -} |
43 | | - |
44 | | -}); |
Index: trunk/extensions/OnlineStatusBar/OnlineStatusBarVector.css |
— | — | @@ -1,24 +0,0 @@ |
2 | | -/* |
3 | | -This is a part of css used on english wp, it's needed for wikis |
4 | | -where topicon isn't defined |
5 | | -*/ |
6 | | -div.onlinestatusbartop { |
7 | | - position: absolute; |
8 | | - top: -2em; |
9 | | - margin-right: -10px; |
10 | | - display: block !important; |
11 | | -} |
12 | | - |
13 | | -div.onlinestatusbaricon { |
14 | | - border: 0px solid black; |
15 | | - background: transparent; |
16 | | - float: right; |
17 | | - position: relative; |
18 | | - top: 0px; |
19 | | - padding: 5px; |
20 | | -} |
21 | | - |
22 | | -div.onlinestatusbarbody { |
23 | | - right:0px; |
24 | | - margin-top:-10px; |
25 | | -} |
Index: trunk/extensions/OnlineStatusBar/OnlineStatusBarMono.css |
— | — | @@ -1,24 +0,0 @@ |
2 | | -/* |
3 | | -This is a part of css used on english wp, it's needed for wikis |
4 | | -where topicon isn't defined |
5 | | -*/ |
6 | | -div.onlinestatusbartop { |
7 | | - position: absolute; |
8 | | - z-index: 10; |
9 | | - top: 10px; |
10 | | - display: block !important; |
11 | | -} |
12 | | - |
13 | | -div.onlinestatusbaricon { |
14 | | - border: 0px solid black; |
15 | | - background: transparent; |
16 | | - float: right; |
17 | | - position: relative; |
18 | | - top: 0px; |
19 | | - padding: 5px; |
20 | | -} |
21 | | - |
22 | | -div.onlinestatusbarbody { |
23 | | - right:0px; |
24 | | - margin-top:-2px; |
25 | | -} |
Index: trunk/extensions/OnlineStatusBar/statusred.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Index: trunk/extensions/OnlineStatusBar/statusorange.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Index: trunk/extensions/OnlineStatusBar/OnlineStatusBar.css |
— | — | @@ -1,24 +0,0 @@ |
2 | | -/* |
3 | | -This is a part of css used on english wp, it's needed for wikis |
4 | | -where topicon isn't defined |
5 | | -*/ |
6 | | -div.onlinestatusbartop { |
7 | | - position: absolute; |
8 | | - top: 2em; |
9 | | - margin-right: 0px; |
10 | | - display: block !important; |
11 | | -} |
12 | | - |
13 | | -div.onlinestatusbaricon { |
14 | | - border: 0px solid black; |
15 | | - background: transparent; |
16 | | - float: right; |
17 | | - position: relative; |
18 | | - top: 0px; |
19 | | - padding: 5px; |
20 | | -} |
21 | | - |
22 | | -div.onlinestatusbarbody { |
23 | | - right:0px; |
24 | | - margin-top:0px; |
25 | | -} |
Index: trunk/extensions/OnlineStatusBar/OnlineStatusBarChick.css |
— | — | @@ -1,24 +0,0 @@ |
2 | | -/* |
3 | | -This is a part of css used on english wp, it's needed for wikis |
4 | | -where topicon isn't defined |
5 | | -*/ |
6 | | -div.onlinestatusbartop { |
7 | | - position: absolute; |
8 | | - top: 1em; |
9 | | - margin-right: 4px; |
10 | | - display: block !important; |
11 | | -} |
12 | | - |
13 | | -div.onlinestatusbaricon { |
14 | | - border: 0px solid black; |
15 | | - background: transparent; |
16 | | - float: right; |
17 | | - position: relative; |
18 | | - top: 0px; |
19 | | - padding: 5px; |
20 | | -} |
21 | | - |
22 | | -div.onlinestatusbarbody { |
23 | | - right:0px; |
24 | | - margin-top:0px; |
25 | | -} |
Index: trunk/extensions/OnlineStatusBar/OnlineStatusBarClassic.css |
— | — | @@ -1,24 +0,0 @@ |
2 | | -/* |
3 | | -This is a part of css used on english wp, it's needed for wikis |
4 | | -where topicon isn't defined |
5 | | -*/ |
6 | | -div.onlinestatusbartop { |
7 | | - position: absolute; |
8 | | - top: 4em; |
9 | | - margin-right: 4px; |
10 | | - display: block !important; |
11 | | -} |
12 | | - |
13 | | -div.onlinestatusbaricon { |
14 | | - border: 0px solid black; |
15 | | - background: transparent; |
16 | | - float: right; |
17 | | - position: relative; |
18 | | - top: 0px; |
19 | | - padding: 5px; |
20 | | -} |
21 | | - |
22 | | -div.onlinestatusbarbody { |
23 | | - right:0px; |
24 | | - margin-top:6px; |
25 | | -} |
Index: trunk/extensions/OnlineStatusBar/OnlineStatusBarNostalgia.css |
— | — | @@ -1,24 +0,0 @@ |
2 | | -/* |
3 | | -This is a part of css used on english wp, it's needed for wikis |
4 | | -where topicon isn't defined |
5 | | -*/ |
6 | | -div.onlinestatusbartop { |
7 | | - position: absolute; |
8 | | - top: 0px; |
9 | | - margin-right: 261px; |
10 | | - display: block !important; |
11 | | -} |
12 | | - |
13 | | -div.onlinestatusbaricon { |
14 | | - border: 0px solid black; |
15 | | - background: transparent; |
16 | | - float: right; |
17 | | - position: relative; |
18 | | - top: 0px; |
19 | | - padding: 5px; |
20 | | -} |
21 | | - |
22 | | -div.onlinestatusbarbody { |
23 | | - right:0px; |
24 | | - margin-top:0px; |
25 | | -} |
Index: trunk/extensions/OnlineStatusBar/OnlineStatusBarModern.css |
— | — | @@ -1,25 +0,0 @@ |
2 | | -/* |
3 | | -This is a part of css used on english wp, it's needed for wikis |
4 | | -where topicon isn't defined |
5 | | -*/ |
6 | | -div.onlinestatusbartop { |
7 | | - position: absolute; |
8 | | - top: 0px; |
9 | | - margin-right: 2px; |
10 | | - color: white; |
11 | | - display: block !important; |
12 | | -} |
13 | | - |
14 | | -div.onlinestatusbaricon { |
15 | | - border: 0px solid black; |
16 | | - background: transparent; |
17 | | - float: right; |
18 | | - position: relative; |
19 | | - top: 0px; |
20 | | - padding: 5px; |
21 | | -} |
22 | | - |
23 | | -div.onlinestatusbarbody { |
24 | | - right:0px; |
25 | | - margin-top:-3px; |
26 | | -} |
Index: trunk/extensions/OnlineStatusBar/OnlineStatusBarCologne.css |
— | — | @@ -1,24 +0,0 @@ |
2 | | -/* |
3 | | -This is a part of css used on english wp, it's needed for wikis |
4 | | -where topicon isn't defined |
5 | | -*/ |
6 | | -div.onlinestatusbartop { |
7 | | - position: absolute; |
8 | | - top: 2em; |
9 | | - margin-right: 0px; |
10 | | - display: block !important; |
11 | | -} |
12 | | - |
13 | | -div.onlinestatusbaricon { |
14 | | - border: 0px solid black; |
15 | | - background: transparent; |
16 | | - float: right; |
17 | | - position: relative; |
18 | | - top: 0px; |
19 | | - padding: 5px; |
20 | | -} |
21 | | - |
22 | | -div.onlinestatusbarbody { |
23 | | - right:0px; |
24 | | - margin-top:76px; |
25 | | -} |
Index: trunk/extensions/OnlineStatusBar/OnlineStatusBarSimple.css |
— | — | @@ -1,24 +0,0 @@ |
2 | | -/* |
3 | | -This is a part of css used on english wp, it's needed for wikis |
4 | | -where topicon isn't defined |
5 | | -*/ |
6 | | -div.onlinestatusbartop { |
7 | | - position: absolute; |
8 | | - top: 0em; |
9 | | - margin-right: 2px; |
10 | | - display: block !important; |
11 | | -} |
12 | | - |
13 | | -div.onlinestatusbaricon { |
14 | | - border: 0px solid black; |
15 | | - background: transparent; |
16 | | - float: right; |
17 | | - position: relative; |
18 | | - top: 0px; |
19 | | - padding: 5px; |
20 | | -} |
21 | | - |
22 | | -div.onlinestatusbarbody { |
23 | | - right:0px; |
24 | | - margin-top:2px; |
25 | | -} |
Index: trunk/extensions/OnlineStatusBar/OnlineStatusBar.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | $wgExtensionCredits['other'][] = array( |
19 | 19 | 'path' => __FILE__, |
20 | 20 | 'name' => 'Online status bar', |
21 | | - 'version' => '1.0.4', |
| 21 | + 'version' => '1.1.0', |
22 | 22 | 'author' => array( 'Petr Bena' ), |
23 | 23 | 'descriptionmsg' => 'onlinestatusbar-desc', |
24 | 24 | 'url' => 'https://www.mediawiki.org/wiki/Extension:OnlineStatusBar', |
— | — | @@ -28,15 +28,15 @@ |
29 | 29 | |
30 | 30 | $wgResourceModules['ext.OnlineStatusBar'] = array ( |
31 | 31 | 'skinStyles' => array ( |
32 | | - 'default' => array ( 'OnlineStatusBar.css' ), |
33 | | - 'chick' => array ( 'OnlineStatusBarChick.css' ), |
34 | | - 'vector' => array ( 'OnlineStatusBarVector.css'), |
35 | | - 'modern' => array ( 'OnlineStatusBarModern.css' ), |
36 | | - 'standard' => array ( 'OnlineStatusBarClassic.css' ), |
37 | | - 'monobook' => array ( 'OnlineStatusBarMono.css' ), |
38 | | - 'simple' => array ( 'OnlineStatusBarSimple.css' ), |
39 | | - 'cologne' => array ( 'OnlineStatusBarCologne.css' ), |
40 | | - 'nostalgia' => array ( 'OnlineStatusBarNostalgia.css' ), |
| 32 | + 'default' => array ( 'resources/OnlineStatusBar.css' ), |
| 33 | + 'chick' => array ( 'resources/OnlineStatusBarChick.css' ), |
| 34 | + 'vector' => array ( 'resources/OnlineStatusBarVector.css'), |
| 35 | + 'modern' => array ( 'resources/OnlineStatusBarModern.css' ), |
| 36 | + 'standard' => array ( 'resources/OnlineStatusBarClassic.css' ), |
| 37 | + 'monobook' => array ( 'resources/OnlineStatusBarMono.css' ), |
| 38 | + 'simple' => array ( 'resources/OnlineStatusBarSimple.css' ), |
| 39 | + 'cologne' => array ( 'resources/OnlineStatusBarCologne.css' ), |
| 40 | + 'nostalgia' => array ( 'resources/OnlineStatusBarNostalgia.css' ), |
41 | 41 | ), |
42 | 42 | 'scripts' => 'ext.onlinestatusbar.js', |
43 | 43 | 'localBasePath' => dirname ( __FILE__ ), |
Index: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBar.css |
— | — | @@ -0,0 +1,24 @@ |
| 2 | +/* |
| 3 | +This is a part of css used on english wp, it's needed for wikis |
| 4 | +where topicon isn't defined |
| 5 | +*/ |
| 6 | +div.onlinestatusbartop { |
| 7 | + position: absolute; |
| 8 | + top: 2em; |
| 9 | + margin-right: 0px; |
| 10 | + display: block !important; |
| 11 | +} |
| 12 | + |
| 13 | +div.onlinestatusbaricon { |
| 14 | + border: 0px solid black; |
| 15 | + background: transparent; |
| 16 | + float: right; |
| 17 | + position: relative; |
| 18 | + top: 0px; |
| 19 | + padding: 5px; |
| 20 | +} |
| 21 | + |
| 22 | +div.onlinestatusbarbody { |
| 23 | + right:0px; |
| 24 | + margin-top:0px; |
| 25 | +} |
Property changes on: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBar.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 26 | + native |
Index: trunk/extensions/OnlineStatusBar/resources/images/statusred.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Property changes on: trunk/extensions/OnlineStatusBar/resources/images/statusred.png |
___________________________________________________________________ |
Added: svn:mime-type |
2 | 27 | + image/png |
Index: trunk/extensions/OnlineStatusBar/resources/images/statusorange.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Property changes on: trunk/extensions/OnlineStatusBar/resources/images/statusorange.png |
___________________________________________________________________ |
Added: svn:mime-type |
3 | 28 | + image/png |
Index: trunk/extensions/OnlineStatusBar/resources/images/statusgreen.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Property changes on: trunk/extensions/OnlineStatusBar/resources/images/statusgreen.png |
___________________________________________________________________ |
Added: svn:mime-type |
4 | 29 | + image/png |
Index: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarChick.css |
— | — | @@ -0,0 +1,24 @@ |
| 2 | +/* |
| 3 | +This is a part of css used on english wp, it's needed for wikis |
| 4 | +where topicon isn't defined |
| 5 | +*/ |
| 6 | +div.onlinestatusbartop { |
| 7 | + position: absolute; |
| 8 | + top: 1em; |
| 9 | + margin-right: 4px; |
| 10 | + display: block !important; |
| 11 | +} |
| 12 | + |
| 13 | +div.onlinestatusbaricon { |
| 14 | + border: 0px solid black; |
| 15 | + background: transparent; |
| 16 | + float: right; |
| 17 | + position: relative; |
| 18 | + top: 0px; |
| 19 | + padding: 5px; |
| 20 | +} |
| 21 | + |
| 22 | +div.onlinestatusbarbody { |
| 23 | + right:0px; |
| 24 | + margin-top:0px; |
| 25 | +} |
Property changes on: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarChick.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 26 | + native |
Index: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarClassic.css |
— | — | @@ -0,0 +1,24 @@ |
| 2 | +/* |
| 3 | +This is a part of css used on english wp, it's needed for wikis |
| 4 | +where topicon isn't defined |
| 5 | +*/ |
| 6 | +div.onlinestatusbartop { |
| 7 | + position: absolute; |
| 8 | + top: 4em; |
| 9 | + margin-right: 4px; |
| 10 | + display: block !important; |
| 11 | +} |
| 12 | + |
| 13 | +div.onlinestatusbaricon { |
| 14 | + border: 0px solid black; |
| 15 | + background: transparent; |
| 16 | + float: right; |
| 17 | + position: relative; |
| 18 | + top: 0px; |
| 19 | + padding: 5px; |
| 20 | +} |
| 21 | + |
| 22 | +div.onlinestatusbarbody { |
| 23 | + right:0px; |
| 24 | + margin-top:6px; |
| 25 | +} |
Property changes on: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarClassic.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 26 | + native |
Index: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarNostalgia.css |
— | — | @@ -0,0 +1,24 @@ |
| 2 | +/* |
| 3 | +This is a part of css used on english wp, it's needed for wikis |
| 4 | +where topicon isn't defined |
| 5 | +*/ |
| 6 | +div.onlinestatusbartop { |
| 7 | + position: absolute; |
| 8 | + top: 0px; |
| 9 | + margin-right: 261px; |
| 10 | + display: block !important; |
| 11 | +} |
| 12 | + |
| 13 | +div.onlinestatusbaricon { |
| 14 | + border: 0px solid black; |
| 15 | + background: transparent; |
| 16 | + float: right; |
| 17 | + position: relative; |
| 18 | + top: 0px; |
| 19 | + padding: 5px; |
| 20 | +} |
| 21 | + |
| 22 | +div.onlinestatusbarbody { |
| 23 | + right:0px; |
| 24 | + margin-top:0px; |
| 25 | +} |
Property changes on: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarNostalgia.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 26 | + native |
Index: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarVector.css |
— | — | @@ -0,0 +1,24 @@ |
| 2 | +/* |
| 3 | +This is a part of css used on english wp, it's needed for wikis |
| 4 | +where topicon isn't defined |
| 5 | +*/ |
| 6 | +div.onlinestatusbartop { |
| 7 | + position: absolute; |
| 8 | + top: -2em; |
| 9 | + margin-right: -10px; |
| 10 | + display: block !important; |
| 11 | +} |
| 12 | + |
| 13 | +div.onlinestatusbaricon { |
| 14 | + border: 0px solid black; |
| 15 | + background: transparent; |
| 16 | + float: right; |
| 17 | + position: relative; |
| 18 | + top: 0px; |
| 19 | + padding: 5px; |
| 20 | +} |
| 21 | + |
| 22 | +div.onlinestatusbarbody { |
| 23 | + right:0px; |
| 24 | + margin-top:-10px; |
| 25 | +} |
Property changes on: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarVector.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 26 | + native |
Index: trunk/extensions/OnlineStatusBar/resources/ext.onlinestatusbar.js |
— | — | @@ -0,0 +1,43 @@ |
| 2 | +// script of Online Status Bar extension |
| 3 | +// created by Brion Vibber and Petr Bena |
| 4 | + |
| 5 | +$(function() { |
| 6 | + |
| 7 | +var $statusbar = $('#status-top'), |
| 8 | + $iconbar = $('.onlinestatusbaricon'); |
| 9 | + |
| 10 | +// Only do the rest if we have the statusbar! |
| 11 | +if ($statusbar.length > 0) { |
| 12 | + function updateOnlineStatusBar() { |
| 13 | + // ... code to fetch and update |
| 14 | + $.ajax({ |
| 15 | + url: mw.config.get('wgScriptPath') + '/api' + mw.config.get('wgScriptExtension'), |
| 16 | + data: { |
| 17 | + action: "query", |
| 18 | + prop: "onlinestatus", |
| 19 | + onlinestatususer: mw.config.get('wgTitle'), |
| 20 | + format: 'json' |
| 21 | + }, |
| 22 | + success: function( data ) { |
| 23 | + // code to update the statusbar based on the returned message |
| 24 | + var statusMap = { |
| 25 | + offline:'red', |
| 26 | + online:'green', |
| 27 | + away:'orange', |
| 28 | + busy:'orange' |
| 29 | + }; |
| 30 | + var imgName = statusMap[data.onlinestatus.result] + '.png'; |
| 31 | + var $icon = mw.html.element('img', { |
| 32 | + src: mw.config.values.wgExtensionAssetsPath + "/OnlineStatusBar/resources/images/status" + imgName |
| 33 | + }); |
| 34 | + $statusbar.html(mw.msg('onlinestatusbar-line', mw.config.get('wgTitle'),$icon,mw.msg('onlinestatusbar-status-' + data.onlinestatus.result))); |
| 35 | + } |
| 36 | + }); |
| 37 | + } |
| 38 | + |
| 39 | + // Update the status every couple minutes if we leave the page open |
| 40 | + window.setInterval(updateOnlineStatusBar, 120 * 1000); |
| 41 | + updateOnlineStatusBar(); |
| 42 | +} |
| 43 | + |
| 44 | +}); |
Property changes on: trunk/extensions/OnlineStatusBar/resources/ext.onlinestatusbar.js |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 45 | + native |
Index: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarModern.css |
— | — | @@ -0,0 +1,25 @@ |
| 2 | +/* |
| 3 | +This is a part of css used on english wp, it's needed for wikis |
| 4 | +where topicon isn't defined |
| 5 | +*/ |
| 6 | +div.onlinestatusbartop { |
| 7 | + position: absolute; |
| 8 | + top: 0px; |
| 9 | + margin-right: 2px; |
| 10 | + color: white; |
| 11 | + display: block !important; |
| 12 | +} |
| 13 | + |
| 14 | +div.onlinestatusbaricon { |
| 15 | + border: 0px solid black; |
| 16 | + background: transparent; |
| 17 | + float: right; |
| 18 | + position: relative; |
| 19 | + top: 0px; |
| 20 | + padding: 5px; |
| 21 | +} |
| 22 | + |
| 23 | +div.onlinestatusbarbody { |
| 24 | + right:0px; |
| 25 | + margin-top:-3px; |
| 26 | +} |
Property changes on: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarModern.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 27 | + native |
Index: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarCologne.css |
— | — | @@ -0,0 +1,24 @@ |
| 2 | +/* |
| 3 | +This is a part of css used on english wp, it's needed for wikis |
| 4 | +where topicon isn't defined |
| 5 | +*/ |
| 6 | +div.onlinestatusbartop { |
| 7 | + position: absolute; |
| 8 | + top: 2em; |
| 9 | + margin-right: 0px; |
| 10 | + display: block !important; |
| 11 | +} |
| 12 | + |
| 13 | +div.onlinestatusbaricon { |
| 14 | + border: 0px solid black; |
| 15 | + background: transparent; |
| 16 | + float: right; |
| 17 | + position: relative; |
| 18 | + top: 0px; |
| 19 | + padding: 5px; |
| 20 | +} |
| 21 | + |
| 22 | +div.onlinestatusbarbody { |
| 23 | + right:0px; |
| 24 | + margin-top:76px; |
| 25 | +} |
Property changes on: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarCologne.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 26 | + native |
Index: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarMono.css |
— | — | @@ -0,0 +1,24 @@ |
| 2 | +/* |
| 3 | +This is a part of css used on english wp, it's needed for wikis |
| 4 | +where topicon isn't defined |
| 5 | +*/ |
| 6 | +div.onlinestatusbartop { |
| 7 | + position: absolute; |
| 8 | + z-index: 10; |
| 9 | + top: 10px; |
| 10 | + display: block !important; |
| 11 | +} |
| 12 | + |
| 13 | +div.onlinestatusbaricon { |
| 14 | + border: 0px solid black; |
| 15 | + background: transparent; |
| 16 | + float: right; |
| 17 | + position: relative; |
| 18 | + top: 0px; |
| 19 | + padding: 5px; |
| 20 | +} |
| 21 | + |
| 22 | +div.onlinestatusbarbody { |
| 23 | + right:0px; |
| 24 | + margin-top:-2px; |
| 25 | +} |
Property changes on: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarMono.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 26 | + native |
Index: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarSimple.css |
— | — | @@ -0,0 +1,24 @@ |
| 2 | +/* |
| 3 | +This is a part of css used on english wp, it's needed for wikis |
| 4 | +where topicon isn't defined |
| 5 | +*/ |
| 6 | +div.onlinestatusbartop { |
| 7 | + position: absolute; |
| 8 | + top: 0em; |
| 9 | + margin-right: 2px; |
| 10 | + display: block !important; |
| 11 | +} |
| 12 | + |
| 13 | +div.onlinestatusbaricon { |
| 14 | + border: 0px solid black; |
| 15 | + background: transparent; |
| 16 | + float: right; |
| 17 | + position: relative; |
| 18 | + top: 0px; |
| 19 | + padding: 5px; |
| 20 | +} |
| 21 | + |
| 22 | +div.onlinestatusbarbody { |
| 23 | + right:0px; |
| 24 | + margin-top:2px; |
| 25 | +} |
Property changes on: trunk/extensions/OnlineStatusBar/resources/OnlineStatusBarSimple.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 26 | + native |