Files
remark42/frontend/app/components/input/__markdown-toolbar/input__markdown-toolbar.scss
T
Konstantin KrivleniaandUmputun 2f7c4e7e03 Add a button for image upload (#372)
* #371 add image icon for toolbar

* #371 add file upload handler

* #371 upload image from clipboard

* #371 change title and decrease size for upload button

* #371 allow upload few files

* #371 prevent paste text after file was uploaded in firefox
2019-07-16 10:27:44 -05:00

40 lines
547 B
SCSS

.input__toolbar {
display: block;
float: right;
}
.input__toolbar-file-input {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0 0 0 0);
}
.input__toolbar-item {
background: none;
border: 0;
color: #586069;
display: block;
float: left;
padding: 4px 5px;
&:hover {
color: #0aa;
}
}
.input__toolbar-icon {
display: inline-block;
fill: currentColor;
}
.input__toolbar-group {
display: inline-block;
margin-left: 20px;
}
.input__toolbar-group:first-child {
margin-left: 0;
}