* #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
40 lines
547 B
SCSS
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;
|
|
}
|