mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-01 21:31:36 +02:00
* Remove components, core and modules LESS stylesheets * Remove variables LESS stylesheets * Remove app LESS stylesheets * Remove github-sync, onboarding LESS stylesheets * Remove main-light and IEEE LESS stylesheets * Remove Less loader configuration * Remove bootstrap-3 entrypoint * Rename bootstrap-5 entrypoint to bootstrap * Remove bootstrap-5 CSS folder and move stylesheets * Update CSS variables * Restore and update github-sync.scss path * Fix try-premium.scss path and fix undefined mixin error * Restore entrypoints * Simplify buildCssPath to always use main-style.css * Remove less from prettier formatting scripts * Remove less from addHook extension * Source format * Remove nvd3 file reference from prettierignore (equivalent of nvd3.scss) * Remove less and less-loader * Add SCSS files to pirates require hook GitOrigin-RevId: bd83c79f4d6ef7305d75993959a4dc5e7714ef9c
111 lines
1.9 KiB
SCSS
111 lines
1.9 KiB
SCSS
:root {
|
|
--bs-heading-color: var(--content-primary);
|
|
}
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
.modal-dialog {
|
|
@include modal-md;
|
|
}
|
|
|
|
.modal-sm {
|
|
@include modal-sm;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-up(md) {
|
|
.modal-md {
|
|
@include modal-md;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
.modal-lg {
|
|
@include modal-lg;
|
|
}
|
|
}
|
|
|
|
.modal-content {
|
|
@include shadow-lg;
|
|
|
|
border-radius: var(--border-radius-base);
|
|
|
|
.modal-header {
|
|
.modal-title {
|
|
@include heading-sm;
|
|
|
|
line-height: 35px;
|
|
}
|
|
|
|
.btn-close {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.modal-footer {
|
|
padding: var(--spacing-06);
|
|
gap: var(--spacing-04);
|
|
|
|
> * {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Git bridge modal
|
|
.git-bridge-copy {
|
|
background: var(--bg-light-secondary);
|
|
color: var(--content-primary);
|
|
padding: var(--spacing-05);
|
|
border-radius: var(--border-radius-base);
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: var(--spacing-05);
|
|
align-items: center;
|
|
margin: var(--spacing-09) 0;
|
|
|
|
& code {
|
|
color: var(--content-primary);
|
|
word-break: break-word;
|
|
}
|
|
}
|
|
|
|
.git-bridge-optional-tokens {
|
|
border: 1px solid var(--border-primary);
|
|
border-radius: var(--border-radius-base);
|
|
padding: var(--spacing-07);
|
|
margin: var(--spacing-09) 0;
|
|
}
|
|
|
|
.git-bridge-optional-tokens-header {
|
|
font-size: 120%;
|
|
font-weight: bold;
|
|
margin-bottom: var(--spacing-05);
|
|
}
|
|
|
|
.git-bridge-optional-tokens-actions {
|
|
margin-top: var(--spacing-05);
|
|
}
|
|
|
|
.upgrade-track-changes-modal {
|
|
.teaser-title {
|
|
font-family: var(--font-sans);
|
|
font-size: var(--font-size-05);
|
|
margin-bottom: var(--spacing-05);
|
|
margin-top: var(--spacing-05);
|
|
color: var(--content-secondary);
|
|
}
|
|
|
|
ul.list-unstyled li {
|
|
font-family: var(--font-sans);
|
|
padding: var(--spacing-02) 0;
|
|
color: var(--content-secondary);
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: var(--spacing-04);
|
|
}
|
|
|
|
ul.list-unstyled li .check-icon {
|
|
padding-top: 2px;
|
|
}
|
|
}
|