diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-14 21:41:44 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-14 21:41:44 -0300 | 
| commit | 867e31999f3c8a77c01a1d4e881de593438b51b3 (patch) | |
| tree | 9a3961a827243455e76d2ac53519f5109459e62d /mod/saravea_theme/views/default/css/elements/misc.php | |
| parent | 65285c74f1ee92981aaf5570e4ba5075e0ad6d2f (diff) | |
| parent | beaab428eb8b6e19ca6d413249f6307100d9b853 (diff) | |
| download | elgg-867e31999f3c8a77c01a1d4e881de593438b51b3.tar.gz elgg-867e31999f3c8a77c01a1d4e881de593438b51b3.tar.bz2 | |
Merge commit 'beaab428eb8b6e19ca6d413249f6307100d9b853' as 'mod/saravea_theme'
Diffstat (limited to 'mod/saravea_theme/views/default/css/elements/misc.php')
| -rw-r--r-- | mod/saravea_theme/views/default/css/elements/misc.php | 62 | 
1 files changed, 62 insertions, 0 deletions
| diff --git a/mod/saravea_theme/views/default/css/elements/misc.php b/mod/saravea_theme/views/default/css/elements/misc.php new file mode 100644 index 000000000..d2f0a8bed --- /dev/null +++ b/mod/saravea_theme/views/default/css/elements/misc.php @@ -0,0 +1,62 @@ +/* *************************************** +	MISC +*************************************** */ +#login-dropdown { +	position: absolute; +	top:10px; +	right:0; +	z-index: 100; +} + +/* *************************************** +	AVATAR UPLOADING & CROPPING +*************************************** */ + +#current-user-avatar { +	border-right:1px solid #ccc; +} +#avatar-croppingtool { +	border-top: 1px solid #ccc; +} +#user-avatar-cropper { +	float: left; +} +#user-avatar-preview { +	float: left; +	position: relative; +	overflow: hidden; +	width: 100px; +	height: 100px; +} + +/* *************************************** +	FRIENDS COLLECTIONS +*************************************** */ + +#friends_collections_accordian li { +	color: #666; +} +#friends_collections_accordian li h2 { +	-webkit-border-radius: 3px; +	-moz-border-radius: 3px; +	border-radius: 3px; +	 +	background: none repeat scroll 0 0 #ff4c12; +	color: white; +	cursor: pointer; +	font-size: 1.2em; +	margin: 10px 0; +	padding: 4px 2px 4px 6px; +} +#friends_collections_accordian li h2:hover { +	background-color: #333; +} +#friends_collections_accordian .friends_collections_controls { +	float: right; +	font-size: 70%; +} +#friends_collections_accordian .friends-picker-main-wrapper { +	background: none repeat scroll 0 0 white; +	display: none; +	padding: 0; +} | 
