Changeset 3775:6c367dee2de0
- Timestamp:
- 07/12/18 14:07:20 (7 years ago)
- Branch:
- default
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default-dark.css
r3774 r3775 3227 3227 3228 3228 #wrapper { 3229 background: #272b30; } } 3229 background: #272b30; } 3230 3231 .modules th.module-desc, 3232 .modules td.module-desc { 3233 display: none; } } 3230 3234 @media screen and (max-width: 44em) { 3231 3235 #help-button { -
admin/style/default.css
r3774 r3775 3227 3227 3228 3228 #wrapper { 3229 background: #fff; } } 3229 background: #fff; } 3230 3231 .modules th.module-desc, 3232 .modules td.module-desc { 3233 display: none; } } 3230 3234 @media screen and (max-width: 44em) { 3231 3235 #help-button { -
admin/style/scss/partials/_mediaqueries.scss
r3764 r3775 17 17 #wrapper { 18 18 background: $wrapper-background; 19 } 20 .modules { 21 th.module-desc, 22 td.module-desc { 23 display: none; // Module description is also in title of the raw 24 } 19 25 } 20 26 } -
inc/admin/lib.moduleslist.php
r3762 r3775 564 564 if (in_array('desc', $cols)) { 565 565 echo 566 '<th class="nowrap " scope="col">' . __('Details') . '</th>';566 '<th class="nowrap module-desc" scope="col">' . __('Details') . '</th>'; 567 567 } 568 568 … … 601 601 602 602 echo 603 '<tr class="line" id="' . html::escapeHTML($this->list_id) . '_m_' . html::escapeHTML($id) . '">'; 603 '<tr class="line" id="' . html::escapeHTML($this->list_id) . '_m_' . html::escapeHTML($id) . '"' . 604 (in_array('desc', $cols) ? ' title="' . html::escapeHTML(__($module['desc'])) . '" ' : '') . 605 '>'; 604 606 605 607 $tds = 0;
Note: See TracChangeset
for help on using the changeset viewer.