Clipboard which can be activated/used from within the touch menu.

This commit is contained in:
Michael Jumper
2012-04-29 00:01:00 -07:00
parent af56157ed5
commit f91580788b
3 changed files with 78 additions and 18 deletions

View File

@@ -271,4 +271,30 @@ div#touchMenu {
padding: 1em;
opacity: 0.8;
}
}
div#touchClipboardDiv {
position: absolute;
visibility: hidden;
z-index: 4;
color: white;
background: black;
border: 1px solid silver;
padding: 1em;
opacity: 0.8;
max-width: 50em;
}
div#touchClipboardDiv h2 {
margin: 0;
font-size: 1em;
}
div#touchClipboardDiv textarea {
width: 100%;
}