Add buffer mode to typedInput

This commit is contained in:
Nick O'Leary
2017-06-11 21:19:46 +01:00
parent d407f31ae5
commit d9dc171c28
11 changed files with 256 additions and 15 deletions

View File

@@ -282,16 +282,21 @@
}
}
}
.node-input-expression-legacy {
.node-input-expression-legacy, .node-input-buffer-type {
font-size: 0.8em;
float: left;
cursor: pointer;
border: 1px solid white;
padding: 0 5px;
padding: 2px 5px;
border-radius: 2px;
&:hover {
border-color: $primary-border-color;
border-color: $form-input-border-color;
}
}
.node-input-buffer-type {
float: none;
text-align: right;
}
#clipboard-hidden {
position: absolute;
@@ -318,3 +323,11 @@
color: #999;
}
}
.ace_read-only {
background: #eee !important;
.ace_cursor {
color: transparent !important;
}
}

View File

@@ -35,7 +35,7 @@
}
input {
width: 100%;
padding: 0 0 0 1px;
padding: 0 0 0 3px;
margin:0;
height: 32px;
border:none;