Add touch selection

This commit is contained in:
2017-09-09 14:38:03 +02:00
committed by MightyPork
parent a3567ec338
commit 34b72625a5
4 changed files with 127 additions and 20 deletions
+14
View File
@@ -30,6 +30,8 @@ body.term {
cursor: text;
}
@include noselect();
// Dummy input field used to open soft keyboard
#softkb-input {
position: absolute;
@@ -43,6 +45,18 @@ body.term {
resize: none;
// visible for debugging. do opacity 0 later on
}
#touch-select-menu {
display: none;
position: absolute;
// compensate for padding
top: 6px;
left: 6px;
&.open {
display: block;
}
}
}
#action-buttons {