chansung commited on
Commit
5c394f2
·
verified ·
1 Parent(s): dd39987

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. .claude/settings.local.json +3 -1
  2. gradio_app.py +67 -0
.claude/settings.local.json CHANGED
@@ -75,7 +75,9 @@
75
  "Bash(kill 46516 80145)",
76
  "Bash(grep -n \"model_name\" gradio_app.py)",
77
  "Bash(grep -n -A2 -B2 \"model_name\" gradio_app.py)",
78
- "Bash(timeout 20 python gradio_app.py)"
 
 
79
  ],
80
  "deny": []
81
  },
 
75
  "Bash(kill 46516 80145)",
76
  "Bash(grep -n \"model_name\" gradio_app.py)",
77
  "Bash(grep -n -A2 -B2 \"model_name\" gradio_app.py)",
78
+ "Bash(timeout 20 python gradio_app.py)",
79
+ "Bash(grep -n \"section-header\" /Users/deep-diver/Developers/auto-diffusers/gradio_app.py)",
80
+ "Bash(grep -n \"memory-card\" /Users/deep-diver/Developers/auto-diffusers/gradio_app.py)"
81
  ],
82
  "deny": []
83
  },
gradio_app.py CHANGED
@@ -257,6 +257,39 @@ def create_gradio_interface():
257
  border-left: 4px solid #f0c5b8 !important;
258
  }
259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  /* Paper Header */
261
  .hero-header {
262
  background: #fdf5f3 !important;
@@ -537,6 +570,22 @@ def create_gradio_interface():
537
  margin-bottom: 0.5rem !important;
538
  }
539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
540
  /* Paper Inputs */
541
  input[type="text"],
542
  input[type="number"],
@@ -975,6 +1024,24 @@ def create_gradio_interface():
975
  border-left: 4px solid #e8a491 !important;
976
  }
977
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
978
  /* Paper Labels */
979
  label {
980
  font-weight: 600 !important;
 
257
  border-left: 4px solid #f0c5b8 !important;
258
  }
259
 
260
+ /* Dark mode group cards */
261
+ @media (prefers-color-scheme: dark) {
262
+ .glass-card {
263
+ background: #2a2a2a !important;
264
+ border: 1px solid #404040 !important;
265
+ border-top: 3px solid #666 !important;
266
+ }
267
+
268
+ .ultra-glass {
269
+ background: #2a2a2a !important;
270
+ border: 1px solid #404040 !important;
271
+ border-left: 4px solid #666 !important;
272
+ }
273
+ }
274
+
275
+ .dark .glass-card,
276
+ .gradio-container.dark .glass-card,
277
+ html.dark .glass-card,
278
+ body.dark .glass-card {
279
+ background: #2a2a2a !important;
280
+ border: 1px solid #404040 !important;
281
+ border-top: 3px solid #666 !important;
282
+ }
283
+
284
+ .dark .ultra-glass,
285
+ .gradio-container.dark .ultra-glass,
286
+ html.dark .ultra-glass,
287
+ body.dark .ultra-glass {
288
+ background: #2a2a2a !important;
289
+ border: 1px solid #404040 !important;
290
+ border-left: 4px solid #666 !important;
291
+ }
292
+
293
  /* Paper Header */
294
  .hero-header {
295
  background: #fdf5f3 !important;
 
570
  margin-bottom: 0.5rem !important;
571
  }
572
 
573
+ /* Dark mode section headers */
574
+ @media (prefers-color-scheme: dark) {
575
+ .section-header {
576
+ background: #333333 !important;
577
+ border: 1px solid #555 !important;
578
+ }
579
+ }
580
+
581
+ .dark .section-header,
582
+ .gradio-container.dark .section-header,
583
+ html.dark .section-header,
584
+ body.dark .section-header {
585
+ background: #333333 !important;
586
+ border: 1px solid #555 !important;
587
+ }
588
+
589
  /* Paper Inputs */
590
  input[type="text"],
591
  input[type="number"],
 
1024
  border-left: 4px solid #e8a491 !important;
1025
  }
1026
 
1027
+ /* Dark mode memory cards */
1028
+ @media (prefers-color-scheme: dark) {
1029
+ .memory-card {
1030
+ background: #2a2a2a !important;
1031
+ border: 1px solid #404040 !important;
1032
+ border-left: 4px solid #666 !important;
1033
+ }
1034
+ }
1035
+
1036
+ .dark .memory-card,
1037
+ .gradio-container.dark .memory-card,
1038
+ html.dark .memory-card,
1039
+ body.dark .memory-card {
1040
+ background: #2a2a2a !important;
1041
+ border: 1px solid #404040 !important;
1042
+ border-left: 4px solid #666 !important;
1043
+ }
1044
+
1045
  /* Paper Labels */
1046
  label {
1047
  font-weight: 600 !important;