@@ -606,16 +606,20 @@ export default function Message({
606
606
) : (
607
607
""
608
608
) }
609
- < Icon
610
- name = "thumbs-up"
611
- style = { {
612
- color : showOtherFeedback ? "darkblue" : undefined ,
613
- } }
614
- />
609
+ < Tooltip
610
+ title = { showOtherFeedback ? undefined : "Like this" }
611
+ >
612
+ < Icon
613
+ name = "thumbs-up"
614
+ style = { {
615
+ color : showOtherFeedback ? "darkblue" : undefined ,
616
+ } }
617
+ />
618
+ </ Tooltip >
615
619
</ Button >
616
620
</ Tooltip >
617
621
) } { " " }
618
- < Tooltip title = "Select this message. Copy the browser URL to link to this message." >
622
+ < Tooltip title = "Select message. Copy URL to link to this message." >
619
623
< Button
620
624
onClick = { ( ) => {
621
625
actions ?. setFragment ( message . get ( "date" ) ) ;
@@ -861,13 +865,13 @@ export default function Message({
861
865
}
862
866
863
867
return (
864
- < div style = { { textAlign : "center" , marginBottom : "5px" , width : "100%" } } >
868
+ < div style = { { textAlign : "center" , width : "100%" } } >
865
869
< Tooltip
866
870
title = {
867
871
isLLMThread
868
872
? `Reply to ${ modelToName (
869
873
isLLMThread ,
870
- ) } , sending the entire thread as context.`
874
+ ) } , sending the thread as context.`
871
875
: "Reply to this thread."
872
876
}
873
877
>
@@ -938,11 +942,17 @@ export default function Message({
938
942
const style : CSS =
939
943
mode === "standalone"
940
944
? {
945
+ color : "#666" ,
941
946
marginTop : MARGIN_TOP_VIEWER ,
942
947
marginLeft : "5px" ,
943
948
marginRight : "5px" ,
944
949
}
945
- : { marginTop : "5px" , width : "100%" , textAlign : "center" } ;
950
+ : {
951
+ color : "#666" ,
952
+ marginTop : "5px" ,
953
+ width : "100%" ,
954
+ textAlign : "center" ,
955
+ } ;
946
956
const iconname = is_folded
947
957
? mode === "standalone"
948
958
? reverseRowOrdering
@@ -974,9 +984,16 @@ export default function Message({
974
984
) : (
975
985
< Tooltip
976
986
title = {
977
- is_folded
978
- ? "Unfold this thread"
979
- : "Fold this thread to hide replies"
987
+ is_folded ? (
988
+ < >
989
+ Unfold this thread{ " " }
990
+ { numChildren
991
+ ? ` to show ${ numChildren } ${ plural ( numChildren , "reply" , "replies" ) } `
992
+ : "" }
993
+ </ >
994
+ ) : (
995
+ "Fold this thread to hide replies"
996
+ )
980
997
}
981
998
>
982
999
{ button }
0 commit comments