Changeset 3762:e5c18a9ead6a
- Timestamp:
- 06/17/18 08:50:16 (7 years ago)
- Branch:
- default
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/_plugins.js
r3706 r3762 5 5 // expand a module line 6 6 $('table.modules.expandable tr.line').each(function() { 7 $('td.module-name ', this).toggleWithLegend($(this).next('.module-more'), {7 $('td.module-name, th.module-name', this).toggleWithLegend($(this).next('.module-more'), { 8 8 img_on_src: dotclear.img_plus_src, 9 9 img_on_alt: dotclear.img_plus_alt, -
admin/style/default.css
r3731 r3762 885 885 margin-bottom: .5em; } 886 886 887 th {887 th:not(.module-name) { 888 888 border-width: 1px 0 1px 0; 889 889 border-style: solid; … … 894 894 text-align: left; } 895 895 896 td { 896 td, th.module-name { 897 font-weight: normal; 897 898 border-width: 0 0 1px 0; 898 899 border-style: solid; -
admin/style/scss/partials/_markup.scss
r3517 r3762 105 105 } 106 106 107 th {107 th:not(.module-name) { 108 108 border-width: 1px 0 1px 0; 109 109 border-style: solid; … … 115 115 } 116 116 117 td { 117 td, th.module-name { 118 font-weight: normal; 118 119 border-width: 0 0 1px 0; 119 120 border-style: solid; -
inc/admin/lib.moduleslist.php
r3731 r3762 625 625 $tds++; 626 626 echo 627 '<t dclass="module-name nowrap" scope="row">';627 '<th class="module-name nowrap" scope="row">'; 628 628 if (in_array('checkbox', $cols)) { 629 629 if (in_array('expander', $cols)) {
Note: See TracChangeset
for help on using the changeset viewer.