mirror of
https://github.com/fbarrca/obsidian-inlineAI.git
synced 2026-07-22 11:50:24 +00:00
Added css for tooltip actions
This commit is contained in:
parent
59d8094a6d
commit
cab83039ab
1 changed files with 17 additions and 1 deletions
18
styles.css
18
styles.css
|
|
@ -52,7 +52,7 @@
|
|||
}
|
||||
|
||||
.tooltip-button {
|
||||
height: 100%;
|
||||
height: var(--line-height);
|
||||
margin-left: 8px;
|
||||
border: 1px solid var(--background-modifier-border-focus);
|
||||
}
|
||||
|
|
@ -100,4 +100,20 @@
|
|||
.cm-selection-highlight {
|
||||
background-color: rgba(255, 255, 0, 0.4); /* Semi-transparent yellow */
|
||||
/* You can add more styles as needed */
|
||||
}
|
||||
|
||||
.primary-action {
|
||||
background-color: #007bff;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.neutral-action {
|
||||
background-color: #6c757d;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.tooltip-button:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
Loading…
Reference in a new issue