mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-04 02:16:49 -05:00
dfcc805549
Add options to disable/hide equation preview GitOrigin-RevId: 5f71b4c747bf27ae816bdfe32c6e3e5a42f99508
34 lines
559 B
SCSS
34 lines
559 B
SCSS
.ol-cm-math-tooltip-container {
|
|
position: relative;
|
|
border-radius: var(--border-radius-base);
|
|
max-height: 400px;
|
|
max-width: 800px;
|
|
overflow: visible;
|
|
}
|
|
|
|
.ol-cm-math-tooltip {
|
|
display: flex;
|
|
gap: var(--spacing-04);
|
|
overflow: auto;
|
|
padding: var(--spacing-04);
|
|
|
|
.dropdown {
|
|
position: static;
|
|
}
|
|
}
|
|
|
|
.math-tooltip-options-toggle {
|
|
border: none;
|
|
padding: 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
|
|
&::after {
|
|
content: none;
|
|
}
|
|
}
|
|
|
|
.math-tooltip-options-keyboard-shortcut {
|
|
color: $content-secondary;
|
|
font-size: var(--font-size-02);
|
|
}
|