diff --git a/Readme.md b/Readme.md index b5a1d61d..4a5ac905 100644 --- a/Readme.md +++ b/Readme.md @@ -244,6 +244,10 @@ can be really useful in visualising the issue along with any files you consider Version Information =================== +Version 2.9.1.3 + 1. Removed MyMobile theme support as theme has passed away. + 2. Fix CONTRIB-5817. + Version 2.9.1.2. 1. Fixed coding fault when restoring a course from backup file. diff --git a/styles.css b/styles.css index 34a3bae9..58c83672 100644 --- a/styles.css +++ b/styles.css @@ -560,11 +560,6 @@ body#page-admin-setting-formatsettingtopcoll.lang-en_ar select#id_s_format_topco background-position: 220px 45%; /* Pirate strings are longer. */ } -/* MyMobile */ -#mymobile .course-content ul.ctopics li.tcsection .content, #mymobile .course-content ul.ctopics li.section.main .content { - margin: 0; -} - /* Display instructions */ .topcoll-display-instructions { margin: 0px; @@ -604,6 +599,11 @@ body#page-admin-setting-formatsettingtopcoll.lang-en_ar select#id_s_format_topco .course-content ul.ctopics li.section .right a { display: block; /* So that section_right_content() does not implode with 'br's and get too many when the up arrow is removed by JS. */ } + +.course-content ul.ctopics li.section .right a img.hide{ + display: inline; /* CONTRIB-5817 - Align the eye icon. */ +} + .course-content ul.ctopics li.section .left .section-handle img.icon { padding: 0; vertical-align: baseline; @@ -700,10 +700,6 @@ body.format-topcoll.editing.jsenabled #region-main .moodle-actionmenu[data-enhan font-weight: bold; } -#mymobile .course-content ul.ctopics li.section .content .toggle a { - font-weight: normal; /* So not blurred on mobile devices. */ -} - .course-content ul.ctopics li.section .content .toggledsection { min-height: 30px; } diff --git a/version.php b/version.php index 94c5c5c7..20cada3b 100644 --- a/version.php +++ b/version.php @@ -34,8 +34,8 @@ */ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2015062202; +$plugin->version = 2015062203; $plugin->maturity = MATURITY_STABLE; $plugin->requires = 2015051100.00; // 2.9 (Build: 20150511). $plugin->component = 'format_topcoll'; -$plugin->release = '2.9.1.2'; +$plugin->release = '2.9.1.3';