diff --git a/AssemblyVersion.cs b/AssemblyVersion.cs index c6afe44..dd8fa9c 100644 --- a/AssemblyVersion.cs +++ b/AssemblyVersion.cs @@ -16,5 +16,5 @@ using System.Reflection; // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("3.0.1.442")] -[assembly: AssemblyFileVersion("3.0.1.442")] +[assembly: AssemblyVersion("3.0.1.443")] +[assembly: AssemblyFileVersion("3.0.1.443")] diff --git a/WebApplication/Themes/Default-v2/Screen_Styles.css b/WebApplication/Themes/Default-v2/Screen_Styles.css index 855551e..fb119df 100644 --- a/WebApplication/Themes/Default-v2/Screen_Styles.css +++ b/WebApplication/Themes/Default-v2/Screen_Styles.css @@ -222,6 +222,12 @@ pre { border: solid 1px #DDDDDD; overflow: auto; } +html>body pre { + /* Fix for IE7 - unwanted horizontal scrollbar */ + overflow-x: auto; + overflow-y: hidden; + padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 19 : 8); +} table, div { padding: 0px; diff --git a/WebApplication/Themes/Default/Screen_Styles.css b/WebApplication/Themes/Default/Screen_Styles.css index e91be98..aa072d2 100644 --- a/WebApplication/Themes/Default/Screen_Styles.css +++ b/WebApplication/Themes/Default/Screen_Styles.css @@ -244,6 +244,12 @@ pre { border: solid 1px #DDDDDD; overflow: auto; } +html>body pre { + /* Fix for IE7 - unwanted horizontal scrollbar */ + overflow-x: auto; + overflow-y: hidden; + padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 19 : 8); +} table, div { padding: 0px; diff --git a/WebApplication/Themes/Elegant/Screen_Styles.css b/WebApplication/Themes/Elegant/Screen_Styles.css index 42afd76..34e56f2 100644 --- a/WebApplication/Themes/Elegant/Screen_Styles.css +++ b/WebApplication/Themes/Elegant/Screen_Styles.css @@ -224,6 +224,12 @@ pre { border: solid 1px #DDDDDD; overflow: auto; } +html>body pre { + /* Fix for IE7 - unwanted horizontal scrollbar */ + overflow-x: auto; + overflow-y: hidden; + padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 19 : 8); +} table, div { padding: 0px;