Skip to content

Commit 36fa6ee

Browse files
Merge pull request #4306 from IgorA100/patch-680597
Fix: Broken style on Timeline page
2 parents decd502 + f677faa commit 36fa6ee

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

web/skins/classic/css/base/views/timeline.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
position: relative;
3939
min-height: 220px;
4040
margin: 4px auto 6px;
41+
display: block;
42+
width: 100%;
4143
}
4244
#topPanel:after {
4345
content: ".";
@@ -108,9 +110,11 @@
108110
}
109111

110112
#chartPanel {
111-
clear: both;
113+
clear: both;
112114
position: relative;
113115
margin: 0 auto;
116+
display: block;
117+
width: 100%;
114118
}
115119

116120
#chartPanel #chart {
@@ -154,6 +158,8 @@
154158
#chartLabels {
155159
margin: 25px auto 0;
156160
text-align: center;
161+
display: block;
162+
width: 100%;
157163
}
158164

159165
#range {

web/skins/classic/views/timeline.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ function drawYGrid( $chart, $scale, $labelClass, $tickClass, $gridClass ) {
676676
getBodyTopHTML();
677677
echo getNavBarHTML();
678678
?>
679-
<div id="page p-0">
679+
<div id="page" class="p-0">
680680
<div class="d-flex p-1">
681681
<div class="mr-auto" id="toolbar" >
682682
<button id="backBtn" class="btn btn-normal" data-toggle="tooltip" data-placement="top" title="<?php echo translate('Back') ?>" disabled><i class="fa fa-arrow-left"></i></button>

0 commit comments

Comments
 (0)