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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
/* 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";
:host {
--status-card-connected-background-color: var(--color-violet-90);
--connection-shield-color: var(--panel-background);
--connection-shield-off-background-color: var(--icon-color-critical);
--connection-shield-on-background-color: var(--color-accent-primary);
}
hr {
border-style: solid none none none;
border-color: var(--panel-separator-color);
margin: var(--panel-separator-margin);
}
#ipprotection-content-wrapper {
display: flex;
flex-direction: column;
padding-inline: var(--panel-subview-body-padding-inline);
padding-block: var(--panel-subview-body-padding-block);
}
.vpn-top-content {
margin-inline: var(--space-large);
margin-block-start: var(--space-small);
}
.vpn-status-group {
position: relative;
margin: var(--space-large);
overflow: hidden;
}
.is-enabled {
color: #fff;
background-color: var(--status-card-connected-background-color);
}
#status-card {
--shield-bgcolor: var(--connection-shield-off-background-color);
--box-icon-fill: var(--connection-shield-color);
--box-icon-stroke: var(--shield-bgcolor);
-moz-context-properties: fill, stroke;
/**
* moz-box-group changes the border of items based on its position in the group.
* Undo it to preserve the border radius even though the animation rings are
* loaded first in the group.
*/
--box-border-radius-start: initial;
fill: var(--connection-shield-color);
stroke: var(--shield-bgcolor);
&.is-enabled {
--shield-bgcolor: var(--connection-shield-on-background-color);
}
}
#connection-toggle {
margin-inline-end: var(--space-small);
}
#connection-toggle {
--toggle-width: var(--size-item-xlarge);
--toggle-height: var(--size-item-medium);
--toggle-dot-margin: 2px;
}
#status-card-animation {
display: block;
position: absolute;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}
#animation-rings {
display: block;
width: 100%;
height: 100%;
contain: strict;
/**
* A hacky attempt at centering the rings with the globe icon.
* It makes some assumptions about the icon size and padding pixels used in moz-box-item.
* The rings are 200px in height and width, so they have a radius of 100px.
* Additional px gap is merely for alignment and not tied to any element.
* TODO: (Bug 1981251) See if we can better calculate the center coords.
*/
background-position-x: calc(-100px + var(--icon-size-xlarge) + var(--space-large) - 15px);
background-position-y: calc(-100px + var(--icon-size-xlarge) + var(--space-large) - 13px);
background-image: url("chrome://browser/content/ipprotection/assets/rings.svg");
background-repeat: no-repeat;
&:dir(rtl) {
/* Shift by approximately 100% of the element's width to move the rings to the opposite side. */
background-position-x: calc(100% + var(--icon-size-xlarge) + var(--space-large) + 28px);
}
@media (prefers-reduced-motion: reduce) {
display: none;
}
}
#location-wrapper {
--box-icon-fill: currentColor;
}
.vpn-bottom-content {
display: flex;
flex-direction: column;
padding: var(--space-small) var(--space-large);
}
.vpn-subtitle {
margin: 0;
}
.vpn-button {
align-self: end;
}
#signed-out-vpn-title {
margin-bottom: 0;
}
#signed-out-vpn-content {
display: flex;
flex-direction: column;
padding: var(--space-medium) var(--space-large) var(--space-small);
}
@media (prefers-color-scheme: dark) {
#signed-out-vpn-img {
content: url("chrome://browser/content/ipprotection/assets/ipprotection-darkmode.svg");
}
}
|