This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree 3 files changed +10
-8
lines changed
3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -70,11 +70,16 @@ $activeBorderColor: $primary-content;
70
70
71
71
& .expanded {
72
72
margin-left : auto ;
73
- margin-right : -12px ; // overflow into .mx_UserMenu's margin without butchering its bottom stroke
73
+ margin-right : -8px ; // overflow into .mx_UserMenu's margin without butchering its bottom stroke
74
+ border-radius : 8px ;
74
75
75
76
& ::before {
76
77
transform : rotate (90deg );
77
78
}
79
+
80
+ & :hover {
81
+ background-color : $panel-actions ;
82
+ }
78
83
}
79
84
}
80
85
Original file line number Diff line number Diff line change @@ -322,16 +322,15 @@ const SpacePanel = () => {
322
322
< AccessibleTooltipButton
323
323
className = { classNames ( "mx_SpacePanel_toggleCollapse" , { expanded : ! isPanelCollapsed } ) }
324
324
onClick = { ( ) => setPanelCollapsed ( ! isPanelCollapsed ) }
325
- title = { isPanelCollapsed ? _t ( "Open sidebar " ) : _t ( "Close sidebar " ) }
325
+ title = { isPanelCollapsed ? _t ( "Expand " ) : _t ( "Collapse " ) }
326
326
tooltip = { < div >
327
327
< div className = "mx_Tooltip_title" >
328
- { isPanelCollapsed ? _t ( "Open sidebar " ) : _t ( "Close sidebar " ) }
328
+ { isPanelCollapsed ? _t ( "Expand " ) : _t ( "Collapse " ) }
329
329
</ div >
330
330
< div className = "mx_Tooltip_sub" >
331
331
{ isMac ? "⌘ + ⇧ + D" : "Ctrl + Shift + D" }
332
332
</ div >
333
333
</ div > }
334
- forceHide = { isPanelCollapsed }
335
334
/>
336
335
</ UserMenu >
337
336
< Droppable droppableId = "top-level-spaces" >
Original file line number Diff line number Diff line change 1100
1100
"Create" : " Create" ,
1101
1101
"Show all rooms" : " Show all rooms" ,
1102
1102
"Options" : " Options" ,
1103
- "Open sidebar " : " Open sidebar " ,
1104
- "Close sidebar " : " Close sidebar " ,
1103
+ "Expand " : " Expand " ,
1104
+ "Collapse " : " Collapse " ,
1105
1105
"Click to copy" : " Click to copy" ,
1106
1106
"Copied!" : " Copied!" ,
1107
1107
"Failed to copy" : " Failed to copy" ,
1129
1129
"Recommended for public spaces." : " Recommended for public spaces." ,
1130
1130
"Jump to first unread room." : " Jump to first unread room." ,
1131
1131
"Jump to first invite." : " Jump to first invite." ,
1132
- "Expand" : " Expand" ,
1133
- "Collapse" : " Collapse" ,
1134
1132
"Space options" : " Space options" ,
1135
1133
"Remove" : " Remove" ,
1136
1134
"This bridge was provisioned by <user />." : " This bridge was provisioned by <user />." ,
You can’t perform that action at this time.
0 commit comments