mirror of
https://github.com/shane-lamb/obsidian-llm-docs.git
synced 2026-07-22 12:30:22 +00:00
109 lines
1.8 KiB
CSS
109 lines
1.8 KiB
CSS
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
*/
|
|
.llmdocs-heading-system {
|
|
color: var(--color-cyan);
|
|
}
|
|
|
|
.llmdocs-heading-user {
|
|
color: var(--color-green);
|
|
}
|
|
|
|
.llmdocs-heading-assistant {
|
|
color: var(--color-cyan);
|
|
}
|
|
|
|
.llmdocs-footer {
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
|
|
.llmdocs-complete-button {
|
|
position: absolute;
|
|
top: 100%;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.llmdocs-loading-indicator {
|
|
position: absolute;
|
|
top: 100%;
|
|
margin-top: 0.2em;
|
|
}
|
|
|
|
@keyframes rotate90 {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
25% {
|
|
transform: rotate(90deg);
|
|
}
|
|
50% {
|
|
transform: rotate(180deg);
|
|
}
|
|
75% {
|
|
transform: rotate(270deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.llmdocs-loading-indicator svg {
|
|
padding-bottom: 14%; /* gives a better center for rotation */
|
|
opacity: 50%;
|
|
animation: rotate90 2s steps(1) infinite;
|
|
}
|
|
|
|
.llmdocs-suggest-item-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.llmdocs-suggest-item-subtext {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.llmdocs-suggest-item-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.llmdocs-suggest-item-subtext {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.llmdocs-suggest-item-pin {
|
|
float: right;
|
|
border-radius: 2.5em;
|
|
width: 2.5em;
|
|
height: 2.5em;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
visibility: hidden;
|
|
color: var(--icon-color);
|
|
opacity: var(--icon-opacity);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.is-selected .llmdocs-suggest-item-pin {
|
|
visibility: visible;
|
|
}
|
|
|
|
.llmdocs-suggest-item-pin:hover {
|
|
opacity: var(--icon-opacity-hover);
|
|
color: var(--icon-color-hover);
|
|
background-color: var(--background-modifier-hover);
|
|
}
|
|
|
|
.llmdocs-suggest-item-pin.pinned {
|
|
visibility: visible;
|
|
color: var(--text-accent);
|
|
}
|
|
|
|
.llmdocs-suggest-item-pin.pinned:hover {
|
|
background-color: var(--background-primary);
|
|
}
|