diff options
author | foockinho <foockinho@lorea.org> | 2012-08-23 22:10:11 +0200 |
---|---|---|
committer | foockinho <foockinho@lorea.org> | 2012-08-23 22:10:11 +0200 |
commit | 0ded21c3ad58cda7f815ef4f582eb83a8d7f15d7 (patch) | |
tree | f797cf7ffbe2669f80d93073b92f15f832c6f20e /views/default | |
parent | 6b433f614634ec03bd78e96eee583664fd1521f0 (diff) | |
download | saravea_theme-0ded21c3ad58cda7f815ef4f582eb83a8d7f15d7.tar.gz saravea_theme-0ded21c3ad58cda7f815ef4f582eb83a8d7f15d7.tar.bz2 |
changed fieldset legend style
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/css/elements/components.php | 8 | ||||
-rw-r--r-- | views/default/css/elements/forms.php | 26 |
2 files changed, 30 insertions, 4 deletions
diff --git a/views/default/css/elements/components.php b/views/default/css/elements/components.php index ffb60ff..171de21 100644 --- a/views/default/css/elements/components.php +++ b/views/default/css/elements/components.php @@ -122,12 +122,12 @@ -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45); - -webkit-border-radius: 8px; - -moz-border-radius: 8px; - border-radius: 8px; + -webkit-border-radius: 3px; + -moz-border-radius: 3x; + border-radius: 3px; } .elgg-state-success { - background-color: #5175B0; + background-color: #219C8B; color: white; } .elgg-state-error { diff --git a/views/default/css/elements/forms.php b/views/default/css/elements/forms.php index c1f3374..8d10ecd 100644 --- a/views/default/css/elements/forms.php +++ b/views/default/css/elements/forms.php @@ -10,8 +10,34 @@ /* *************************************** Form Elements *************************************** */ +fieldset.elgg-fieldset { + border: 1px solid #ccc; + padding: 10px; + margin-top: 10px; + background-color: #dedede; + + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +fieldset.elgg-fieldset legend { + font-weight: bold; + font-size: 110%; + padding: 3px 8px; + background-color: #EEE; + border: 1px solid #BBB; + + box-shadow: 1px 1px 2px #bbb; + + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + fieldset > div { margin-bottom: 15px; + } fieldset > div:last-child { margin-bottom: 0; |