File size: 3,646 Bytes
8e4fdb0
914be63
8e4fdb0
 
 
 
914be63
8e4fdb0
 
914be63
8e4fdb0
 
 
914be63
8e4fdb0
 
914be63
 
8e4fdb0
 
 
 
914be63
8e4fdb0
 
914be63
 
afc671b
 
 
 
 
 
 
8e4fdb0
 
 
914be63
8e4fdb0
 
 
914be63
8e4fdb0
 
 
914be63
8e4fdb0
 
914be63
8e4fdb0
 
 
914be63
 
8e4fdb0
 
 
 
914be63
 
afc671b
 
 
 
 
 
 
 
 
 
 
 
8e4fdb0
 
 
914be63
 
8e4fdb0
 
 
 
 
 
162a424
 
8e4fdb0
 
914be63
 
afc671b
 
 
 
 
 
 
 
 
 
 
 
 
 
8e4fdb0
 
 
 
914be63
 
8e4fdb0
 
 
914be63
8e4fdb0
 
daaa6ed
 
8e4fdb0
 
 
 
 
 
 
 
162a424
 
 
 
afc671b
 
e9d28b6
 
afc671b
 
162a424
 
afc671b
 
 
162a424
 
afc671b
 
 
162a424
 
 
 
afc671b
 
 
162a424
 
 
afc671b
162a424
afc671b
 
 
 
 
 
 
162a424
 
 
 
 
 
 
 
 
afc671b
 
 
 
8e4fdb0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/* ═══ HugPanel Custom Styles ═══ */

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}

/* Hide scrollbar utility */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ═══ Full-height layout ═══ */
html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

/* Terminal container */
#terminal-container {
  min-height: 200px;
}
#terminal-container .xterm {
  height: 100%;
  padding: 4px;
}
#terminal-container .xterm-viewport {
  scrollbar-width: thin;
  scrollbar-color: #374151 transparent;
}
#terminal-container .xterm-viewport::-webkit-scrollbar {
  width: 6px;
}
#terminal-container .xterm-viewport::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 3px;
}

/* Textarea editor */
textarea {
  tab-size: 4;
  -moz-tab-size: 4;
}

/* Editor area fills all available space */
.split-editor {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}
.split-editor textarea {
  flex: 1;
  min-height: 0;
}

/* Smooth transitions */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Mobile touch improvements */
@media (max-width: 1023px) {
  .group:hover .group-hover\:opacity-100 {
    opacity: 1;
  }
  /* Always show file actions on mobile */
  .group .opacity-0,
  .file-item .file-actions {
    opacity: 1 !important;
  }
}

/* ═══ Mobile: full-height panels ═══ */
@media (max-width: 1279px) {
  /* Editor tab: fill remaining viewport height */
  .split-editor {
    height: calc(100vh - 7rem);
    min-height: 300px;
  }
  /* Files tab: fill remaining height */
  .split-files {
    height: calc(100vh - 7rem);
    min-height: 300px;
  }
}

/* Focus ring */
input:focus, textarea:focus, button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
}

/* Animation for loading spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.animate-spin {
  animation: spin 1s linear infinite;
}

/* Bottom sheet modal on mobile */
@media (max-width: 639px) {
  [x-show="showCreateZone"] > div,
  [x-show="showRename"] > div {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
  }
}

/* ═══ Desktop Enhancements ═══ */

/* Desktop split: files + editor side by side on lg+ (1024px) */
@media (min-width: 1024px) {
  .desktop-split {
    flex-direction: row !important;
    flex: 1;
    min-height: 0;
  }
  .desktop-split > .split-files {
    width: 340px;
    min-width: 280px;
    max-width: 400px;
    flex-shrink: 0;
    border-right: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .desktop-split > .split-editor {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
}

/* xl+ wider file panel */
@media (min-width: 1280px) {
  .desktop-split > .split-files {
    width: 380px;
  }
}

/* Desktop: better file list items */
@media (min-width: 1024px) {
  .file-item .file-actions {
    opacity: 0;
    transition: opacity 0.15s;
  }
  .file-item:hover .file-actions {
    opacity: 1;
  }
}

/* Desktop: content areas fill width (no max-width constraint) */
.desktop-content {
  width: 100%;
  max-width: 100%;
}