diff options
| author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 11:45:37 +0000 | 
|---|---|---|
| committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 11:45:37 +0000 | 
| commit | 9c7945b097038f6119cbe0c1a18c65411d2cb38a (patch) | |
| tree | 1c7e096e435b3fac59ae941ebfc28a39eb096181 /views/default/css.php | |
| parent | 942539d2865be193f93dd44c9c0ee44f25fbc70b (diff) | |
| download | elgg-9c7945b097038f6119cbe0c1a18c65411d2cb38a.tar.gz elgg-9c7945b097038f6119cbe0c1a18c65411d2cb38a.tar.bz2 | |
the beginnings of the tabbed friends picker
git-svn-id: https://code.elgg.org/elgg/trunk@1592 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css.php')
| -rw-r--r-- | views/default/css.php | 54 | 
1 files changed, 51 insertions, 3 deletions
| diff --git a/views/default/css.php b/views/default/css.php index b4e5e30e1..1720e3067 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -1635,7 +1635,6 @@ div.expandall p {  	text-align:right;  	margin: 0;  	padding:0; -  } @@ -1666,7 +1665,6 @@ div.expandall p {  	height: 270px;  	/*clear: right;*/  	background: white; -  }  .friendsPicker .friendsPicker_container { /* long container used to house end-to-end panels. Width is calculated in JS  */ @@ -1698,7 +1696,10 @@ div.expandall p {  	margin: 0 0 10px 0;  	padding:0; -} +/* +	display:none; + +*/}  .friendsPickerNavigation ul {  	list-style: none; @@ -1789,6 +1790,53 @@ div.expandall p {  .friendsPickerNavigationR {  	background: url("<?php echo $vars['url']; ?>_graphics/friends_picker_arrow_right.gif") no-repeat center;  }	 + + +/* picker tabbed navigation */ +#friendsPickerNavigationTabs { +	margin:10px 0 10px 0; +	padding: 0; +	border-bottom: 1px solid #cccccc; +	display:table; +	width:100%; +} + +#friendsPickerNavigationTabs ul { +	list-style: none; +	padding: 0; +	margin: 0; +} + +#friendsPickerNavigationTabs li { +	float: left; +	border: 1px solid #ffffff; +	border-bottom-width: 0; +	margin: 0; +} + +#friendsPickerNavigationTabs a { +	text-decoration: none; +	display: block; +	padding: 0.24em 1em; +	color: #666666; +	text-align: center; +} + +#friendsPickerNavigationTabs a:hover { +	color: #4690d6; +} + +#friendsPickerNavigationTabs .selected { +	border-color: #cccccc; +} + +#friendsPickerNavigationTabs .selected a { +	position: relative; +	top: 1px; +	background: white; +	color: #4690d6; +} + | 
