summaryrefslogtreecommitdiffstats
path: root/browser/components/pocket/content/panels/css
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/pocket/content/panels/css')
-rw-r--r--browser/components/pocket/content/panels/css/normalize.css425
-rw-r--r--browser/components/pocket/content/panels/css/saved.css1032
-rw-r--r--browser/components/pocket/content/panels/css/sendtomobile.css199
-rw-r--r--browser/components/pocket/content/panels/css/signup.css547
4 files changed, 2203 insertions, 0 deletions
diff --git a/browser/components/pocket/content/panels/css/normalize.css b/browser/components/pocket/content/panels/css/normalize.css
new file mode 100644
index 0000000000..af461f1e0b
--- /dev/null
+++ b/browser/components/pocket/content/panels/css/normalize.css
@@ -0,0 +1,425 @@
+/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
+
+/**
+ * 1. Set default font family to sans-serif.
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
+ * user zoom.
+ */
+
+html {
+ font-family: sans-serif; /* 1 */
+}
+
+/**
+ * Remove default margin.
+ */
+
+body {
+ margin: 0;
+}
+
+/* HTML5 display definitions
+ ========================================================================== */
+
+/**
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11
+ * and Firefox.
+ * Correct `block` display not defined for `main` in IE 11.
+ */
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+ display: block;
+}
+
+/**
+ * 1. Correct `inline-block` display not defined in IE 8/9.
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
+ */
+
+audio,
+canvas,
+progress,
+video {
+ display: inline-block; /* 1 */
+ vertical-align: baseline; /* 2 */
+}
+
+/**
+ * Prevent modern browsers from displaying `audio` without controls.
+ * Remove excess height in iOS 5 devices.
+ */
+
+audio:not([controls]) {
+ display: none;
+ height: 0;
+}
+
+/**
+ * Address `[hidden]` styling not present in IE 8/9/10.
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
+ */
+
+[hidden],
+template {
+ display: none;
+}
+
+/* Links
+ ========================================================================== */
+
+/**
+ * Remove the gray background color from active links in IE 10.
+ */
+
+a {
+ background-color: transparent;
+}
+
+/**
+ * Improve readability when focused and also mouse hovered in all browsers.
+ */
+
+a:active,
+a:hover {
+ outline: 0;
+}
+
+/* Text-level semantics
+ ========================================================================== */
+
+/**
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
+ */
+
+abbr[title] {
+ border-bottom: 1px dotted;
+}
+
+/**
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
+ */
+
+b,
+strong {
+ font-weight: bold;
+}
+
+/**
+ * Address styling not present in Safari and Chrome.
+ */
+
+dfn {
+ font-style: italic;
+}
+
+/**
+ * Address variable `h1` font-size and margin within `section` and `article`
+ * contexts in Firefox 4+, Safari, and Chrome.
+ */
+
+h1 {
+ font-size: 2em;
+ margin: 0.67em 0;
+}
+
+/**
+ * Address styling not present in IE 8/9.
+ */
+
+mark {
+ background: #ff0;
+ color: #000;
+}
+
+/**
+ * Address inconsistent and variable font size in all browsers.
+ */
+
+small {
+ font-size: 80%;
+}
+
+/**
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
+ */
+
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+
+sup {
+ top: -0.5em;
+}
+
+sub {
+ bottom: -0.25em;
+}
+
+/* Embedded content
+ ========================================================================== */
+
+/**
+ * Remove border when inside `a` element in IE 8/9/10.
+ */
+
+img {
+ border: 0;
+}
+
+/**
+ * Correct overflow not hidden in IE 9/10/11.
+ */
+
+svg:not(:root) {
+ overflow: hidden;
+}
+
+/* Grouping content
+ ========================================================================== */
+
+/**
+ * Address margin not present in IE 8/9 and Safari.
+ */
+
+figure {
+ margin: 1em 40px;
+}
+
+/**
+ * Address differences between Firefox and other browsers.
+ */
+
+hr {
+ -moz-box-sizing: content-box;
+ box-sizing: content-box;
+ height: 0;
+}
+
+/**
+ * Contain overflow in all browsers.
+ */
+
+pre {
+ overflow: auto;
+}
+
+/**
+ * Address odd `em`-unit font size rendering in all browsers.
+ */
+
+code,
+kbd,
+pre,
+samp {
+ font-family: monospace, monospace;
+ font-size: 1em;
+}
+
+/* Forms
+ ========================================================================== */
+
+/**
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
+ * styling of `select`, unless a `border` property is set.
+ */
+
+/**
+ * 1. Correct color not being inherited.
+ * Known issue: affects color of disabled elements.
+ * 2. Correct font properties not being inherited.
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
+ */
+
+button,
+input,
+optgroup,
+select,
+textarea {
+ color: inherit; /* 1 */
+ font: inherit; /* 2 */
+ margin: 0; /* 3 */
+}
+
+/**
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
+ */
+
+button {
+ overflow: visible;
+}
+
+/**
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
+ * All other form control elements do not inherit `text-transform` values.
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
+ * Correct `select` style inheritance in Firefox.
+ */
+
+button,
+select {
+ text-transform: none;
+}
+
+/**
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
+ * and `video` controls.
+ * 2. Correct inability to style clickable `input` types in iOS.
+ * 3. Improve usability and consistency of cursor style between image-type
+ * `input` and others.
+ */
+
+button,
+html input[type="button"], /* 1 */
+input[type="reset"],
+input[type="submit"] {
+ cursor: pointer; /* 3 */
+}
+
+/**
+ * Re-set default cursor for disabled elements.
+ */
+
+button[disabled],
+html input[disabled] {
+ cursor: default;
+}
+
+/**
+ * Remove inner padding and border in Firefox 4+.
+ */
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+ border: 0;
+ padding: 0;
+}
+
+/**
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
+ * the UA stylesheet.
+ */
+
+input {
+ line-height: normal;
+}
+
+/**
+ * It's recommended that you don't attempt to style these elements.
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
+ *
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
+ * 2. Remove excess padding in IE 8/9/10.
+ */
+
+input[type="checkbox"],
+input[type="radio"] {
+ box-sizing: border-box; /* 1 */
+ padding: 0; /* 2 */
+}
+
+/**
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
+ * (include `-moz` to future-proof).
+ */
+
+input[type="search"] {
+ box-sizing: content-box;
+}
+
+/**
+ * Define consistent border, margin, and padding.
+ */
+
+fieldset {
+ border: 1px solid #c0c0c0;
+ margin: 0 2px;
+ padding: 0.35em 0.625em 0.75em;
+}
+
+/**
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
+ */
+
+legend {
+ border: 0; /* 1 */
+ padding: 0; /* 2 */
+}
+
+/**
+ * Remove default vertical scrollbar in IE 8/9/10/11.
+ */
+
+textarea {
+ overflow: auto;
+}
+
+/**
+ * Don't inherit the `font-weight` (applied by a rule above).
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
+ */
+
+optgroup {
+ font-weight: bold;
+}
+
+/* Tables
+ ========================================================================== */
+
+/**
+ * Remove most spacing between table cells.
+ */
+
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+
+td,
+th {
+ padding: 0;
+}
+
+/* Normalization for FF panel defauts
+ ========================================================================== */
+html {
+ outline: none;
+ padding: 0;
+}
+
+a {
+ color: #0095dd;
+ margin: 0;
+ outline: none;
+ padding: 0;
+ text-decoration: none;
+}
+
+a:hover,
+a:active,
+a:focus {
+ color: #008acb;
+ text-decoration: underline;
+}
+
+a:active {
+ color: #006b9d;
+}
diff --git a/browser/components/pocket/content/panels/css/saved.css b/browser/components/pocket/content/panels/css/saved.css
new file mode 100644
index 0000000000..866d9e3634
--- /dev/null
+++ b/browser/components/pocket/content/panels/css/saved.css
@@ -0,0 +1,1032 @@
+/* saved.css
+ *
+ * Description:
+ * With base elements out of the way, this sets all custom styling for the page saved dialog.
+ *
+ * Contents:
+ * Global
+ * Loading spinner
+ * Core detail
+ * Tag entry
+ * Recent/suggested tags
+ * Premium upsell
+ * Token input/autocomplete
+ * Overflow mode
+ * Language overrides
+ */
+
+/*=Global
+--------------------------------------------------------------------------------------- */
+.pkt_ext_containersaved {
+ background-color: #fbfbfb;
+ border-radius: 4px;
+ display: block;
+ font-size: 16px;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ padding: 0;
+ position: relative;
+ text-align: center;
+}
+.pkt_ext_cf:after {
+ content: " ";
+ display:table;
+ clear:both;
+}
+.pkt_ext_containersaved .pkt_ext_tag_detail,
+.pkt_ext_containersaved .pkt_ext_recenttag_detail,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail {
+ margin: 0 auto;
+ padding: 0.25em 1em;
+ position: relative;
+ width: auto;
+}
+
+/*=Loading spinner
+--------------------------------------------------------------------------------------- */
+@keyframes pkt_ext_spin {
+ to {
+ transform: rotate(1turn);
+ }
+}
+.pkt_ext_containersaved {
+ font-size: 16px;
+}
+.pkt_ext_containersaved .pkt_ext_loadingspinner {
+ position: relative;
+ display: inline-block;
+ height: 2.5em;
+ inset-inline-start: 50%;
+ margin-block: 2em 0;
+ margin-inline: -1.25em 0;
+ font-size: 10px;
+ text-indent: 999em;
+ position: absolute;
+ top: 4em;
+ overflow: hidden;
+ width: 2.5em;
+ animation: pkt_ext_spin 0.7s infinite steps(8);
+}
+.pkt_ext_containersaved .pkt_ext_loadingspinner:before,
+.pkt_ext_containersaved .pkt_ext_loadingspinner:after,
+.pkt_ext_containersaved .pkt_ext_loadingspinner > div:before,
+.pkt_ext_containersaved .pkt_ext_loadingspinner > div:after {
+ content: '';
+ position: absolute;
+ top: 0;
+ inset-inline-start: 1.125em;
+ width: 0.25em;
+ height: 0.75em;
+ border-radius: .2em;
+ background: #eee;
+ box-shadow: 0 1.75em #eee;
+ transform-origin: 50% 1.25em;
+}
+.pkt_ext_containersaved .pkt_ext_loadingspinner:before {
+ background: #555;
+}
+.pkt_ext_containersaved .pkt_ext_loadingspinner:after {
+ transform: rotate(-45deg);
+ background: #777;
+}
+.pkt_ext_containersaved .pkt_ext_loadingspinner > div:before {
+ transform: rotate(-90deg);
+ background: #999;
+}
+.pkt_ext_containersaved .pkt_ext_loadingspinner > div:after {
+ transform: rotate(-135deg);
+ background: #bbb;
+}
+
+/*=Core detail
+--------------------------------------------------------------------------------------- */
+.pkt_ext_containersaved .pkt_ext_initload {
+ inset-inline-start: 0;
+ position: absolute;
+ top: 0;
+ width: 100%;
+}
+.pkt_ext_containersaved .pkt_ext_detail {
+ max-height: 0;
+ opacity: 0;
+ position: relative;
+}
+.pkt_ext_container_detailactive .pkt_ext_initload {
+ opacity: 0;
+}
+.pkt_ext_container_detailactive .pkt_ext_initload .pkt_ext_loadingspinner,
+.pkt_ext_container_finalstate .pkt_ext_initload .pkt_ext_loadingspinner {
+ animation: none;
+}
+.pkt_ext_container_detailactive .pkt_ext_detail {
+ max-height: 20em;
+ opacity: 1;
+}
+.pkt_ext_container_finalstate .pkt_ext_edit_msg,
+.pkt_ext_container_finalstate .pkt_ext_tag_detail,
+.pkt_ext_container_finalstate .pkt_ext_suggestedtag_detail,
+.pkt_ext_container_finalstate .pkt_ext_item_actions {
+ opacity: 0;
+ transition: opacity 0.2s ease-out;
+}
+.pkt_ext_container_finalerrorstate .pkt_ext_edit_msg,
+.pkt_ext_container_finalerrorstate .pkt_ext_tag_detail,
+.pkt_ext_container_finalerrorstate .pkt_ext_suggestedtag_detail,
+.pkt_ext_container_finalerrorstate .pkt_ext_item_actions {
+ display: none;
+ transition: none;
+}
+.pkt_ext_containersaved h2 {
+ background: transparent;
+ border: none;
+ color: #333;
+ display: block;
+ float: none;
+ font-size: 18px;
+ font-weight: normal;
+ letter-spacing: normal;
+ line-height: 1;
+ margin: 19px 0 4px;
+ padding: 0;
+ position: relative;
+ text-align: start;
+ text-transform: none;
+}
+@keyframes fade_in_out {
+ 0% {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+.pkt_ext_container_finalstate h2 {
+ animation: fade_in_out 0.4s ease-out;
+}
+.pkt_ext_container_finalerrorstate h2 {
+ animation: none;
+ color: #d74345;
+}
+.pkt_ext_containersaved .pkt_ext_errordetail {
+ display: none;
+ font-size: 12px;
+ font-weight: normal;
+ inset-inline-start: 6.4em;
+ max-width: 21em;
+ opacity: 0;
+ position: absolute;
+ top: 2.7em;
+ text-align: start;
+ visibility: hidden;
+}
+.pkt_ext_container_finalerrorstate .pkt_ext_errordetail {
+ display: block;
+ opacity: 1;
+ visibility: visible;
+}
+.pkt_ext_containersaved .pkt_ext_logo {
+ background: url(../img/pocketlogosolo@1x.png) center center no-repeat;
+ display: block;
+ float: inline-start;
+ height: 40px;
+ padding: 1.25em 1em;
+ position: relative;
+ width: 44px;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_containersaved .pkt_ext_logo {
+ background-image: url(../img/pocketlogosolo@2x.png);
+ background-size: 44px 40px;
+ }
+}
+.pkt_ext_container_finalerrorstate .pkt_ext_logo {
+ background-image: url(../img/pocketerror@1x.png);
+ height: 44px;
+ width: 44px;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_container_finalerrorstate .pkt_ext_logo {
+ background-image: url(../img/pocketerror@2x.png);
+ background-size: 44px 44px;
+ }
+}
+.pkt_ext_containersaved .pkt_ext_topdetail {
+ float: inline-start;
+}
+.pkt_ext_containersaved .pkt_ext_edit_msg {
+ box-sizing: border-box;
+ display: none;
+ font-size: 0.75em;
+ inset-inline-start: auto;
+ padding: 0 1.4em;
+ position: absolute;
+ text-align: start;
+ top: 8.7em;
+ width: 100%;
+}
+.pkt_ext_containersaved .pkt_ext_edit_msg_error {
+ color: #d74345;
+}
+.pkt_ext_containersaved .pkt_ext_edit_msg_active {
+ display: block;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions {
+ background: transparent;
+ float: none;
+ height: auto;
+ margin-bottom: 1em;
+ margin-top: 0;
+ width: auto;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions_disabled {
+ opacity: 0.5;
+}
+.pkt_ext_container_finalstate .pkt_ext_item_actions_disabled {
+ opacity: 0;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions ul {
+ background: none;
+ display: block;
+ float: none;
+ font-size: 16px;
+ height: auto;
+ margin: 0;
+ padding: 0;
+ width: 100%;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions li {
+ box-sizing: border-box;
+ background: none;
+ border: 0;
+ float: inline-start;
+ list-style: none;
+ line-height: 0.8;
+ height: auto;
+ padding-inline-end: 0.4em;
+ width: auto;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions li:before {
+ content: none;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions .pkt_ext_actions_separator {
+ border-inline-start: 2px solid #777;
+ height: 0.75em;
+ margin-top: 0.3em;
+ padding: 0;
+ width: 10px;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions a {
+ background: transparent;
+ color: #0095dd;
+ display: block;
+ font-feature-settings: normal;
+ font-size: 12px;
+ font-weight: normal;
+ letter-spacing: normal;
+ line-height: inherit;
+ height: auto;
+ margin: 0;
+ padding: 0.5em;
+ float: inline-start;
+ text-align: start;
+ text-decoration: none;
+ text-transform: none;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions a:hover,
+.pkt_ext_containersaved .pkt_ext_item_actions a:focus {
+ color: #008acb;
+ text-decoration: underline;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions a:before,
+.pkt_ext_containersaved .pkt_ext_item_actions a:after {
+ background: transparent;
+ display: none;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions_disabled a {
+ cursor: default;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions .pkt_ext_openpocket {
+ float: inline-end;
+ padding-inline-end: 0.7em;
+ text-align: end;
+}
+.pkt_ext_containersaved .pkt_ext_item_actions .pkt_ext_removeitem {
+ padding-inline-start: 0;
+}
+.pkt_ext_containersaved .pkt_ext_close {
+ background: url(../img/tag_close@1x.png) center center no-repeat;
+ color: #333;
+ display: block;
+ font-size: 0.8em;
+ height: 10px;
+ inset-inline-end: 0.5em;
+ overflow: hidden;
+ position: absolute;
+ text-align: center;
+ text-indent: -9999px;
+ top: -1em;
+ width: 10px;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_containersaved .pkt_ext_close {
+ background-image: url(../img/tag_close@2x.png);
+ background-size: 8px 8px;
+ }
+}
+.pkt_ext_containersaved .pkt_ext_close:hover {
+ color: #000;
+ text-decoration: none;
+}
+
+/*=Tag entry
+--------------------------------------------------------------------------------------- */
+.pkt_ext_containersaved .pkt_ext_tag_detail {
+ border: 1px solid #c1c1c1;
+ border-radius: 2px;
+ font-size: 16px;
+ clear: both;
+ margin: 1.25em 1em;
+ padding: 0;
+ display: flex;
+}
+.pkt_ext_containersaved .pkt_ext_tag_error {
+ border: none;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper {
+ box-sizing: border-box;
+ flex: 1;
+ background-color: #fff;
+ border-inline-end: 1px solid #c3c3c3;
+ color: #333;
+ display: block;
+ float: none;
+ font-size: 0.875em;
+ list-style: none;
+ margin: 0;
+ overflow: hidden;
+ padding: 0.25em 0.5em;
+ width: 14em;
+ padding-inline: 0.5em;
+}
+.pkt_ext_containersaved .pkt_ext_tag_error .pkt_ext_tag_input_wrapper {
+ border: 1px solid #d74345;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper .token-input-list {
+ display: block;
+ height: 1.7em;
+ overflow: hidden;
+ position: relative;
+ width: 60em;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper .token-input-list,
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper li {
+ font-size: 14px;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper li {
+ height: auto;
+ width: auto;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper li:before {
+ content: none;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper input {
+ border: 0;
+ box-shadow: none;
+ background-color: #fff;
+ color: #333;
+ font-size: 14px;
+ float: inline-start;
+ line-height: normal;
+ height: auto;
+ min-height: 0;
+ min-width: 5em;
+ padding: 3px 2px 1px;
+ text-transform: none;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper input::placeholder {
+ color: #a9a9a9;
+ letter-spacing: normal;
+ text-transform: none;
+}
+.pkt_ext_containersaved .input_disabled {
+ cursor: default;
+ opacity: 0.5;
+}
+.pkt_ext_containersaved .pkt_ext_btn {
+ box-sizing: border-box;
+ color: #333;
+ float: none;
+ font-size: 0.875em;
+ font-size: 14px;
+ letter-spacing: normal;
+ height: 2.2em;
+ min-width: 4em;
+ padding: 0.5em 0;
+ text-decoration: none;
+ text-transform: none;
+ width: auto;
+}
+.pkt_ext_containersaved .pkt_ext_btn:hover {
+ background-color: #ebebeb;
+}
+.pkt_ext_containersaved .pkt_ext_btn:active {
+ background-color: #dadada;
+}
+.pkt_ext_containersaved .pkt_ext_btn_disabled,
+.pkt_ext_containersaved .pkt_ext_btn_disabled:hover,
+.pkt_ext_containersaved .pkt_ext_btn_disabled:active {
+ background-color: transparent;
+ cursor: default;
+ opacity: 0.4;
+}
+.pkt_ext_containersaved .pkt_ext_tag_error .pkt_ext_btn {
+ border: 1px solid #c3c3c3;
+ border-block-width: 1px;
+ border-inline-width: 0 1px;
+ height: 2.35em;
+}
+.pkt_ext_containersaved .autocomplete-suggestions {
+ margin-top: 2.2em;
+}
+
+/*=Recent/suggested tags
+--------------------------------------------------------------------------------------- */
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detailshown {
+ box-sizing: border-box;
+ clear: both;
+ inset-inline-start: 0;
+ opacity: 0;
+ min-height: 110px;
+ visibility: hidden;
+ width: 100%;
+}
+.pkt_ext_container_detailactive .pkt_ext_suggestedtag_detail,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detailshown {
+ opacity: 1;
+ visibility: visible;
+}
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detailshown {
+ padding: 4px 0;
+}
+.pkt_ext_container_finalstate .pkt_ext_suggestedtag_detail {
+ opacity: 0;
+ visibility: hidden;
+}
+
+.pkt_ext_containersaved .pkt_ext_recenttag_detail h4,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail h4 {
+ color: #333;
+ font-size: 13px;
+ font-weight: normal;
+ font-style: normal;
+ letter-spacing: normal;
+ margin: 0.5em 0;
+ text-align: start;
+ text-transform: none;
+}
+.pkt_ext_containersaved .pkt_ext_recenttag_detail .pkt_ext_loadingspinner,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail .pkt_ext_loadingspinner {
+ display: none;
+ position: absolute;
+}
+.pkt_ext_containersaved .pkt_ext_recenttag_detail_loading .pkt_ext_loadingspinner,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail_loading .pkt_ext_loadingspinner {
+ display: block;
+ font-size: 6px;
+ inset-inline-start: 48%;
+}
+.pkt_ext_containersaved .pkt_ext_recenttag_detail ul,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail ul {
+ display: block;
+ margin: 0;
+ height: 2em;
+ overflow: hidden;
+ padding: 2px 0 0;
+}
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail ul {
+ height: auto;
+ margin: 0;
+ max-height: 4em;
+ padding-top: 6px;
+}
+.pkt_ext_containersaved .pkt_ext_recenttag_detail li,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail li {
+ background: none;
+ float: inline-start;
+ height: inherit;
+ line-height: 1.5;
+ list-style: none;
+ margin-bottom: 0.5em;
+ width: inherit;
+}
+.pkt_ext_containersaved .pkt_ext_recenttag_detail li:before,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail li:before {
+ content: none;
+}
+.pkt_ext_containersaved .pkt_ext_recenttag_detail .recenttag_msg,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail .suggestedtag_msg {
+ color: #333;
+ font-size: 0.8125em;
+ line-height: 1.2;
+ inset-inline-start: auto;
+ position: absolute;
+ text-align: start;
+ top: 2em;
+}
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail .suggestedtag_msg {
+ margin-inline-end: 1.3em;
+}
+.pkt_ext_containersaved .token_tag {
+ border-radius: 4px;
+ background: #f7f7f7;
+ border: 1px solid #c3c3c3;
+ color: #333;
+ font-size: 0.875em;
+ font-size: 14px;
+ font-weight: normal;
+ letter-spacing: normal;
+ margin-inline-end: 0.5em;
+ padding: 0.125em 0.625em;
+ text-decoration: none;
+ text-transform: none;
+}
+.pkt_ext_containersaved .token_tag:hover {
+ background-color: #008acb;
+ border-color: #008acb;
+ color: #fff;
+ text-decoration: none;
+}
+.pkt_ext_containersaved .token_tag:before,
+.pkt_ext_containersaved .token_tag:after {
+ content: none;
+}
+.pkt_ext_containersaved .token_tag:hover span {
+ background-image: url(../img/tag_closeactive@1x.png);
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_containersaved .token_tag:hover span {
+ background-image: url(../img/tag_closeactive@2x.png);
+ background-size: 8px 8px;
+ }
+}
+.pkt_ext_containersaved .pkt_ext_recenttag_detail_disabled .token_tag,
+.pkt_ext_containersaved .pkt_ext_recenttag_detail_disabled .token_tag:hover,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail_disabled .token_tag,
+.pkt_ext_containersaved .pkt_ext_suggestedtag_detail_disabled .token_tag:hover {
+ background-color: #f7f7f7;
+ cursor: default;
+ opacity: 0.5;
+}
+.pkt_ext_containersaved .token_tag_inactive {
+ display: none;
+}
+
+/*=Premium upsell
+--------------------------------------------------------------------------------------- */
+.pkt_ext_detail .pkt_ext_premupsell {
+ background-color: #50bbb6;
+ display: block;
+ padding: 1.5em 0;
+ text-align: center;
+}
+.pkt_ext_premupsell h4 {
+ color: #fff;
+ font-size: 1em;
+ margin-bottom: 1em;
+}
+.pkt_ext_premupsell a {
+ color: #28605d;
+ border-bottom: 1px solid #47a7a3;
+ font-weight: normal;
+}
+.pkt_ext_premupsell a:hover {
+ color: #14302f;
+}
+
+/*=Token input/autocomplete
+--------------------------------------------------------------------------------------- */
+.token-input-dropdown-tag {
+ border-radius: 4px;
+ box-sizing: border-box;
+ background: #fff;
+ border: 1px solid #cdcdcd;
+ margin-top: 0.5em;
+ inset-inline-start: 0 !important;
+ overflow-y: auto;
+ top: 1.9em !important;
+ z-index: 9000;
+}
+.token-input-dropdown-tag ul {
+ height: inherit;
+ max-height: 115px;
+ margin: 0;
+ overflow: auto;
+ padding: 0.5em 0;
+}
+.token-input-dropdown-tag ul li {
+ background: none;
+ color: #333;
+ font-weight: normal;
+ font-size: 1em;
+ float: none;
+ height: inherit;
+ letter-spacing: normal;
+ list-style: none;
+ padding: 0.75em;
+ text-align: start;
+ text-transform: none;
+ width: inherit;
+}
+.token-input-dropdown-tag ul li:before {
+ content: none;
+}
+.token-input-dropdown ul li.token-input-selected-dropdown-item {
+ background-color: #008acb;
+ color: #fff;
+}
+.token-input-list {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+.token-input-list li {
+ text-align: start;
+ list-style: none;
+}
+.token-input-list li input {
+ border: 0;
+ background-color: white;
+}
+.pkt_ext_containersaved .token-input-token {
+ background: none;
+ border-radius: 4px;
+ border: 1px solid #c3c3c3;
+ overflow: hidden;
+ margin: 0;
+ padding: 0 8px;
+ background-color: #f7f7f7;
+ color: #000;
+ font-weight: normal;
+ cursor: default;
+ line-height: 1.5;
+ display: block;
+ width: auto;
+ margin: 0 0.2em;
+ float: inline-start;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper_disabled {
+ position: relative;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper_disabled input {
+ opacity: 0.5;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper_disabled .token-input-list {
+ opacity: 0.5;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper_disabled .pkt_ext_tag_input_blocker {
+ height: 100%;
+ inset-inline-start: 0;
+ position: absolute;
+ top: 0;
+ width: 100%;
+ z-index: 5;
+}
+.pkt_ext_containersaved .token-input-token p {
+ display: inline-block;
+ font-size: 14px;
+ font-weight: normal;
+ line-height: inherit;
+ letter-spacing: normal;
+ padding: 0;
+ margin: 0;
+ text-transform: none;
+ vertical-align: top;
+ width: auto;
+ unicode-bidi: plaintext;
+}
+.pkt_ext_containersaved .token-input-token p:before {
+ content: none;
+ width: 0;
+}
+.pkt_ext_containersaved .token-input-token span {
+ background: url(../img/tag_close@1x.png) center center no-repeat;
+ cursor: pointer;
+ display: inline-block;
+ height: 8px;
+ margin-block: 0;
+ margin-inline: 8px 0;
+ overflow: hidden;
+ width: 8px;
+ text-indent: -99px;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_containersaved .token-input-token span {
+ background-image: url(../img/tag_close@2x.png);
+ background-size: 8px 8px;
+ }
+}
+.pkt_ext_containersaved .token-input-selected-token {
+ background-color: #008acb;
+ border-color: #008acb;
+ color: #fff;
+}
+.pkt_ext_containersaved .token-input-selected-token span {
+ background-image: url(../img/tag_closeactive@1x.png);
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_containersaved .token-input-selected-token span {
+ background-image: url(../img/tag_closeactive@2x.png);
+ background-size: 8px 8px;
+ }
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper_disabled .token-input-selected-token {
+ background-color: #f7f7f7;
+}
+.pkt_ext_containersaved .pkt_ext_tag_input_wrapper_disabled .token-input-selected-token span {
+ color: #bbb;
+}
+
+/*=Overflow mode
+--------------------------------------------------------------------------------------- */
+.pkt_ext_saved_overflow .pkt_ext_logo {
+ float: none;
+ margin: 0.5em auto 0;
+}
+.pkt_ext_saved_overflow .pkt_ext_initload {
+ top: -8px;
+}
+.pkt_ext_saved_overflow .pkt_ext_loadingspinner {
+ top: 10em;
+}
+.pkt_ext_saved_overflow .pkt_ext_topdetail {
+ float: none;
+ margin: 0 auto;
+ padding: 0 1em;
+}
+.pkt_ext_saved_overflow h2 {
+ margin-bottom: 0.5em;
+ margin-top: 0;
+ text-align: center;
+}
+.pkt_ext_saved_overflow .pkt_ext_item_actions ul {
+ display: inline-block;
+ width: auto;
+}
+.pkt_ext_saved_overflow .pkt_ext_item_actions li {
+ float: none;
+ padding-inline: 1em;
+ text-align: center;
+}
+.pkt_ext_saved_overflow .pkt_ext_item_actions .pkt_ext_removeitem,
+.pkt_ext_saved_overflow .pkt_ext_item_actions .pkt_ext_openpocket {
+ float: none;
+ text-align: center;
+ padding-inline: 0;
+}
+.pkt_ext_saved_overflow .pkt_ext_item_actions .pkt_ext_actions_separator {
+ display: none;
+}
+.pkt_ext_saved_overflow .pkt_ext_tag_detail {
+ margin-top: 0;
+}
+.pkt_ext_saved_overflow .pkt_ext_suggestedtag_detail,
+.pkt_ext_saved_overflow .pkt_ext_suggestedtag_detailshown {
+ top: 14.75em;
+}
+.pkt_ext_saved_overflow .pkt_ext_edit_msg {
+ top: 16em;
+}
+.pkt_ext_container_finalerrorstate.pkt_ext_saved_overflow .pkt_ext_errordetail {
+ box-sizing: border-box;
+ inset-inline-start: 0;
+ padding-inline: 1em;
+ text-align: center;
+ top: 8.3em;
+ width: 100%;
+}
+
+/*=Language overrides
+--------------------------------------------------------------------------------------- */
+.pkt_ext_saved_es .pkt_ext_btn {
+ min-width: 5em;
+}
+.pkt_ext_saved_de .pkt_ext_btn,
+.pkt_ext_saved_ru .pkt_ext_btn {
+ min-width: 6em;
+}
+
+/*=Coral Button
+--------------------------------------------------------------------------------------- */
+button {
+ padding: 0;
+ margin: 0;
+ background: none;
+ border: 0;
+ outline: none;
+ color: inherit;
+ font: inherit;
+ overflow: visible;
+}
+
+.pkt_ext_button {
+ padding: 3px;
+ background-color: #EF4056;
+ color: #FFF;
+ text-align: center;
+ cursor: pointer;
+ height: 32px;
+ box-sizing: border-box;
+ width: 320px;
+ margin: 0 auto;
+ border-radius: 2px;
+ font-size: 14px;
+}
+
+.pkt_ext_button:hover,
+.pkt_ext_button:active {
+ background-color: #d5374b;
+}
+
+/* alt button */
+.pkt_ext_blue_button {
+ background-color: #0060df;
+ color: #FFF;
+}
+
+.pkt_ext_blue_button:hover {
+ background-color: #003eaa;
+}
+
+.pkt_ext_blue_button:active {
+ background-color: #002275;
+}
+
+.pkt_ext_ffx_icon:after {
+ position: absolute;
+ height: 22px;
+ width: 22px;
+ top: -3px;
+ inset-inline-start: -28px;
+ content: "";
+ background-image: url(../img/signup_firefoxlogo@2x.png);
+ background-size: 22px 22px;
+ background-repeat: no-repeat;
+}
+
+
+/*=Tmp Account Login
+--------------------------------------------------------------------------------------- */
+.pkt_shaded_background {
+ background-color: #EBEBEB;
+ border-top: 1px solid #C3C3C3;
+ padding: 0 15px;
+}
+
+.pkt_ext_saved_tmplogin {
+ height: 146px;
+}
+
+.pkt_ext_indent_bordered {
+ margin: 15px 0;
+ padding: 0 7px;
+ border-inline-start: 4px solid rgba(68, 68, 68, .15);
+ text-align: start;
+ font-size: 13px;
+ color: #313131;
+}
+
+.pkt_ext_indent_bordered > p {
+ margin-bottom: 3px;
+}
+
+.pkt_ext_subshell {
+ display: none;
+ border-top: 1px solid #c1c1c1;
+ position: fixed;
+ background: #ebebeb;
+ bottom: 0;
+ width: 100%;
+}
+
+.pkt_ext_subshell hr {
+ display: none;
+}
+
+.recs_enabled .pkt_ext_subshell hr {
+ display: block;
+ border: 0;
+ border-top: 1px solid #D7D7DB;
+ margin: 0 -16px 0;
+}
+
+.pkt_ext_item_recs {
+ text-align: start;
+ margin: 0 auto;
+ padding: 0.25em 1em;
+}
+
+.pkt_ext_item_recs header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-top: 12px;
+}
+
+.pkt_ext_item_recs header h4 {
+ color: #333;
+ font-size: 13px;
+ font-weight: normal;
+ font-style: normal;
+ letter-spacing: normal;
+ margin: 0.5em 0;
+ text-align: start;
+ text-transform: none;
+}
+
+.pkt_ext_item_recs header a {
+ font-style: normal;
+ font-weight: 500;
+ font-size: 12px;
+ line-height: 20px;
+ color: #0095DD;
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs ol {
+ padding: 0;
+ margin: 0 0 10px;
+ list-style: none;
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs li {
+ float: none;
+ display: flex;
+ font-style: normal;
+ font-weight: normal;
+ font-size: 15px;
+ line-height: 18px;
+ margin: 0 -1em;
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs li a {
+ padding-block: 8px;
+ padding-inline: 1em 40px;
+ background: url(../img/open.svg) 318px 8px no-repeat;
+ flex-grow: 1;
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs li a:dir(rtl) {
+ background-position-x: right 318px;
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs li:hover,
+.pkt_ext_containersaved .pkt_ext_item_recs li a:focus {
+ background-color: rgba(12, 12, 13, 0.1);
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs li:active {
+ background-color: rgba(12, 12, 13, 0.2);
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs .pkt_ext_item_recs_link:hover {
+ text-decoration: none;
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs .rec-thumb {
+ width: 40px;
+ height: 40px;
+ float: inline-start;
+ margin: 0;
+ margin-inline-end: 12px;
+ border-radius: 2px;
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs .rec-thumb:-moz-broken {
+ display: none;
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs p {
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ overflow: hidden;
+ word-break: break-word;
+ font-style: normal;
+ font-weight: normal;
+ margin: 0;
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs .rec-title {
+ -webkit-line-clamp: 2;
+ font-size: 15px;
+ line-height: 18px;
+ color: #0C0C0D;
+}
+
+.pkt_ext_containersaved .pkt_ext_item_recs .rec-source {
+ -webkit-line-clamp: 1;
+ font-size: 13px;
+ line-height: 16px;
+ color: #737373;
+}
diff --git a/browser/components/pocket/content/panels/css/sendtomobile.css b/browser/components/pocket/content/panels/css/sendtomobile.css
new file mode 100644
index 0000000000..9550f0c3b0
--- /dev/null
+++ b/browser/components/pocket/content/panels/css/sendtomobile.css
@@ -0,0 +1,199 @@
+.pkt_ext_saved_sendtomobile .pkt_ext_loadingspinner {
+ top: -5px;
+}
+
+.pkt_ext_save_title_wrapper {
+ position: relative;
+ display: inline-flex;
+}
+
+.pkt_ext_save_title_wrapper.pkt_ext_mobile_icon:after {
+ position: absolute;
+ height: 15px;
+ width: 10px;
+ top: 0;
+ inset-inline-start: -16px;
+ content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 10 15" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="white" fill-rule="evenodd"><path d="M0.81,0.407552083 L9.19,0.407552083 C9.63735065,0.407552083 10,0.770201436 10,1.21755208 L10,14.0233333 C10,14.470684 9.63735065,14.8333333 9.19,14.8333333 L0.81,14.8333333 C0.362649353,14.8333333 6.09896166e-16,14.470684 5.55111512e-16,14.0233333 L2.22044605e-16,1.21755208 C1.67259951e-16,0.770201436 0.362649353,0.407552083 0.81,0.407552083 Z M1,1.31865406 L1,12.074719 L9,12.074719 L9,1.31865406 L1,1.31865406 Z M3.68055556,13.1666667 C3.48879002,13.1666667 3.33333333,13.3221234 3.33333333,13.5138889 C3.33333333,13.7056544 3.48879002,13.8611111 3.68055556,13.8611111 L6.31944444,13.8611111 C6.51120998,13.8611111 6.66666667,13.7056544 6.66666667,13.5138889 C6.66666667,13.3221234 6.51120998,13.1666667 6.31944444,13.1666667 L3.68055556,13.1666667 Z"></path></g></svg>');
+}
+
+.pkt_ext_logo_action_copy {
+ display: inline-block;
+ font-size: 13px;
+}
+
+.pkt_ext_checkbox_label {
+ font-size: 11px;
+ color: #999;
+ cursor: pointer;
+}
+
+#pkt_ext_signup_button {
+ width: 70px;
+}
+
+.pkt_ext_heading {
+ font-size: 17px;
+ font-weight: 400;
+ color: #222;
+ width: 250px;
+ margin: 35px auto 10px;
+}
+
+.pkt_ext_saved_sendcollectemail .pkt_ext_tag_detail {
+ margin: 0 auto;
+}
+
+.pkt_ext_saved_sendcollectemail .pkt_ext_tag_detail,
+.pkt_ext_saved_sendcollectemail .pkt_ext_tag_input_wrapper {
+ width: 255px;
+}
+
+.pkt_ext_checkbox_wrapper {
+ text-align: start;
+ margin: 0 auto 15px;
+ width: 255px;
+}
+
+.pkt_ext_description {
+ font-size: 14px;
+ color: #666;
+ font-weight: 400;
+ width: 280px;
+ margin: 0 auto;
+ line-height: 20px;
+}
+
+.pkt_ext_bold {
+ font-weight: bold;
+}
+
+.pkt_ext_download_section {
+ margin-top: 28px;
+}
+
+.pkt_ext_download_button_wrapper {
+ margin-top: 5px;
+}
+
+.pkt_ext_apple_download {
+ display: inline-block;
+ cursor: pointer;
+ height: 40px;
+ margin: 10px;
+ width: 120px;
+ background: url(../img/app_store_dowload_apple.svg) bottom right no-repeat;
+}
+
+.pkt_ext_apple_download:dir(rtl) {
+ background-position-x: left;
+}
+
+.pkt_ext_google_download {
+ display: inline-block;
+ height: 60px;
+ width: 155px;
+ cursor: pointer;
+}
+
+.pkt_ext_experiment_saved_tile {
+ position: relative;
+ margin: 0 auto 17px;
+ height: 95px;
+ background-color: #FFF;
+ box-shadow: 0 1px 1px rgba(147,147,147,0.5);
+}
+
+.pkt_ext_experiment_saved_tile .pkt_ext_save_title {
+ width: 295px;
+}
+
+.pkt_ext_experiment_saved_tile .pkt_ext_save_open {
+ max-height: 50px;
+ overflow: hidden;
+}
+
+.pkt_ext_experiment_saved_tile.pkt_ext_has_image .pkt_ext_save_title {
+ margin-inline-start: 78px;
+ width: 210px;
+}
+
+.pkt_ext_experiment_saved_tile .pkt_ext_save_image {
+ inset-inline-start: 0;
+}
+
+.pkt_ext_experiment_saved_tile {
+ transform-style: preserve-3d;
+}
+
+.pkt_ext_save_image {
+ position: absolute;
+ top: 0;
+ inset-inline-end: 0;
+ box-sizing: border-box;
+ height: 100%;
+ width: 78px;
+ background-color: #979797;
+ border: none;
+}
+
+.pkt_ext_save_title {
+ position: relative;
+ top: 50%;
+ padding: 10px 15px;
+ transform: perspective(1px) translateY(-50%);
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 16px;
+ text-align: start;
+ overflow: hidden;
+ color: #222;
+}
+
+.pkt_ext_save_title a {
+ display: block;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+
+.pkt_ext_save_title a:link ,
+.pkt_ext_save_title a:visited ,
+.pkt_ext_save_title a:active,
+.pkt_ext_save_title a:hover {
+ color: #222 !important;
+}
+
+a.pkt_ext_save_open,
+a.pkt_ext_save_open:hover {
+ color: #000;
+}
+
+.pkt_ext_save_source {
+ margin-top: 7px;
+ padding-inline-start: 0;
+ color: #999;
+ font-size: 12px;
+ font-weight: 400;
+ line-height: 1.1em;
+ letter-spacing: 0.03em;
+}
+
+.pkt_ext_ho2_experiment .pkt_ext_suggestedtag_detail,
+.pkt_ext_ho2_experiment .pkt_ext_suggestedtag_detailshown {
+ position: relative;
+ background-color: #fbfbfb;
+ border-top: none;
+}
+
+/* Placeholder */
+.pkt_ext_experiment_saved_tile .pkt_ext_save_image.pkt_ext_save_image_placeholder,
+.pkt_ext_experiment_saved_tile.pkt_ext_has_image .pkt_ext_save_title.pkt_ext_title_image_placeholder .pkt_ext_save_open,
+.pkt_ext_experiment_saved_tile.pkt_ext_has_image .pkt_ext_save_title.pkt_ext_title_image_placeholder .pkt_ext_save_source {
+ background: linear-gradient(to right, #EEE 0%, #DDD 50%, #EEE 100%);
+ background-size: 400% 400%;
+ animation: backgroundScroll 3s linear infinite;
+}
+
+@keyframes backgroundScroll {
+ 0% { background-position: -200% 0 }
+ 100%{ background-position: 200% 0 }
+}
diff --git a/browser/components/pocket/content/panels/css/signup.css b/browser/components/pocket/content/panels/css/signup.css
new file mode 100644
index 0000000000..e4719aa909
--- /dev/null
+++ b/browser/components/pocket/content/panels/css/signup.css
@@ -0,0 +1,547 @@
+/* signup.css
+ *
+ * Description:
+ * With base elements out of the way, this sets all custom styling for the extension.
+ *
+ * Contents:
+ * Global
+ * Core detail
+ * Core detail - storyboard
+ * Buttons
+ * Overflow mode
+ * Language overrides
+ */
+
+/*=Global
+--------------------------------------------------------------------------------------- */
+.pkt_ext_containersignup {
+ background-color: #ebebeb;
+ color: #333;
+ display: block;
+ font-size: 16px;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ margin: 0;
+ padding: 0;
+ position: relative;
+ text-align: center;
+}
+.pkt_ext_containersignup_inactive {
+ animation: pkt_ext_hide 0.3s ease-out;
+ opacity: 0;
+ visibility: hidden;
+}
+.pkt_ext_cf:after {
+ content: " ";
+ display: table;
+ clear: both;
+}
+@keyframes pkt_ext_hide {
+ 0% {
+ opacity: 1;
+ visibility: visible;
+ }
+ 99% {
+ opacity: 0;
+ visibility: visible;
+ }
+ 100% {
+ opacity: 0;
+ visibility: hidden;
+ }
+}
+
+/*=Core detail
+--------------------------------------------------------------------------------------- */
+.pkt_ext_containersignup p {
+ font-size: 14px;
+ color: #333;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ line-height: 1.3;
+ margin: 0 auto 1.5em;
+ max-width: 260px;
+}
+.pkt_ext_containersignup a {
+ color: #4c8fd0;
+}
+.pkt_ext_containersignup a:hover {
+ color: #3076b9;
+}
+.pkt_ext_containersignup .pkt_ext_introdetail {
+ background-color: #fbfbfb;
+ border: 1px solid #c1c1c1;
+ border-width: 0 0 1px;
+}
+.pkt_ext_containersignup .pkt_ext_logo {
+ background: url(../img/pocketlogo@1x.png) center bottom no-repeat;
+ display: block;
+ height: 32px;
+ margin: 0 auto 15px;
+ padding-top: 25px;
+ position: relative;
+ text-indent: -9999px;
+ width: 123px;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_containersignup .pkt_ext_logo {
+ background-image: url(../img/pocketlogo@2x.png);
+ background-size: 123px 32px;
+ }
+}
+.pkt_ext_containersignup .pkt_ext_introimg {
+ background: url(../img/pocketsignup_hero@1x.png) center center no-repeat;
+ display: block;
+ height: 125px;
+ margin: 0 auto;
+ position: relative;
+ text-indent: -9999px;
+ width: 255px;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_containersignup .pkt_ext_introimg {
+ background-image: url(../img/pocketsignup_hero@2x.png);
+ background-size: 255px 125px;
+ }
+}
+.pkt_ext_containersignup .pkt_ext_tagline {
+ margin-bottom: 0.5em;
+}
+.pkt_ext_containersignup .pkt_ext_learnmore {
+ font-size: 12px;
+}
+.pkt_ext_containersignup .pkt_ext_learnmoreinactive {
+ visibility: hidden;
+}
+.pkt_ext_signupdetail h4 {
+ font-size: 12px;
+ font-weight: normal;
+}
+.pkt_ext_signupdetail .btn-container {
+ position: relative;
+ margin-bottom: 0.8em;
+}
+.pkt_ext_containersignup .ff_signuphelp {
+ background: url(../img/signup_help@1x.png) center center no-repeat;
+ display: block;
+ height: 18px;
+ margin-top: -9px;
+ inset-inline-end: -15px;
+ position: absolute;
+ text-indent: -9999px;
+ width: 18px;
+ top: 50%;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_containersignup .ff_signuphelp {
+ background-image: url(../img/signup_help@2x.png);
+ background-size: 18px 18px;
+ }
+}
+.pkt_ext_containersignup .alreadyhave {
+ font-size: 12px;
+ max-width: 320px;
+ margin-top: 15px;
+}
+.pkt_ext_containersignup .tryitnowspace {
+ margin-top: 22px;
+}
+.pkt_ext_signupdetail p.pkt_ext_tos {
+ color: #777;
+ font-size: 10px;
+ line-height: 1.5;
+ margin-top: 17px;
+ padding-top: 0;
+ max-width: 190px;
+}
+
+/*=Core detail - storyboard
+--------------------------------------------------------------------------------------- */
+.pkt_ext_introstory {
+ align-items: center;
+ display: flex;
+ padding: 20px;
+}
+.pkt_ext_introstory:after {
+ clear: both;
+ content: "";
+ display: table;
+}
+.pkt_ext_introstory p {
+ margin-bottom: 0;
+ text-align: start;
+}
+.pkt_ext_introstoryone {
+ padding-block: 20px 15px;
+ padding-inline: 20px 18px;
+}
+.pkt_ext_introstorytwo {
+ padding-block: 3px 0;
+ padding-inline: 20px 0;
+}
+.pkt_ext_introstorytwo .pkt_ext_tagline {
+ margin-bottom: 1.5em;
+}
+.pkt_ext_introstory_text {
+ flex: 1;
+}
+.pkt_ext_introstoryone_img,
+.pkt_ext_introstorytwo_img {
+ display: block;
+ overflow: hidden;
+ position: relative;
+ text-indent: -999px;
+}
+.pkt_ext_introstoryone_img {
+ background: url(../img/pocketsignup_button@1x.png) center right no-repeat;
+ height: 82px;
+ padding-block: 0;
+ padding-inline: 0.7em 0;
+ width: 82px;
+}
+.pkt_ext_introstoryone_img:dir(rtl) {
+ background-position-x: left;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_introstoryone_img {
+ background-image: url(../img/pocketsignup_button@2x.png);
+ background-size: 82px 82px;
+ }
+}
+.pkt_ext_introstorytwo_img {
+ background: url(../img/pocketsignup_devices@1x.png) bottom right no-repeat;
+ height: 110px;
+ padding-block: 1em 0;
+ padding-inline: 0.7em 0;
+ width: 124px;
+}
+.pkt_ext_introstorytwo_img:dir(rtl) {
+ background-position-x: left;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_introstorytwo_img {
+ background-image: url(../img/pocketsignup_devices@2x.png);
+ background-size: 124px 110px;
+ }
+}
+.pkt_ext_introstorydivider {
+ border-top: 1px solid #c1c1c1;
+ height: 1px;
+ margin: 0 auto;
+ width: 125px;
+}
+
+/*=Buttons
+--------------------------------------------------------------------------------------- */
+.pkt_ext_containersignup .btn {
+ background-color: #0096dd;
+ border: 1px solid #0095dd;
+ border-radius: 2px;
+ color: #fff;
+ display: inline-block;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 16px;
+ font-weight: normal;
+ line-height: 1;
+ margin: 0;
+ padding: 11px 45px;
+ text-align: center;
+ text-decoration: none;
+ text-shadow: 0 -1px 0 rgba(142,4,17,0.5);
+ transition: background-color 0.1s linear;
+ width: auto;
+}
+.pkt_ext_containersignup .btn-secondary {
+ background-color: #fbfbfb;
+ border-color: #c1c1c1;
+ color: #444;
+ text-shadow: 0 1px 0 rgba(255,255,255,0.5);
+}
+.pkt_ext_containersignup .btn-small {
+ padding: 6px 20px;
+}
+.pkt_ext_containersignup .btn-mini {
+ font-size: 14px;
+ padding: 5px 15px 4px;
+}
+.pkt_ext_containersignup .btn:hover {
+ background-color: #008acb;
+ color: #fff;
+ text-decoration: none;
+}
+.pkt_ext_containersignup .btn-secondary:hover,
+.pkt_ext_containersignup .btn-important:hover {
+ background-color: #f6f6f6;
+ color: #222;
+}
+.pkt_ext_containersignup .btn-disabled {
+ background-image: none;
+ color: #ccc;
+ color: rgba(255,255,255,0.6);
+ cursor: default;
+ opacity: 0.9;
+}
+.pkt_ext_containersignup .signup-btn-firefox,
+.pkt_ext_containersignup .signup-btn-tryitnow,
+.pkt_ext_containersignup .signup-btn-email,
+.pkt_ext_containersignup .signupinterim-btn-login,
+.pkt_ext_containersignup .signupinterim-btn-signup,
+.pkt_ext_containersignup .forgot-btn-submit,
+.pkt_ext_containersignup .forgotreset-btn-change {
+ min-width: 12.125em;
+ padding: 0.8em 1.1875em;
+ box-sizing: content-box;
+}
+.pkt_ext_containersignup .signup-btn-email {
+ position: relative;
+ z-index: 10;
+}
+.pkt_ext_containersignup .signup-btn-tryitnow,
+.pkt_ext_containersignup .signup-btn-firefox {
+ min-width: 14.5em;
+ position: relative;
+ padding: 0;
+}
+.pkt_ext_containersignup .signup-btn-tryitnow{
+ margin-top: 25px;
+}
+.pkt_ext_containersignup .signup-btn-firefox .logo {
+ background: url(../img/signup_firefoxlogo@1x.png) center center no-repeat;
+ height: 2.6em;
+ inset-inline-start: 10px;
+ margin: 0;
+ padding: 0;
+ width: 22px;
+ position: absolute;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_containersignup .signup-btn-firefox .logo {
+ background-image: url(../img/signup_firefoxlogo@2x.png);
+ background-size: 22px 22px;
+ }
+}
+.pkt_ext_containersignup .forgotreset-btn-change {
+ margin-bottom: 2em;
+}
+.pkt_ext_containersignup .signup-btn-tryitnow .text,
+.pkt_ext_containersignup .signup-btn-firefox .text {
+ display: inline-block;
+ padding: 0.8em 1.625em;
+ position: relative;
+ text-shadow: none;
+ white-space: nowrap;
+}
+.pkt_ext_containersignup .signup-btn-tryitnow .text,
+.pkt_ext_containersignup .signup-btn-firefox .text {
+ color: #fff;
+}
+.pkt_ext_containersignup .btn-disabled .text {
+ color: #ccc;
+ color: rgba(255,255,255,0.6);
+}
+
+/*=Overflow mode
+--------------------------------------------------------------------------------------- */
+.pkt_ext_signup_overflow .pkt_ext_tagline {
+ margin-bottom: 1em;
+ padding: 0 1em;
+}
+.pkt_ext_signup_overflow .pkt_ext_introimg {
+ background-size: 200px 98px;
+ height: 98px;
+ width: 200px;
+}
+.pkt_ext_signup_overflow .signup-btn-firefox,
+.pkt_ext_containersignup .signup-btn-tryitnow,
+.pkt_ext_signup_overflow .signup-btn-email {
+ font-size: 14px;
+ min-width: 12.6em;
+ padding-inline: 0.75em;
+}
+.pkt_ext_signup_overflow .signup-btn-tryitnow .text,
+.pkt_ext_signup_overflow .signup-btn-firefox .text {
+ padding-inline: 0;
+}
+
+/*=Language overrides
+--------------------------------------------------------------------------------------- */
+.pkt_ext_signup_de .pkt_ext_introstoryone_img {
+ margin-inline-end: -5px;
+ padding-inline-start: 0;
+}
+.pkt_ext_signup_de .pkt_ext_introstorytwo .pkt_ext_tagline,
+.pkt_ext_signup_es .pkt_ext_introstorytwo .pkt_ext_tagline,
+.pkt_ext_signup_ja .pkt_ext_introstorytwo .pkt_ext_tagline,
+.pkt_ext_signup_ru .pkt_ext_introstorytwo .pkt_ext_tagline {
+ margin-bottom: 0.5em;
+}
+.pkt_ext_signup_de .signup-btn-firefox .text,
+.pkt_ext_signup_de .signup-btn-tryitnow .text,
+.pkt_ext_signup_de .signup-btn-email,
+.pkt_ext_signup_es .pkt_ext_signupdetail_hero .signup-btn-firefox .text,
+.pkt_ext_signup_es .pkt_ext_signupdetail_hero .signup-btn-email,
+.pkt_ext_signup_ja .signup-btn-firefox .text,
+.pkt_ext_signup_ja .signup-btn-tryitnow .text,
+.pkt_ext_signup_ja .signup-btn-email,
+.pkt_ext_signup_ru .signup-btn-firefox .text,
+.pkt_ext_signup_ru .signup-btn-tryitnow .text,
+.pkt_ext_signup_ru .signup-btn-email {
+ font-size: 15px;
+}
+.pkt_ext_signup_ja .signup-btn-firefox .text,
+.pkt_ext_signup_ja .signup-btn-tryitnow .text,
+.pkt_ext_signup_ru .signup-btn-firefox .text,
+.pkt_ext_signup_ru .signup-btn-tryitnow .text {
+ inset-inline-start: 15px;
+}
+.pkt_ext_signup_de .signup-btn-firefox .logo,
+.pkt_ext_signup_es .pkt_ext_signupdetail_hero .signup-btn-firefox .logo,
+.pkt_ext_signup_ja .signup-btn-firefox .logo,
+.pkt_ext_signup_ru .signup-btn-firefox .logo {
+ height: 2.4em;
+}
+@media (min-resolution: 1.1dppx) {
+ .pkt_ext_signup_de .signup-btn-firefox .logo,
+ .pkt_ext_signup_es .pkt_ext_signupdetail_hero .signup-btn-firefox .logo,
+ .pkt_ext_signup_ja .signup-btn-firefox .logo,
+ .pkt_ext_signup_ru .signup-btn-firefox .logo {
+ height: 2.5em;
+ }
+}
+.pkt_ext_signup_de .signup-btn-email,
+.pkt_ext_signup_es .pkt_ext_signupdetail_hero .signup-btn-email,
+.pkt_ext_signup_ja .signup-btn-email,
+.pkt_ext_signup_ru .signup-btn-email {
+ min-width: 13em;
+ padding: 0.8533em 1.2667em;
+}
+.pkt_ext_signup_de .pkt_ext_logo,
+.pkt_ext_signup_es .pkt_ext_logo,
+.pkt_ext_signup_ru .pkt_ext_logo {
+ padding-top: 15px;
+}
+.pkt_ext_signup_de .pkt_ext_introdetailhero .pkt_ext_tagline,
+.pkt_ext_signup_es .pkt_ext_introdetailhero .pkt_ext_tagline,
+.pkt_ext_signup_ja .pkt_ext_introdetailhero .pkt_ext_tagline,
+.pkt_ext_signup_ru .pkt_ext_introdetailhero .pkt_ext_tagline {
+ font-size: 13px;
+}
+.pkt_ext_signup_overflow.pkt_ext_signup_de .signup-btn-firefox .logo,
+.pkt_ext_signup_overflow.pkt_ext_signup_es .signup-btn-firefox .logo,
+.pkt_ext_signup_overflow.pkt_ext_signup_ja .signup-btn-firefox .logo,
+.pkt_ext_signup_overflow.pkt_ext_signup_ru .signup-btn-firefox .logo {
+ display: none;
+}
+
+/* Signup variants */
+/* TODO: Delete post-experiment */
+
+.los_variant {
+ background-color: #fff;
+ padding: 0;
+ text-align: start;
+}
+
+.los_variant_top {
+ padding: 24px;
+}
+
+.los_variant_bottom {
+ text-align: start;
+ padding: 26px 22px;
+}
+
+.los_variant_a .los_variant_bottom {
+ text-align: center;
+}
+
+.los_variant_bottom .los_variant_button {
+ font-style: normal;
+ font-weight: 500;
+ font-size: 16px;
+ line-height: 24px;
+ text-align: center;
+ color: #FFFFFF;
+ border-radius: 4px;
+ background: #0060DF;
+ display: inline-block;
+ padding: 8px 16px;
+ margin-bottom: 16px
+}
+
+.los_variant_a .los_variant_bottom .los_variant_button {
+ display: block;
+}
+
+.los_variant_bottom .los_variant_button:hover {
+ color: #fff;
+}
+
+.los_variant_c .los_variant_bottom {
+ border-top: 1px solid #D7D7DB;
+ margin-top: 20px;
+}
+
+.los_variant_bottom .los_variant_sub {
+ font-style: normal;
+ font-weight: normal;
+ font-size: 13px;
+ line-height: 16px;
+ color: #737373;
+}
+
+.los_variant_bottom .los_variant_sub a {
+ color: #0060DF;
+}
+
+.los_variant_top a {
+ font-size: 15px;
+}
+
+.los_variant_a .los_variant_top {
+ background: #e8f7f6 url(../img/variant_a.png) bottom right no-repeat;
+ background-size: contain;
+ padding-block: 6px 24px;
+ padding-inline: 24px 102px;
+ height: 260px;
+}
+
+.los_variant_a .los_variant_top p {
+ margin-bottom: 0;
+}
+
+.los_variant_b .los_variant_top {
+ background: #DCEAFF url(../img/variant_b.png) bottom right no-repeat;
+ background-size: 80%;
+ padding: 24px 24px 160px;
+}
+
+.los_variant_top:dir(rtl) {
+ background-position-x: left;
+}
+
+.los_variant_b .los_variant_top a {
+ font-size: 15px;
+ line-height: 18px;
+ text-decoration-line: underline;
+ color: #0C0C0D;
+}
+
+.los_variant_c .los_variant_top {
+ background: #fff url(../img/variant_c.png) bottom right no-repeat;
+ background-size: contain;
+ padding: 24px 24px 160px;
+}
+
+.los_variant h1 {
+ font-weight: 600;
+ font-size: 17px;
+ line-height: 20px;
+ color: #0C0C0D;
+}
+
+.los_variant p {
+ font-style: normal;
+ font-weight: normal;
+ font-size: 15px;
+ line-height: 18px;
+ color: #0C0C0D;
+}