81e1f36c4b 
								
							
								 
							
						 
						
							
							
								
								Tidy up TemporaryTile now that it isn't temporary  
							
							
							
						 
						
							2021-03-09 11:19:41 +00:00  
				
					
						
							
							
								 
						
							
							
								c921567831 
								
							
								 
							
						 
						
							
							
								
								WIP: the new call views work now  
							
							... 
							
							
							
							just need to add the buttons and then get rid of the status bar 
							
						 
						
							2020-11-12 18:09:56 +00:00  
				
					
						
							
							
								 
						
							
							
								7820f9c28a 
								
							
								 
							
						 
						
							
							
								
								Switch to WidgetAvatar  
							
							... 
							
							
							
							Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> 
							
						 
						
							2020-10-12 13:16:55 +01:00  
				
					
						
							
							
								 
						
							
							
								d861536487 
								
							
								 
							
						 
						
							
							
								
								Make globe transparent  
							
							
							
						 
						
							2020-08-14 10:30:54 +01:00  
				
					
						
							
							
								 
						
							
							
								4ec602b960 
								
							
								 
							
						 
						
							
							
								
								Make cutout in the decorated room avatar transparent rather than fixed  
							
							
							
						 
						
							2020-08-14 10:20:59 +01:00  
				
					
						
							
							
								 
						
							
							
								ce226ab534 
								
							
								 
							
						 
						
							
							
								
								Replace Riot with Element in docs and comments  
							
							... 
							
							
							
							This only covers the simple cases of references to issues and repos. More
complex areas, such as deployment scripts, will be handled separately.
Part of https://github.com/vector-im/element-web/issues/14864  
							
						 
						
							2020-08-03 18:33:36 +01:00  
				
					
						
							
							
								 
						
							
							
								96065ae982 
								
							
								 
							
						 
						
							
							
								
								RoomTile2 -> RoomTile  
							
							
							
						 
						
							2020-07-17 15:43:29 -06:00  
				
					
						
							
							
								 
						
							
							
								74fa3b2c81 
								
							
								 
							
						 
						
							
							
								
								Fix rough badge alignment for community invite tiles again  
							
							... 
							
							
							
							Fixes https://github.com/vector-im/riot-web/issues/14392  
							
						 
						
							2020-07-09 10:39:53 -06:00  
				
					
						
							
							
								 
						
							
							
								0d6e7759d0 
								
							
								 
							
						 
						
							
							
								
								Fix review details  
							
							... 
							
							
							
							- spelling mistake
- unwatch watched setting
- lint (indentation)
- use more performant component 
							
						 
						
							2020-07-07 15:11:08 +01:00  
				
					
						
							
							
								 
						
							
							
								5176685d20 
								
							
								 
							
						 
						
							
							
								
								Implement incoming call box  
							
							
							
						 
						
							2020-07-06 23:05:00 +01:00  
				
					
						
							
							
								 
						
							
							
								e08512020f 
								
							
								 
							
						 
						
							
							
								
								Fix a couple badge alignment issues with community invites  
							
							
							
						 
						
							2020-07-02 14:05:31 -06:00  
				
					
						
							
							
								 
						
							
							
								dcd51b5be3 
								
							
								 
							
						 
						
							
							
								
								Implement breadcrumb notifications and scrolling  
							
							
							
						 
						
							2020-06-30 23:24:46 +01:00  
				
					
						
							
							
								 
						
							
							
								66067719f4 
								
							
								 
							
						 
						
							
							
								
								Small fixes  
							
							
							
						 
						
							2020-04-27 18:36:05 +01:00  
				
					
						
							
							
								 
						
							
							
								66783dff9e 
								
							
								 
							
						 
						
							
							
								
								Fix scaling of the avatar in UserInfo  
							
							
							
						 
						
							2019-12-19 12:27:25 +00:00  
				
					
						
							
							
								 
						
							
							
								12f92c49a6 
								
									
								
							
								 
							
						 
						
							
							
								
								Mark a few CSS classes as not selectable  
							
							... 
							
							
							
							Should be enough to make copy-pasting not a nightmare.
For vector-im/riot-web#7460 
Also remove an instance where the vendor prefixes were used, but a build
step adds those automatically
Signed-off-by: Luca Weiss <luca@z3ntu.xyz> 
							
						 
						
							2019-04-23 19:52:48 +02:00  
				
					
						
							
							
								 
						
							
							
								990d6dec15 
								
							
								 
							
						 
						
							
							
								
								Fix initial letter avatar vertical offset in Firefox  
							
							... 
							
							
							
							In at least Firefox, the case of relative positioned inline elements (such as
mx_BaseAvatar) with absolute positioned children (such as mx_BaseAvatar_initial)
is a dark corner full of spider webs. It will give different results during full
reflow of the page vs. incremental reflow of small portions. While that's surely
a browser bug, we can avoid it by using `inline-block` instead of the default
`inline`.
Fixes https://github.com/vector-im/riot-web/issues/5594 
Might help with https://github.com/vector-im/riot-web/issues/9088 
See also https://bugzilla.mozilla.org/show_bug.cgi?id=1535053  and
https://bugzilla.mozilla.org/show_bug.cgi?id=255139  for more details on browser
behavior in this case. 
							
						 
						
							2019-03-14 17:50:03 +00:00  
				
					
						
							
							
								 
						
							
							
								807d3aba6e 
								
							
								 
							
						 
						
							
							
								
								Use integer padding / border for avatar  
							
							... 
							
							
							
							It seems fractional spacing results in different behavior across browsers,
including unbalanced spacing, making the avatar appear uncentered.
Here we avoid this by using integers that seem to closely match the comps.
Fixes https://github.com/vector-im/riot-web/issues/8134 . 
							
						 
						
							2019-01-15 16:37:16 -06:00  
				
					
						
							
							
								 
						
							
							
								4b13774585 
								
							
								 
							
						 
						
							
							
								
								Revert to avatar only when custom status disabled  
							
							... 
							
							
							
							This returns to the previous behavior of avatar only without a button when the
custom status feature is disabled so that you don't get pointer cursor for
something that does nothing when clicked.
The avatar ring spacing is kept consistent with and without the feature enabled
by using a different class in CSS. 
							
						 
						
							2019-01-15 10:54:29 -06:00  
				
					
						
							
							
								 
						
							
							
								eae1e4c9aa 
								
							
								 
							
						 
						
							
							
								
								Tweak custom status avatar ring  
							
							... 
							
							
							
							Adjusts the appearance of the avatar ring to match the latest comps.
In addition, we now always render the surrounding button element, which
simplifies styling since the same size is now occupied both with and without the
feature.
This improves alignment between text in the composer and text in the message
history (https://github.com/vector-im/riot-web/issues/8111 ). 
							
						 
						
							2019-01-15 10:54:29 -06:00  
				
					
						
							
							
								 
						
							
							
								852d6df580 
								
							
								 
							
						 
						
							
							
								
								Fix composer avatar being an oval when a custom status is set  
							
							... 
							
							
							
							Fixes this: https://t2l.io/_matrix/media/v1/download/t2l.io/0d5c7fa9a4b5bf226a020def8480a887  
							
						 
						
							2019-01-03 18:06:37 -07:00  
				
					
						
							
							
								 
						
							
							
								b0b7932f5f 
								
							
								 
							
						 
						
							
							
								
								Move status context menu to its own component  
							
							... 
							
							
							
							This fixes a lot of the state bugs such as buttons not updating, etc. 
This commit also adds the border around the avatar to indicate a status is set. 
							
						 
						
							2018-12-12 22:26:39 -07:00  
				
					
						
							
							
								 
						
							
							
								99f5b9e39b 
								
							
								 
							
						 
						
							
							
								
								Misc cleanup of whitespace  
							
							
							
						 
						
							2018-12-12 18:18:43 -07:00  
				
					
						
							
							
								 
						
							
							
								a91963e5ee 
								
							
								 
							
						 
						
							
							
								
								Replace the avatar next to the composer with a status entry menu  
							
							... 
							
							
							
							The checkmark might change, and there appears to be some state tracking mishaps that need to be worked out.
Part of https://github.com/vector-im/riot-web/issues/1528  
							
						 
						
							2018-12-12 18:03:30 -07:00  
				
					
						
							
							
								 
						
							
							
								32dd7f976f 
								
							
								 
							
						 
						
							
							
								
								merge  vector-im/riot-web#5881  into matrix-react-sdk  
							
							
							
						 
						
							2018-04-16 00:04:04 +01:00  
				
					
						
							
							
								 
						
							
							
								79d3cca6e9 
								
							
								 
							
						 
						
							
							
								
								move components' CSS to be in the same repo as their JS  
							
							
							
						 
						
							2018-04-12 00:23:58 +01:00