openrat-cms

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

commit bb50baedbd15e0bd28a8f2f45aed2a443cb0919a
parent dbd6cb93edba71d98695da4dabc4051c73c93d3b
Author: dankert <devnull@localhost>
Date:   Thu, 24 May 2007 22:25:24 +0200

Neues Element "fieldset".

Diffstat:
themes/default/css/default.css | 34+++++++++++++++++++++++++++++-----
themes/default/css/system.css | 18++++++++++++++----
themes/default/include/elements.ini.php | 1+
themes/default/include/html/fieldset-end.inc.php | 2++
themes/default/include/html/fieldset.inc.php | 2++
5 files changed, 48 insertions(+), 9 deletions(-)

diff --git a/themes/default/css/default.css b/themes/default/css/default.css @@ -267,7 +267,14 @@ td.f2 border-right:3px solid #dad2b6; } -td.act {background-color:#eae2c6; padding:15px; border-top:0px solid gray; } +td.act +{ + background-color:#eae2c6; + padding:15px; + margin-top:10px; + border-top:1px solid gray; +} + .mainmenu_headline{color:#CCCCCC; font-size:13px; color:black; font-weight:bold; } .mainmenu_name{color:white; font-weight:bold; font-size:13px; } .mainmenu_val{color:#CCCCCC; font-weight:normal; } @@ -291,14 +298,14 @@ textarea input:hover, textarea:hover { - border:2px solid black; + border-color:black; } input:focus, textarea:focus { background-color:#7B9CBD; - border:2px solid yellow; + border-color:yellow; /* font-weight:bold;*/ } @@ -420,4 +427,22 @@ input.searchbutton padding:0px; font-size:4px; max-height:20px; -}- \ No newline at end of file +} + +fieldset +{ + border-top:1px solid black; + border-bottom:0px; + border-left:0px; + border-right:0px; + margin-top:5px; + margin-bottom:0px; + margin-left:0px; + margin-right:0px; + padding:0px; +} + +legend +{ + font-weight:bold; +} diff --git a/themes/default/css/system.css b/themes/default/css/system.css @@ -244,7 +244,17 @@ td.f2 border-right:3px solid #dad2b6; } -td.act {background-color:AppWorkspace; padding:15px; border-top:0px solid gray; } +fieldset +{ + border-top:1px solid ButtonFace; +} + +td.act +{ + border-top:1px solid ButtonFace; + background-color:AppWorkspace; +} + .mainmenu_headline{color:Window; font-size:13px; color:black; font-weight:bold; } .mainmenu_name{color:white; font-weight:bold; font-size:13px; } .mainmenu_val{color:Window; font-weight:normal; } @@ -280,7 +290,7 @@ textarea input, textarea { - border:2px solid InactiveBorder; + border:1px solid ButtonFace; padding:5px; background-color:Window; } @@ -289,7 +299,7 @@ textarea input:hover, textarea:hover { - border:2px solid ActiveBorder; + border-color:Highlight; background-color:Window; } @@ -297,8 +307,8 @@ textarea:hover input:focus, textarea:focus { + border-color:Highlight; background-color:Window; - border:2px solid ActiveBorder; } /* Knöpfe */ diff --git a/themes/default/include/elements.ini.php b/themes/default/include/elements.ini.php @@ -23,6 +23,7 @@ input = class:,default:,type:text,index,name:*,prefix,value,size:40,maxlength inputarea= name,rows:10,cols:40,value,index,onchange,prefix,class:,default: insert = file:* label = for:*,value +fieldset = title link = title:,config,target:_self,var,url,class:,action,subaction,id,var1,value1,var2,value2,var3,value3,var4,value4,var5,value5,accesskey list = list:*,extract:false,key:list_key,value:list_value logo = name:* diff --git a/themes/default/include/html/fieldset-end.inc.php b/themes/default/include/html/fieldset-end.inc.php @@ -0,0 +1 @@ +</fieldset>+ \ No newline at end of file diff --git a/themes/default/include/html/fieldset.inc.php b/themes/default/include/html/fieldset.inc.php @@ -0,0 +1 @@ +<fieldset><legend><?php echo $attr_title ?></legend>+ \ No newline at end of file