diff options
Diffstat (limited to 'template/yoga/admin')
-rw-r--r-- | template/yoga/admin/default-layout.css | 40 | ||||
-rw-r--r-- | template/yoga/admin/intro.tpl | 12 |
2 files changed, 51 insertions, 1 deletions
diff --git a/template/yoga/admin/default-layout.css b/template/yoga/admin/default-layout.css index 227fa0ded..0f82bee63 100644 --- a/template/yoga/admin/default-layout.css +++ b/template/yoga/admin/default-layout.css @@ -103,3 +103,43 @@ FIELDSET#generalConf SPAN.property { FIELDSET#generalConf TEXTAREA.description { width: 70%; } + +/* PWG Links Menu is fixed Graphic charts */ +.pwgmenu { + display: table; + list-style-type: none; + list-style-image: none; /* for firefox */ + white-space: nowrap; + position: relative; + text-decoration : none; + font-family: verdana, arial, helvetica, sans-serif; + font-size: 70%; + line-height: 1.1em; + width: 66em; + margin: 1px 8px 1px auto; + padding: 3px; + background: transparent; +} +.pwgmenu li { + float: left; + width: 10em !important; + text-align: center; + margin: 0 6px; + padding: 0; + +} +.pwgmenu a { + width: 9em !important; + display: block; + padding: 4px 8px; + background: #69c; /* PWG Graphic charts */ + color: white; + text-align: center; + text-decoration: none; + font-weight: bold; + border: 1px solid #fff; /* Why bordered? in case of #69c background */ +} +.pwgmenu a:hover { + background: #f92; + color: white; +} /* PWG Graphic charts */ diff --git a/template/yoga/admin/intro.tpl b/template/yoga/admin/intro.tpl index 4605b35b3..9d35a6bc4 100644 --- a/template/yoga/admin/intro.tpl +++ b/template/yoga/admin/intro.tpl @@ -1,6 +1,16 @@ <!-- $Id$ --> <h2>{lang:title_default}</h2> - +<!-- BEGIN pwgmenu --> +<ul class="pwgmenu"> + <!-- Keep Doctype XHTML Strict acceptable even in Admin --> + <!-- New window is open if Js available (Webmasters accept it usually) --> + <li><a href="{pwgmenu.HOME}" onclick="window.open(this.href, ''); return false;">{lang:HOME}</a></li> + <li><a href="{pwgmenu.WIKI}" onclick="window.open(this.href, ''); return false;">{lang:WIKI / DOC}</a></li> + <li><a href="{pwgmenu.FORUM}" onclick="window.open(this.href, ''); return false;">{lang:FORUM}</a></li> + <li><a href="{pwgmenu.BUGS}" onclick="window.open(this.href, ''); return false;">{lang:BUGS}</a></li> + <li><a href="{pwgmenu.EXTENSIONS}" onclick="window.open(this.href, ''); return false;">{lang:EXTENSIONS}</a></li> +</ul> +<!-- END pwgmenu --> <dl> <dt>{lang:PhpWebGallery version}</dt> <dd> |