Skip to content

Commit 92268a9

Browse files
committed
fix css
1 parent a833631 commit 92268a9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

main/announcements/announcements.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@
292292
if (empty($count)) {
293293
$html = '';
294294
if ($allowToEdit && (empty($_GET['origin']) || $_GET['origin'] !== 'learnpath')) {
295-
$html .= '<div id="no-data-view">';
295+
$html .= '<div id="no-data-view" class="tool-view">';
296296
$html .= '<h3>'.get_lang('Announcements').'</h3>';
297297
$html .= Display::return_icon('valves.png', '', [], 64);
298298
$html .= '<div class="controls">';

main/inc/lib/sortable_table.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function __construct(
132132
$table_id = $table_name.uniqid();
133133
}
134134
if (isset($parameters) && empty($parameters)) {
135-
$parameters = ['class' => 'table table-bordered data_table', 'id' => $table_id];
135+
$parameters = ['class' => 'table data_table', 'id' => $table_id];
136136
}
137137

138138
$this->table_id = $table_id;

src/ThemeBundle/Resources/views/LearnPath/list.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@
526526
{% endif %}
527527

528528
{% if is_allowed_to_edit and not lp_is_shown %}
529-
<div id="no-data-view">
529+
<div id="no-data-view" class="tool-view">
530530
<h2>{{ "LearningPaths"|get_lang }}</h2>
531531
<img src="{{ "scorms.png"|icon(64) }}" width="64" height="64">
532532
<div class="controls">

0 commit comments

Comments
 (0)