From d0619c1f0f97253770b53d3e749855ab912c4f75 Mon Sep 17 00:00:00 2001 From: Paul Clarke Date: Fri, 28 Oct 2016 11:42:29 +1300 Subject: [PATCH] Fix for double scroll in history area --- client/dist/styles/bundle.css | 4 ++++ client/src/styles/legacy/_CMSMain.scss | 2 ++ 2 files changed, 6 insertions(+) diff --git a/client/dist/styles/bundle.css b/client/dist/styles/bundle.css index 5bb2843d..785b3783 100644 --- a/client/dist/styles/bundle.css +++ b/client/dist/styles/bundle.css @@ -10,6 +10,10 @@ cursor:pointer; } +.CMSPageHistoryController{ + overflow:hidden; +} + .CMSPageHistoryController ins{ background-color:#dfd; padding:2px; diff --git a/client/src/styles/legacy/_CMSMain.scss b/client/src/styles/legacy/_CMSMain.scss index 0ab39fce..aa8998d7 100644 --- a/client/src/styles/legacy/_CMSMain.scss +++ b/client/src/styles/legacy/_CMSMain.scss @@ -31,6 +31,8 @@ } .CMSPageHistoryController { + overflow: hidden; // Fixes weird bug for double scroll in history area on browser resize + ins { background-color: #DFD; padding: 2px;