mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 05:15:00 +00:00
Merge pull request #1060 from zed-industries/fix-disconnected-message
Fix disconnected from project message
This commit is contained in:
commit
d6024117d8
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
||||||
import Theme from "../themes/common/theme";
|
import Theme from "../themes/common/theme";
|
||||||
|
import { withOpacity } from "../utils/color";
|
||||||
import { backgroundColor, border, iconColor, shadow, text } from "./components";
|
import { backgroundColor, border, iconColor, shadow, text } from "./components";
|
||||||
import statusBar from "./statusBar";
|
import statusBar from "./statusBar";
|
||||||
|
|
||||||
|
@ -155,8 +156,8 @@ export default function workspace(theme: Theme) {
|
||||||
padding: { left: 6 },
|
padding: { left: 6 },
|
||||||
},
|
},
|
||||||
disconnectedOverlay: {
|
disconnectedOverlay: {
|
||||||
...text(theme, "sans", "onMedia"),
|
...text(theme, "sans", "active"),
|
||||||
background: "#000000aa",
|
background: withOpacity(theme.backgroundColor[500].base, 0.8).value,
|
||||||
},
|
},
|
||||||
notification: {
|
notification: {
|
||||||
margin: { top: 10 },
|
margin: { top: 10 },
|
||||||
|
|
Loading…
Reference in a new issue