Files
ProxMenux/AppImage/app/terminal.css

58 lines
1.1 KiB
CSS
Raw Normal View History

2025-11-22 20:58:06 +01:00
/* Removed negative left positioning that was causing misalignment */
/* Force xterm.js to have no padding or margin */
2025-11-22 20:41:36 +01:00
.xterm {
padding: 0 !important;
margin: 0 !important;
2025-11-22 20:58:06 +01:00
width: 100% !important;
height: 100% !important;
2025-11-22 20:41:36 +01:00
}
.xterm-viewport {
padding: 0 !important;
margin: 0 !important;
2025-11-22 20:58:06 +01:00
width: 100% !important;
2025-11-22 20:41:36 +01:00
}
.xterm-screen {
padding: 0 !important;
margin: 0 !important;
2025-11-22 20:58:06 +01:00
width: 100% !important;
2025-11-22 20:41:36 +01:00
}
.xterm-rows {
padding: 0 !important;
margin: 0 !important;
}
.xterm-helpers {
padding: 0 !important;
margin: 0 !important;
}
2025-11-22 20:58:06 +01:00
/* Target the canvas element */
2025-11-22 20:50:05 +01:00
.xterm canvas {
padding: 0 !important;
margin: 0 !important;
}
2025-11-22 20:58:06 +01:00
/* Ensure all text layers have no padding */
.xterm-cursor-layer,
.xterm-text-layer,
.xterm-selection-layer,
.xterm-link-layer {
padding: 0 !important;
margin: 0 !important;
}
/* Ensure terminal container has no padding */
2025-11-22 20:41:36 +01:00
[class*="terminal-container"] {
padding: 0 !important;
margin: 0 !important;
2025-11-22 20:50:05 +01:00
overflow: hidden !important;
}
2025-11-22 20:58:06 +01:00
/* Hide scrollbar */
2025-11-22 20:50:05 +01:00
.xterm .xterm-viewport::-webkit-scrollbar {
width: 0px !important;
2025-11-22 20:41:36 +01:00
}