diff options
Diffstat (limited to 'views/default/css')
-rw-r--r-- | views/default/css/elements/forms.php | 2 | ||||
-rw-r--r-- | views/default/css/elements/navigation.php | 3 | ||||
-rw-r--r-- | views/default/css/elements/typography.php | 7 |
3 files changed, 11 insertions, 1 deletions
diff --git a/views/default/css/elements/forms.php b/views/default/css/elements/forms.php index e8916d76d..1cac80b58 100644 --- a/views/default/css/elements/forms.php +++ b/views/default/css/elements/forms.php @@ -10,6 +10,8 @@ /* *************************************** Form Elements *************************************** */ +.elgg-fieldset { +} label { font-weight: bold; color: #333333; diff --git a/views/default/css/elements/navigation.php b/views/default/css/elements/navigation.php index 0d275f09c..0c92f069a 100644 --- a/views/default/css/elements/navigation.php +++ b/views/default/css/elements/navigation.php @@ -262,6 +262,9 @@ .elgg-menu-hover > li:last-child { border-bottom: none; } +.elgg-menu-hover .elgg-heading-basic { + display: block; +} .elgg-menu-hover a { display: block; padding: 2px 8px; diff --git a/views/default/css/elements/typography.php b/views/default/css/elements/typography.php index cc1ee3ed2..c76802231 100644 --- a/views/default/css/elements/typography.php +++ b/views/default/css/elements/typography.php @@ -39,5 +39,10 @@ h6 { font-size: 0.8em; } font-family: Monaco,"Courier New",Courier,monospace; } +<?php //@todo many location-dependent styles are for styling headings. Move those here and make them into non-location-dependent classes ?> -<?php //@todo many location-dependent styles are for styling headings. Move those here and make them into non-location-dependent classes ?>
\ No newline at end of file +.elgg-heading-basic { + color: #0054A7; + font-size: 1.2em; + font-weight: bold; +} |