openrat-cms

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

commit 32b617fe3578a3c4185bb6c88f32fab5f8aa714f
parent ed50797167cffc3139ed8a86d7a91b9aa47860d9
Author: Jan Dankert <devnull@localhost>
Date:   Sun,  6 Nov 2011 23:26:40 +0100

OK-Button hervorheben.

Diffstat:
themes/default/css/layout.css | 22++++++++++++++++++++++
themes/default/layout/perspective/header.php | 2+-
2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/themes/default/css/layout.css b/themes/default/css/layout.css @@ -190,6 +190,28 @@ div.content input.ok color:black; } +div.command > input.submit +{ + margin:5px; + padding-top:4px; + padding-bottom:4px; + padding-left:7px; + padding-right:7px; + border:1px solid grey; + -moz-border-radius:5px; /* Mozilla */ + -webkit-border-radius:5px; /* Webkit */ + -khtml-border-radius:5px; /* Konqui */ + border-radius:5px; + background-color: white; + background: -moz-linear-gradient(top, gray, silver); + background: -webkit-gradient(linear, left top, left bottom, from(gray), to(silver)); + font-style:normal; + font-weight:bold; + text-decoration:none; + cursor:pointer; + color:black; +} + /* S c h a t t e n */ div.content a.action, div.content a.help, diff --git a/themes/default/layout/perspective/header.php b/themes/default/layout/perspective/header.php @@ -62,7 +62,7 @@ function view_header( $name ) <div class="status"> </div> <div class="command"> - <input type="button" value="<?php echo lang('BUTTON_OK') ?>" onclick="formSubmit( $(this).parent().parent().parent().find('form') );" /> + <input type="button" class="submit" value="<?php echo lang('BUTTON_OK') ?>" onclick="formSubmit( $(this).parent().parent().parent().find('form') );" /> <!-- <input type="button" value="<?php echo lang('CANCEL') ?>" /> -->