Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
fix(MON)Graphs streched in IE
Browse files Browse the repository at this point in the history
Css properties added to fix an issue with Internet Explorer 11, in Montoring->Perfomance, the second graph added was many times wider than the first one.

ref: MON-2052 #5081 #5683
  • Loading branch information
MatthieuMan committed Nov 15, 2017
1 parent 326df22 commit 2f38bea
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions www/Themes/Centreon-2/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2142,16 +2142,22 @@ textarea.default-textarea {

/* -- Views Performance page -- */
.graph-options {
display: flex;
justify-content: flex-end;
margin-bottom: 2px;
display: -webkit-flex;
display: flex;
-webkit-justify-content: flex-end;
justify-content: flex-end;
margin-bottom: 2px;
}

.graphZone {
margin-bottom: 40px;
display: -webkit-flex;
display: flex;
flex-direction: row;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: space-between;
justify-content: space-between;
}

Expand Down

0 comments on commit 2f38bea

Please sign in to comment.