Added css for tooltip actions

This commit is contained in:
FBarrca 2025-01-04 21:26:39 +01:00
parent 59d8094a6d
commit cab83039ab

View file

@ -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;
}