From 7127aeaa87cf7f4326ead9223f558c466bd2d6f9 Mon Sep 17 00:00:00 2001 From: okbel Date: Wed, 10 Jan 2018 17:35:50 -0300 Subject: [PATCH 1/4] Icon User Drawer --- client/coral-ui/components/Drawer.css | 6 ++++++ client/coral-ui/components/Drawer.js | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/client/coral-ui/components/Drawer.css b/client/coral-ui/components/Drawer.css index 1e3055184..40458b94f 100644 --- a/client/coral-ui/components/Drawer.css +++ b/client/coral-ui/components/Drawer.css @@ -37,6 +37,12 @@ text-align: center; cursor: pointer; + .icon { + color: #595959; + font-size: 25px; + display: block; + } + &:hover { color: #ccc; } diff --git a/client/coral-ui/components/Drawer.js b/client/coral-ui/components/Drawer.js index 738354cd7..1fa224e0f 100644 --- a/client/coral-ui/components/Drawer.js +++ b/client/coral-ui/components/Drawer.js @@ -2,11 +2,14 @@ import React from 'react'; import cn from 'classnames'; import PropTypes from 'prop-types'; import styles from './Drawer.css'; +import {Icon} from 'coral-ui'; const Drawer = ({children, onClose, className = ''}) => { return (
- +
{children}
From eef2578e61d9de9e59e2b1061c45a517062357b5 Mon Sep 17 00:00:00 2001 From: okbel Date: Wed, 10 Jan 2018 17:41:18 -0300 Subject: [PATCH 2/4] ignore user box over flow, fixed --- .../client/components/IgnoreUserConfirmation.css | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/talk-plugin-ignore-user/client/components/IgnoreUserConfirmation.css b/plugins/talk-plugin-ignore-user/client/components/IgnoreUserConfirmation.css index 4f3d8e9da..1a291d5e3 100644 --- a/plugins/talk-plugin-ignore-user/client/components/IgnoreUserConfirmation.css +++ b/plugins/talk-plugin-ignore-user/client/components/IgnoreUserConfirmation.css @@ -16,6 +16,7 @@ padding: 0; margin: 0 0 8px 0; font-size: 15px; + word-wrap: break-word; } .button { From 1f6d38c4ad3b951dda743d7f901b0260f9f17ee1 Mon Sep 17 00:00:00 2001 From: okbel Date: Wed, 10 Jan 2018 17:43:55 -0300 Subject: [PATCH 3/4] Updating copy --- locales/en.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locales/en.yml b/locales/en.yml index a4238d5c0..0da121202 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -10,7 +10,7 @@ en: cancel: "Cancel" note: "Note: {0}" note_reject_comment: "Banning this user will also place this comment in the Rejected queue." - note_ban_user: "Banning this user will not let them edit comment or remove anything." + note_ban_user: "Banning this user will not let them comment, react to, or report comments." yes_ban_user: "Yes, Ban User" write_a_message: "Write a message" send: "Send" From d055e0b28bad7bbf4d509ab1e4b792b4ed18be0a Mon Sep 17 00:00:00 2001 From: okbel Date: Wed, 10 Jan 2018 17:51:21 -0300 Subject: [PATCH 4/4] Feature Button --- .../client/components/ModTag.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/talk-plugin-featured-comments/client/components/ModTag.css b/plugins/talk-plugin-featured-comments/client/components/ModTag.css index 683c16570..960985e0d 100644 --- a/plugins/talk-plugin-featured-comments/client/components/ModTag.css +++ b/plugins/talk-plugin-featured-comments/client/components/ModTag.css @@ -7,11 +7,11 @@ padding: 0px 5px; border-radius: 2px; font-size: 12px; - height: 24px; + height: 26px; transition: background-color .2s cubic-bezier(.4,0,.2,1), color .2s cubic-bezier(.4,0,.2,1), border-color .2s cubic-bezier(.4,0,.2,1); margin: 2px 0px; letter-spacing: 0.4px; - + line-height: 25px; } .tag:hover { @@ -38,5 +38,5 @@ .tagIcon { margin-right: 5px; font-size: 15px; - vertical-align: text-bottom; + vertical-align: sub; }