mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-03 09:13:50 -05:00
1d4737ac69
* Add Story for `PdfCompileButton` * Set the CompileButton height so it's similar to BS3 * Add the CompileButton animations * Remove `sm` from CompileButton: makes font size bigger * Use MaterialIcon in compile-button dropdown-toggle * Use MaterialIcon in LayoutDropdown * Fix stripe alignment on Recompile button * Set padding around dropdown caret Per Alexandru's instructions * Prevent border from disappearing on hover * Set the padding of the compile button even on both sides Before: left 12px, right 16px; After: left 16px, right 16px; * Change px values to spacing var * Add some button classes for BS5 only * Don't render the hidden "Compiling…" in BS5, it changes the button width * Prevent `loading="[object Object]"` in the DOM Co-authored-by: Rebeka <rebeka.dekany@overleaf.com> --------- Co-authored-by: Rebeka <rebeka.dekany@overleaf.com> GitOrigin-RevId: 34f1eed03e63f3459243a37c878612a623f321f8
205 lines
3.7 KiB
SCSS
205 lines
3.7 KiB
SCSS
.dropdown {
|
|
display: inline-flex;
|
|
|
|
.no-left-border {
|
|
border-left: none;
|
|
}
|
|
|
|
.custom-toggle {
|
|
&::after {
|
|
content: none !important;
|
|
}
|
|
|
|
padding-left: var(--spacing-04);
|
|
padding-right: var(--spacing-05);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.dropdown-header {
|
|
@include body-xs;
|
|
|
|
padding: var(--spacing-05) var(--spacing-06) var(--spacing-02)
|
|
var(--spacing-04);
|
|
}
|
|
|
|
.dropdown-menu.dropdown-menu-unpositioned {
|
|
position: unset;
|
|
top: unset;
|
|
left: unset;
|
|
z-index: unset;
|
|
display: block;
|
|
float: unset;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
@include shadow-md;
|
|
|
|
min-width: 240px;
|
|
|
|
&.dropdown-menu-sm-width {
|
|
min-width: 160px;
|
|
}
|
|
|
|
.subdued {
|
|
color: var(--content-disabled);
|
|
}
|
|
}
|
|
|
|
.dropdown-item {
|
|
@include body-sm;
|
|
|
|
--bs-dropdown-item-border-radius: var(--border-radius-base);
|
|
|
|
display: grid;
|
|
grid-auto-flow: column;
|
|
place-content: center start;
|
|
min-height: 44px; // a minimum height of 44px to be accessible for touch screens
|
|
position: relative;
|
|
|
|
&:active {
|
|
background-color: var(--bg-accent-03);
|
|
}
|
|
|
|
&,
|
|
&:active,
|
|
&:visited {
|
|
color: var(--neutral-90);
|
|
}
|
|
|
|
&:hover:not(.active),
|
|
&:focus:not(.active) {
|
|
background-color: var(--bg-light-secondary);
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
}
|
|
|
|
&[variant='danger'] {
|
|
color: var(--content-danger);
|
|
|
|
&:hover:not(.active),
|
|
&:focus:not(.active) {
|
|
background-color: var(--bg-danger-03);
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
background-color: var(--bg-accent-03);
|
|
color: var(--green-70);
|
|
}
|
|
|
|
&.btn-link {
|
|
text-decoration: none;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: inherit;
|
|
}
|
|
}
|
|
}
|
|
|
|
.dropdown-divider {
|
|
border-top-color: var(--border-divider);
|
|
margin: var(--spacing-01) var(--spacing-03);
|
|
}
|
|
|
|
.dropdown-item-description {
|
|
@include body-xs;
|
|
|
|
color: var(--content-secondary);
|
|
margin-top: var(--spacing-01);
|
|
}
|
|
|
|
.dropdown-item-description-container {
|
|
grid-auto-flow: row;
|
|
min-height: 60px;
|
|
}
|
|
|
|
.dropdown-item-trailing-icon {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.dropdown-item-leading-icon {
|
|
padding-right: var(--spacing-04);
|
|
|
|
&.spinner {
|
|
margin-left: var(--spacing-01);
|
|
margin-right: var(--spacing-01);
|
|
}
|
|
}
|
|
|
|
.dropdown-item-leading-icon,
|
|
.dropdown-item-trailing-icon {
|
|
.material-symbols {
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
|
|
.dropdown-item-leading-icon-empty {
|
|
display: inline-block;
|
|
width: 20px;
|
|
}
|
|
|
|
// description text should look disabled when the dropdown item is disabled
|
|
.dropdown-item.disabled .dropdown-item-description,
|
|
.dropdown-item[aria-disabled='true'] .dropdown-item-description {
|
|
background-color: transparent;
|
|
color: var(--content-disabled);
|
|
}
|
|
|
|
// override disabled styles when the state is active
|
|
.dropdown-item.active .dropdown-item-description {
|
|
background-color: initial;
|
|
color: var(--green-70);
|
|
}
|
|
|
|
.dropdown-button-toggle {
|
|
border-bottom-left-radius: 0;
|
|
border-top-left-radius: 0;
|
|
padding-right: var(--spacing-05);
|
|
padding-left: var(--spacing-05);
|
|
margin-left: 0;
|
|
|
|
&.btn-primary,
|
|
&.btn-danger {
|
|
border-left: 1px solid rgb($neutral-90, 0.16);
|
|
}
|
|
|
|
&.btn-secondary {
|
|
border-left: 1px solid var(--neutral-60);
|
|
}
|
|
|
|
&[disabled],
|
|
&[aria-disabled='true'] {
|
|
border-left: 1px solid var(--neutral-10);
|
|
}
|
|
}
|
|
|
|
.select-dropdown-menu {
|
|
top: 100%;
|
|
margin-top: var(--spacing-04);
|
|
width: 100%;
|
|
max-height: 200px;
|
|
overflow: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.dropdown-item-highlighted {
|
|
background-color: var(--bg-light-secondary);
|
|
}
|
|
|
|
.dropdown-item-material-icon-small {
|
|
.material-symbols,
|
|
&.material-symbols {
|
|
font-size: var(--bs-body-font-size);
|
|
|
|
// Centre the symbol in a 20px-by-20px box
|
|
width: 20px;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
}
|
|
}
|