colana 1.0.0-beta.63 → 1.0.0-beta.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/styles.css +36 -0
package/package.json
CHANGED
package/public/styles.css
CHANGED
|
@@ -4062,6 +4062,24 @@ select.form-input option {
|
|
|
4062
4062
|
|
|
4063
4063
|
.pty-container .xterm-viewport {
|
|
4064
4064
|
scrollbar-width: thin;
|
|
4065
|
+
scrollbar-color: var(--text-faint) transparent;
|
|
4066
|
+
}
|
|
4067
|
+
|
|
4068
|
+
.pty-container .xterm-viewport::-webkit-scrollbar {
|
|
4069
|
+
width: 6px;
|
|
4070
|
+
}
|
|
4071
|
+
|
|
4072
|
+
.pty-container .xterm-viewport::-webkit-scrollbar-track {
|
|
4073
|
+
background: transparent;
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
.pty-container .xterm-viewport::-webkit-scrollbar-thumb {
|
|
4077
|
+
background: var(--text-faint);
|
|
4078
|
+
border-radius: 3px;
|
|
4079
|
+
}
|
|
4080
|
+
|
|
4081
|
+
.pty-container .xterm-viewport::-webkit-scrollbar-thumb:hover {
|
|
4082
|
+
background: var(--text-muted);
|
|
4065
4083
|
}
|
|
4066
4084
|
|
|
4067
4085
|
/* Feature 2: Ctrl+F Terminal Search Bar */
|
|
@@ -4731,6 +4749,24 @@ select.form-input option {
|
|
|
4731
4749
|
|
|
4732
4750
|
.split-pane-terminal .xterm-viewport {
|
|
4733
4751
|
scrollbar-width: thin;
|
|
4752
|
+
scrollbar-color: var(--text-faint) transparent;
|
|
4753
|
+
}
|
|
4754
|
+
|
|
4755
|
+
.split-pane-terminal .xterm-viewport::-webkit-scrollbar {
|
|
4756
|
+
width: 6px;
|
|
4757
|
+
}
|
|
4758
|
+
|
|
4759
|
+
.split-pane-terminal .xterm-viewport::-webkit-scrollbar-track {
|
|
4760
|
+
background: transparent;
|
|
4761
|
+
}
|
|
4762
|
+
|
|
4763
|
+
.split-pane-terminal .xterm-viewport::-webkit-scrollbar-thumb {
|
|
4764
|
+
background: var(--text-faint);
|
|
4765
|
+
border-radius: 3px;
|
|
4766
|
+
}
|
|
4767
|
+
|
|
4768
|
+
.split-pane-terminal .xterm-viewport::-webkit-scrollbar-thumb:hover {
|
|
4769
|
+
background: var(--text-muted);
|
|
4734
4770
|
}
|
|
4735
4771
|
|
|
4736
4772
|
/* Split-pane layout picker menu */
|