Merge branch 'next' into perm-fix

This commit is contained in:
Wyatt Johnson
2018-01-10 14:48:08 -07:00
5 changed files with 15 additions and 5 deletions
+6
View File
@@ -37,6 +37,12 @@
text-align: center;
cursor: pointer;
.icon {
color: #595959;
font-size: 25px;
display: block;
}
&:hover {
color: #ccc;
}
+4 -1
View File
@@ -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 (
<div className={cn(styles.drawer, className)}>
<button className={cn(styles.closeButton, [className, 'close-button'].join('-'))} onClick={onClose}>×</button>
<button className={cn(styles.closeButton, [className, 'close-button'].join('-'))} onClick={onClose}>
<Icon name="close" className={styles.icon} />
</button>
<div className={styles.content}>
{children}
</div>
+1 -1
View File
@@ -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"
@@ -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;
}
@@ -16,6 +16,7 @@
padding: 0;
margin: 0 0 8px 0;
font-size: 15px;
word-wrap: break-word;
}
.button {