432
432
433
433
/* Highlight selected filters options*/
434
434
.highlighted {
435
- background-color : # e0f4ff ; /* Very light blue background for selected filters */
435
+ background-color : # e0f4ff ;
436
436
font-weight : bold;
437
- color : # 0092b3 ; /* Slightly darker blue text color for better contrast */
437
+ color : # 0092b3 ;
438
438
padding : 2px 4px ;
439
439
border-radius : 4px ;
440
440
}
441
441
442
442
/* Highlight the filter results in materials */
443
443
mark {
444
- background-color : # ffffcc ;; /* Highlight color for matching text */
444
+ background-color : # ffffcc ;;
445
445
font- weight: bold;
446
446
}
447
447
@@ -520,18 +520,18 @@ mark {
520
520
/*** Searchbar Suggestion Dropdown ***/
521
521
.suggestion-list {
522
522
position : absolute;
523
- background-color : white; /* Set background color to make suggestions visible */
524
- border : 1px solid # ccc ; /* Adds a border for better visual distinction */
525
- width : 100% ; /* Ensure it takes the width of the search input */
526
- z-index : 1000 ; /* Ensure it stays on top of other elements */
523
+ background-color : white;
524
+ border : 1px solid # ccc ;
525
+ width : 100% ;
526
+ z-index : 1000 ;
527
527
list-style : none;
528
528
padding : 0 ;
529
529
margin : 0 ;
530
530
}
531
531
532
532
.suggestion-list li {
533
533
padding : 10px ;
534
- border-bottom : 1px solid # ccc ; /* Adds a separator between suggestions */
534
+ border-bottom : 1px solid # ccc ;
535
535
cursor : pointer;
536
536
text-align : left;
537
537
}
@@ -545,7 +545,7 @@ mark {
545
545
}
546
546
547
547
.suggestion-list li span {
548
- color : black; /* Ensure text is visible */
548
+ color : black;
549
549
}
550
550
551
551
.suggestion_list_mark {
@@ -595,20 +595,20 @@ mark {
595
595
height : 80px ;
596
596
border-radius : 50% ;
597
597
background-color : # ffffff ;
598
- box-shadow : 0 8px 15px rgba (0 , 0 , 0 , 0.3 ); /* Default shadow */
598
+ box-shadow : 0 8px 15px rgba (0 , 0 , 0 , 0.3 );
599
599
display : flex;
600
600
align-items : center;
601
601
justify-content : center;
602
602
overflow : hidden;
603
- transition : box-shadow 0.3s ease; /* Smooth transition */
603
+ transition : box-shadow 0.3s ease;
604
604
}
605
605
606
606
.chatbot-icon-container : hover {
607
- box-shadow : 0 12px 20px rgba (0 , 0 , 0 , 0.5 ); /* Darker shadow on hover */
607
+ box-shadow : 0 12px 20px rgba (0 , 0 , 0 , 0.5 );
608
608
}
609
609
610
610
.chatbot-icon-container .active : hover {
611
- box-shadow : 0 8px 15px rgba (0 , 0 , 0 , 0.3 ); /* Disable hover effect when active */
611
+ box-shadow : 0 8px 15px rgba (0 , 0 , 0 , 0.3 );
612
612
}
613
613
614
614
@@ -663,11 +663,11 @@ mark {
663
663
664
664
.bot-row {
665
665
justify-content : flex-start;
666
- align-items : flex-start; /* Align items to the top */
666
+ align-items : flex-start;
667
667
}
668
668
669
669
.user-row {
670
- justify-content : flex-end; /* Align user content to the right */
670
+ justify-content : flex-end;
671
671
}
672
672
673
673
.chat-avatar {
@@ -694,8 +694,8 @@ mark {
694
694
border-radius : 10px ;
695
695
max-width : 70% ;
696
696
word-wrap : break-word;
697
- display : inline-block; /* Ensure bubble is inline with the avatar */
698
- margin : 0 ; /* Remove unnecessary margin */
697
+ display : inline-block;
698
+ margin : 0 ;
699
699
}
700
700
701
701
.user-bubble {
0 commit comments