blob: 2832e127a87cd95059496275c91c14aa614f41e5 (
plain)
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
|
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.config-section {
@apply bg-white rounded-lg shadow-md p-6;
}
.section-title {
@apply text-xl font-semibold text-gray-700 mb-4;
}
.form-label {
@apply block text-sm font-medium text-gray-700 mb-2;
}
.form-input {
@apply w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm;
}
.checkbox-label {
@apply flex items-center cursor-pointer hover:bg-gray-50 p-2 rounded;
}
.checkbox-text {
@apply text-sm text-gray-700;
}
.btn {
@apply px-4 py-2 font-medium text-sm rounded-md transition-colors focus:outline-none focus:ring-2 focus:ring-offset-2;
}
.btn-blue {
@apply bg-blue-600 text-white hover:bg-blue-700 focus:ring-blue-500;
}
.btn-green {
@apply bg-green-600 text-white hover:bg-green-700 focus:ring-green-500;
}
.btn-gray {
@apply bg-gray-600 text-white hover:bg-gray-700 focus:ring-gray-500;
}
.btn-red {
@apply bg-red-600 text-white hover:bg-red-700 focus:ring-red-500;
}
.btn-purple {
@apply bg-purple-600 text-white hover:bg-purple-700 focus:ring-purple-500;
}
.btn-orange {
@apply bg-orange-600 text-white hover:bg-orange-700 focus:ring-orange-500;
}
}
/* Console styling */
#python-console {
background-color: #1a1a1a;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
line-height: 1.4;
}
#console-content {
word-wrap: break-word;
}
/* Console text colors */
.console-stdout {
color: #a8cc8c;
}
.console-stderr {
color: #e88388;
}
.console-info {
color: #66c2cd;
}
.console-timestamp {
color: #6c7986;
font-size: 0.875rem;
}
/* Ensure full height layout */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.container-fluid {
max-width: 100%;
height: 100vh;
}
/* Scrollbar styling for console */
#python-console::-webkit-scrollbar {
width: 8px;
}
#python-console::-webkit-scrollbar-track {
background: #2a2a2a;
}
#python-console::-webkit-scrollbar-thumb {
background: #4a4a4a;
border-radius: 4px;
}
#python-console::-webkit-scrollbar-thumb:hover {
background: #5a5a5a;
}
/* Ensure buttons have proper disabled states */
button:disabled {
cursor: not-allowed;
opacity: 0.5;
}
|