Merge branch 'master' into bug-close-fb-win

This commit is contained in:
David Erwin
2017-02-16 15:39:06 -05:00
committed by GitHub
2 changed files with 14 additions and 4 deletions
+13 -4
View File
@@ -76,16 +76,25 @@ hr {
.coral-plugin-questionbox-info {
top: 0;
border: 0;
background: rgb(105,105,105);
color: white;
background: rgb(213,213,213);
color: black;
width: 100%;
text-align: center;
padding: 10px;
text-align: left;
padding-left: 0px;
margin-bottom: 0px;
font-weight: bold;
font-size: 14px;
display: block;
}
.coral-plugin-questionbox-icon {
border: 0;
background: black;
color: white;
padding: 20px;
margin-left: 0px !important;
margin-right: 10px;
}
.hidden {
visibility: hidden;
@@ -4,6 +4,7 @@ const packagename = 'coral-plugin-questionbox';
const QuestionBox = ({enable, content}) =>
<div
className={`${packagename}-info ${enable ? null : 'hidden'}` }>
<i className={`${packagename}-icon material-icons`}>chat_bubble person</i>
{content}
</div>;