From 7ef7c91a7adcecc57c8891aa7dde4b143ac7d61f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Tue, 28 May 2024 16:02:57 +0200 Subject: [PATCH 1/3] MOBILE-4470 wiki: Style wiki edit page like others --- src/addons/mod/wiki/pages/edit/edit.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/addons/mod/wiki/pages/edit/edit.html b/src/addons/mod/wiki/pages/edit/edit.html index 2687fdc96..cfe581693 100644 --- a/src/addons/mod/wiki/pages/edit/edit.html +++ b/src/addons/mod/wiki/pages/edit/edit.html @@ -20,12 +20,12 @@
- - {{ 'core.content' | translate }} + {{ 'core.content' | translate }} From 8576151d5686318ba02fc4cf6cfc943e382cae20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Tue, 28 May 2024 16:03:23 +0200 Subject: [PATCH 2/3] MOBILE-4470 modal: Use background on modal header buttons --- src/theme/components/ion-modal.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/theme/components/ion-modal.scss b/src/theme/components/ion-modal.scss index 5abc4a544..93edc24e7 100644 --- a/src/theme/components/ion-modal.scss +++ b/src/theme/components/ion-modal.scss @@ -1,4 +1,6 @@ ion-modal { + --core-header-buttons-background: var(--core-header-toolbar-background); + &.show-modal { @media only screen and (min-width: 768px) and (min-height: 600px) { --border-radius: var(--modal-radius); From ded78aedd126b6898952e7133e3734d326ebf8fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Tue, 28 May 2024 16:04:50 +0200 Subject: [PATCH 3/3] MOBILE-4470 quiz: Use flex-end instead of end that has better support --- src/addons/mod/quiz/components/index/index.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addons/mod/quiz/components/index/index.scss b/src/addons/mod/quiz/components/index/index.scss index 1bfbfd491..c7b27619a 100644 --- a/src/addons/mod/quiz/components/index/index.scss +++ b/src/addons/mod/quiz/components/index/index.scss @@ -31,7 +31,7 @@ .addon-mod_quiz-attempt-title-info { display: flex; flex-direction: column; - align-items: end; + align-items: flex-end; justify-content: center; min-height: 60px; padding-top: var(--mdl-spacing-2);