YchKhan commited on
Commit
98c413c
·
verified ·
1 Parent(s): daf9357

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +112 -0
static/style.css CHANGED
@@ -188,6 +188,29 @@ label {
188
  background-color: #d97706;
189
  }
190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  .query-item {
192
  background-color: white;
193
  border-radius: 0.75rem;
@@ -680,4 +703,93 @@ button:hover {
680
  font-size: 12px;
681
  color: var(--gray-500);
682
  margin-left: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
683
  }
 
188
  background-color: #d97706;
189
  }
190
 
191
+ .btn-info {
192
+ background-color: #0dcaf0;
193
+ color: white;
194
+ }
195
+
196
+ .btn-info:hover {
197
+ background-color: #0aa2c0;
198
+ }
199
+
200
+ .btn-info.disabled {
201
+ opacity: 0.6;
202
+ cursor: not-allowed;
203
+ }
204
+
205
+ .btn-group-insights {
206
+ background-color: #8e44ad;
207
+ color: white;
208
+ }
209
+
210
+ .btn-group-insights:hover {
211
+ background-color: #7d3c98;
212
+ }
213
+
214
  .query-item {
215
  background-color: white;
216
  border-radius: 0.75rem;
 
703
  font-size: 12px;
704
  color: var(--gray-500);
705
  margin-left: 10px;
706
+ }
707
+
708
+ .grouped-insights-container {
709
+ background-color: white;
710
+ border-radius: 8px;
711
+ border: 1px solid var(--gray-300);
712
+ margin-top: 20px;
713
+ margin-bottom: 20px;
714
+ box-shadow: var(--shadow);
715
+ overflow: hidden;
716
+ display: none;
717
+ }
718
+
719
+ .grouped-insights-header {
720
+ display: flex;
721
+ justify-content: space-between;
722
+ padding: 15px;
723
+ background-color: var(--primary-light);
724
+ color: white;
725
+ font-weight: 600;
726
+ align-items: center;
727
+ }
728
+
729
+ .grouped-insights-close {
730
+ cursor: pointer;
731
+ font-size: 20px;
732
+ font-weight: bold;
733
+ }
734
+
735
+ .grouped-insights-content {
736
+ padding: 0;
737
+ }
738
+
739
+ .score-group {
740
+ margin-bottom: 10px;
741
+ border-bottom: 1px solid var(--gray-300);
742
+ }
743
+
744
+ .score-group-header {
745
+ padding: 10px 15px;
746
+ background-color: var(--gray-100);
747
+ font-weight: 500;
748
+ display: flex;
749
+ justify-content: space-between;
750
+ border-bottom: 1px solid var(--gray-200);
751
+ }
752
+
753
+ .score-group-actions {
754
+ display: flex;
755
+ gap: 8px;
756
+ }
757
+
758
+ .score-insights-list {
759
+ padding: 10px 15px;
760
+ }
761
+
762
+ .grouped-insight-tag {
763
+ background-color: #f1f1f1;
764
+ border: 1px solid #ddd;
765
+ border-radius: 15px;
766
+ padding: 4px 12px;
767
+ font-size: 12px;
768
+ cursor: pointer;
769
+ transition: all 0.2s ease;
770
+ user-select: none;
771
+ margin: 4px;
772
+ display: inline-flex;
773
+ align-items: center;
774
+ }
775
+
776
+ .grouped-insight-tag.selected {
777
+ background-color: #4CAF50;
778
+ color: white;
779
+ border-color: #4CAF50;
780
+ }
781
+
782
+ .insight-source {
783
+ font-size: 9px;
784
+ background-color: var(--primary-dark);
785
+ color: white;
786
+ border-radius: 10px;
787
+ padding: 1px 6px;
788
+ margin-left: 5px;
789
+ display: inline-block;
790
+ text-decoration: none;
791
+ }
792
+
793
+ .insight-source:hover {
794
+ background-color: var(--primary);
795
  }