mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-23 17:14:22 +01:00
feat: add tooltips, fix back button inverse color (#2023)
This commit is contained in:
@@ -147,6 +147,7 @@ const SessionHistoryView: React.FC<SessionHistoryViewProps> = ({
|
|||||||
<div className="ml-auto flex items-center space-x-4">
|
<div className="ml-auto flex items-center space-x-4">
|
||||||
<button
|
<button
|
||||||
onClick={handleShare}
|
onClick={handleShare}
|
||||||
|
title="Share Session"
|
||||||
disabled={!canShare || isSharing}
|
disabled={!canShare || isSharing}
|
||||||
className={`flex items-center text-textStandardInverse px-2 py-1 ${
|
className={`flex items-center text-textStandardInverse px-2 py-1 ${
|
||||||
canShare
|
canShare
|
||||||
@@ -168,6 +169,7 @@ const SessionHistoryView: React.FC<SessionHistoryViewProps> = ({
|
|||||||
|
|
||||||
<button
|
<button
|
||||||
onClick={onResume}
|
onClick={onResume}
|
||||||
|
title="Resume Session"
|
||||||
className="flex items-center text-textStandardInverse px-2 py-1 hover:font-bold hover:scale-110 transition-all duration-150"
|
className="flex items-center text-textStandardInverse px-2 py-1 hover:font-bold hover:scale-110 transition-all duration-150"
|
||||||
>
|
>
|
||||||
<Sparkles className="w-7 h-7" />
|
<Sparkles className="w-7 h-7" />
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ export const SessionHeaderCard: React.FC<SessionHeaderCardProps> = ({ onBack, ch
|
|||||||
showText={false}
|
showText={false}
|
||||||
onClick={onBack}
|
onClick={onBack}
|
||||||
iconSize="w-7 h-7"
|
iconSize="w-7 h-7"
|
||||||
className="text-textProminentInverse hover:text-textProminentInverse"
|
className="!text-textProminentInverse dark:!text-textStandardInverse"
|
||||||
/>
|
/>
|
||||||
{children}
|
{children}
|
||||||
</Card>
|
</Card>
|
||||||
|
|||||||
Reference in New Issue
Block a user