Includes prior-session patches (carry forward so the app compiles): - crates/gpui/build.rs: cross-compile manifest fix - crates/gpui/src/platform.rs: PlatformWindow::activate_with_token trait method - crates/gpui/src/window.rs: Window::activate_with_token public API - crates/gpui_linux/src/linux/wayland/window.rs: WaylandWindow::activate_with_token + activate() keyboard-serial fix Plus the focus-serial fix: - serial.rs: SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; latest_serial_of() Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
46 lines
892 B
CSS
46 lines
892 B
CSS
kbd.keybinding {
|
|
background-color: var(--keybinding-bg);
|
|
padding: 4px 4px 6px 4px;
|
|
border-radius: 4px;
|
|
font-family: var(--mono-font);
|
|
display: inline-block;
|
|
margin: 0 2px;
|
|
}
|
|
|
|
#copy-markdown-toggle i {
|
|
font-weight: 500 !important;
|
|
-webkit-text-stroke: 0.5px currentColor;
|
|
}
|
|
|
|
.copy-toast {
|
|
position: fixed;
|
|
top: 72px;
|
|
right: 16px;
|
|
padding: 12px 16px;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--fg);
|
|
background: var(--toast-bg);
|
|
border: 1px solid var(--toast-border);
|
|
z-index: 1000;
|
|
opacity: 0;
|
|
transform: translateY(-10px);
|
|
transition: all 0.1s ease-in-out;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
max-width: 280px;
|
|
}
|
|
|
|
.copy-toast.success {
|
|
border-color: var(--toast-border-success);
|
|
}
|
|
|
|
.copy-toast.error {
|
|
border-color: var(--toast-border-error);
|
|
}
|
|
|
|
.copy-toast.show {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|