style: change action buttons from pills to square emoji buttons
- Change border-radius from 20px to 6px for square corners - Make emoji-only buttons fixed 36x36px squares - Use grid layout with place-content: center for emoji centering - Matches the style of emoji buttons used in chat messages - Reduced padding to 8px for consistent square appearance
This commit is contained in:
parent
9407f157bc
commit
884364a934
2 changed files with 12 additions and 4 deletions
|
|
@ -699,7 +699,7 @@ dialog#tts-modal {
|
|||
padding: 8px 16px;
|
||||
background: var(--uncloseai-button-background, #f8f9fa);
|
||||
border: 1px solid var(--uncloseai-button-border, #dee2e6);
|
||||
border-radius: 20px;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
color: var(--uncloseai-primary-text, #495057);
|
||||
|
|
@ -709,7 +709,11 @@ dialog#tts-modal {
|
|||
|
||||
.uncloseai-btn-primary.emoji-only {
|
||||
font-size: 18px;
|
||||
padding: 8px 12px;
|
||||
padding: 8px;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
display: grid;
|
||||
place-content: center;
|
||||
}
|
||||
|
||||
.uncloseai-btn-primary:hover {
|
||||
|
|
|
|||
|
|
@ -755,7 +755,7 @@ dialog#tts-modal::backdrop {
|
|||
padding: 8px 16px;
|
||||
background: var(--uncloseai-button-background, #f8f9fa);
|
||||
border: 1px solid var(--uncloseai-button-border, #dee2e6);
|
||||
border-radius: 20px;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
color: var(--uncloseai-primary-text, #495057);
|
||||
|
|
@ -765,7 +765,11 @@ dialog#tts-modal::backdrop {
|
|||
|
||||
.uncloseai-btn-primary.emoji-only {
|
||||
font-size: 18px;
|
||||
padding: 8px 12px;
|
||||
padding: 8px;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
display: grid;
|
||||
place-content: center;
|
||||
}
|
||||
|
||||
.uncloseai-btn-primary:hover {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue