Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions public/contentStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,7 @@ html.dark .timeline-left-slider::before {
position: fixed;
width: 320px;
direction: ltr;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
background-color: var(--timeline-tooltip-bg);
border: 1px solid var(--timeline-tooltip-border);
border-radius: var(--timeline-tooltip-radius);
Expand Down Expand Up @@ -618,6 +619,7 @@ html.dark .timeline-left-slider::before {
border: 1px solid var(--timeline-tooltip-border);
border-radius: 6px;
padding: 5px 8px;
font-family: inherit;
font-size: 13px;
line-height: 1.4;
background: transparent;
Expand Down
10 changes: 5 additions & 5 deletions src/pages/content/fork/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function injectStyles(): void {
border-radius: 4px;
cursor: pointer;
font-size: 12px;
font-family: inherit;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
opacity: 0;
visibility: hidden;
pointer-events: none;
Expand Down Expand Up @@ -119,7 +119,7 @@ function injectStyles(): void {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
white-space: nowrap;
font-size: 13px;
font-family: inherit;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.${FORK_CONFIRM_CLASS} p {
margin: 0 0 8px 0;
Expand All @@ -135,7 +135,7 @@ function injectStyles(): void {
border: 1px solid var(--gv-fork-confirm-border, rgba(0, 0, 0, 0.12));
cursor: pointer;
font-size: 12px;
font-family: inherit;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
background: transparent;
color: inherit;
}
Expand Down Expand Up @@ -176,7 +176,7 @@ function injectStyles(): void {
cursor: pointer;
font-size: 12px;
font-weight: 600;
font-family: inherit;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
border: 1px solid var(--gv-fork-indicator-border, rgba(26, 115, 232, 0.28));
transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
Expand Down Expand Up @@ -207,7 +207,7 @@ function injectStyles(): void {
font-size: 10px;
font-weight: 700;
line-height: 1;
font-family: inherit;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
opacity: 0;
pointer-events: none;
transform: scale(0.8);
Expand Down
Loading