diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-28 19:16:04 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-28 19:16:04 +0000 |
commit | 395482b53fc18dea064bac1a77ebf0731899b537 (patch) | |
tree | b322e89a6bdc81dc4067e2748d105636b8a81863 /views/default/css.php | |
parent | 28d9fe85d1c5549c333c04821d0c539c2c2d1fbd (diff) | |
download | elgg-395482b53fc18dea064bac1a77ebf0731899b537.tar.gz elgg-395482b53fc18dea064bac1a77ebf0731899b537.tar.bz2 |
cancel button added to widget gallery
git-svn-id: https://code.elgg.org/elgg/trunk@1199 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css.php')
-rw-r--r-- | views/default/css.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/views/default/css.php b/views/default/css.php index 1b2f37ceb..9b483747d 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -680,6 +680,24 @@ input[type="submit"] { cursor: pointer; } +.cancel_button { + font: 12px/100% Arial, Helvetica, sans-serif; + font-weight: bold; + color: #999999; + background:#dddddd; + border: 1px solid #999999; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + width: auto; + height: 25px; + padding: 2px 6px 2px 6px; + margin:10px 0 10px 10px; + cursor: pointer; +} +.cancel_button:hover { + background: #cccccc; +} + .input-text, .input-tags, .input-url, |