From 356a4a4392e9292f04b14aeefd991e470ba31df3 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 12 Apr 2016 14:10:17 +0100 Subject: [PATCH] Typo and use CSS rather than --- src/components/views/settings/Notifications.js | 4 +++- .../vector/css/vector-web/views/settings/Notifications.css | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/views/settings/Notifications.js b/src/components/views/settings/Notifications.js index 5f51388f2..749bc9ae7 100644 --- a/src/components/views/settings/Notifications.js +++ b/src/components/views/settings/Notifications.js @@ -950,7 +950,9 @@ module.exports = React.createClass({ if (this.state.pushers === undefined) { devicesSection =
Unable to fetch device list
} else if (this.state.pushers.length == 0) { - devicesSection =
No devices are push notifications
+ devicesSection =
+ No devices are receiving push notifications +
} else { // It would be great to be able to delete pushers from here too, // and this wouldn't be hard to add. diff --git a/src/skins/vector/css/vector-web/views/settings/Notifications.css b/src/skins/vector/css/vector-web/views/settings/Notifications.css index 7ac8fd1d0..f2f400600 100644 --- a/src/skins/vector/css/vector-web/views/settings/Notifications.css +++ b/src/skins/vector/css/vector-web/views/settings/Notifications.css @@ -65,3 +65,6 @@ limitations under the License. padding-left: 20px; padding-right: 20px; } +.mx_UserSettings_devicesTable_nodevices { + font-style: italic; +}