mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
b678e84272
The thing it describes actually happened
63 lines
1.3 KiB
SCSS
63 lines
1.3 KiB
SCSS
.mx_UserSettingsDialog_header {
|
|
font-size: 24px;
|
|
display: block;
|
|
text-align: center;
|
|
color: $dialog-title-fg-color;
|
|
margin-top: 16px;
|
|
margin-bottom: 24px;
|
|
padding: 0;
|
|
}
|
|
|
|
.mx_UserSettingsDialog_close {
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 25px;
|
|
}
|
|
|
|
.mx_UserSettingsDialog_closeIcon {
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.mx_UserSettingsDialog_closeIcon:before {
|
|
mask: url('$(res)/img/feather-icons/cancel.svg');
|
|
background-color: $dialog-close-fg-color;
|
|
mask-repeat: no-repeat;
|
|
mask-size: 16px;
|
|
mask-position: center;
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
|
|
// ICONS
|
|
// ==========================================================
|
|
|
|
.mx_UserSettingsDialog_settingsIcon:before {
|
|
mask: url('$(res)/img/feather-icons/settings.svg');
|
|
}
|
|
|
|
.mx_UserSettingsDialog_voiceIcon:before {
|
|
mask: url('$(res)/img/feather-icons/phone.svg');
|
|
}
|
|
|
|
.mx_UserSettingsDialog_bellIcon:before {
|
|
mask: url('$(res)/img/feather-icons/notifications.svg');
|
|
}
|
|
|
|
.mx_UserSettingsDialog_preferencesIcon:before {
|
|
mask: url('$(res)/img/feather-icons/sliders.svg');
|
|
}
|
|
|
|
.mx_UserSettingsDialog_securityIcon:before {
|
|
mask: url('$(res)/img/feather-icons/lock.svg');
|
|
}
|
|
|
|
.mx_UserSettingsDialog_helpIcon:before {
|
|
mask: url('$(res)/img/feather-icons/help-circle.svg');
|
|
} |