2023-06-03 21:39:47 +02:00
|
|
|
:root {
|
|
|
|
--color-background-modal: hsl(0deg 0% 98%);
|
|
|
|
}
|
|
|
|
|
2018-09-06 10:14:24 +02:00
|
|
|
.billing-upgrade-page {
|
2023-03-27 12:47:59 +02:00
|
|
|
font-family: "Source Sans 3 VF", sans-serif;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 98%);
|
2018-09-06 10:14:24 +02:00
|
|
|
height: 100vh;
|
|
|
|
|
2023-05-11 06:06:14 +02:00
|
|
|
.page-content {
|
|
|
|
padding: 100px 0 30px;
|
|
|
|
}
|
|
|
|
|
2018-09-06 10:14:24 +02:00
|
|
|
.main {
|
|
|
|
width: 800px;
|
|
|
|
max-width: 90%;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 {
|
2018-09-06 10:14:24 +02:00
|
|
|
margin: 30px 0;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs {
|
|
|
|
border-bottom: 0;
|
|
|
|
font-size: 1.2em;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2018-09-06 10:14:24 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-content {
|
2023-03-20 22:08:47 +01:00
|
|
|
border: 1px solid hsl(0deg 0% 87%);
|
2018-09-06 10:14:24 +02:00
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
padding: 20px;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2018-09-06 10:14:24 +02:00
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.support-link {
|
|
|
|
margin: 10px 20px;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a,
|
2018-09-06 10:14:24 +02:00
|
|
|
a:hover,
|
|
|
|
a:visited {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(170deg 47% 33%);
|
2023-03-27 09:01:23 +02:00
|
|
|
font-weight: 400;
|
2018-09-06 10:14:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-21 18:44:24 +01:00
|
|
|
.license-management,
|
2018-09-06 10:14:24 +02:00
|
|
|
.payment-schedule {
|
2023-03-17 22:10:10 +01:00
|
|
|
& label {
|
2018-09-06 10:14:24 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& input[type="radio"] {
|
2018-09-06 10:14:24 +02:00
|
|
|
display: none;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2018-09-06 10:14:24 +02:00
|
|
|
&:checked {
|
|
|
|
+ .box {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(153deg 32% 55%);
|
|
|
|
color: hsl(0deg 0% 100%);
|
|
|
|
border-color: hsl(152deg 33% 39%);
|
2018-09-06 10:14:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2018-09-06 10:14:24 +02:00
|
|
|
.box {
|
|
|
|
width: 120px;
|
|
|
|
height: 70px;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 94%);
|
2020-08-04 23:58:56 +02:00
|
|
|
transition: all 0.2s ease;
|
2018-09-06 10:14:24 +02:00
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
2023-03-20 22:08:47 +01:00
|
|
|
border: 1px solid hsl(0deg 0% 91%);
|
2018-09-06 10:14:24 +02:00
|
|
|
border-radius: 8px;
|
|
|
|
margin: 0 10px 5px 0;
|
|
|
|
padding: 30px 20px;
|
|
|
|
vertical-align: top;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2018-09-06 10:14:24 +02:00
|
|
|
&:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 91%);
|
|
|
|
border-color: hsl(0deg 0% 80%);
|
2018-09-06 10:14:24 +02:00
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2018-09-06 10:14:24 +02:00
|
|
|
.schedule-time {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2018-09-06 10:14:24 +02:00
|
|
|
.schedule-amount {
|
|
|
|
margin-top: 5px;
|
|
|
|
font-size: 1.1em;
|
|
|
|
height: 50px;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2018-09-06 10:14:24 +02:00
|
|
|
.schedule-amount-2 {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2018-12-21 18:44:24 +01:00
|
|
|
.management-type {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.2em;
|
2019-01-29 15:30:19 +01:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-01-29 15:30:19 +01:00
|
|
|
.management-type-text {
|
|
|
|
font-size: 1.1em;
|
|
|
|
margin-top: 5px;
|
2018-12-21 18:44:24 +01:00
|
|
|
}
|
2018-09-06 10:14:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.stripe-button-el {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 11px 25px;
|
2018-09-06 10:14:24 +02:00
|
|
|
font-weight: 400;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
145deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(191deg 56% 55%),
|
|
|
|
hsl(169deg 65% 42%)
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 3px 10px hsl(0deg 0% 0% / 20%);
|
2018-09-06 10:14:24 +02:00
|
|
|
border: 0;
|
|
|
|
height: 40px;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 5px 0 0;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& span {
|
2018-09-06 10:14:24 +02:00
|
|
|
background: 0;
|
|
|
|
box-shadow: none;
|
2023-03-27 12:47:59 +02:00
|
|
|
font-family: "Source Sans 3 VF", sans-serif;
|
2018-09-06 10:14:24 +02:00
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.stripe-button-el:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(169deg 65% 42%);
|
|
|
|
box-shadow: 0 3px 10px hsl(0deg 0% 0% / 30%);
|
2018-09-06 10:14:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.stripe-button-el:active,
|
2020-10-30 00:26:54 +01:00
|
|
|
.stripe-button-el:enabled:active {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(169deg 70% 32%);
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& span {
|
2018-09-06 10:14:24 +02:00
|
|
|
background: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-06 17:22:34 +02:00
|
|
|
.stripe-button-el:disabled {
|
2023-03-17 22:10:10 +01:00
|
|
|
& span {
|
2018-09-06 17:22:34 +02:00
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-24 11:37:06 +02:00
|
|
|
.stripe-button-el:hover:disabled {
|
|
|
|
box-shadow: none;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 78%);
|
2018-10-24 11:37:06 +02:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2018-11-18 10:18:14 +01:00
|
|
|
.invoice-button {
|
2022-01-15 00:55:37 +01:00
|
|
|
font-size: 19px;
|
2021-12-27 21:25:38 +01:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.upgrade-button-container {
|
|
|
|
display: inline-block;
|
2018-11-18 10:18:14 +01:00
|
|
|
}
|
|
|
|
|
2018-12-21 18:44:24 +01:00
|
|
|
#manual_license_count,
|
2018-12-24 12:12:52 +01:00
|
|
|
#invoiced_licenses {
|
2018-11-18 10:18:14 +01:00
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
2023-03-27 12:47:45 +02:00
|
|
|
#licenses_at_next_renewal_input,
|
|
|
|
#new_licenses_input {
|
|
|
|
width: 206px;
|
|
|
|
}
|
|
|
|
|
2018-09-06 10:14:24 +02:00
|
|
|
#error-message-box {
|
|
|
|
margin-top: 10px;
|
|
|
|
font-weight: 600;
|
2018-09-06 15:14:54 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-08-29 15:33:29 +02:00
|
|
|
#restartsession-loading,
|
|
|
|
#webhook-loading,
|
2020-06-09 12:24:32 +02:00
|
|
|
#sponsorship-loading,
|
2020-04-24 17:38:13 +02:00
|
|
|
#planchange-loading,
|
2020-12-23 17:08:27 +01:00
|
|
|
#licensechange-loading,
|
2018-12-26 12:35:47 +01:00
|
|
|
#cardchange-loading,
|
2018-12-07 18:43:22 +01:00
|
|
|
#invoice-loading,
|
|
|
|
#autopay-loading {
|
2018-09-06 15:14:54 +02:00
|
|
|
display: none;
|
|
|
|
min-height: 55px;
|
2018-12-07 18:43:22 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2021-08-29 15:33:29 +02:00
|
|
|
#restartsession-success,
|
|
|
|
#webhook-success,
|
2020-06-09 12:24:32 +02:00
|
|
|
#sponsorship-success,
|
2020-04-24 17:38:13 +02:00
|
|
|
#planchange-success,
|
2020-12-23 17:08:27 +01:00
|
|
|
#licensechange-success,
|
2018-12-26 12:35:47 +01:00
|
|
|
#cardchange-success,
|
2018-12-07 18:43:22 +01:00
|
|
|
#invoice-success,
|
|
|
|
#autopay-success {
|
|
|
|
text-align: center;
|
|
|
|
display: none;
|
2018-09-06 15:14:54 +02:00
|
|
|
}
|
|
|
|
|
2021-08-29 15:33:29 +02:00
|
|
|
#restartsession-error,
|
|
|
|
#webhook-error,
|
2020-06-09 12:24:32 +02:00
|
|
|
#sponsorship-error,
|
2020-04-24 17:38:13 +02:00
|
|
|
#planchange-error,
|
2020-12-23 17:08:27 +01:00
|
|
|
#licensechange-error,
|
2018-12-26 12:35:47 +01:00
|
|
|
#cardchange-error,
|
2018-12-07 18:43:22 +01:00
|
|
|
#invoice-error,
|
|
|
|
#autopay-error {
|
2018-09-06 15:14:54 +02:00
|
|
|
text-align: center;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-12-07 18:43:22 +01:00
|
|
|
.zulip-loading-logo {
|
2018-09-06 15:14:54 +02:00
|
|
|
margin: 0 auto;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
2018-12-07 18:43:22 +01:00
|
|
|
.zulip-loading-logo svg circle {
|
2023-03-20 22:08:47 +01:00
|
|
|
fill: hsl(0deg 0% 27%);
|
|
|
|
stroke: hsl(0deg 0% 27%);
|
2018-09-06 15:14:54 +02:00
|
|
|
}
|
|
|
|
|
2018-12-07 18:43:22 +01:00
|
|
|
.zulip-loading-logo svg path {
|
2023-03-20 22:08:47 +01:00
|
|
|
fill: hsl(0deg 0% 100%);
|
|
|
|
stroke: hsl(0deg 0% 100%);
|
2018-09-06 15:14:54 +02:00
|
|
|
}
|
|
|
|
|
2021-08-29 15:33:29 +02:00
|
|
|
#restartsession_loading_indicator,
|
|
|
|
#webhook_loading_indicator,
|
2020-06-09 12:24:32 +02:00
|
|
|
#sponsorship_loading_indicator,
|
2020-04-24 17:38:13 +02:00
|
|
|
#planchange_loading_indicator,
|
2020-12-23 17:08:27 +01:00
|
|
|
#licensechange_loading_indicator,
|
2018-12-26 12:35:47 +01:00
|
|
|
#cardchange_loading_indicator,
|
2018-12-07 18:43:22 +01:00
|
|
|
#invoice_loading_indicator,
|
|
|
|
#autopay_loading_indicator {
|
2018-09-06 15:14:54 +02:00
|
|
|
margin: 10px auto;
|
|
|
|
}
|
|
|
|
|
2021-08-29 15:33:29 +02:00
|
|
|
#restartsession_loading_indicator_box_container,
|
|
|
|
#webhook_loading_indicator_box_container,
|
2020-06-09 12:24:32 +02:00
|
|
|
#sponsorship_loading_indicator_box_container,
|
2020-04-24 17:38:13 +02:00
|
|
|
#planchange_loading_indicator_box_container,
|
2020-12-23 17:08:27 +01:00
|
|
|
#licensechange_loading_indicator_box_container,
|
2018-12-26 12:35:47 +01:00
|
|
|
#cardchange_loading_indicator_box_container,
|
2018-12-07 18:43:22 +01:00
|
|
|
#invoice_loading_indicator_box_container,
|
|
|
|
#autopay_loading_indicator_box_container {
|
2018-09-06 15:14:54 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
|
2021-08-29 15:33:29 +02:00
|
|
|
#restartsession_loading_indicator_box,
|
|
|
|
#webhook_loading_indicator_box,
|
2020-06-09 12:24:32 +02:00
|
|
|
#sponsorship_loading_indicator_box,
|
2020-04-24 17:38:13 +02:00
|
|
|
#planchange_loading_indicator_box,
|
2020-12-23 17:08:27 +01:00
|
|
|
#licensechange_loading_indicator_box,
|
2018-12-26 12:35:47 +01:00
|
|
|
#cardchange_loading_indicator_box,
|
2018-12-07 18:43:22 +01:00
|
|
|
#invoice_loading_indicator_box,
|
|
|
|
#autopay_loading_indicator_box {
|
2018-09-06 15:14:54 +02:00
|
|
|
position: relative;
|
|
|
|
left: -50%;
|
|
|
|
top: -41px;
|
2020-12-23 17:08:27 +01:00
|
|
|
z-index: 10;
|
2018-09-06 15:14:54 +02:00
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
2021-08-29 15:33:29 +02:00
|
|
|
#restartsession_loading_indicator .loading_indicator_text,
|
|
|
|
#webhook_loading_indicator .loading_indicator_text,
|
2020-06-09 12:24:32 +02:00
|
|
|
#sponsorship_loading_indicator .loading_indicator_text,
|
2020-04-24 17:38:13 +02:00
|
|
|
#planchange_loading_indicator .loading_indicator_text,
|
2020-12-23 17:08:27 +01:00
|
|
|
#licensechange_loading_indicator .loading_indicator_text,
|
2018-12-26 12:35:47 +01:00
|
|
|
#cardchange_loading_indicator .loading_indicator_text,
|
2018-12-07 18:43:22 +01:00
|
|
|
#invoice_loading_indicator .loading_indicator_text,
|
|
|
|
#autopay_loading_indicator .loading_indicator_text {
|
2018-12-26 13:07:14 +01:00
|
|
|
margin-left: -25px;
|
2018-09-06 10:14:24 +02:00
|
|
|
}
|
2018-12-21 18:44:24 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& select,
|
2022-12-26 18:54:03 +01:00
|
|
|
input,
|
|
|
|
textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
}
|
2018-09-06 10:14:24 +02:00
|
|
|
}
|
2018-12-24 11:34:47 +01:00
|
|
|
|
2021-08-29 15:33:29 +02:00
|
|
|
input[type="number"]::-webkit-outer-spin-button,
|
|
|
|
input[type="number"]::-webkit-inner-spin-button {
|
2020-08-06 01:49:25 +02:00
|
|
|
appearance: none;
|
2018-12-24 11:34:47 +01:00
|
|
|
margin: 0;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2020-11-06 07:50:12 +01:00
|
|
|
input[name="licenses"] {
|
2020-08-06 01:49:25 +02:00
|
|
|
appearance: textfield;
|
2018-12-24 11:34:47 +01:00
|
|
|
}
|
2021-07-21 11:25:48 +02:00
|
|
|
|
2023-06-20 13:50:38 +02:00
|
|
|
#license-manual-section,
|
|
|
|
#licensechange-input-section,
|
2023-06-27 08:44:57 +02:00
|
|
|
#invoice-form {
|
2023-06-20 13:50:38 +02:00
|
|
|
& input {
|
|
|
|
padding: 4px 6px;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid hsl(0deg 0% 80%);
|
|
|
|
color: hsl(0deg 0% 33%);
|
|
|
|
margin-bottom: 10px;
|
2023-07-21 23:08:07 +02:00
|
|
|
transition:
|
|
|
|
border linear 0.2s,
|
|
|
|
box-shadow linear 0.2s;
|
2023-06-20 13:50:38 +02:00
|
|
|
box-shadow: inset 0 1px 1px hsla(0deg 0 0 / 7.5%);
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border-color: hsl(206deg 80% 62% / 80%);
|
|
|
|
outline: 0;
|
2023-07-21 23:08:07 +02:00
|
|
|
box-shadow:
|
|
|
|
inset 0 1px 1px hsl(0deg 0% 0% / 7.5%),
|
2023-06-20 13:50:38 +02:00
|
|
|
0 0 8px hsl(206.494deg 80% 62% / 60%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-28 12:33:10 +02:00
|
|
|
#confirm-licenses-modal .dialog_submit_button:active {
|
|
|
|
/* This is needed to avoid button background changing
|
|
|
|
when clicking on it due to "button:active" CSS in
|
|
|
|
landing_page.css. */
|
|
|
|
background-color: hsl(240deg 96% 68%);
|
|
|
|
}
|
2023-11-02 12:11:01 +01:00
|
|
|
|
2023-11-10 13:02:32 +01:00
|
|
|
#upgrade-page .white-box,
|
2023-11-08 09:50:11 +01:00
|
|
|
#billing-page .white-box,
|
2023-11-02 16:03:52 +01:00
|
|
|
.sponsorship-page .white-box {
|
2023-11-02 12:11:01 +01:00
|
|
|
margin: 30px;
|
|
|
|
}
|
2023-11-02 16:03:52 +01:00
|
|
|
|
2023-11-10 13:02:32 +01:00
|
|
|
#upgrade-page #billing-page-details,
|
2023-11-08 09:50:11 +01:00
|
|
|
#billing-page #billing-page-details,
|
2023-11-02 16:03:52 +01:00
|
|
|
.sponsorship-page #sponsorship-form {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sponsorship-discount-details {
|
|
|
|
font-weight: normal;
|
2023-11-23 15:59:21 +01:00
|
|
|
margin: 2px 14px;
|
2023-11-11 16:15:33 +01:00
|
|
|
padding-top: 0;
|
2023-11-02 16:03:52 +01:00
|
|
|
text-align: left;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
width: 450px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width < 600px) {
|
2023-11-08 09:50:11 +01:00
|
|
|
#billing-page,
|
2023-11-02 16:03:52 +01:00
|
|
|
.sponsorship-page {
|
|
|
|
transform: scale(0.8);
|
|
|
|
margin: -50px;
|
|
|
|
}
|
2023-11-10 14:30:10 +01:00
|
|
|
|
2023-11-23 14:12:21 +01:00
|
|
|
.sponsorship-status-page {
|
|
|
|
transform: scale(0.8);
|
|
|
|
margin: -10px -50px -50px;
|
|
|
|
}
|
|
|
|
|
2023-11-10 14:30:10 +01:00
|
|
|
#upgrade-page {
|
|
|
|
transform: scale(0.8);
|
|
|
|
margin: -50px 0;
|
|
|
|
}
|
2023-11-02 16:03:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (width < 460px) {
|
2023-11-10 14:30:10 +01:00
|
|
|
#upgrade-page,
|
2023-11-08 09:50:11 +01:00
|
|
|
#billing-page,
|
2023-11-02 16:03:52 +01:00
|
|
|
.sponsorship-page {
|
|
|
|
transform: scale(0.6);
|
|
|
|
margin: -150px -100px;
|
|
|
|
}
|
2023-11-10 14:30:10 +01:00
|
|
|
|
2023-11-23 14:12:21 +01:00
|
|
|
.sponsorship-status-page {
|
|
|
|
transform: scale(0.6);
|
|
|
|
margin: -50px -150px -100px;
|
|
|
|
}
|
|
|
|
|
2023-11-10 14:30:10 +01:00
|
|
|
#upgrade-page {
|
|
|
|
transform: scale(0.6);
|
|
|
|
margin: -150px 0;
|
|
|
|
}
|
2023-11-02 16:03:52 +01:00
|
|
|
}
|
2023-11-03 12:49:54 +01:00
|
|
|
|
2023-11-13 15:14:38 +01:00
|
|
|
#billing-page .billing-status-page .pitch {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2023-11-23 14:12:21 +01:00
|
|
|
.billing-status-page {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2023-11-03 12:49:54 +01:00
|
|
|
.sponsorship-status-page .white-box {
|
|
|
|
font-weight: 400;
|
2023-11-23 14:12:21 +01:00
|
|
|
margin: 30px;
|
|
|
|
padding: 0;
|
2023-11-03 12:49:54 +01:00
|
|
|
}
|
|
|
|
|
2023-11-13 15:14:38 +01:00
|
|
|
.billing-status-page p:last-child,
|
2023-11-03 12:49:54 +01:00
|
|
|
.sponsorship-status-page p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2023-11-04 04:11:30 +01:00
|
|
|
|
2023-11-10 18:03:10 +01:00
|
|
|
.upgrade-page-error,
|
2023-11-08 11:29:40 +01:00
|
|
|
.sponsorship-field-error,
|
|
|
|
.billing-page-error,
|
|
|
|
.billing-page-success {
|
2023-11-04 04:11:30 +01:00
|
|
|
text-align: left;
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2023-10-28 15:23:58 +02:00
|
|
|
|
|
|
|
.header.portico-header {
|
|
|
|
display: block;
|
|
|
|
}
|
2023-11-08 11:29:40 +01:00
|
|
|
|
2023-11-27 20:21:20 +01:00
|
|
|
#upgrade-page #upgrade-manual-license-count-wrapper,
|
2023-11-08 11:29:40 +01:00
|
|
|
#billing-page .input-box-number {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2023-11-23 15:59:21 +01:00
|
|
|
.sponsorship-page .pitch,
|
|
|
|
.sponsorship-status-page .pitch,
|
2023-11-10 13:02:32 +01:00
|
|
|
#upgrade-page .pitch,
|
2023-11-08 12:08:37 +01:00
|
|
|
#billing-page .pitch {
|
|
|
|
width: 600px;
|
|
|
|
}
|
|
|
|
|
2023-11-08 11:29:40 +01:00
|
|
|
#billing-page .number-input-with-label {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
|
2023-11-27 20:21:20 +01:00
|
|
|
#upgrade-page #manual_license_count,
|
2023-11-08 14:58:35 +01:00
|
|
|
#billing-page
|
|
|
|
.white-box
|
|
|
|
.input-box-number
|
|
|
|
.number-input-with-label
|
|
|
|
.short-width-number-input {
|
2023-11-08 11:29:40 +01:00
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#billing-page .number-input-with-label .licence-count-in-use {
|
|
|
|
padding-left: 10px;
|
|
|
|
vertical-align: bottom;
|
|
|
|
position: relative;
|
|
|
|
bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2023-11-20 13:01:25 +01:00
|
|
|
#billing-page #org-billing-frequency-confirm-button,
|
2023-11-08 11:29:40 +01:00
|
|
|
#billing-page .license-count-update-button {
|
|
|
|
margin: 0 auto;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
margin-right: 0;
|
2023-11-12 03:40:01 +01:00
|
|
|
width: 100px;
|
2023-11-12 05:08:17 +01:00
|
|
|
}
|
2023-11-08 14:58:35 +01:00
|
|
|
|
2023-11-20 13:01:25 +01:00
|
|
|
#billing-page #org-billing-frequency-confirm-button.hide,
|
2023-11-12 05:08:17 +01:00
|
|
|
#billing-page .license-count-update-button.hide {
|
|
|
|
display: none;
|
2023-11-08 14:58:35 +01:00
|
|
|
}
|
|
|
|
|
2023-11-20 13:01:25 +01:00
|
|
|
#billing-page #org-billing-frequency-confirm-button {
|
|
|
|
margin: 0;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 25px;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2023-11-08 14:58:35 +01:00
|
|
|
#billing-page #current-license-change-form,
|
|
|
|
#billing-page #next-license-change-form {
|
|
|
|
margin-bottom: 0;
|
2023-11-08 11:29:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.billing-page-success {
|
|
|
|
display: none;
|
|
|
|
}
|
2023-11-08 11:42:05 +01:00
|
|
|
|
2023-11-08 12:08:37 +01:00
|
|
|
#billing-page-details .input-box.billing-page-field.plan-toggle-action,
|
2023-11-08 11:42:05 +01:00
|
|
|
#billing-page-details .input-box.billing-page-field.user-stripe-card-update {
|
|
|
|
margin-top: 10px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2023-11-08 12:08:37 +01:00
|
|
|
#billing-page-details .plan-toggle-action .plan-toggle-action-button {
|
|
|
|
margin: 20px auto 0;
|
|
|
|
background-color: hsl(0deg 70% 40%);
|
|
|
|
}
|
|
|
|
|
2023-11-18 11:29:04 +01:00
|
|
|
#org-upgrade-button {
|
2023-11-10 13:47:56 +01:00
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&:disabled,
|
|
|
|
.permanent-disabled {
|
|
|
|
color: hsl(0deg 0% 80%);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-18 11:29:04 +01:00
|
|
|
#upgrade-page-details #upgrade-add-card-button,
|
2023-11-08 11:42:05 +01:00
|
|
|
#billing-page-details .user-stripe-card-update .user-stripe-card-update-button {
|
|
|
|
margin: 0;
|
2023-11-12 03:40:01 +01:00
|
|
|
width: 150px;
|
2023-11-08 11:42:05 +01:00
|
|
|
}
|
2023-11-08 12:08:37 +01:00
|
|
|
|
|
|
|
#billing-page-details .next-payment-info {
|
|
|
|
width: 450px;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
2023-11-23 14:12:21 +01:00
|
|
|
#sponsorship-status-page-details .input-box.sponsorship-form-field:first-child,
|
2023-11-08 12:08:37 +01:00
|
|
|
#billing-page-details .input-box.billing-page-field:first-child {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2023-11-23 14:12:21 +01:00
|
|
|
.sponsorship-status-page .support-link,
|
2023-11-08 12:08:37 +01:00
|
|
|
#billing-page .support-link {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2023-11-09 12:03:40 +01:00
|
|
|
|
2023-11-25 14:44:47 +01:00
|
|
|
.micromodal {
|
2023-11-09 12:03:40 +01:00
|
|
|
.modal__title {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal__content {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
}
|
2023-11-10 14:30:10 +01:00
|
|
|
|
2023-11-25 15:18:56 +01:00
|
|
|
#upgrade-page-details #free-trial-top-banner {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2023-11-20 13:01:25 +01:00
|
|
|
#billing-page-details .billing-frequency-message.not-editable-realm-field,
|
2023-11-11 09:52:09 +01:00
|
|
|
#free-trial-top-banner .not-editable-realm-field,
|
2023-11-10 14:30:10 +01:00
|
|
|
#upgrade-page-details .license-management-section .not-editable-realm-field {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#upgrade-page-details {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2023-11-11 10:15:55 +01:00
|
|
|
|
|
|
|
#free-trial-alert-message,
|
|
|
|
#free-trial-top-banner {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2023-11-13 15:56:10 +01:00
|
|
|
|
2023-11-23 16:02:39 +01:00
|
|
|
#billing-sponsorship-pending-message-top,
|
2023-11-23 14:12:21 +01:00
|
|
|
#sponsorship-status-success-message-top,
|
2023-11-13 15:56:10 +01:00
|
|
|
#billing-success-message-top {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
2023-11-23 14:12:21 +01:00
|
|
|
font-weight: 400;
|
2023-11-23 16:02:39 +01:00
|
|
|
padding: 10px 20px;
|
|
|
|
width: 600px;
|
2023-11-13 15:56:10 +01:00
|
|
|
}
|
2023-11-18 11:29:04 +01:00
|
|
|
|
|
|
|
.upgrade-page-success {
|
|
|
|
display: none;
|
|
|
|
padding: 8px 0;
|
|
|
|
width: 450px;
|
|
|
|
text-align: center;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#upgrade-payment-info {
|
|
|
|
display: grid;
|
|
|
|
grid-template: auto auto 1fr / 1fr auto;
|
|
|
|
grid-template-areas:
|
|
|
|
"payment-info add-card"
|
|
|
|
"alert-message alert-message";
|
|
|
|
width: 450px;
|
|
|
|
margin: auto;
|
|
|
|
padding-bottom: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#upgrade-payment-info .alert {
|
|
|
|
grid-area: alert-message;
|
|
|
|
}
|
|
|
|
|
|
|
|
#upgrade-page-details #upgrade-payment-menthod-wrapper {
|
|
|
|
margin-left: 0;
|
|
|
|
grid-area: payment-info;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Used class twice to increase specificity */
|
|
|
|
#upgrade-payment-info .upgrade-add-card-container.upgrade-add-card-container {
|
|
|
|
grid-area: add-card;
|
|
|
|
width: auto;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2023-11-20 13:01:25 +01:00
|
|
|
#billing-page-details
|
|
|
|
.org-billing-frequency-wrapper.input-box
|
|
|
|
.billing-frequency-select {
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#billing-page-details .org-billing-frequency-wrapper.billing-page-field,
|
2023-11-18 11:29:04 +01:00
|
|
|
#upgrade-page-details .upgrade-add-card-container {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2023-11-21 10:46:50 +01:00
|
|
|
|
|
|
|
#autopay-error {
|
|
|
|
font-weight: 400;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2023-11-23 15:59:21 +01:00
|
|
|
|
|
|
|
#sponsorship-status-page-details .input-box.sponsorship-form-field {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sponsorship-form #sponsorship-button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-11-23 18:05:06 +01:00
|
|
|
|
|
|
|
.billing-page-discount {
|
|
|
|
opacity: 0.8;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2023-11-29 21:30:46 +01:00
|
|
|
|
|
|
|
.server-login-button-loader {
|
|
|
|
display: none;
|
|
|
|
vertical-align: top;
|
|
|
|
position: relative;
|
|
|
|
height: 30px;
|
|
|
|
margin-top: -10px;
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#server-login-error {
|
|
|
|
text-align: center;
|
|
|
|
}
|