diff options
-rw-r--r-- | views/default/css/elements/icons.php | 8 | ||||
-rw-r--r-- | views/default/css/elements/modules.php | 15 | ||||
-rw-r--r-- | views/default/css/elements/navigation.php | 6 | ||||
-rw-r--r-- | views/default/search/css.php | 9 |
4 files changed, 31 insertions, 7 deletions
diff --git a/views/default/css/elements/icons.php b/views/default/css/elements/icons.php index 1642f26..c1cf937 100644 --- a/views/default/css/elements/icons.php +++ b/views/default/css/elements/icons.php @@ -368,6 +368,10 @@ background-color: #eee; box-shadow: 0px 1px 2px #333; padding: 1px; + + -webkit-border-radius: 1px; + -moz-border-radius: 1px; + border-radius: 1px; } .subgroups-icons a img { @@ -377,6 +381,10 @@ box-shadow: 0px 1px 2px #333; padding: 1px; margin: 0px 3px 3px 0px; + + -webkit-border-radius: 1px; + -moz-border-radius: 1px; + border-radius: 1px; } diff --git a/views/default/css/elements/modules.php b/views/default/css/elements/modules.php index c9147a9..a9ac965 100644 --- a/views/default/css/elements/modules.php +++ b/views/default/css/elements/modules.php @@ -16,13 +16,24 @@ /* Info */ .elgg-module-info > .elgg-head { - background: #dedede; + width: 97%; padding: 5px; margin-bottom: 10px; + border: 1px solid #BBB; + text-shadow: 0px 1px white; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; + + background: #e5e5e5; /* Old browsers */ + background: -moz-linear-gradient(top, #e5e5e5 0%, #e1e1e1 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e5e5), color-stop(100%,#e1e1e1)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #e5e5e5 0%,#e1e1e1 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #e5e5e5 0%,#e1e1e1 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #e5e5e5 0%,#e1e1e1 100%); /* IE10+ */ + background: linear-gradient(to bottom, #e5e5e5 0%,#e1e1e1 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#e1e1e1',GradientType=0 ); /* IE6-9 */ } .elgg-module-info > .elgg-head * { color: #333; @@ -189,6 +200,6 @@ a.elgg-widget-collapsed:before { padding: 10px; } .elgg-widget-placeholder { - border: 2px dashed #dedede; + border: 2px dashed #1F9C93; margin-bottom: 15px; } diff --git a/views/default/css/elements/navigation.php b/views/default/css/elements/navigation.php index 149fb0b..0b19efe 100644 --- a/views/default/css/elements/navigation.php +++ b/views/default/css/elements/navigation.php @@ -364,8 +364,8 @@ border-radius: 3px; font-weight: bold; color: #333; - margin: 0 0 3px; - padding: 2px 4px 2px 8px; + margin: 0 0 3px 5px; + padding: 2px 1px 2px 8px } .elgg-menu-page a:hover { background-color: #333; @@ -375,6 +375,8 @@ .elgg-menu-page li.elgg-state-selected > a { background-color: #333; color: #eee; + margin: 0 0 3px 5px; + padding: 2px 1px 2px 8px } .elgg-menu-page .elgg-child-menu { display: none; diff --git a/views/default/search/css.php b/views/default/search/css.php index 4e5e88c..659d087 100644 --- a/views/default/search/css.php +++ b/views/default/search/css.php @@ -10,6 +10,7 @@ Search plugin ***********************************/ .elgg-search-header { bottom: 15px; + width: 24%; height: 23px; position: absolute; right: 0; @@ -22,11 +23,13 @@ Search plugin display: none; } .elgg-search input[type=text] { - border: 0; - background: #EEE url(<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png) no-repeat 210px -916px; height: 20px; - font-size: 1em; + width: 97%; margin-top: 13px; + border: 0; + background: #EEE url(http://dev.n-1.cc/_graphics/elgg_sprites.png) no-repeat 99% -916px; + font-size: 1em; + } .search-list li { |