diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-30 21:35:28 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-30 21:35:28 +0000 |
commit | 7f0feba983bdbc3f9ca22077c5a6719e14b26e46 (patch) | |
tree | 1f0705e32eb0b0eecdec13ccbad39d209566f2c7 /views/default | |
parent | 0f41ed53843e0f0e5d8257e72be6bec15a5f5b1b (diff) | |
download | elgg-7f0feba983bdbc3f9ca22077c5a6719e14b26e46.tar.gz elgg-7f0feba983bdbc3f9ca22077c5a6719e14b26e46.tar.bz2 |
added some base css for 4 different modules
git-svn-id: http://code.elgg.org/elgg/trunk@7780 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/css/elements/skin.php | 49 |
1 files changed, 48 insertions, 1 deletions
diff --git a/views/default/css/elements/skin.php b/views/default/css/elements/skin.php index d02797cfd..0c8ff05ad 100644 --- a/views/default/css/elements/skin.php +++ b/views/default/css/elements/skin.php @@ -258,4 +258,51 @@ a.selected { } .ajax-loader.left { background-position: left center; -}
\ No newline at end of file +} + +/******************* + +*********************/ +.elgg-aside-module { + margin-bottom: 20px; +} +.elgg-aside-module .elgg-head { + border-bottom: 1px solid #CCCCCC; + margin-bottom: 5px; + padding-bottom: 5px; +} +.elgg-group-module { + margin-bottom: 20px; +} +.elgg-group-module .elgg-head { + padding: 5px 5px 3px; + background-color: #e4e4e4; + border-bottom: 1px solid #cccccc; + -moz-border-radius: 4px 4px 0 0; +} +.elgg-group-module .elgg-head h3 { + color: #333333; +} +.elgg-info-module { + margin-bottom: 20px; +} +.elgg-info-module .elgg-head { + background: #e4e4e4; + padding: 5px; + margin-bottom: 10px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; +} +.elgg-info-module .elgg-head h3 { + color: #333333; +} +.elgg-popup-module { + background-color: white; + border: 1px solid #cccccc; + z-index: 9999; + padding: 5px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5); + -moz-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5); +} |