mirror of https://github.com/vector-im/riot-web
Merge pull request #4321 from matrix-org/t3chguy/room_settings_notif_icon
Fix Room Settings Dialog Notifications tab iconpull/21833/head
commit
6db51cf9aa
|
@ -29,6 +29,10 @@ limitations under the License.
|
||||||
mask-image: url('$(res)/img/feather-customised/users-sm.svg');
|
mask-image: url('$(res)/img/feather-customised/users-sm.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_RoomSettingsDialog_notificationsIcon::before {
|
||||||
|
mask-image: url('$(res)/img/feather-customised/notifications.svg');
|
||||||
|
}
|
||||||
|
|
||||||
.mx_RoomSettingsDialog_bridgesIcon::before {
|
.mx_RoomSettingsDialog_bridgesIcon::before {
|
||||||
// This icon is pants, please improve :)
|
// This icon is pants, please improve :)
|
||||||
mask-image: url('$(res)/img/feather-customised/bridge.svg');
|
mask-image: url('$(res)/img/feather-customised/bridge.svg');
|
||||||
|
|
|
@ -72,7 +72,7 @@ export default class RoomSettingsDialog extends React.Component {
|
||||||
));
|
));
|
||||||
tabs.push(new Tab(
|
tabs.push(new Tab(
|
||||||
_td("Notifications"),
|
_td("Notifications"),
|
||||||
"mx_RoomSettingsDialog_rolesIcon",
|
"mx_RoomSettingsDialog_notificationsIcon",
|
||||||
<NotificationSettingsTab roomId={this.props.roomId} />,
|
<NotificationSettingsTab roomId={this.props.roomId} />,
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue