mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-28 14:02:50 -06:00
translator: "Open..." doesn't discard the current document anymore
It shows available documents and a Cancel button on top of the current document.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
body { margin: 5px; }
|
||||
body { margin:0; padding: 5px; position: relative; }
|
||||
h1 { float: right; margin: 0; font-size: 150%; }
|
||||
h2 { font-size: 120%; }
|
||||
h3 { font-size: 100%; }
|
||||
@@ -94,4 +94,25 @@ span.actions { visibility: hidden; }
|
||||
tr:hover div > span.actions { visibility: visible; }
|
||||
span.arrow, span.actions { color: blue; }
|
||||
span.error { color: red; }
|
||||
span.choices { color: blue; font-weight: bold; font-family: sans-serif; }
|
||||
span.choices { color: blue; font-weight: bold; font-family: sans-serif; }
|
||||
|
||||
|
||||
div.overlay {
|
||||
display: none;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%; height: 100%;
|
||||
background: white; /* fallback */
|
||||
background: rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
div.overlay > div {
|
||||
margin: 5em 3em;
|
||||
background: white; /* fallback */
|
||||
background: rgba(255,255,255,0.95);
|
||||
padding: 1em;
|
||||
box-shadow: 4px 4px 12px rgba(0,0,0,0.33);
|
||||
/*border-radius: 5px;*/
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user