]> gitweb.fluxo.info Git - lorea/saravea_theme.git/commitdiff
changed fieldset legend style
authorfoockinho <foockinho@lorea.org>
Thu, 23 Aug 2012 20:10:11 +0000 (22:10 +0200)
committerfoockinho <foockinho@lorea.org>
Thu, 23 Aug 2012 20:10:11 +0000 (22:10 +0200)
start.php
views/default/css/elements/components.php
views/default/css/elements/forms.php

index 1fcc7f845f2107b47901966c48252a20a994993d..21d4b91b47b6d83222e4fbff4fb8c018bbf1312f 100644 (file)
--- a/start.php
+++ b/start.php
@@ -14,6 +14,7 @@ function n1_theme_init() {
        elgg_register_css('n1:landing_page', elgg_get_simplecache_url('css', 'n1_theme/landing'));\r
        \r
        elgg_extend_view('css/elgg', 'n1_theme/css');\r
+       elgg_extend_view('js/elgg', 'n1_theme/js');\r
        \r
        if (elgg_is_active_plugin('pages')) {\r
                // pages icon url override\r
@@ -52,4 +53,4 @@ function n1_theme_pages_icon_url_override($hook, $type, $returnvalue, $params) {
                                break;\r
                }\r
        }\r
-}
\ No newline at end of file
+}\r
index ffb60ffcfe6d338ec985bfb5bf22e23912987c69..171de21c80e5de969505d550a99f314aac01b4d6 100644 (file)
        -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 {
index c1f337471ee84254dba45185bea68a39d73995c9..8d10ecd9646b02577e5a05c2d8fa9d5ddfa3ebf9 100644 (file)
 /* ***************************************
        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;