openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit c074752880faf70cfccbe518a10ab8ac86abc38a
parent 44570d2b9b739a7b66e7fda872d9896afb7847a3
Author: dankert <devnull@localhost>
Date:   Sat, 22 Dec 2007 00:26:13 +0100

Statusleiste anzeigen.

Diffstat:
themes/default/css/system.css | 20++++++++++++++++++++
themes/default/templates/status/show.tpl.src.php | 46++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 66 insertions(+), 0 deletions(-)

diff --git a/themes/default/css/system.css b/themes/default/css/system.css @@ -154,6 +154,26 @@ body.border { background-color:gray; } +body.status { + margin:0px; + background-color:AppWorkspace; + color:ButtonText; + font-size:0.7em; +} +body.status table tr td, +body.status table tr td form select, +body.status table tr td form select:disabled, +body.status table tr td form input { + margin:0px; + background-color:AppWorkspace; + color:ButtonText; + font-size:0.9em; + width:auto; + border:0px; + margin:0px; + padding:0px; +} + body.background { margin:0px; background-color:#EEEEEE; diff --git a/themes/default/templates/status/show.tpl.src.php b/themes/default/templates/status/show.tpl.src.php @@ -0,0 +1,45 @@ +page class:status + table + row + if present:projects + cell + form target:_top action:index subaction:project method:post + input type:hidden name:idvar default:text:projectid + image icon:project + selectbox list:projects name:projectid addempty:projects onchange:submit() + button type:ok text:message:> + if value:size:models greaterthan:1 + cell + form target:_top action:index subaction:model method:get + input type:hidden name:idvar default:text:modelid + image icon:model + selectbox list:models name:modelid addempty:model onchange:submit() + button type:ok text:> + if value:size:languages greaterthan:1 + cell + form target:_top action:index subaction:language method:get + input type:hidden name:idvar default:text:languageid + image icon:language + selectbox list:languages name:languageid addempty:language onchange:submit() + button type:ok text:> + if present:templates + cell + form target:cms_main action:main subaction:template method:get + input type:hidden name:idvar default:text:templateid + image icon:template + selectbox list:templates name:templateid addempty:template onchange:submit() + button type:ok text:> + if present:users + cell + form target:cms_main action:main subaction:user method:get + input type:hidden name:idvar default:text:userid + image icon:user + selectbox list:users name:userid addempty:user onchange:submit() + button type:ok text:> + if present:groups + cell + form target:cms_main action:main subaction:group method:get + input type:hidden name:idvar default:text:groupid + image icon:group + selectbox list:groups name:groupid addempty:group onchange:submit() + button type:ok text:>+ \ No newline at end of file