diff options
| author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-08-04 12:17:09 +0000 | 
|---|---|---|
| committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-08-04 12:17:09 +0000 | 
| commit | 1c587033ebff296cbc68836b12c38649b6e68299 (patch) | |
| tree | 5a537cc3b7a8402259120c9d2ede98c5f17573ee | |
| parent | 3c89ef502d357d669864e8e9445a8690ce84170f (diff) | |
| download | elgg-1c587033ebff296cbc68836b12c38649b6e68299.tar.gz elgg-1c587033ebff296cbc68836b12c38649b6e68299.tar.bz2 | |
Updated walled-garden login input boxes - so they are not effected by any theme running
git-svn-id: http://code.elgg.org/elgg/trunk@6799 36083f99-b078-4883-b0ff-0f9b5a30f544
| -rw-r--r-- | views/default/page_shells/walled_garden.php | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/views/default/page_shells/walled_garden.php b/views/default/page_shells/walled_garden.php index c14001755..6f9a5da64 100644 --- a/views/default/page_shells/walled_garden.php +++ b/views/default/page_shells/walled_garden.php @@ -105,6 +105,7 @@ body {background: white;}  	padding: 5px;  	border: 1px solid #cccccc;  	color:#666666; +	background-color: white;  	-webkit-border-radius: 5px;  	-moz-border-radius: 5px;  } @@ -121,6 +122,9 @@ body {background: white;}  	border: solid 1px #4690d6;  	background: #e4ecf5;  	color:#333333; +	-webkit-box-shadow: none; +	-moz-box-shadow: none; +	box-shadow: none;	  }  .walledgardenlogin .input_password {  	width:200px; @@ -129,6 +133,17 @@ body {background: white;}  	border: solid 1px #4690d6;  	background-color: #e4ecf5;  	color:#333333; +	-webkit-box-shadow: none; +	-moz-box-shadow: none; +	box-shadow: none; +} +.walledgardenlogin input[type="password"]:focus { +	border: solid 1px #4690d6; +	background-color: #e4ecf5; +	color:#333333; +	-webkit-box-shadow: none; +	-moz-box-shadow: none; +	box-shadow: none;  }  .walledgardenlogin .submit_button {  	font-size: 14px; | 
