diff options
| author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-23 15:25:23 +0000 | 
|---|---|---|
| committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-23 15:25:23 +0000 | 
| commit | 630b14c96e0c3d89a2b055f89787486c296fa724 (patch) | |
| tree | 33e40e5de615a993e60679cb831dda847230528c | |
| parent | 3c840aee3ec9b4f94a5610678ab1550a51b431fe (diff) | |
| download | elgg-630b14c96e0c3d89a2b055f89787486c296fa724.tar.gz elgg-630b14c96e0c3d89a2b055f89787486c296fa724.tar.bz2  | |
css updates
git-svn-id: https://code.elgg.org/elgg/trunk@1065 36083f99-b078-4883-b0ff-0f9b5a30f544
| -rw-r--r-- | views/default/canvas/layouts/widgets.php | 14 | ||||
| -rw-r--r-- | views/default/css.php | 57 | 
2 files changed, 51 insertions, 20 deletions
diff --git a/views/default/canvas/layouts/widgets.php b/views/default/canvas/layouts/widgets.php index ccd305690..1ef87d2f6 100644 --- a/views/default/canvas/layouts/widgets.php +++ b/views/default/canvas/layouts/widgets.php @@ -148,8 +148,6 @@  </form>  </div><!-- /customise_editpanel --> -<br /> -  <?php  		} @@ -158,10 +156,18 @@  <!-- right sidebar -->  <div id="layout_sidebar_right"> -<!-- temporary customise button here --> -<a href="javascript:void(0);" class="toggle_customise_edit_panel">Customise Layout</a><br /><br />  <div id="wrapper_sidebar_right"> +<?php  +   if($_SESSION['user']->guid == page_owner()){ +?> +	<!-- customise page button --> +	<a href="javascript:void(0);" class="toggle_customise_edit_panel">Customise Layout</a> +	<div style="clear:both;"></div> +<?php + } +?> +  	<?php if (isset($vars['area2'])) echo $vars['area2']; ?>  	<?php diff --git a/views/default/css.php b/views/default/css.php index 185d49f53..946a9f942 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -82,6 +82,8 @@ body {  a {  	color: #4690d6;  	text-decoration: none; +	-moz-outline-style: none; +	outline: none;  }  a:visited {  	color: #336699; @@ -250,12 +252,7 @@ h6 { font-size: 0.8em; }  }  #layout_footer a {     color:white; -}
 -
 -.page_title {
 -   padding:0px 10px 20px 20px;
 -}
 - +}  /* ***************************************    CUSTOMISE PANEL (PROFILE & DASHBOARD)  *************************************** */ @@ -412,9 +409,19 @@ h6 { font-size: 0.8em; }  /* ***************************************    COLLAPSABLE BOXES  *************************************** */ -/* temp. customise button */ -a.toggle_customise_edit_panel { +/* open 'customise page' panel button */ +a.toggle_customise_edit_panel {   	float:right; +	color: #4690d6; +	background: #f5f5f5; +	border:1px solid #cccccc; +	padding: 5px 10px 5px 10px; +	margin:0 0 20px 0; +} +a.toggle_customise_edit_panel:hover {  +	color: #ffffff; +	background: #0054a7; +	text-decoration:none;  }  .collapsable_box { @@ -588,6 +595,8 @@ textarea:focus, input[type="text"]:focus {  	color: #ffffff;  	background:#4690d6;  	border: 1px solid #4690d6; +	-webkit-border-radius: 3px;  +	-moz-border-radius: 3px;  	width: auto;  	height: 25px;  	padding: 2px 6px 2px 6px; @@ -604,6 +613,8 @@ input[type="submit"] {  	color: #ffffff;  	background:#4690d6;  	border: 1px solid #4690d6; +	-webkit-border-radius: 3px;  +	-moz-border-radius: 3px;  	width: auto;  	height: 25px;  	padding: 2px 6px 2px 6px; @@ -660,10 +671,8 @@ input[type="submit"] {  	margin-right:50px;  }  #searchform input.search_input { -	-moz-border-radius-bottomleft:4px; -	-moz-border-radius-bottomright:4px; -	-moz-border-radius-topleft:4px; -	-moz-border-radius-topright:4px; +	-webkit-border-radius: 3px;  +	-moz-border-radius: 3px;  	background-color:#FFFFFF;  	border:1px solid #BBBBBB;  	color:#999999; @@ -674,10 +683,8 @@ input[type="submit"] {  	width:180px;  }  #searchform input.search_submit_button { -	-moz-border-radius-bottomleft:4px; -	-moz-border-radius-bottomright:4px; -	-moz-border-radius-topleft:4px; -	-moz-border-radius-topright:4px; +	-webkit-border-radius: 3px;  +	-moz-border-radius: 3px;  	color:#ffffff;  	background: #cccccc;  	border:none; @@ -692,6 +699,24 @@ input[type="submit"] {  #searchform input.search_submit_button:hover {  	color:#000000;  } +.widget_status_statusmessage { +	font-size:1.2em; +	line-height:1.2em; +	font-weight:bold; +	color:#666666; +	background:#fdffc3; +	padding:3px; +} + +.widget_status_messagetimestamp { +	font-size:0.9em; +	color:#999999; +	margin:0; +} + +.page_title { +	padding:0px 10px 20px 20px; +}  /* ***************************************  	END  | 
