summaryrefslogtreecommitdiffstats
path: root/toolkit/themes/shared/aboutReader.css
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /toolkit/themes/shared/aboutReader.css
parentInitial commit. (diff)
downloadfirefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz
firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/themes/shared/aboutReader.css')
-rw-r--r--toolkit/themes/shared/aboutReader.css810
1 files changed, 810 insertions, 0 deletions
diff --git a/toolkit/themes/shared/aboutReader.css b/toolkit/themes/shared/aboutReader.css
new file mode 100644
index 0000000000..12903a870f
--- /dev/null
+++ b/toolkit/themes/shared/aboutReader.css
@@ -0,0 +1,810 @@
+/* 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 http://mozilla.org/MPL/2.0/. */
+
+/* Avoid adding ID selector rules in this style sheet, since they could
+ * inadvertently match elements in the article content. */
+:root {
+ --body-padding: 64px;
+ --popup-border: rgba(0, 0, 0, 0.12);
+ --opaque-popup-border: #e0e0e0;
+ --popup-shadow: rgba(49, 49, 49, 0.3);
+ --grey-90-a10: rgba(12, 12, 13, 0.1);
+ --grey-90-a20: rgba(12, 12, 13, 0.2);
+ --grey-90-a30: rgba(12, 12, 13, 0.3);
+ --grey-90-a80: rgba(12, 12, 13, 0.8);
+ --grey-30: #d7d7db;
+ --blue-40: #45a1ff;
+ --blue-40-a30: rgba(69, 161, 255, 0.3);
+ --blue-60: #0060df;
+ --active-color: #0B83FF;
+ --font-size: 12;
+ --content-width: 22em;
+ --line-height: 1.6em;
+ --tooltip-background: var(--grey-90-a80);
+ --tooltip-foreground: white;
+ --toolbar-button-hover: var(--grey-90-a10);
+ --toolbar-button-active: var(--grey-90-a20);
+}
+
+body {
+ --main-background: #fff;
+ --main-foreground: #333;
+ --toolbar-border: var(--grey-90-a20);
+ --toolbar-box-shadow: var(--grey-90-a10);
+ --popup-button-hover: hsla(0,0%,70%,.4);
+ --popup-button-active: hsla(240,5%,5%,.15);
+ --popup-bgcolor: white;
+ --popup-button: #edecf0;
+ --selected-background: var(--blue-40-a30);
+ --selected-border: var(--blue-40);
+ --popup-line: var(--grey-30);
+ --font-value-border: var(--grey-30);
+ --font-color: #000000;
+ --icon-fill: #3b3b3c;
+ --icon-disabled-fill: #8080807F;
+ --link-foreground: var(--blue-60);
+ --link-selected-foreground: #333;
+ --visited-link-foreground: #b5007f;
+ /* light colours */
+}
+
+body.sepia {
+ --main-background: #f4ecd8;
+ --main-foreground: #5b4636;
+ --toolbar-border: #5b4636;
+}
+
+body.dark {
+ --main-background: #333;
+ --main-foreground: #eee;
+ --toolbar-border: #4a4a4b;
+ --toolbar-box-shadow: black;
+ --toolbar-button-hover: var(--grey-90-a30);
+ --toolbar-button-active: var(--grey-90-a80);
+ --popup-button-active: hsla(0,0%,70%,.6);
+ --popup-bgcolor: #4c4a50;
+ --popup-button: #5c5c61;
+ --popup-line: #5c5c61;
+ --selected-background: #3E6D9A;
+ --link-foreground: #45a1ff;
+ --visited-link-foreground: rgba(255, 26, 217, 0.3);
+ --link-selected-foreground: #fff;
+ --opaque-popup-border: #434146;
+ --font-value-border: #656468;
+ --font-color: #fff;
+ --icon-fill: #fff;
+ --icon-disabled-fill: #ffffff66;
+ --tooltip-background: black;
+ --tooltip-foreground: white;
+ /* dark colours */
+}
+
+body {
+ margin: 0;
+ padding: var(--body-padding);
+ background-color: var(--main-background);
+ color: var(--main-foreground);
+}
+
+body.loaded {
+ transition: color 0.4s, background-color 0.4s;
+}
+
+body.dark *::-moz-selection {
+ background-color: var(--selected-background);
+}
+
+a::-moz-selection {
+ color: var(--link-selected-foreground);
+}
+
+body.sans-serif,
+body.sans-serif .remove-button {
+ font-family: Helvetica, Arial, sans-serif;
+}
+
+body.serif,
+body.serif .remove-button {
+ font-family: Georgia, "Times New Roman", serif;
+}
+
+.container {
+ margin: 0 auto;
+ font-size: var(--font-size);
+ max-width: var(--content-width);
+ line-height: var(--line-height);
+}
+
+/* Override some controls and content styles based on color scheme */
+
+body.light > .container > .header > .domain {
+ border-bottom-color: #333333 !important;
+}
+
+body.sepia > .container > .header > .domain {
+ border-bottom-color: #5b4636 !important;
+}
+
+body.dark > .container > .header > .domain {
+ border-bottom-color: #eeeeee !important;
+}
+
+body.sepia > .container > .footer {
+ background-color: #dedad4 !important;
+}
+
+body.light blockquote {
+ border-inline-start: 2px solid #333333 !important;
+}
+
+body.sepia blockquote {
+ border-inline-start: 2px solid #5b4636 !important;
+}
+
+body.dark blockquote {
+ border-inline-start: 2px solid #eeeeee !important;
+}
+
+.light-button {
+ color: #333333;
+ background-color: #ffffff;
+}
+
+.dark-button {
+ color: #eeeeee;
+ background-color: #333333;
+}
+
+.sepia-button {
+ color: #5b4636;
+ background-color: #f4ecd8;
+}
+
+/* Loading/error message */
+
+.reader-message {
+ margin-top: 40px;
+ display: none;
+ text-align: center;
+ width: 100%;
+ font-size: 0.9em;
+}
+
+/* Detector element to see if we're at the top of the doc or not. */
+.top-anchor {
+ position: absolute;
+ top: 0;
+ width: 0;
+ height: 5px;
+ pointer-events: none;
+}
+
+/* Header */
+
+.header {
+ text-align: start;
+ display: none;
+}
+
+.domain {
+ font-size: 0.9em;
+ line-height: 1.48em;
+ padding-bottom: 4px;
+ font-family: Helvetica, Arial, sans-serif;
+ text-decoration: none;
+ border-bottom: 1px solid;
+ color: var(--link-foreground);
+}
+
+.header > h1 {
+ font-size: 1.6em;
+ line-height: 1.25em;
+ width: 100%;
+ margin: 30px 0;
+ padding: 0;
+}
+
+.header > .credits {
+ font-size: 0.9em;
+ line-height: 1.48em;
+ margin: 0 0 10px;
+ padding: 0;
+ font-style: italic;
+}
+
+.header > .meta-data {
+ font-size: 0.65em;
+ margin: 0 0 15px;
+}
+
+.reader-estimated-time {
+ text-align: match-parent;
+}
+
+/*======= Controls toolbar =======*/
+
+.toolbar-container {
+ position: sticky;
+ z-index: 2;
+ top: 32px;
+ height: 0; /* take up no space, so body is at the top. */
+
+ /* As a stick container, we're positioned relative to the body. Move us to
+ * the edge of the viewport using margins, and take the width of
+ * the body padding into account for calculating our width.
+ */
+ margin-inline-start: calc(-1 * var(--body-padding));
+ width: max(var(--body-padding), calc((100% - var(--content-width)) / 2 + var(--body-padding)));
+ font-size: var(--font-size); /* Needed to ensure `em` units match, is reset for .reader-controls */
+}
+
+.toolbar {
+ padding-block: 16px;
+ border: 1px solid var(--toolbar-border);
+ border-radius: 6px;
+ box-shadow: 0 2px 8px var(--toolbar-box-shadow);
+
+ width: 32px; /* basic width, without padding/border */
+
+ /* padding should be 16px, except if there's not enough space for that, in
+ * which case use half the available space for padding (=25% on each side).
+ * The 34px here is the width + borders. We use a variable because we need
+ * to know this size for the margin calculation.
+ */
+ --inline-padding: min(16px, calc(25% - 0.25 * 34px));
+ padding-inline: var(--inline-padding);
+
+ /* Keep a maximum of 96px distance to the body, but center once the margin
+ * gets too small. We need to set the start margin, however...
+ * To center, we'd want 50% of the container, but we'd subtract half our
+ * own width (16px) and half the border (1px) and the inline padding.
+ * When the other margin would be 96px, we want 100% - 96px - the complete
+ * width of the actual toolbar (34px + 2 * padding)
+ */
+ margin-inline-start: max(calc(50% - 17px - var(--inline-padding)), calc(100% - 96px - 34px - 2 * var(--inline-padding)));
+
+ font-family: Helvetica, Arial, sans-serif;
+ list-style: none;
+ user-select: none;
+}
+
+@media (prefers-reduced-motion: no-preference) {
+ .toolbar {
+ transition-property: border-color, box-shadow;
+ transition-duration: 250ms;
+ }
+
+ .toolbar .button {
+ transition-property: opacity;
+ transition-duration: 250ms;
+ }
+
+ .toolbar-container.scrolled .toolbar:not(:hover, :focus-within) {
+ border-color: transparent;
+ box-shadow: 0 2px 8px transparent;
+ }
+
+ .toolbar-container.scrolled .toolbar:not(:hover, :focus-within) .button {
+ opacity: 0.6;
+ }
+
+ .toolbar-container.transition-location {
+ transition-duration: 250ms;
+ transition-property: width;
+ }
+}
+
+.toolbar-container.overlaps .button {
+ opacity: 0.1;
+}
+
+.dropdown-open .toolbar {
+ border-color: transparent;
+ box-shadow: 0 2px 8px transparent;
+}
+
+.reader-controls {
+ /* We use `em`s above this node to get it to the right size. However,
+ * the UI inside the toolbar should use a fixed, smaller size. */
+ font-size: 11px;
+}
+
+.button {
+ position: relative;
+ width: 32px;
+ height: 32px;
+ padding: 0;
+ border: none;
+ border-radius: 4px;
+ margin: 4px 0;
+ background-color: transparent;
+ background-size: 16px 16px;
+ background-position: center;
+ background-repeat: no-repeat;
+ color: var(--font-color);
+}
+
+.button:hover,
+.button:-moz-focusring {
+ background-color: var(--toolbar-button-hover);
+}
+
+.open .button,
+.button:active {
+ background-color: var(--toolbar-button-active);
+ color: var(--active-color);
+ fill: var(--active-color);
+}
+
+.hover-label {
+ position: absolute;
+ top: 4px;
+ inset-inline-start: 36px;
+ line-height: 16px;
+ white-space: pre; /* make sure we don't wrap */
+ background-color: var(--tooltip-background);
+ color: var(--tooltip-foreground);
+ padding: 4px 8px;
+ border-radius: 2px;
+ visibility: hidden;
+ pointer-events: none;
+}
+
+/* Show the hover tooltip on non-dropdown buttons. */
+.button:not(.dropdown-toggle):hover > .hover-label,
+.button:not(.dropdown-toggle):-moz-focusring > .hover-label,
+/* Show the hover tooltip for dropdown buttons unless dropdowns are open. */
+:not(.dropdown-open) > .dropdown > li > .button:hover > .hover-label,
+:not(.dropdown-open) > .dropdown > li > .button:-moz-focusring > .hover-label {
+ visibility: visible;
+}
+
+button {
+ -moz-context-properties: fill;
+ color: var(--font-color);
+ fill: var(--icon-fill);
+}
+
+button:disabled {
+ fill: var(--icon-disabled-fill);
+}
+
+.toolbar button::-moz-focus-inner {
+ border: 0;
+}
+
+.dropdown {
+ text-align: center;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: relative;
+}
+
+.dropdown li {
+ margin: 0;
+ padding: 0;
+}
+
+/*======= Popup =======*/
+
+.dropdown .dropdown-popup {
+ text-align: start;
+ position: absolute;
+ inset-inline-start: 40px;
+ z-index: 1000;
+ background-color: var(--popup-bgcolor);
+ visibility: hidden;
+ border-radius: 4px;
+ border: 1px solid var(--popup-border);
+ box-shadow: 0 4px 6px 0 var(--popup-shadow);
+ border-bottom-width: 0;
+ top: 0;
+}
+
+.open > .dropdown-popup {
+ visibility: visible;
+}
+
+.dropdown-arrow {
+ position: absolute;
+ height: 24px;
+ width: 16px;
+ inset-inline-start: -16px;
+ background-image: url("chrome://global/skin/reader/RM-Type-Controls-Arrow.svg");
+ display: block;
+ -moz-context-properties: fill, stroke;
+ fill: var(--popup-bgcolor);
+ stroke: var(--opaque-popup-border);
+ pointer-events: none;
+}
+
+.dropdown-arrow:dir(rtl) {
+ transform: scaleX(-1);
+}
+
+/* Align the style dropdown arrow (narrate does its own) */
+.style-dropdown .dropdown-arrow {
+ top: 7px;
+}
+
+/*======= Font style popup =======*/
+
+.radio-button {
+ /* We visually hide these, but we keep them around so they can be focused
+ * and changed by interacting with them via the label, or the keyboard, or
+ * assistive technology.
+ */
+ opacity: 0;
+ pointer-events: none;
+ position: absolute;
+}
+
+.radiorow,
+.buttonrow {
+ display: flex;
+}
+
+.content-width-value,
+.font-size-value,
+.line-height-value {
+ box-sizing: border-box;
+ width: 36px;
+ height: 15px;
+ line-height: 15px;
+ display: flex;
+ justify-content: center;
+ align-content: center;
+ margin: auto;
+ border-radius: 10px;
+ border: 1px solid var(--font-value-border);
+ background-color: var(--popup-button);
+}
+
+.buttonrow > button {
+ border: 0;
+ height: 60px;
+ width: 90px;
+ background-color: transparent;
+ background-repeat: no-repeat;
+ background-position: center;
+}
+
+.buttonrow > button:enabled:hover,
+.buttonrow > button:enabled:-moz-focusring {
+ background-color: var(--popup-button-hover);
+}
+
+.buttonrow > button:enabled:active {
+ background-color: var(--popup-button-active);
+}
+
+.radiorow:not(:last-child),
+.buttonrow:not(:last-child) {
+ border-bottom: 1px solid var(--popup-line);
+}
+
+.radiorow > label {
+ position: relative;
+ box-sizing: border-box;
+ border-radius: 2px;
+ border: 2px solid var(--popup-border);
+}
+
+.radiorow > label[checked] {
+ border-color: var(--selected-border);
+}
+
+/* For the hover style, we draw a line under the item by means of a
+ * pseudo-element. Because these items are variable height, and
+ * because their contents are variable height, position it absolutely,
+ * and give it a width of 100% (the content width) + 4px for the 2 * 2px
+ * border width.
+ */
+.radiorow > input[type=radio]:-moz-focusring + label::after,
+.radiorow > label:hover::after {
+ content: "";
+ display: block;
+ border-bottom: 2px solid var(--blue-40);
+ width: calc(100% + 4px);
+ position: absolute;
+ /* to skip the 2 * 2px border + 2px spacing. */
+ bottom: -6px;
+ /* Match the start of the 2px border of the element: */
+ inset-inline-start: -2px;
+}
+
+.color-scheme-buttons > label {
+ height: 34px;
+ width: 70px;
+ font-size: 12px;
+ /* Center the labels horizontally as well as vertically */
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ /* We want 10px between items, but there's no margin collapsing in flexbox. */
+ margin: 10px 5px;
+}
+
+.color-scheme-buttons > input:first-child + label {
+ margin-inline-start: 10px;
+}
+
+.color-scheme-buttons > label:last-child {
+ margin-inline-end: 10px;
+}
+
+.font-type-buttons > label {
+ height: 64px;
+ width: 105px;
+ /* Slightly more space between these items. */
+ margin: 10px;
+ /* Center the Sans-serif / Serif labels */
+ text-align: center;
+ background-size: 63px 39px;
+ background-repeat: no-repeat;
+ background-position: center 18px;
+ background-color: var(--popup-button);
+ fill: currentColor;
+ -moz-context-properties: fill;
+ /* This mostly matches baselines, but because of differences in font
+ * baselines between serif and sans-serif, this isn't always enough. */
+ line-height: 1;
+ padding-top: 2px;
+}
+
+.font-type-buttons > label[checked] {
+ background-color: var(--selected-background);
+}
+
+.sans-serif-button {
+ font-family: Helvetica, Arial, sans-serif;
+ background-image: url("chrome://global/skin/reader/RM-Sans-Serif.svg");
+}
+
+/* Tweak padding to match the baseline on mac */
+:root[platform=macosx] .sans-serif-button {
+ padding-top: 3px;
+}
+
+.serif-button {
+ font-family: Georgia, "Times New Roman", serif;
+ background-image: url("chrome://global/skin/reader/RM-Serif.svg");
+}
+
+/*======= Toolbar icons =======*/
+
+.close-button {
+ -moz-context-properties: fill;
+ background-image: url("chrome://global/skin/reader/close-16.svg");
+}
+
+.style-button {
+ background-image: url("chrome://global/skin/reader/RM-Type-Controls-24x24.svg");
+}
+
+.minus-button {
+ background-size: 18px 18px;
+ background-image: url("chrome://global/skin/reader/RM-Minus-24x24.svg");
+}
+
+.plus-button {
+ background-size: 18px 18px;
+ background-image: url("chrome://global/skin/reader/RM-Plus-24x24.svg");
+}
+
+.content-width-minus-button {
+ background-size: 42px 16px;
+ background-image: url("chrome://global/skin/reader/RM-Content-Width-Minus-42x16.svg");
+}
+
+.content-width-plus-button {
+ background-size: 44px 16px;
+ background-image: url("chrome://global/skin/reader/RM-Content-Width-Plus-44x16.svg");
+}
+
+.line-height-minus-button {
+ background-size: 34px 14px;
+ background-image: url("chrome://global/skin/reader/RM-Line-Height-Minus-38x14.svg");
+}
+
+.line-height-plus-button {
+ background-size: 34px 24px;
+ background-image: url("chrome://global/skin/reader/RM-Line-Height-Plus-38x24.svg");
+}
+
+/* Mirror the line height buttons if the article is RTL. */
+.reader-controls[articledir="rtl"] .line-height-minus-button,
+.reader-controls[articledir="rtl"] .line-height-plus-button {
+ transform: scaleX(-1);
+}
+
+@media print {
+ .toolbar {
+ display: none !important;
+ }
+}
+
+/*======= Article content =======*/
+
+/* Note that any class names from the original article that we want to match on
+ * must be added to CLASSES_TO_PRESERVE in ReaderMode.jsm, so that
+ * Readability.js doesn't strip them out */
+
+.moz-reader-content {
+ display: none;
+ font-size: 1em;
+}
+
+@media print {
+ .moz-reader-content p,
+ .moz-reader-content code,
+ .moz-reader-content pre,
+ .moz-reader-content blockquote,
+ .moz-reader-content ul,
+ .moz-reader-content ol,
+ .moz-reader-content li,
+ .moz-reader-content figure,
+ .moz-reader-content .wp-caption {
+ margin: 0 0 10px !important;
+ padding: 0 !important;
+ }
+}
+
+.moz-reader-content h1,
+.moz-reader-content h2,
+.moz-reader-content h3 {
+ font-weight: bold;
+}
+
+.moz-reader-content h1 {
+ font-size: 1.6em;
+ line-height: 1.25em;
+}
+
+.moz-reader-content h2 {
+ font-size: 1.2em;
+ line-height: 1.51em;
+}
+
+.moz-reader-content h3 {
+ font-size: 1em;
+ line-height: 1.66em;
+}
+
+.moz-reader-content a:link {
+ text-decoration: underline;
+ font-weight: normal;
+}
+
+.moz-reader-content a:link,
+.moz-reader-content a:link:hover,
+.moz-reader-content a:link:active {
+ color: var(--link-foreground);
+}
+
+.moz-reader-content a:visited {
+ color: var(--visited-link-foreground);
+}
+
+.moz-reader-content * {
+ max-width: 100%;
+ height: auto;
+}
+
+.moz-reader-content p,
+.moz-reader-content p,
+.moz-reader-content code,
+.moz-reader-content pre,
+.moz-reader-content blockquote,
+.moz-reader-content ul,
+.moz-reader-content ol,
+.moz-reader-content li,
+.moz-reader-content figure,
+.moz-reader-content .wp-caption {
+ margin: -10px -10px 20px;
+ padding: 10px;
+ border-radius: 5px;
+}
+
+.moz-reader-content li {
+ margin-bottom: 0;
+}
+
+.moz-reader-content li > ul,
+.moz-reader-content li > ol {
+ margin-bottom: -10px;
+}
+
+.moz-reader-content p > img:only-child,
+.moz-reader-content p > a:only-child > img:only-child,
+.moz-reader-content .wp-caption img,
+.moz-reader-content figure img {
+ display: block;
+}
+
+.moz-reader-content img[moz-reader-center] {
+ margin-inline: auto;
+}
+
+.moz-reader-content .caption,
+.moz-reader-content .wp-caption-text
+.moz-reader-content figcaption {
+ font-size: 0.9em;
+ line-height: 1.48em;
+ font-style: italic;
+}
+
+.moz-reader-content code,
+.moz-reader-content pre {
+ white-space: pre-wrap;
+}
+
+.moz-reader-content blockquote {
+ padding: 0;
+ padding-inline-start: 16px;
+}
+
+.moz-reader-content ul,
+.moz-reader-content ol {
+ padding: 0;
+}
+
+.moz-reader-content ul {
+ padding-inline-start: 30px;
+ list-style: disc;
+}
+
+.moz-reader-content ol {
+ padding-inline-start: 30px;
+ list-style: decimal;
+}
+
+table,
+th,
+td {
+ border: 1px solid currentColor;
+ border-collapse: collapse;
+ padding: 6px;
+ vertical-align: top;
+}
+
+table {
+ margin: 5px;
+}
+
+/* Visually hide (but don't display: none) screen reader elements */
+.moz-reader-content .visually-hidden,
+.moz-reader-content .visuallyhidden,
+.moz-reader-content .sr-only {
+ display: inline-block;
+ width: 1px;
+ height: 1px;
+ margin: -1px;
+ overflow: hidden;
+ padding: 0;
+ border-width: 0;
+}
+
+/* Hide elements with common "hidden" class names */
+.moz-reader-content .hidden,
+.moz-reader-content .invisible {
+ display: none;
+}
+
+/* Enforce wordpress and similar emoji/smileys aren't sized to be full-width,
+ * see bug 1399616 for context. */
+.moz-reader-content img.wp-smiley,
+.moz-reader-content img.emoji {
+ display: inline-block;
+ border-width: 0;
+ /* height: auto is implied from `.moz-reader-content *` rule. */
+ width: 1em;
+ margin: 0 .07em;
+ padding: 0;
+}
+
+.reader-show-element {
+ display: initial;
+}