This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +16
-10
lines changed
res/css/views/room_settings
src/components/views/room_settings Expand file tree Collapse file tree 2 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,20 @@ limitations under the License.
27
27
box-shadow : none ;
28
28
}
29
29
30
- .mx_AliasSettings summary {
31
- cursor : pointer ;
32
- color : $accent-color ;
33
- font-weight : 600 ;
34
- list-style : none ;
35
-
36
- // list-style doesn't do it for webkit
37
- & ::-webkit-details-marker {
38
- display : none ;
30
+ .mx_AliasSettings {
31
+ summary {
32
+ cursor : pointer ;
33
+ color : $accent-color ;
34
+ font-weight : 600 ;
35
+ list-style : none ;
36
+
37
+ // list-style doesn't do it for webkit
38
+ & ::-webkit-details-marker {
39
+ display : none ;
40
+ }
41
+ }
42
+
43
+ .mx_AliasSettings_localAliasHeader {
44
+ margin-top : 35px ;
39
45
}
40
46
}
Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ export default class AliasSettings extends React.Component {
381
381
noItemsLabel = { _t ( 'No other published addresses yet, add one below' ) }
382
382
placeholder = { _t ( 'New published address (e.g. #alias:server)' ) }
383
383
/>
384
- < span className = 'mx_SettingsTab_subheading' > { _t ( "Local Addresses" ) } </ span >
384
+ < span className = 'mx_SettingsTab_subheading mx_AliasSettings_localAliasHeader ' > { _t ( "Local Addresses" ) } </ span >
385
385
< p > { _t ( "Set addresses for this room so users can find this room through your homeserver (%(localDomain)s)" , { localDomain} ) } </ p >
386
386
< details onToggle = { this . onLocalAliasesToggled } >
387
387
< summary > { this . state . detailsOpen ? _t ( 'Show less' ) : _t ( "Show more" ) } </ summary >
You can’t perform that action at this time.
0 commit comments