mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
9997c4874f
* [web] Initialize BS5 in subscription page * [web] Update subscription-dashboard.tsx for BS5 * [web] Update row-link.tsx for BS5 * [web] Update modals * [web] Add `btn` to `btn-inline-link` classes * [web] Update circle change-to-group circle price element * [web] Replace `list-item-with-margin-bottom` with `mb-3` * [web] Update form elements to BS5 * [web] Use `useContactUsModal` * [web] Adjust tables margin/padding, and more * [web] Update change-to-group-modal.tsx * [web] Add gap to subscription buttons * [web] Remove subscription page colspan for md and above * [web] Use Notification component * [web] Update "leave group" buttons * [web] Fix tests: add `ol-user` meta tag * [web] Nest .hover-highlight in #subscription-dashboard-root * [web] Update to OLRow/OLCol * [web] Update to OLButtons * [web] Update to OLFormGroup * [web] Naming: use BSversion prefix * [web] Set CancelSubscriptionButton as ghost directly in component * [web] Set "Plan" font size * [web] Simplify cancel-subscription buttons * [web] Remove `--neutral-10` ModalFooter background * [web] Simplify circle styles * [web] Center discount badge * [web] Update fieldset label * [web] Add `<ul>` around RowLink * [web] Define SCSS for row-link component * [web] Remove some use of utility classes * [web] Revert and update `fieldset` changes (fixes tests) * [web] Fixup some more OLButtons * [web] Fixup use of OLRow/OLCol * [web] Reduce spacing below "legend-as-label" * [web] Use h5 instead of small in OLModalTitle * [web] Revert OLCol removal on lg screens I had removed them by mistake because I wasn't using the proper breakpoints * [web] Add backdrop to nested modal ContactUsModal * [web] Don't prefill project URL in ContactUsModal * [web] Fix lint * [web] Share `className` prop in BS5 and BS3 modals * [web] Set sub-title font sans serif (BS3) * [web] Update remaining Alerts to OLNotification GitOrigin-RevId: 7fd975ae3e992cebfaf71d4e182f8e13ec886d09
140 lines
2.3 KiB
SCSS
140 lines
2.3 KiB
SCSS
/**
|
|
* MAIN CONTENT
|
|
*/
|
|
|
|
#subscription-dashboard-root {
|
|
.hover-highlight {
|
|
&:hover,
|
|
&:focus {
|
|
background-color: var(--neutral-10);
|
|
}
|
|
}
|
|
|
|
li.row-link {
|
|
display: flex;
|
|
border: 0;
|
|
padding: 0;
|
|
|
|
a {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: var(--spacing-02) 0;
|
|
text-decoration: none;
|
|
color: var(--neutral-90);
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
background-color: var(--neutral-10);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* MODALS
|
|
*/
|
|
|
|
.group-subscription-modal {
|
|
.circle {
|
|
font-size: var(--font-size-06);
|
|
border-radius: 50%;
|
|
background-color: var(--green-70);
|
|
color: white;
|
|
white-space: nowrap;
|
|
height: 180px;
|
|
width: 180px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: var(--spacing-02);
|
|
font-weight: bold;
|
|
|
|
.small {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.circle-subtext {
|
|
font-size: var(--font-size-03);
|
|
}
|
|
}
|
|
|
|
.legend-as-label {
|
|
font-size: var(--font-size-02);
|
|
font-weight: 600;
|
|
color: var(--content-secondary);
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.educational-discount-badge {
|
|
height: 50px;
|
|
|
|
p {
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
padding-left: var(--spacing-02);
|
|
padding-right: var(--spacing-02);
|
|
}
|
|
|
|
.applied {
|
|
background-color: rgba($green-70, 0.1);
|
|
color: var(--green-70);
|
|
}
|
|
|
|
.ineligible {
|
|
background-color: var(--neutral-10);
|
|
}
|
|
}
|
|
}
|
|
|
|
#change-plan {
|
|
table {
|
|
@include media-breakpoint-up(lg) {
|
|
th:last-child,
|
|
td:last-child {
|
|
width: 1%; // will expand to fit the content
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
display: block;
|
|
|
|
thead {
|
|
display: none;
|
|
}
|
|
|
|
tbody,
|
|
td,
|
|
tr {
|
|
display: inline-block;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
td:first-child {
|
|
padding-top: var(--spacing-07);
|
|
}
|
|
|
|
td:last-child {
|
|
padding-top: var(--spacing-03);
|
|
padding-bottom: var(--spacing-07);
|
|
}
|
|
|
|
tr {
|
|
border-bottom: 1px solid var(--bs-border-color);
|
|
|
|
td,
|
|
th {
|
|
border: 0 !important;
|
|
}
|
|
}
|
|
|
|
tr:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|