Skip to content

Commit

Permalink
Merge pull request #405 from deref/safari-fixes
Browse files Browse the repository at this point in the history
Safari fixes
  • Loading branch information
brandonbloom authored Oct 8, 2021
2 parents 2b35466 + bc4e86e commit 5cccaba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions gui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<link rel="stylesheet" href="/globals.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta content="light dark" name="color-scheme" />
<meta name="theme-color" content="#e6e6e6" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#050505" media="(prefers-color-scheme: dark)">
<title>exo</title>
</head>

Expand Down
3 changes: 2 additions & 1 deletion gui/src/components/ProcessList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<Panel title={description.displayName} backRoute="/" --panel-padding="0 1rem">
<div class="actions" slot="actions">
<span>Logs</span>
<div class="menu">
<div class="menu" tabindex="0">
<IconButton
glyph="Ellipsis"
tooltip="Workspace actions..."
Expand Down Expand Up @@ -257,6 +257,7 @@
}
.menu {
outline: none;
position: relative;
}
Expand Down
3 changes: 2 additions & 1 deletion gui/src/components/processes/ProcessListTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
/>
</div>

<div class="actions">
<div class="actions" tabindex="0">
<IconButton glyph="Ellipsis" />

<ContextMenu
Expand Down Expand Up @@ -179,6 +179,7 @@
}
.actions {
outline: none;
position: relative;
}
Expand Down

0 comments on commit 5cccaba

Please sign in to comment.