From d2076c521c13aa3bbb22d962145bd3c95520215b Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 6 Aug 2017 18:27:01 +1200 Subject: [PATCH 01/81] Rename 50-01.html to 13-03.html --- en/{50-01.html => 13-03.html} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename en/{50-01.html => 13-03.html} (100%) diff --git a/en/50-01.html b/en/13-03.html similarity index 100% rename from en/50-01.html rename to en/13-03.html From 5cf4b26cbc7466908b3035b9f00705ee1c5025af Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 21 Feb 2019 15:19:12 +1300 Subject: [PATCH 02/81] Create readme.md --- readme.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..610e24c --- /dev/null +++ b/readme.md @@ -0,0 +1 @@ +treast From 252bfa1d3d39ebe32ec858aa973d8c8ab58b4da9 Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 21 Feb 2019 15:28:17 +1300 Subject: [PATCH 03/81] Update progress.css --- css/progress.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/css/progress.css b/css/progress.css index ca4fffc..42253b2 100644 --- a/css/progress.css +++ b/css/progress.css @@ -9,6 +9,18 @@ display: block; } + + .progress .step { width: 10px; height: 10px; From fba8a8e2318bae3eb5dd4ebb7cfe8cbba176cc82 Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 21 Feb 2019 15:28:20 +1300 Subject: [PATCH 04/81] Update tutorial.html --- _layouts/tutorial.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 292dfed..62fe86f 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -65,6 +65,8 @@
+ + {% assign same_topic_started = false %} {% assign should_assign_next = false %} {% assign has_next_page = false %} @@ -85,6 +87,7 @@
{% assign same_topic_started = false %} {% endif %} + {% if should_assign_next %} {% assign should_assign_next = false %} @@ -107,6 +110,9 @@

{{ page.title | escape }}

{% if has_next_page %} {{ site.data.localization.footer.nextStep[page.lang] }} {% endif %} + +
I will show on hover
+
- {{ content }} - {% if has_next_page %} - + {{ content }} + {% if has_next_page %} + {{ site.data.localization.footer.nextStep[page.lang] }} {% endif %} From dca774870a1754d763b271db59e96b472ecb1193 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 22 Feb 2019 17:28:05 +1300 Subject: [PATCH 07/81] Update tutorial.html --- _layouts/tutorial.html | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index ff00c0f..0f61a44 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -60,7 +60,11 @@ .quiz .button-fail:before { content: "{{ site.data.localization.quiz.no[page.lang] }}"; } - + +a:hover { + background-color: yellow; +} +
@@ -107,11 +111,8 @@

{{ page.title | escape }}

- + + {{ content }} {% if has_next_page %} @@ -119,6 +120,7 @@

{{ page.title | escape }}

{{ site.data.localization.footer.nextStep[page.lang] }} {% endif %} +
I will show on hover
From 15007db8b912ebdeb2052183bb7826fae11bfd64 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 22 Feb 2019 17:29:59 +1300 Subject: [PATCH 08/81] Update tutorial.html --- _layouts/tutorial.html | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 0f61a44..6edcfed 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -109,7 +109,6 @@

{{ page.title | escape }}

-
@@ -120,11 +119,7 @@

{{ page.title | escape }}

{{ site.data.localization.footer.nextStep[page.lang] }} {% endif %} - - -
I will show on hover
- -
+

{{ page.title | escape }}

- - - - +
{{ content }} - {% if has_next_page %} - + {%- if has_next_page %} {{ site.data.localization.footer.nextStep[page.lang] }} - - {% endif %} - + {%- endif %} +
+
+ + +
From ade7cdd94557904b300dc623bdb5878c712dbfbe Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 22 Feb 2019 17:56:17 +1300 Subject: [PATCH 10/81] Update progress.css --- css/progress.css | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/css/progress.css b/css/progress.css index 42253b2..0bc4e4f 100644 --- a/css/progress.css +++ b/css/progress.css @@ -9,19 +9,7 @@ display: block; } - - -.progress .step { +.step { width: 10px; height: 10px; border: 3px solid {{ site.data.colors.step-color }}; @@ -36,16 +24,24 @@ span:hover + div { display: inline-block; } -.progress .step.done { +.step.done { background-color: {{ site.data.colors.step-done-color }}; border-color: {{ site.data.colors.step-done-border-color }}; } -.progress .step.current { +.step.current { background-color: {{ site.data.colors.step-color }}; + color: white; + text-decoration: none; + font-size: 14px; + width: 20px; + height: 20px; + line-height: 20px; + border-radius: 20px; + border-width: 4px; } -.progress .same-topic { +.same-topic { background-color: {{ site.data.colors.header-color }}; clear: none; padding: 5px; From 840ccbe5fc8df1466777dfc6c4dd9315aa7330c8 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 22 Feb 2019 18:04:24 +1300 Subject: [PATCH 11/81] Update tutorial.html --- _layouts/tutorial.html | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 5885bf6..e7f84d3 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -27,39 +27,42 @@ .clicked .toggle-hint:before { content: "{{ site.data.localization.hint.shown[page.lang] }}"; } + .secret .toggle-hint:before { content: "{{ site.data.localization.hint.hidden[page.lang] }}"; } + .playfield.verbose .match.ok:after { content: "{{ site.data.localization.match.matched[page.lang] }}"; } + .playfield.verbose .match.fail:after { content: "{{ site.data.localization.match.shouldNotMatch[page.lang] }}"; } + .playfield.verbose .nomatch.ok:after { content: "{{ site.data.localization.match.shouldMatch[page.lang] }}"; } + .playfield.verbose .nomatch.fail:after { content: "{{ site.data.localization.match.noMatch[page.lang] }}"; } + .quiz .expression:before { content: "{{ site.data.localization.quiz.before[page.lang] }}"; } + .quiz .expression:after { content: "{{ site.data.localization.quiz.after[page.lang] }}"; } + .quiz .button-ok:before { content: "{{ site.data.localization.quiz.yes[page.lang] }}"; } + .quiz .button-fail:before { content: "{{ site.data.localization.quiz.no[page.lang] }}"; } - -p:hover, h1:hover, a:hover { - background-color: yellow; -} - - @@ -128,6 +131,7 @@

{{ page.title | escape }}

{%- endfor %}
{%- assign same_topic_started = false %} {%- endif %} - {%- if page == p %}{{ step_index }}{% endif %} - Tooltip text + Tooltip text + + {%- if page == p %}{{ step_index }}{% endif %} + {%- if should_assign_next %} {%- assign should_assign_next = false %} {%- assign has_next_page = true %} From 28d85b06932fcbfdd9fb52fea6b25f0790111b0c Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 24 Feb 2019 19:35:03 +1300 Subject: [PATCH 30/81] Update tutorial.html --- _layouts/tutorial.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 4e79853..2ad5639 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -95,6 +95,7 @@
+ Tooltip text {%- assign same_topic_started = false %} {%- assign should_assign_next = false %} {%- assign has_next_page = false %} @@ -120,8 +121,7 @@
{%- assign same_topic_started = false %} {%- endif %} - Tooltip text - + {%- if page == p %}{{ step_index }}{% endif %} {%- if should_assign_next %} From f4a709f410a3ed7b959b25ed15e5dd4ac187c075 Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 24 Feb 2019 19:36:36 +1300 Subject: [PATCH 31/81] Update tutorial.html --- _layouts/tutorial.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 2ad5639..9b9b6a7 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -95,7 +95,7 @@
- Tooltip text + Tooltip text {%- assign same_topic_started = false %} {%- assign should_assign_next = false %} {%- assign has_next_page = false %} @@ -118,6 +118,7 @@ {%- assign same_topic_started = true %} {%- endif %} {%- if p_topic != topic and same_topic_started == true %} +
{%- assign same_topic_started = false %} {%- endif %} From b3886c0fb45ddaaa8393091b9af867e036ebf004 Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 24 Feb 2019 19:39:11 +1300 Subject: [PATCH 32/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 9b9b6a7..12d26c3 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -123,7 +123,7 @@ {%- assign same_topic_started = false %} {%- endif %} - {%- if page == p %}{{ step_index }}{% endif %} + {%- if page == p %}{{ step_index }}{% endif %} {%- if should_assign_next %} {%- assign should_assign_next = false %} From e3fff28a9a7b588ba034fc82d6ad1ae7abec8330 Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 24 Feb 2019 19:41:50 +1300 Subject: [PATCH 33/81] Update tutorial.html --- _layouts/tutorial.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 12d26c3..5df5b41 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -95,7 +95,7 @@
- Tooltip text + Tooltip text {%- assign same_topic_started = false %} {%- assign should_assign_next = false %} {%- assign has_next_page = false %} @@ -118,7 +118,7 @@ {%- assign same_topic_started = true %} {%- endif %} {%- if p_topic != topic and same_topic_started == true %} - +
{%- assign same_topic_started = false %} {%- endif %} From 22f3b15ffa053a557330ba553408cd4ea6fe5228 Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 24 Feb 2019 19:43:41 +1300 Subject: [PATCH 34/81] Update tutorial.html --- _layouts/tutorial.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 5df5b41..977fcde 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -95,7 +95,6 @@
- Tooltip text {%- assign same_topic_started = false %} {%- assign should_assign_next = false %} {%- assign has_next_page = false %} @@ -123,8 +122,11 @@ {%- assign same_topic_started = false %} {%- endif %} + + {%- if should_assign_next %} {%- assign should_assign_next = false %} {%- assign has_next_page = true %} From afa9f03edc89380d1a914a1c92d7a97c8f3bd12c Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 24 Feb 2019 20:01:32 +1300 Subject: [PATCH 35/81] Update tutorial.html --- _layouts/tutorial.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 977fcde..4c5fa69 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -123,9 +123,10 @@ {%- endif %}
- Tooltip text + Tooltip text {%- if page == p %}{{ step_index }}{% endif %} -
+ +
{%- if should_assign_next %} {%- assign should_assign_next = false %} From 894cfccfd0754f1e41b5bbd12b2eac235866b760 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 25 Feb 2019 14:43:21 +1300 Subject: [PATCH 36/81] Update tutorial.html --- _layouts/tutorial.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 4c5fa69..9fcfce0 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -122,11 +122,9 @@ {%- assign same_topic_started = false %} {%- endif %} - + {%- if should_assign_next %} {%- assign should_assign_next = false %} From 5630c98df965efe0873be85ed7fc075b366f51c5 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 25 Feb 2019 14:45:36 +1300 Subject: [PATCH 37/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 9fcfce0..f6ffd6d 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -85,7 +85,7 @@ opacity: 0; transition: opacity 0.3s; } -.step:hover .tooltiptext { +.step:hover.tooltiptext { visibility: visible; opacity: 1; } From 1e4b8c1bb8ad34619b6ce8160d2bd0f6b48140f3 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 25 Feb 2019 14:49:31 +1300 Subject: [PATCH 38/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index f6ffd6d..9fcfce0 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -85,7 +85,7 @@ opacity: 0; transition: opacity 0.3s; } -.step:hover.tooltiptext { +.step:hover .tooltiptext { visibility: visible; opacity: 1; } From baad297fa3a31530ddc749195330dfbbefc93ead Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 25 Feb 2019 14:52:24 +1300 Subject: [PATCH 39/81] Update tutorial.html --- _layouts/tutorial.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 9fcfce0..b7546f6 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -84,6 +84,16 @@ margin-left: -60px; opacity: 0; transition: opacity 0.3s; +} + .tooltip .tooltiptext::after { + content: ""; + position: absolute; + top: 100%; + left: 50%; + margin-left: -5px; + border-width: 5px; + border-style: solid; + border-color: #555 transparent transparent transparent; } .step:hover .tooltiptext { visibility: visible; From f479c35f9b8deca84b81b06b80da2e003dcd7a26 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 25 Feb 2019 14:56:19 +1300 Subject: [PATCH 40/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index b7546f6..5d9241e 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -133,7 +133,7 @@ {%- endif %} - {%- if page == p %}{{ step_index }}{% endif %} + {%- if page == p %}{{ step_index }}{% endif %} {%- if should_assign_next %} From f1b5c2db4bf80efc5edde5de38d9054e9ad25cc9 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 26 Feb 2019 18:20:39 +1300 Subject: [PATCH 41/81] Update tutorial.html --- _layouts/tutorial.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 5d9241e..a311a77 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -131,10 +131,14 @@ {%- assign same_topic_started = false %} {%- endif %} - + + + {%- if page == p %}{{ step_index }}{% endif %}> + Tooltip text - {%- if page == p %}{{ step_index }}{% endif %} + {%- if page == p %}{{ step_index }}{% endif %} + {%- if should_assign_next %} {%- assign should_assign_next = false %} From 21eb749c02469f3924574ed795430808a742b64f Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 26 Feb 2019 18:27:38 +1300 Subject: [PATCH 42/81] Update tutorial.html --- _layouts/tutorial.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index a311a77..4c10dfc 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -95,7 +95,7 @@ border-style: solid; border-color: #555 transparent transparent transparent; } -.step:hover .tooltiptext { +.step:hover.tooltiptext { visibility: visible; opacity: 1; } @@ -132,8 +132,8 @@ {%- assign same_topic_started = false %} {%- endif %} - - {%- if page == p %}{{ step_index }}{% endif %}> + + Tooltip text From 722ae1d7d9a7cb141abd2b40f0252d7b09c76762 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 26 Feb 2019 18:29:17 +1300 Subject: [PATCH 43/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 4c10dfc..ecc685b 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -95,7 +95,7 @@ border-style: solid; border-color: #555 transparent transparent transparent; } -.step:hover.tooltiptext { +.step:hover .tooltiptext { visibility: visible; opacity: 1; } From 9c139cd7379cdf4ff2775a178035035b1bff9085 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 26 Feb 2019 18:33:29 +1300 Subject: [PATCH 44/81] Update tutorial.html --- _layouts/tutorial.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index ecc685b..4d17026 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -132,13 +132,14 @@ {%- assign same_topic_started = false %} {%- endif %} - + {%- if should_assign_next %} {%- assign should_assign_next = false %} From 6f522a97fa65506506743407613cee6cb63c0cd5 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 13:56:06 +1300 Subject: [PATCH 45/81] Update tutorial.html --- _layouts/tutorial.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 4d17026..ba68d6c 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -138,8 +138,7 @@ {%- if page == p %}{{ step_index }}{% endif %} - - + {%- if should_assign_next %} {%- assign should_assign_next = false %} From 60e526672abeb0594ff7453dc6050c69a590f2f8 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:02:22 +1300 Subject: [PATCH 46/81] Update tutorial.html --- _layouts/tutorial.html | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index ba68d6c..0ada7a5 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -85,7 +85,7 @@ opacity: 0; transition: opacity 0.3s; } - .tooltip .tooltiptext::after { + .tooltip .tooltiptext:after { content: ""; position: absolute; top: 100%; @@ -100,6 +100,15 @@ opacity: 1; } + [step]:tooltiptext,[step]:tooltiptext:after + visibility: hidden + opacity: 0 + pointer-events: none + +.tooltiptext:hover [step]:.tooltiptext:hover [step]:after + visibility: visible + opacity: 1 + @@ -132,8 +141,7 @@ {%- assign same_topic_started = false %} {%- endif %} -
- + Tooltip text From 42d4346e4251ffca10d40613a867cd083585d9b4 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:18:42 +1300 Subject: [PATCH 47/81] Update tutorial.html --- _layouts/tutorial.html | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 0ada7a5..385b57e 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -63,13 +63,17 @@ .quiz .button-fail:before { content: "{{ site.data.localization.quiz.no[page.lang] }}"; } - .tooltip { + + .tooltiptext { position: relative; display: inline-block; border-bottom: 1px dotted black; } - -.tooltip .tooltiptext { +[tooltiptext] + position: absolute + z-index: 2 + +[tooltiptext]:before { visibility: hidden; width: 120px; background-color: #555; @@ -85,7 +89,7 @@ opacity: 0; transition: opacity 0.3s; } - .tooltip .tooltiptext:after { + .tooltiptext:after { content: ""; position: absolute; top: 100%; @@ -95,25 +99,26 @@ border-style: solid; border-color: #555 transparent transparent transparent; } -.step:hover .tooltiptext { - visibility: visible; - opacity: 1; -} - - [step]:tooltiptext,[step]:tooltiptext:after + + [tooltiptext]:before,[tooltiptext]:after visibility: hidden opacity: 0 pointer-events: none - -.tooltiptext:hover [step]:.tooltiptext:hover [step]:after + + .tooltip:hover [tooltiptext]:before,.tooltip:hover [tooltiptext]:after visibility: visible opacity: 1 +
+ + .progress.progress-danger.tooltip style='width: 20%;' + span tooltiptext='tooltip text' + {%- assign same_topic_started = false %} {%- assign should_assign_next = false %} {%- assign has_next_page = false %} @@ -141,9 +146,6 @@ {%- assign same_topic_started = false %} {%- endif %} - - Tooltip text - {%- if page == p %}{{ step_index }}{% endif %} From 84a49884810c70629aeed1f1fa7bd251e1725d18 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:25:26 +1300 Subject: [PATCH 48/81] Update tutorial.html --- _layouts/tutorial.html | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 385b57e..2b03a70 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -64,16 +64,12 @@ content: "{{ site.data.localization.quiz.no[page.lang] }}"; } - .tooltiptext { - position: relative; - display: inline-block; - border-bottom: 1px dotted black; -} + [tooltiptext] position: absolute z-index: 2 -[tooltiptext]:before { +[tooltiptext]:before visibility: hidden; width: 120px; background-color: #555; @@ -88,8 +84,8 @@ margin-left: -60px; opacity: 0; transition: opacity 0.3s; -} - .tooltiptext:after { + + [tooltiptext]:after content: ""; position: absolute; top: 100%; @@ -98,14 +94,14 @@ border-width: 5px; border-style: solid; border-color: #555 transparent transparent transparent; -} + [tooltiptext]:before,[tooltiptext]:after visibility: hidden opacity: 0 pointer-events: none - .tooltip:hover [tooltiptext]:before,.tooltip:hover [tooltiptext]:after + .tooltip:hover [tooltiptext]:before,.tooltip:hover[tooltiptext]:after visibility: visible opacity: 1 From 45b1c740b71c6713b63b2e6a72021ac33d25dfe5 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:35:49 +1300 Subject: [PATCH 49/81] Update tutorial.html --- _layouts/tutorial.html | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 2b03a70..b017567 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -1,6 +1,21 @@ + + + + + + + + + + + @@ -112,7 +127,7 @@
- .progress.progress-danger.tooltip style='width: 20%;' + .step span tooltiptext='tooltip text' {%- assign same_topic_started = false %} @@ -143,8 +158,14 @@ {%- endif %} - {%- if page == p %}{{ step_index }}{% endif %} + {%- if should_assign_next %} {%- assign should_assign_next = false %} From f4a4288623dba664930b5d6bcb9ba838d7b02181 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:37:31 +1300 Subject: [PATCH 50/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index b017567..f6c374f 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -160,7 +160,7 @@
- Hover over me + Hover over me From efe8666f2e18eaea76d73a4a8a55bac19e3784e6 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:41:35 +1300 Subject: [PATCH 51/81] Update tutorial.html --- _layouts/tutorial.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index f6c374f..fe91521 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -158,14 +158,13 @@ {%- endif %} - + {%- if should_assign_next %} {%- assign should_assign_next = false %} From 110d4fb941580f5da99a87b29e45fe4ac29bbd87 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:43:06 +1300 Subject: [PATCH 52/81] Update tutorial.html --- _layouts/tutorial.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index fe91521..fc1ddd8 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -127,8 +127,7 @@
- .step - span tooltiptext='tooltip text' + {%- assign same_topic_started = false %} {%- assign should_assign_next = false %} From 8d28bf02caae50e710c2e9e65e420e51abe8100b Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:46:17 +1300 Subject: [PATCH 53/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index fc1ddd8..90b2cc1 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -158,7 +158,7 @@ - Hover over me + Hover over me From 1745753c912d16922877a7b9d6b20d3552fabf20 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:47:55 +1300 Subject: [PATCH 54/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 90b2cc1..65c0138 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -10,7 +10,7 @@ From a604db60b0b7f076ba2053bf7b1d52024309f83c Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:51:01 +1300 Subject: [PATCH 55/81] Update tutorial.html --- _layouts/tutorial.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 65c0138..1daaa52 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -116,9 +116,7 @@ opacity: 0 pointer-events: none - .tooltip:hover [tooltiptext]:before,.tooltip:hover[tooltiptext]:after - visibility: visible - opacity: 1 + From 9025b5d06844e19f0fe1b81c9ede447a8b6ea254 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 14:55:19 +1300 Subject: [PATCH 56/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 1daaa52..c53351c 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -156,7 +156,7 @@ - Hover over me + Hover over me From 68020a3e12d53151c542b0ce59978ed789da43e4 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 15:05:15 +1300 Subject: [PATCH 57/81] Update tutorial.html --- _layouts/tutorial.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index c53351c..323bdaf 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -10,7 +10,7 @@ @@ -156,7 +156,7 @@ - Hover over me + Hover over me From 45ec1bd620e1a4a94883d87bc6d0d0cd973815ca Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 15:06:19 +1300 Subject: [PATCH 58/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 323bdaf..989aced 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -156,7 +156,7 @@ - Hover over me + Hover over me From 97086f5ac15b90de845fa125d5177a0b3a6d73c2 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 15:14:06 +1300 Subject: [PATCH 59/81] Update tutorial.html --- _layouts/tutorial.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 989aced..a151291 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -155,12 +155,10 @@ {%- endif %} - - Hover over me - - {%- if page == p %}{{ step_index }}{% endif %} + {%- if page == p %}{{ step_index }}{% endif %} {%- if should_assign_next %} From 5f591b305980c745a1451059d73e2619e8d00bcf Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 15:20:06 +1300 Subject: [PATCH 60/81] Update tutorial.html --- _layouts/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index a151291..c7eab57 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -157,7 +157,7 @@ - {%- if page == p %}{{ step_index }}{% endif %} From 724f05b03cce55abdb561b6920496e86809ca1c3 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 15:23:35 +1300 Subject: [PATCH 61/81] Update tutorial.html --- _layouts/tutorial.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index c7eab57..9373b20 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -10,7 +10,7 @@ @@ -157,8 +157,7 @@ - {%- if page == p %}{{ step_index }}{% endif %} + {%- if page == p %}{{ step_index }}{% endif %} {%- if should_assign_next %} From cf00574b5085e0f51002eb8b6fab25a2548aa3f5 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 15:27:00 +1300 Subject: [PATCH 62/81] Update tutorial.html --- _layouts/tutorial.html | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 9373b20..46d028f 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -79,45 +79,6 @@ content: "{{ site.data.localization.quiz.no[page.lang] }}"; } - -[tooltiptext] - position: absolute - z-index: 2 - -[tooltiptext]:before - visibility: hidden; - width: 120px; - background-color: #555; - color: #fff; - text-align: center; - border-radius: 6px; - padding: 5px 0; - position: absolute; - z-index: 1; - bottom: 125%; - left: 50%; - margin-left: -60px; - opacity: 0; - transition: opacity 0.3s; - - [tooltiptext]:after - content: ""; - position: absolute; - top: 100%; - left: 50%; - margin-left: -5px; - border-width: 5px; - border-style: solid; - border-color: #555 transparent transparent transparent; - - - [tooltiptext]:before,[tooltiptext]:after - visibility: hidden - opacity: 0 - pointer-events: none - - - From 4eb0c98abe686a6df38c838934dc29fa9db73c1c Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 27 Feb 2019 17:53:52 +1300 Subject: [PATCH 63/81] Update tutorial.html --- _layouts/tutorial.html | 41 ++--------------------------------------- 1 file changed, 2 insertions(+), 39 deletions(-) diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 46d028f..40cebbb 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -1,21 +1,6 @@ - - - - - - - - - - - @@ -42,52 +27,38 @@ .clicked .toggle-hint:before { content: "{{ site.data.localization.hint.shown[page.lang] }}"; } - .secret .toggle-hint:before { content: "{{ site.data.localization.hint.hidden[page.lang] }}"; } - .playfield.verbose .match.ok:after { content: "{{ site.data.localization.match.matched[page.lang] }}"; } - .playfield.verbose .match.fail:after { content: "{{ site.data.localization.match.shouldNotMatch[page.lang] }}"; } - .playfield.verbose .nomatch.ok:after { content: "{{ site.data.localization.match.shouldMatch[page.lang] }}"; } - .playfield.verbose .nomatch.fail:after { content: "{{ site.data.localization.match.noMatch[page.lang] }}"; } - .quiz .expression:before { content: "{{ site.data.localization.quiz.before[page.lang] }}"; } - .quiz .expression:after { content: "{{ site.data.localization.quiz.after[page.lang] }}"; } - .quiz .button-ok:before { content: "{{ site.data.localization.quiz.yes[page.lang] }}"; } - .quiz .button-fail:before { content: "{{ site.data.localization.quiz.no[page.lang] }}"; } - -
- - - {%- assign same_topic_started = false %} {%- assign should_assign_next = false %} {%- assign has_next_page = false %} @@ -110,18 +81,11 @@ {%- assign same_topic_started = true %} {%- endif %} {%- if p_topic != topic and same_topic_started == true %} -
{%- assign same_topic_started = false %} {%- endif %} - - - - - {%- if page == p %}{{ step_index }}{% endif %} - - - {%- if should_assign_next %} + {%- if page == p %}{{ step_index }}{% endif %} + {%- if should_assign_next %} {%- assign should_assign_next = false %} {%- assign has_next_page = true %} {%- assign next_page = p %} @@ -158,7 +122,6 @@

{{ page.title | escape }}

{%- endfor %}