Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new expert plan #3117

Merged
merged 3 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ agent/js/lib/ios/DeviceSupport
/www/installers/browsers/nightly.dat
/www/cli/archive-ia.php
/www/cli/ec2-keys.inc.php
/www/15

agent/js/5c.sh

Expand Down
105 changes: 90 additions & 15 deletions www/assets/css/account.css
Original file line number Diff line number Diff line change
Expand Up @@ -1439,8 +1439,8 @@ table.sortable th:not([aria-sort]) button:hover span::after {

/* Comparison table */
.comparison-table {
border-spacing: 0;
font-size: 1.15rem;
border-spacing: 4px 0;
font-size: 1.3rem;
width: 100%;
border-radius: 10px;
margin-bottom: 15px;
Expand Down Expand Up @@ -1470,7 +1470,7 @@ table.sortable th:not([aria-sort]) button:hover span::after {
}
.comparison-table thead th:first-child,
.comparison-table tbody th {
text-align: right;
text-align: left;
}

.comparison-table th.custom-plan {
Expand All @@ -1482,19 +1482,27 @@ table.sortable th:not([aria-sort]) button:hover span::after {
vertical-align: bottom;
}

.comparison-table tr td:last-child {
border: 1px solid #ddd;
border-bottom: none;
border-top: none;
.comparison-table tr td {
border: none;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
}

.comparison-table tr td:first-of-type {
border: none;
}
.comparison-table tr:last-child td:last-child {
border-radius: 0 0 10px 10px;

.comparison-table tr:last-child td {
/* border-radius: 0 0 10px 10px; */
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom: 1px solid #ddd;
vertical-align: bottom;
}

.comparison-table thead th.section:not(:first-child),
.comparison-table tbody td {
border-left: 4px solid white;
.comparison-table tr:last-child td:first-of-type {
border: none;
border-radius: 0;
}

.comparison-table tr td,
Expand All @@ -1520,6 +1528,10 @@ table.sortable th:not([aria-sort]) button:hover span::after {
border-right: 1px solid #ddd;
}

.need-help {
padding: 0 1rem 0.75rem;
}

.account-upgrade-comparison-table thead th:first-child {
text-align: left;
}
Expand All @@ -1546,7 +1558,7 @@ table.sortable th:not([aria-sort]) button:hover span::after {
.comparison-table tbody td,
.comparison-table thead th {
display: block;
width: 50%;
width: 33%;
font-size: 1rem;
box-sizing: border-box;
position: relative;
Expand Down Expand Up @@ -1593,6 +1605,10 @@ table.sortable th:not([aria-sort]) button:hover span::after {
}
}

.card-section .comparison-table {
font-size: 1.0rem;
}

/* comparison table content */

.icon.check {
Expand Down Expand Up @@ -1666,6 +1682,14 @@ table.sortable th:not([aria-sort]) button:hover span::after {
font-size: 1.15rem;
font-weight: 700;
}

.comparison-table .signup-button > div {
line-height: 0.5;
}
.comparison-table .signup-button > div > small {
font-weight: 400;
font-size: small;
}
.comparison-table .signup-button .unit,
span.unit {
font-weight: 400;
Expand Down Expand Up @@ -1702,13 +1726,50 @@ tr.custom-plan-mobile {
display: inline-block;
width: auto;
}
.pro-plans .pro-plans-header {
#pro-plan-form label {
width: 75px;
margin-right: 0.2rem;
text-align: right;
}
#pro-plan-form select {
width: 150px;
margin-bottom: 0.2rem;
}

.pro-plans .pro-plans-header,
.expert-plan .expert-plan-header {
color: #fff;
background-color: #111a2a;
border-radius: 10px;
border: 1px solid #fff;
padding: 1em;
vertical-align: top;
}
.card-section .pro-plans-header,
.card-section .expert-plan-header {
display: flex;
flex-direction: column;
justify-content: center;
}
.card-section .pro-plans-header {
height: calc(100% - 2em - 2px);
}

thead th.pro-plans,
thead th.expert-plan {
vertical-align: top;
height: inherit;
}
.expert-plan-header {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.expert-plan-header .heading {
font-size: 1.25rem;
margin-bottom: 0.5rem;
}

.pro-plans-header .heading > * {
float: none;
}
Expand All @@ -1723,6 +1784,12 @@ th.pro-plans {
border-radius: 10px 10px 0 0;
background: rgba(255, 255, 255, 0.3);
}
th.expert-plan {
border: 1px solid #ddd;
border-bottom: none;
border-radius: 10px 10px 0 0;
background: rgba(255, 255, 255, 0.3);
}
.pro-plans select {
border: 1px solid #ddd;
}
Expand Down Expand Up @@ -1856,6 +1923,14 @@ p sup {
font-size: 2rem;
}

.signup-special-price {
color: #ffc830;
font-weight: 700;
font-size: 1.5rem;
line-height: 1.25;
margin-bottom: 1rem;
}

ul.bulleted-list {
list-style: disc;
margin-left: 2rem;
Expand Down Expand Up @@ -1901,7 +1976,7 @@ ul.bulleted-list {
display: block;
margin-top: 1rem;
}
sup,

.FAQ {
padding: 0 1.5rem 1.5rem;
}
Expand Down
Loading