1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
@import "chrome://global/skin/global.css";
hr {
border-style: solid none none none;
border-color: var(--panel-separator-color);
margin: var(--panel-separator-margin);
}
#ipprotection-content-wrapper {
--panel-subview-body-padding-inline: 0;
display: flex;
flex-direction: column;
}
.vpn-top-content {
margin-block-start: var(--space-small);
}
.vpn-bottom-content {
display: flex;
flex-direction: column;
margin-block-start: var(--space-small);
moz-button {
--button-alignment: start;
--button-border-radius: var(--border-radius-small);
--button-font-weight: var(--font-weight);
--button-icon-fill: var(--icon-color);
--button-padding: var(--space-small) var(--space-medium);
width: 100%;
}
}
.vpn-title {
/* Intentionally using a larger font size for clearer visual hierarchy
* stylelint-disable-next-line stylelint-plugin-mozilla/use-design-tokens */
font-size: 1.4em;
font-weight: var(--font-weight-semibold);
padding-top: var(--space-large);
padding-bottom: var(--space-xsmall);
margin-block: 0;
}
.vpn-subtitle {
margin: 0;
}
.vpn-description {
/* Intentionally using a larger font size for clearer visual hierarchy
/* stylelint-disable-next-line stylelint-plugin-mozilla/use-design-tokens */
font-size: 1.23em;
color: var(--text-color-deemphasized);
}
.vpn-description ul {
padding-inline-start: var(--space-xxlarge);
}
.vpn-description li {
padding-block-start: var(--space-xsmall);
}
.vpn-description li:last-of-type {
padding-block-end: var(--space-small);
}
.vpn-button {
/* Intentionally using a larger font size for clearer visual hierarchy
/* stylelint-disable-next-line stylelint-plugin-mozilla/use-design-tokens */
font-size: 1.2em;
display: block;
padding-top: var(--space-medium);
}
#unauthenticated-vpn-content {
display: flex;
flex-direction: column;
padding-block-start: 0;
padding-block-end: var(--space-small);
padding-inline-start: var(--space-large);
padding-inline-end: var(--space-large);
}
#unauthenticated-vpn-message {
margin: 0;
}
ipprotection-message-bar.vpn-top-content {
margin-block-start: 0;
margin-block-end: var(--space-small);
}
@media (prefers-color-scheme: dark) {
#unauthenticated-vpn-img {
content: url("chrome://browser/content/ipprotection/assets/vpn-panel-get-started-dark.svg");
}
}
#site-exclusion-control {
display: flex;
justify-content: space-between;
padding-inline: var(--space-medium);
padding-block: var(--space-medium);
&:has(+ .vpn-bottom-content) {
border-bottom: var(--border-width) solid var(--border-color-card);
}
}
#site-exclusion-icon {
-moz-context-properties: fill;
fill: var(--icon-color);
}
#site-exclusion-label-container {
display: flex;
flex-grow: 1;
gap: var(--space-small);
}
|