mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 02:16:41 +02:00
Merge branch 'MDL-50812-master' of https://github.com/nashtechdev01/moodle
This commit is contained in:
commit
75ebfbdf99
6 changed files with 37 additions and 22 deletions
|
@ -1349,7 +1349,7 @@ body#page-lib-editor-tinymce-plugins-moodlemedia-preview {
|
|||
/* Fixed for safari browser on iPhone4S with ios7@mixin */
|
||||
|
||||
@media (max-height: 639px) {
|
||||
.ios.safari .choosercontainer #chooseform .submitbuttons {
|
||||
.ios .choosercontainer #chooseform .submitbuttons {
|
||||
padding: 45px 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1573,7 +1573,7 @@ body#page-lib-editor-tinymce-plugins-moodlemedia-preview {
|
|||
}
|
||||
/* Fixed for safari browser on iPhone4S with ios7.*/
|
||||
@media (max-height: 639px) {
|
||||
.ios.safari .choosercontainer #chooseform .submitbuttons {
|
||||
.ios .choosercontainer #chooseform .submitbuttons {
|
||||
padding: 45px 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3909,7 +3909,7 @@ body#page-lib-editor-tinymce-plugins-moodlemedia-preview {
|
|||
}
|
||||
/* Fixed for safari browser on iPhone4S with ios7.*/
|
||||
@media (max-height: 639px) {
|
||||
.ios.safari .choosercontainer #chooseform .submitbuttons {
|
||||
.ios .choosercontainer #chooseform .submitbuttons {
|
||||
padding: 45px 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,19 @@
|
|||
This files describes API changes in /theme/* themes,
|
||||
information provided here is intended especially for theme designer.
|
||||
|
||||
=== 3.6 ===
|
||||
|
||||
* The body tag has various browser-specific classes for those cases where some
|
||||
browser-sniffing is unavoidable. This used not to recognised Microsoft Edge,
|
||||
but now it does (class 'edge'). Also, both Safari and Chrome used to be
|
||||
class 'safari', but now there are separate classes 'safari' and 'chrome'.
|
||||
The body's class should change to match the browser:
|
||||
- Google Chrome (Mac & Window): The body class should change from safari to chrome.
|
||||
- Google Chrome (Android) : The body class should change from safari, android to chrome, android.
|
||||
- Microsoft Edge: The body class should change from safari to edge.
|
||||
- Mobile safari: The class ios should exist, safari class should be removed.
|
||||
* Remove class .safari styling from activity chooser dialog for theme boost and bootstrapbase.
|
||||
|
||||
=== 3.4 ===
|
||||
|
||||
* There was a mustache template login.mustache in /lib/templates/ rendering the login form
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue