mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-12-15 08:36:21 +00:00
Update AppImage
This commit is contained in:
@@ -1,28 +1,27 @@
|
||||
/* Aggressively force remove all xterm.js internal padding and margins */
|
||||
/* Removed negative left positioning that was causing misalignment */
|
||||
/* Force xterm.js to have no padding or margin */
|
||||
.xterm {
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
/* Move content left to compensate for xterm's internal 2px padding */
|
||||
position: relative;
|
||||
left: -2px !important;
|
||||
width: 100% !important;
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
.xterm-viewport {
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
left: -2px !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.xterm-screen {
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
left: -2px !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.xterm-rows {
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
left: -2px !important;
|
||||
}
|
||||
|
||||
.xterm-helpers {
|
||||
@@ -30,22 +29,29 @@
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
/* Target the canvas element that has the hardcoded padding */
|
||||
/* Target the canvas element */
|
||||
.xterm canvas {
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
left: -2px !important;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Ensure terminal container has no padding or overflow */
|
||||
/* 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 */
|
||||
[class*="terminal-container"] {
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
|
||||
/* Fix any potential scrollbar offset */
|
||||
/* Hide scrollbar */
|
||||
.xterm .xterm-viewport::-webkit-scrollbar {
|
||||
width: 0px !important;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user