summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-08-14 22:59:23 +0200
committerSem <sembrestels@riseup.net>2012-08-14 22:59:23 +0200
commit405f0f8db9f72afed4c357a22c4dd99bea39c419 (patch)
treece26d8007b1acd56ffc81919c58b591f22e489b0
parent19f08612ecf97e509da1428b912584c05a3326c8 (diff)
downloadsaravea_theme-405f0f8db9f72afed4c357a22c4dd99bea39c419.tar.gz
saravea_theme-405f0f8db9f72afed4c357a22c4dd99bea39c419.tar.bz2
Worked in Foockinho's proposal.
-rw-r--r--_graphics/sidebar_background.gifbin0 -> 1211 bytes
-rw-r--r--_graphics/two_sidebar_background.gifbin0 -> 83 bytes
-rw-r--r--views/default/css/elements/buttons.php13
-rw-r--r--views/default/css/elements/components.php25
-rw-r--r--views/default/css/elements/forms.php26
-rw-r--r--views/default/css/elements/layout.php11
-rw-r--r--views/default/css/elements/misc.php2
-rw-r--r--views/default/css/elements/modules.php6
-rw-r--r--views/default/css/elements/navigation.php38
-rw-r--r--views/default/css/elements/typography.php14
-rw-r--r--views/default/css/elgg.php6
-rw-r--r--views/default/css/lightbox.php371
-rw-r--r--views/default/search/css.php64
13 files changed, 139 insertions, 437 deletions
diff --git a/_graphics/sidebar_background.gif b/_graphics/sidebar_background.gif
new file mode 100644
index 0000000..2e6f4d1
--- /dev/null
+++ b/_graphics/sidebar_background.gif
Binary files differ
diff --git a/_graphics/two_sidebar_background.gif b/_graphics/two_sidebar_background.gif
new file mode 100644
index 0000000..ae6bf32
--- /dev/null
+++ b/_graphics/two_sidebar_background.gif
Binary files differ
diff --git a/views/default/css/elements/buttons.php b/views/default/css/elements/buttons.php
index e9c99cf..bc10331 100644
--- a/views/default/css/elements/buttons.php
+++ b/views/default/css/elements/buttons.php
@@ -37,15 +37,15 @@ a.elgg-button {
color: white;
text-shadow: 1px 1px 0px black;
text-decoration: none;
- border: 1px solid #4690d6;
- background: #4690d6 url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px;
+ border: 1px solid #ff4c12;
+ background: #ff4c12 url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px;
}
.elgg-button-submit:hover {
- border-color: #0054a7;
+ border-color: #d86c2c;
text-decoration: none;
color: white;
- background: #0054a7 url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px;
+ background: #d86c2c url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px;
}
.elgg-button-submit.elgg-state-disabled {
@@ -119,7 +119,7 @@ a.elgg-button {
position:relative;
margin-left:0;
color: white;
- border:1px solid #71B9F7;
+ border:1px solid #d86c2c;
-webkit-border-radius:4px;
-moz-border-radius:4px;
@@ -140,7 +140,8 @@ a.elgg-button {
}
.elgg-button-dropdown:hover {
- background-color:#71B9F7;
+ color: white;
+ background-color: #d86c2c;
text-decoration:none;
}
diff --git a/views/default/css/elements/components.php b/views/default/css/elements/components.php
index f675ab7..e62e65d 100644
--- a/views/default/css/elements/components.php
+++ b/views/default/css/elements/components.php
@@ -140,7 +140,7 @@
background-color: red;
}
.elgg-state-notice {
- background-color: #4690D6;
+ background-color: #ff4c12;
}
/* ***************************************
@@ -161,18 +161,26 @@
.elgg-river-timestamp {
color: #666;
font-size: 85%;
- font-style: italic;
line-height: 1.2em;
}
+.elgg-river-timestamp:before {
+ content: '(';
+}
+.elgg-river-timestamp:after {
+ content: ')';
+}
.elgg-river-attachments,
.elgg-river-message,
.elgg-river-content {
- border-left: 1px solid #CCC;
+ color: #444;
+ background-color: #DDD;
+ border-right: solid px #888;
+ border-bottom: solid px #888;
font-size: 85%;
line-height: 1.5em;
margin: 8px 0 5px 0;
- padding-left: 5px;
+ padding: 5px;
}
.elgg-river-attachments .elgg-avatar,
.elgg-river-attachments .elgg-icon {
@@ -185,13 +193,14 @@
.elgg-river-comments-tab {
display: block;
- background-color: #EEE;
- color: #4690D6;
+ background-color: #DDD;
+ color: #444;
margin-top: 5px;
width: auto;
float: right;
font-size: 85%;
padding: 1px 7px;
+ border-right: solid 1px #888;
-webkit-border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
@@ -201,7 +210,10 @@
<?php //@todo components.php ?>
.elgg-river-comments {
margin: 0;
+ background-color: #DDD;
border-top: none;
+ border-right: solid 1px #888;
+ border-bottom: solid 1px #888;
}
.elgg-river-comments li:first-child {
-webkit-border-radius: 5px 0 0;
@@ -214,7 +226,6 @@
border-radius-bottomleft: 0 0 5px 5px;
}
.elgg-river-comments li {
- background-color: #EEE;
border-bottom: none;
padding: 4px;
margin-bottom: 2px;
diff --git a/views/default/css/elements/forms.php b/views/default/css/elements/forms.php
index e358c86..a577876 100644
--- a/views/default/css/elements/forms.php
+++ b/views/default/css/elements/forms.php
@@ -42,8 +42,8 @@ input, textarea {
}
input:focus, textarea:focus {
- border: solid 1px #4690d6;
- background: #e4ecf5;
+ border: solid 1px #ff4c12;
+ background: #ffede2;
color:#333;
}
@@ -185,7 +185,7 @@ input[type="radio"] {
color:white !important;
}
.friends-picker-navigation li a.current {
- background: #4690D6;
+ background: #ff4c12;
color:white !important;
}
.friends-picker-navigation-l, .friends-picker-navigation-r {
@@ -265,7 +265,7 @@ input[type="radio"] {
}
.ui-autocomplete a:hover {
text-decoration: none;
- color: #4690D6;
+ color: #ff4c12;
}
/* ***************************************
@@ -288,7 +288,7 @@ input[type="radio"] {
margin-top: 3px;
width: 208px;
background-color: white;
- border: 1px solid #0054A7;
+ border: 1px solid #d86c2c;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
@@ -306,10 +306,10 @@ input[type="radio"] {
.ui-datepicker-header {
position: relative;
- background: #4690D6;
+ background: #ff4c12;
color: white;
padding: 2px 0;
- border-bottom: 1px solid #0054A7;
+ border-bottom: 1px solid #d86c2c;
}
.ui-datepicker-header a {
color: white;
@@ -335,7 +335,7 @@ input[type="radio"] {
margin: 4px;
}
.ui-datepicker th {
- color: #0054A7;
+ color: #d86c2c;
border: none;
font-weight: bold;
padding: 5px 6px;
@@ -353,18 +353,18 @@ input[type="radio"] {
}
.ui-datepicker-calendar .ui-state-default {
border: 1px solid #ccc;
- color: #4690D6;;
+ color: #ff4c12;
background: #fafafa;
}
.ui-datepicker-calendar .ui-state-hover {
border: 1px solid #aaa;
- color: #0054A7;
+ color: #d86c2c;
background: #eee;
}
.ui-datepicker-calendar .ui-state-active,
.ui-datepicker-calendar .ui-state-active.ui-state-hover {
font-weight: bold;
- border: 1px solid #0054A7;
- color: #0054A7;
- background: #E4ECF5;
+ border: 1px solid #d86c2c;
+ color: #d86c2c;
+ background: #ffede2;
}
diff --git a/views/default/css/elements/layout.php b/views/default/css/elements/layout.php
index 42d8984..c19666f 100644
--- a/views/default/css/elements/layout.php
+++ b/views/default/css/elements/layout.php
@@ -14,6 +14,11 @@
/* ***************************************
PAGE LAYOUT
*************************************** */
+
+body {
+ background-color: #edecfa;
+}
+
/***** DEFAULT LAYOUT ******/
<?php // the width is on the page rather than topbar to handle small viewports ?>
.elgg-page-default {
@@ -65,7 +70,7 @@
/***** PAGE HEADER ******/
.elgg-page-header {
position: relative;
- background: #4690D6 url(<?php echo elgg_get_site_url(); ?>_graphics/header_shadow.png) repeat-x bottom left;
+ background: #27282d url(<?php echo elgg_get_site_url(); ?>_graphics/header_shadow.png) repeat-x bottom left;
}
.elgg-page-header > .elgg-inner {
position: relative;
@@ -76,10 +81,10 @@
min-height: 360px;
}
.elgg-layout-one-sidebar {
- background: transparent url(<?php echo elgg_get_site_url(); ?>_graphics/sidebar_background.gif) repeat-y right top;
+ background: transparent url(<?php echo elgg_get_site_url(); ?>mod/n1_theme/_graphics/sidebar_background.gif) repeat-y right top;
}
.elgg-layout-two-sidebar {
- background: transparent url(<?php echo elgg_get_site_url(); ?>_graphics/two_sidebar_background.gif) repeat-y right top;
+ background: transparent url(<?php echo elgg_get_site_url(); ?>mod/n1_theme/_graphics/two_sidebar_background.gif) repeat-y right top;
}
.elgg-sidebar {
position: relative;
diff --git a/views/default/css/elements/misc.php b/views/default/css/elements/misc.php
index d9622d3..761215a 100644
--- a/views/default/css/elements/misc.php
+++ b/views/default/css/elements/misc.php
@@ -41,7 +41,7 @@
-moz-border-radius: 8px;
border-radius: 8px;
- background: none repeat scroll 0 0 #4690D6;
+ background: none repeat scroll 0 0 #ff4c12;
color: white;
cursor: pointer;
font-size: 1.2em;
diff --git a/views/default/css/elements/modules.php b/views/default/css/elements/modules.php
index ef85d4d..9ecfff8 100644
--- a/views/default/css/elements/modules.php
+++ b/views/default/css/elements/modules.php
@@ -48,7 +48,7 @@
margin-bottom: 5px;
}
.elgg-module-popup > .elgg-head * {
- color: #0054A7;
+ color: #d86c2c;
}
/* Dropdown */
@@ -78,7 +78,7 @@
/* Featured */
.elgg-module-featured {
- border: 1px solid #4690D6;
+ border: 1px solid #ff4c12;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
@@ -86,7 +86,7 @@
}
.elgg-module-featured > .elgg-head {
padding: 5px;
- background-color: #4690D6;
+ background-color: #ff4c12;
}
.elgg-module-featured > .elgg-head * {
color: white;
diff --git a/views/default/css/elements/navigation.php b/views/default/css/elements/navigation.php
index bf1046d..39141b9 100644
--- a/views/default/css/elements/navigation.php
+++ b/views/default/css/elements/navigation.php
@@ -26,12 +26,12 @@
border-radius: 4px;
padding: 2px 6px;
- color: #4690d6;
- border: 1px solid #4690d6;
+ color: #ff4c12;
+ border: 1px solid #ff4c12;
font-size: 12px;
}
.elgg-pagination a:hover {
- background: #4690d6;
+ background: #ff4c12;
color: white;
text-decoration: none;
}
@@ -74,7 +74,7 @@
}
.elgg-tabs a:hover {
background: #dedede;
- color: #4690D6;
+ color: #ff4c12;
}
.elgg-tabs .elgg-state-selected {
border-color: #ccc;
@@ -108,7 +108,7 @@
color: #999;
}
.elgg-breadcrumbs > li > a:hover {
- color: #0054a7;
+ color: #d86c2c;
text-decoration: underline;
}
@@ -136,7 +136,7 @@
}
.elgg-menu-topbar > li > a:hover {
- color: #4690D6;
+ color: #ff4c12;
text-decoration: none;
}
@@ -191,7 +191,7 @@
}
.elgg-menu-site-default > li > a {
- color: white;
+ color: #ed9239;
}
.elgg-menu-site > li > ul {
@@ -205,16 +205,8 @@
.elgg-menu-site-default > .elgg-state-selected > a,
.elgg-menu-site-default > li:hover > a {
- background: white;
- color: #555;
-
- -webkit-box-shadow: 2px -1px 1px rgba(0, 0, 0, 0.25);
- -moz-box-shadow: 2px -1px 1px rgba(0, 0, 0, 0.25);
- box-shadow: 2px -1px 1px rgba(0, 0, 0, 0.25);
-
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
+ color: white;
+ text-shadow: 0px 0px 4px #FFF;
}
.elgg-menu-site-more {
@@ -248,7 +240,7 @@
}
.elgg-menu-site-more > li > a:hover {
- background: #4690D6;
+ background: #ff4c12;
color: white;
}
@@ -310,7 +302,7 @@
}
.elgg-menu-filter > li > a:hover {
background: #dedede;
- color: #4690D6;
+ color: #ff4c12;
}
.elgg-menu-filter > .elgg-state-selected {
border-color: #ccc;
@@ -341,12 +333,12 @@
padding: 2px 4px 2px 8px;
}
.elgg-menu-page a:hover {
- background-color: #0054A7;
+ background-color: #d86c2c;
color: white;
text-decoration: none;
}
.elgg-menu-page li.elgg-state-selected > a {
- background-color: #4690D6;
+ background-color: #ff4c12;
color: white;
}
.elgg-menu-page .elgg-child-menu {
@@ -483,12 +475,12 @@
padding: 2px 4px 2px 8px;
}
.elgg-menu-owner-block li a:hover {
- background-color: #0054A7;
+ background-color: #d86c2c;
color: white;
text-decoration: none;
}
.elgg-menu-owner-block li.elgg-state-selected > a {
- background-color: #4690D6;
+ background-color: #ff4c12;
color: white;
}
diff --git a/views/default/css/elements/typography.php b/views/default/css/elements/typography.php
index f080a29..38198bb 100644
--- a/views/default/css/elements/typography.php
+++ b/views/default/css/elements/typography.php
@@ -11,13 +11,13 @@
Typography
*************************************** */
body {
- font-size: 80%;
+ font-size: 85%;
line-height: 1.4em;
font-family: "Lucida Grande", Arial, Tahoma, Verdana, sans-serif;
}
a {
- color: #4690D6;
+ color: #ff4c12;
}
a:hover,
@@ -77,11 +77,11 @@ blockquote {
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
- color: #0054A7;
+ color: #333;
}
-h1 { font-size: 1.8em; }
-h2 { font-size: 1.5em; line-height: 1.1em; padding-bottom:5px}
+h1 { font-size: 2em; visibility: hidden;}
+h2 { font-size: 1.8em; line-height: 1.1em; padding-bottom:5px}
h3 { font-size: 1.2em; }
h4 { font-size: 1.0em; }
h5 { font-size: 0.9em; }
@@ -103,7 +103,7 @@ h6 { font-size: 0.8em; }
margin-right: 10px;
}
.elgg-heading-basic {
- color: #0054A7;
+ color: #616068;
font-size: 1.2em;
font-weight: bold;
}
@@ -126,7 +126,7 @@ h6 { font-size: 0.8em; }
}
.elgg-loud {
- color: #0054A7;
+ color: #d86c2c;
}
/* ***************************************
diff --git a/views/default/css/elgg.php b/views/default/css/elgg.php
index 4960e6a..37d8aa1 100644
--- a/views/default/css/elgg.php
+++ b/views/default/css/elgg.php
@@ -8,9 +8,9 @@
/*
* Colors:
- * #4690D6 - elgg light blue
- * #0054A7 - elgg dark blue
- * #e4ecf5 - elgg very light blue
+ * #ff4c12 - n-1 light orange
+ * #d86c2c - n-1 dark orange
+ * #e4ecf5 - n-1 very light orange
*/
// check if there is a theme overriding the old css view and use it, if it exists
diff --git a/views/default/css/lightbox.php b/views/default/css/lightbox.php
deleted file mode 100644
index 7d5917c..0000000
--- a/views/default/css/lightbox.php
+++ /dev/null
@@ -1,371 +0,0 @@
-<?php
-/**
- * Fancybox lightbox CSS.
- *
- * Used as a view because we need to pass a full URL to AlphaImageLoader.
- *
- * @package Elgg.Core
- * @subpackage UI
- */
-
-$jquery_path = elgg_get_site_url() . 'vendors/jquery/';
-?>
-
-/*
- * FancyBox - jQuery Plugin
- * Simple and fancy lightbox alternative
- *
- * Examples and documentation at: http://fancybox.net
- *
- * Copyright (c) 2008 - 2010 Janis Skarnelis
- * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
- *
- * Version: 1.3.4 (11/11/2010)
- * Requires: jQuery v1.3+
- *
- * Dual licensed under the MIT and GPL licenses:
- * http://www.opensource.org/licenses/mit-license.php
- * http://www.gnu.org/licenses/gpl.html
- */
-
-#fancybox-loading {
- position: fixed;
- top: 50%;
- left: 50%;
- width: 40px;
- height: 40px;
- margin-top: -20px;
- margin-left: -20px;
- cursor: pointer;
- overflow: hidden;
- z-index: 1104;
- display: none;
-}
-
-#fancybox-loading div {
- position: absolute;
- top: 0;
- left: 0;
- width: 40px;
- height: 480px;
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox.png');
-}
-
-#fancybox-overlay {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 1100;
- display: none;
-}
-
-#fancybox-tmp {
- padding: 0;
- margin: 0;
- border: 0;
- overflow: auto;
- display: none;
-}
-
-#fancybox-wrap {
- position: absolute;
- top: 0;
- left: 0;
- padding: 20px;
- z-index: 1101;
- outline: none;
- display: none;
-}
-
-#fancybox-outer {
- position: relative;
- width: 100%;
- height: 100%;
- background: #fff;
-}
-
-#fancybox-content {
- width: 0;
- height: 0;
- padding: 0;
- outline: none;
- position: relative;
- overflow: hidden;
- z-index: 1102;
- border: 0px solid #fff;
-}
-
-#fancybox-hide-sel-frame {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: transparent;
- z-index: 1101;
-}
-
-#fancybox-close {
- position: absolute;
- top: -15px;
- right: -15px;
- width: 30px;
- height: 30px;
- background: transparent url('<?php echo $jquery_path; ?>fancybox/fancybox.png') -40px 0px;
- cursor: pointer;
- z-index: 1103;
- display: none;
-}
-
-#fancybox-error {
- color: #444;
- font: normal 12px/20px Arial;
- padding: 14px;
- margin: 0;
-}
-
-#fancybox-img {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- border: none;
- outline: none;
- line-height: 0;
- vertical-align: top;
-}
-
-#fancybox-frame {
- width: 100%;
- height: 100%;
- border: none;
- display: block;
-}
-
-#fancybox-left, #fancybox-right {
- position: absolute;
- bottom: 0px;
- height: 100%;
- width: 35%;
- cursor: pointer;
- outline: none;
- background: transparent url('<?php echo $jquery_path; ?>fancybox/blank.gif');
- z-index: 1102;
- display: none;
-}
-
-#fancybox-left {
- left: 0px;
-}
-
-#fancybox-right {
- right: 0px;
-}
-
-#fancybox-left-ico, #fancybox-right-ico {
- position: absolute;
- top: 50%;
- left: -9999px;
- width: 30px;
- height: 30px;
- margin-top: -15px;
- cursor: pointer;
- z-index: 1102;
- display: block;
-}
-
-#fancybox-left-ico {
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox.png');
- background-position: -40px -30px;
-}
-
-#fancybox-right-ico {
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox.png');
- background-position: -40px -60px;
-}
-
-#fancybox-left:hover, #fancybox-right:hover {
- visibility: visible; /* IE6 */
-}
-
-#fancybox-left:hover span {
- left: 20px;
-}
-
-#fancybox-right:hover span {
- left: auto;
- right: 20px;
-}
-
-.fancybox-bg {
- position: absolute;
- padding: 0;
- margin: 0;
- border: 0;
- width: 20px;
- height: 20px;
- z-index: 1001;
-}
-
-#fancybox-bg-n {
- top: -20px;
- left: 0;
- width: 100%;
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox-x.png');
-}
-
-#fancybox-bg-ne {
- top: -20px;
- right: -20px;
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox.png');
- background-position: -40px -162px;
-}
-
-#fancybox-bg-e {
- top: 0;
- right: -20px;
- height: 100%;
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox-y.png');
- background-position: -20px 0px;
-}
-
-#fancybox-bg-se {
- bottom: -20px;
- right: -20px;
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox.png');
- background-position: -40px -182px;
-}
-
-#fancybox-bg-s {
- bottom: -20px;
- left: 0;
- width: 100%;
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox-x.png');
- background-position: 0px -20px;
-}
-
-#fancybox-bg-sw {
- bottom: -20px;
- left: -20px;
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox.png');
- background-position: -40px -142px;
-}
-
-#fancybox-bg-w {
- top: 0;
- left: -20px;
- height: 100%;
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox-y.png');
-}
-
-#fancybox-bg-nw {
- top: -20px;
- left: -20px;
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancybox.png');
- background-position: -40px -122px;
-}
-
-#fancybox-title {
- font-family: Helvetica;
- font-size: 12px;
- z-index: 1102;
-}
-
-.fancybox-title-inside {
- padding-bottom: 10px;
- text-align: center;
- color: #333;
- background: #fff;
- position: relative;
-}
-
-.fancybox-title-outside {
- padding-top: 10px;
- color: #fff;
-}
-
-.fancybox-title-over {
- position: absolute;
- bottom: 0;
- left: 0;
- color: #FFF;
- text-align: left;
-}
-
-#fancybox-title-over {
- padding: 10px;
- background-image: url('<?php echo $jquery_path; ?>fancybox/fancy_title_over.png');
- display: block;
-}
-
-.fancybox-title-float {
- position: absolute;
- left: 0;
- bottom: -20px;
- height: 32px;
-}
-
-#fancybox-title-float-wrap {
- border: none;
- border-collapse: collapse;
- width: auto;
-}
-
-#fancybox-title-float-wrap td {
- border: none;
- white-space: nowrap;
-}
-
-#fancybox-title-float-left {
- padding: 0 0 0 15px;
- background: url('<?php echo $jquery_path; ?>fancybox/fancybox.png') -40px -90px no-repeat;
-}
-
-#fancybox-title-float-main {
- color: #FFF;
- line-height: 29px;
- font-weight: bold;
- padding: 0 0 3px 0;
- background: url('<?php echo $jquery_path; ?>fancybox/fancybox-x.png') 0px -40px;
-}
-
-#fancybox-title-float-right {
- padding: 0 0 0 15px;
- background: url('<?php echo $jquery_path; ?>fancybox/fancybox.png') -55px -90px no-repeat;
-}
-
-/* IE6 */
-
-.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_close.png', sizingMethod='scale'); }
-
-.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_nav_left.png', sizingMethod='scale'); }
-.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_nav_right.png', sizingMethod='scale'); }
-
-.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
-.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_title_left.png', sizingMethod='scale'); }
-.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_title_main.png', sizingMethod='scale'); }
-.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_title_right.png', sizingMethod='scale'); }
-
-.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
- height: expression(this.parentNode.clientHeight + "px");
-}
-
-#fancybox-loading.fancybox-ie6 {
- position: absolute; margin-top: 0;
- top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
-}
-
-#fancybox-loading.fancybox-ie6 div { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_loading.png', sizingMethod='scale'); }
-
-/* IE6, IE7, IE8 */
-.fancybox-ie .fancybox-bg { background: transparent !important; }
-
-.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
-.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
-.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
-.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
-.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
-.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
-.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
-.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $jquery_path; ?>fancybox/fancy_shadow_nw.png', sizingMethod='scale'); } \ No newline at end of file
diff --git a/views/default/search/css.php b/views/default/search/css.php
new file mode 100644
index 0000000..642e143
--- /dev/null
+++ b/views/default/search/css.php
@@ -0,0 +1,64 @@
+<?php
+/**
+ * Elgg Search css
+ *
+ */
+?>
+
+/**********************************
+Search plugin
+***********************************/
+.elgg-search-header {
+ bottom: 5px;
+ height: 23px;
+ position: absolute;
+ right: 0;
+}
+.elgg-search input[type=text] {
+ width: 230px;
+}
+.elgg-search input[type=submit] {
+ display: none;
+}
+.elgg-search input[type=text] {
+ -webkit-border-radius: 2px;
+ -moz-border-radius: 2px;
+ border-radius: 2px;
+
+ -moz-box-shadow: inset 0 0 5px #666;
+ -webkit-box-shadow: inset 0 0 5px #666;
+ box-shadow: inset 0 0 5px #666;
+
+ border: 0;
+ color: #666;
+ font-size: 12px;
+ font-weight: bold;
+ padding: 4px 4px 4px 4px;
+ background: #EEE url(<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png) no-repeat 210px -916px;
+}
+.search-list li {
+ padding: 5px 0 0;
+}
+.search-heading-category {
+ margin-top: 20px;
+ color: #666666;
+}
+
+.search-highlight {
+ background-color: #bbdaf7;
+}
+.search-highlight-color1 {
+ background-color: #bbdaf7;
+}
+.search-highlight-color2 {
+ background-color: #A0FFFF;
+}
+.search-highlight-color3 {
+ background-color: #FDFFC3;
+}
+.search-highlight-color4 {
+ background-color: #ccc;
+}
+.search-highlight-color5 {
+ background-color: #4690d6;
+}