Skip to content
Snippets Groups Projects
Commit e786663e authored by chris's avatar chris
Browse files

add label

parent a21b9649
No related branches found
No related tags found
1 merge request!426Questions ToolGroup
...@@ -8,6 +8,7 @@ class CreateGap extends Tools { ...@@ -8,6 +8,7 @@ class CreateGap extends Tools {
title = 'Create Gap Option'; title = 'Create Gap Option';
icon = 'insertGap'; icon = 'insertGap';
name = 'Create Gap'; name = 'Create Gap';
label = 'Create Gap';
get run() { get run() {
return (state, dispatch) => { return (state, dispatch) => {
......
...@@ -11,11 +11,11 @@ const FillTheGapContainer = styled.div` ...@@ -11,11 +11,11 @@ const FillTheGapContainer = styled.div`
`; `;
const FillTheGapContainerTool = styled.div` const FillTheGapContainerTool = styled.div`
background: #f5f5f7; border: 3px solid #f5f5f7;
border-bottom: none;
span { span {
position: relative; position: relative;
left: 5px;
top: 3px; top: 3px;
} }
`; `;
...@@ -47,7 +47,6 @@ export default ({ node, view, getPos }) => { ...@@ -47,7 +47,6 @@ export default ({ node, view, getPos }) => {
<div> <div>
<span> Fill The Gap</span> <span> Fill The Gap</span>
<FillTheGapContainerTool> <FillTheGapContainerTool>
<span> Insert Gap :</span>
<FillTheGapTool /> <FillTheGapTool />
</FillTheGapContainerTool> </FillTheGapContainerTool>
</div> </div>
......
...@@ -9,6 +9,7 @@ class CreateDropDown extends Tools { ...@@ -9,6 +9,7 @@ class CreateDropDown extends Tools {
title = 'Create Drop Down'; title = 'Create Drop Down';
icon = 'mulitpleDropDown'; icon = 'mulitpleDropDown';
name = 'Create_Drop_Down'; name = 'Create_Drop_Down';
label = 'Insert Drop Down';
get run() { get run() {
return (state, dispatch) => { return (state, dispatch) => {
......
...@@ -11,10 +11,11 @@ const MultipleDropDownpWrapper = styled.div` ...@@ -11,10 +11,11 @@ const MultipleDropDownpWrapper = styled.div`
`; `;
const MultipleDropDownContainerTool = styled.div` const MultipleDropDownContainerTool = styled.div`
background: #f5f5f7; border: 3px solid #f5f5f7;
border-bottom: none;
span { span {
position: relative; position: relative;
left: 5px;
top: 3px; top: 3px;
} }
`; `;
...@@ -46,7 +47,6 @@ export default ({ node, view, getPos }) => { ...@@ -46,7 +47,6 @@ export default ({ node, view, getPos }) => {
<div> <div>
<span>Multiple Drop Down</span> <span>Multiple Drop Down</span>
<MultipleDropDownContainerTool> <MultipleDropDownContainerTool>
<span> Insert Drop Down :</span>
<MultipleDropDown /> <MultipleDropDown />
</MultipleDropDownContainerTool> </MultipleDropDownContainerTool>
</div> </div>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment