Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions css/Z_INDEX.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
| context | z-index | file |
| ------------------------------------------------------------------------------------------------ | ---------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `amp-img[i-amphtml-ssr]:not(.i-amphtml-element) > [placeholder]` | auto | [css/ampshared.css](/css/ampshared.css) |
| `.i-amphtml-expanded-mode amp-story-grid-layer` | auto | [extensions/amp-story/1.0/amp-story.css](/extensions/amp-story/1.0/amp-story.css) |
| `.i-amphtml-expanded-mode amp-story-grid-layer *` | auto | [extensions/amp-story/1.0/amp-story.css](/extensions/amp-story/1.0/amp-story.css) |
| `amp-sidebar::part(c)` | inherit | [extensions/amp-sidebar/1.0/amp-sidebar.css](/extensions/amp-sidebar/1.0/amp-sidebar.css) |
| `amp-sidebar::part(sidebar)` | inherit | [extensions/amp-sidebar/1.0/amp-sidebar.css](/extensions/amp-sidebar/1.0/amp-sidebar.css) |
| `amp-sidebar::part(wrapper)` | inherit | [extensions/amp-sidebar/1.0/amp-sidebar.css](/extensions/amp-sidebar/1.0/amp-sidebar.css) |
Expand Down Expand Up @@ -141,7 +139,6 @@
| `.i-amphtml-story-consent-actions` | 1 | [extensions/amp-story/1.0/amp-story-consent.css](/extensions/amp-story/1.0/amp-story-consent.css) |
| `.i-amphtml-story-draggable-drawer-header` | 1 | [extensions/amp-story/1.0/amp-story-draggable-drawer-header.css](/extensions/amp-story/1.0/amp-story-draggable-drawer-header.css) |
| `.i-amphtml-story-hint-container .i-amphtml-story-hint-tap-button-icon` | 1 | [extensions/amp-story/1.0/amp-story-hint.css](/extensions/amp-story/1.0/amp-story-hint.css) |
| `.i-amphtml-expanded-mode .i-amphtml-embedded-component.i-amphtml-expanded-component` | 1 | [extensions/amp-story/1.0/amp-story.css](/extensions/amp-story/1.0/amp-story.css) |
| `amp-story-page[active]` | 1 | [extensions/amp-story/1.0/amp-story.css](/extensions/amp-story/1.0/amp-story.css) |
| `.i-amphtml-stream-gallery-next` | 1 | [extensions/amp-stream-gallery/0.1/arrows.css](/extensions/amp-stream-gallery/0.1/arrows.css) |
| `.i-amphtml-stream-gallery-prev` | 1 | [extensions/amp-stream-gallery/0.1/arrows.css](/extensions/amp-stream-gallery/0.1/arrows.css) |
Expand Down
29 changes: 0 additions & 29 deletions examples/visual-tests/amp-story/amp-story-tooltip-desktop.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,6 @@ module.exports = {
await page.waitForTimeout(800); // For animations to finish.
await verifySelectorsVisible(page, name, ['amp-story-page#page-3[active]']);
},
'tapping on embed tooltip should expand the component': async (
page,
name
) => {
await page.tap('.next-container > button.i-amphtml-story-button-move');
await page.waitForSelector('amp-story-page#page-2[active]');
await page.waitForTimeout(300); // For animations to finish.
await page.tap('amp-twitter.interactive-embed');
await page.waitForTimeout(300); // For animations to finish.
await page.tap('a.i-amphtml-story-tooltip');
await page.waitForTimeout(800); // For animations to finish.
await verifySelectorsVisible(page, name, [
'amp-story-page.i-amphtml-expanded-mode',
]);
},
'tapping on non-interactive embed should not show tooltip or block navigation':
async (page, name) => {
await page.tap('.next-container > button.i-amphtml-story-button-move');
Expand All @@ -82,18 +67,4 @@ module.exports = {
'amp-story-page#page-4[active]',
]);
},
'tapping on closing button should exit expanded view': async (page, name) => {
await page.tap('.next-container > button.i-amphtml-story-button-move');
await page.waitForSelector('amp-story-page#page-2[active]');
await page.waitForTimeout(300); // For animations to finish.
await page.tap('amp-twitter.interactive-embed');
await page.waitForTimeout(300); // For animations to finish.
await page.tap('a.i-amphtml-story-tooltip');
await page.waitForSelector('amp-story-page.i-amphtml-expanded-mode');
await page.waitForTimeout(800); // For animations to finish.
await page.tap('span.i-amphtml-expanded-view-close-button');
await verifySelectorsInvisible(page, name, [
'amp-story-page.i-amphtml-expanded-mode',
]);
},
};
34 changes: 0 additions & 34 deletions examples/visual-tests/amp-story/amp-story-tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,6 @@ module.exports = {
await page.waitForTimeout(150); // For animations to finish.
await verifySelectorsVisible(page, name, ['amp-story-page#cover[active]']);
},
'tapping on embed tooltip should expand the component': async (
page,
name
) => {
const screen = page.touchscreen;
await screen.tap(200, 240);
await page.waitForSelector('amp-story-page#page-2[active]');
await page.waitForTimeout(800); // For animations to finish.
await page.tap('amp-twitter.interactive-embed');
await page.waitForSelector('a.i-amphtml-story-tooltip');
await page.waitForTimeout(500); // For animations to finish.
await page.tap('a.i-amphtml-story-tooltip');
await page.waitForTimeout(1000); // For animations to finish.
await verifySelectorsVisible(page, name, [
'amp-story-page.i-amphtml-expanded-mode',
]);
},
'tapping on non-interactive embed should not show tooltip or block navigation':
async (page, name) => {
const screen = page.touchscreen;
Expand All @@ -77,21 +60,4 @@ module.exports = {
'amp-story-page#page-2[active]',
]);
},
'tapping on closing button should exit expanded view': async (page, name) => {
const screen = page.touchscreen;
await screen.tap(200, 240);
await page.waitForSelector('amp-story-page#page-2[active]');
await page.waitForTimeout(800); // For animations to finish.
await page.tap('amp-twitter.interactive-embed');
await page.waitForSelector('a.i-amphtml-story-tooltip');
await page.waitForTimeout(500); // For animations to finish.
await page.tap('a.i-amphtml-story-tooltip');
await page.waitForSelector('amp-story-page.i-amphtml-expanded-mode');
await page.waitForTimeout(1000); // For animations to finish.
await page.tap('button.i-amphtml-expanded-view-close-button');
await page.waitForTimeout(300); // For animations to finish.
await verifySelectorsInvisible(page, name, [
'amp-story-page.i-amphtml-expanded-mode',
]);
},
};
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/af.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Vee opwaarts"
},
"36": {
"string": "Vou twiet uit"
},
"62": {
"string": "Deel vanaf hierdie bladsy"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/am.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "ወደ ላይ ያንሸራቱ"
},
"36": {
"string": "ትዊትን ዘርጋ"
},
"62": {
"string": "ከዚህ ገጽ ጀምሮ ያጋሩ"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "السحب لأعلى"
},
"36": {
"string": "توسيع التغريدة"
},
"62": {
"string": "المشاركة بدءًا من هذه الصفحة"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/bg.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Плъзнете нагоре"
},
"36": {
"string": "Разгъване на съобщението в Twitter"
},
"62": {
"string": "Споделете, започвайки от тази страница"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/bn.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "উপরে সোয়াইপ করুন"
},
"36": {
"string": "টুইট সম্প্রসারণ করুন"
},
"62": {
"string": "এই পৃষ্ঠা থেকে শুরু শেয়ার করুন"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/bs.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Pređite prstom nagore"
},
"36": {
"string": "Proširi tweet"
},
"62": {
"string": "Podijeli počevši od ove stranice"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/ca.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Llisca cap amunt"
},
"36": {
"string": "Amplia el tuit"
},
"62": {
"string": "Comparteix a partir d'aquesta pàgina"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Potáhněte nahoru"
},
"36": {
"string": "Rozbalit tweet"
},
"62": {
"string": "Sdílet od této stránky"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Stryg op"
},
"36": {
"string": "Udvid tweet"
},
"62": {
"string": "Begynd at dele startende fra denne side"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Nach oben wischen"
},
"36": {
"string": "Tweet maximieren"
},
"62": {
"string": "Ab dieser Seite teilen"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/el.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Σύρετε προς τα πάνω"
},
"36": {
"string": "Ανάπτυξη Tweet"
},
"62": {
"string": "Κοινοποίηση ξεκινώντας από αυτήν τη σελίδα"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/en-GB.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Swipe up"
},
"36": {
"string": "Expand Tweet"
},
"62": {
"string": "Share starting from this page"
},
Expand Down
4 changes: 0 additions & 4 deletions extensions/amp-story/1.0/_locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,6 @@
"string": "Swipe up",
"description": "Label for a button to open a drawer containing additional content via a \"swipe up\" user gesture."
},
"36": {
"string": "Expand Tweet",
"description": "Label in the tooltip text for when a Twitter embed is expandable."
},
"62": {
"string": "Share starting from this page",
"description": "Checkbox label when the branching experiment is turned on and the story is in landscape mode; checking the checkbox lets the user share the story from the current page."
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/es-419.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Deslizar el dedo hacia arriba"
},
"36": {
"string": "Mostrar tuit"
},
"62": {
"string": "Compartir a partir de esta página"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Deslizar el dedo hacia arriba"
},
"36": {
"string": "Mostrar tuit"
},
"62": {
"string": "Compartir a partir de esta página"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/et.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Pühkige üles"
},
"36": {
"string": "Laiendage säutsu"
},
"62": {
"string": "Jaga alates sellest lehest"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/eu.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Pasatu hatza gora"
},
"36": {
"string": "Zabaldu txioa"
},
"62": {
"string": "Partekatu orri honetatik aurrera"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/fa.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "کشیدن به بالا"
},
"36": {
"string": "گسترش توییت"
},
"62": {
"string": "اشتراک‌گذاری را از این صفحه شروع کنید"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/fi.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Pyyhkäise ylös"
},
"36": {
"string": "Laajenna tviitti"
},
"62": {
"string": "Jaa tältä sivulta alkaen"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/fil.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Mag-swipe pataas"
},
"36": {
"string": "I-expand ang Tweet"
},
"62": {
"string": "Ibahagi simula sa page na ito"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Balayer l'écran vers le haut"
},
"36": {
"string": "Développer le tweet"
},
"62": {
"string": "Partager à partir de cette page"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/gl.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Deslizar cara enriba"
},
"36": {
"string": "Mostrar todo"
},
"62": {
"string": "Compartir a partir desta páxina"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/gu.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "ઉપર સ્વાઇપ કરો"
},
"36": {
"string": "ટ્વિટ મોટી કરો"
},
"62": {
"string": "શેર કરવાનું આ પેજથી શરૂ થાય છે"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/hi.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "ऊपर स्वाइप करें"
},
"36": {
"string": "ट्वीट को विस्तारित करें"
},
"62": {
"string": "इस पेज से शुरू करते हुए शेयर करें"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/hr.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Prijeđite prstom prema gore"
},
"36": {
"string": "Proširi Tweet"
},
"62": {
"string": "Podijelite, počevši s ovom stranicom"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/hu.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Csúsztatás felfelé"
},
"36": {
"string": "Tweet kibontása"
},
"62": {
"string": "Megosztás ettől az oldaltól kezdve"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/id.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Usap ke atas"
},
"36": {
"string": "Perluas Tweet"
},
"62": {
"string": "Bagikan mulai dari halaman ini"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/is.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Strjúktu upp"
},
"36": {
"string": "Stækka tíst"
},
"62": {
"string": "Deila frá og með þessari síðu"
},
Expand Down
3 changes: 0 additions & 3 deletions extensions/amp-story/1.0/_locales/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@
"35": {
"string": "Scorri verso l'alto"
},
"36": {
"string": "Espandi Tweet"
},
"62": {
"string": "Condividi a partire da questa pagina"
},
Expand Down
Loading