Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
gbishop committed Mar 5, 2024
1 parent 7260f2b commit af185f8
Show file tree
Hide file tree
Showing 9 changed files with 7,879 additions and 6,838 deletions.
Binary file modified examples/updated/grid_ex_2.osdpi
Binary file not shown.
Binary file modified examples/updated/keyboard_predict_ex_1.osdpi
Binary file not shown.
Binary file modified examples/updated/utterance_Contact.osdpi
Binary file not shown.
93 changes: 54 additions & 39 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,15 @@ div#UI {
position: absolute;
left: 0;
top: 0;
width: 5em;
padding: 0.5em;
z-index: 10;
font-size: 0.6em;
background-color: white;
border: 1px solid var(--brand);
}

#timer:empty {
display: none;
}
div#ErrorReport:empty {
display: none;
Expand Down Expand Up @@ -301,6 +307,7 @@ table.GridFilter td:nth-child(4) label.labeledInput {
border-radius: 5px;
background-color: inherit;
user-select: none;
border: 1px solid black;
}
.grid button div {
display: flex;
Expand Down Expand Up @@ -441,6 +448,7 @@ body:not(.designing) video[dbsrc]:not([src]) {
}
.tabcontrol .panels {
display: flex;
min-height: 0;
}
.tabcontrol .buttons {
display: flex;
Expand Down Expand Up @@ -630,8 +638,14 @@ div.vsd img,
div.vsd video {
flex: 1 1 0;
object-fit: contain;
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
}

div.vsd div.markers {
width: 0;
height: 0;
overflow: hidden;
}

div.vsd div.markers button:focus-within {
Expand Down Expand Up @@ -786,12 +800,12 @@ details summary > * {
#designer .settings[aria-selected="true"] {
background-color: var(--surface1);
color: var(--text1);
border: 4px dashed var(--brand);
outline: 4px dashed var(--brand);
}
#designer .settings:has(.settings [aria-selected="true"]) {
background-color: var(--surface2);
color: var(--text2);
border: 0px;
outline: 0px;
box-shadow: none;
}

Expand Down Expand Up @@ -964,38 +978,36 @@ details summary > * {
vertical-align: bottom;
margin-right: 0.5em;
}
#PleaseWait {
position: fixed;
width: 100vw;
height: 100vh;
background-color: rgb(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
font-size: 2em;
transition: all 0.5s ease-in;
opacity: 1;
}

#PleaseWait:empty {
background-color: rgb(0, 0, 0, 0);
opacity: 0;
}
#PleaseWait {
position: fixed;
width: 100vw;
height: 100vh;
background-color: rgb(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
font-size: 2em;
transition: all 0.5s ease-in;
opacity: 1;
top: 0;
left: 0;
}

#PleaseWait div {
padding: 5em;
border: 1px solid black;
background-color: white;
}
#PleaseWait:empty {
background-color: rgb(0, 0, 0, 0);
opacity: 0;
}

#PleaseWait .message {
color: blue;
}
#PleaseWait div {
padding: 5em;
border: 1px solid black;
background-color: white;
}

#PleaseWait .error {
color: red;
}
#PleaseWait .message {
color: blue;
}
div.logging-indicator {
position: absolute;
top: 2px;
Expand Down Expand Up @@ -1113,12 +1125,10 @@ div.actions div.scroll {
background: white;
}

#designer .actions tbody {
#designer .actions tbody.settings {
border-top: 2px solid black;
border-left: 2px solid black;
border-right: 2px solid black;
position: relative;
z-index: 10;
}
.actions thead {
border-top: 0px;
Expand Down Expand Up @@ -1278,13 +1288,18 @@ body.HeadMouse .tracky-mouse-pointer {
font-size: 2rem;
}

dialog#OpenDialog {
dialog {
margin: auto;
}

dialog#OpenDialog button {
dialog button {
margin-top: 1em;
}

dialog#ImportURL input {
width: 100%;
min-width: 50ch;
}
.Menu {
display: inline-block;
}
Expand Down
4 changes: 1 addition & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
<head>
<meta charset="UTF-8" />
<title>OS-DPI</title>

<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" type="image/png" href="favicon.ico" />
<script type="module" crossorigin src="/OS-DPI/index.js"></script>
<link rel="stylesheet" href="/OS-DPI/index.css">
<link rel="stylesheet" crossorigin href="/OS-DPI/index.css">
</head>

<body>
Expand All @@ -21,6 +20,5 @@
<div id="tabs" hint="P"></div>
</div>
<div id="monitor"></div>

</body>
</html>
Loading

0 comments on commit af185f8

Please sign in to comment.