chansung commited on
Commit
2b0f5b9
·
verified ·
1 Parent(s): 04dd42b

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +30 -0
style.css CHANGED
@@ -693,4 +693,34 @@ input[type="range"].futuristic-slider::-moz-range-thumb {
693
  color: #334155; /* slate-700 - very faded */
694
  cursor: not-allowed;
695
  opacity: 0.5;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
696
  }
 
693
  color: #334155; /* slate-700 - very faded */
694
  cursor: not-allowed;
695
  opacity: 0.5;
696
+ }
697
+
698
+ /* Style for truncated prompt subtitle to indicate clickability */
699
+ #main-content-subtitle.prompt-truncated {
700
+ cursor: pointer;
701
+ text-decoration: underline dotted rgba(203, 213, 225, 0.5); /* slate-300 dotted underline */
702
+ transition: text-decoration-color 0.2s ease;
703
+ }
704
+ #main-content-subtitle.prompt-truncated:hover {
705
+ text-decoration-color: rgba(34, 211, 238, 0.8); /* cyan-400 */
706
+ }
707
+
708
+ /* Ensure prompt display modal text area is styled correctly */
709
+ #full-prompt-text {
710
+ scrollbar-width: thin;
711
+ scrollbar-color: #475569 rgba(30, 41, 59, 0.5);
712
+ }
713
+ #full-prompt-text::-webkit-scrollbar {
714
+ width: 6px;
715
+ }
716
+ #full-prompt-text::-webkit-scrollbar-track {
717
+ background: rgba(51, 65, 85, 0.3);
718
+ border-radius: 3px;
719
+ }
720
+ #full-prompt-text::-webkit-scrollbar-thumb {
721
+ background: #475569;
722
+ border-radius: 3px;
723
+ }
724
+ #full-prompt-text::-webkit-scrollbar-thumb:hover {
725
+ background: #64748b;
726
  }