diff --git a/html/admin/sql/patch/upgrade119.sql b/html/admin/sql/patch/upgrade119.sql
new file mode 100644
index 000000000..07476ba37
--- /dev/null
+++ b/html/admin/sql/patch/upgrade119.sql
@@ -0,0 +1,5 @@
+begin;
+update menu_ref set me_file = null where me_code='EXT';
+update version set val=120;
+
+commit;
\ No newline at end of file
diff --git a/html/style-classic.css b/html/style-classic.css
index 24f756f41..f52b4a709 100644
--- a/html/style-classic.css
+++ b/html/style-classic.css
@@ -287,9 +287,9 @@ td.mtitle {
text-align:center;
width:250px;
height :30px;
- border-radius:10px;
- -moz-border-radius: 10px;
- -webkit-border-radius: 10px;
+ border-radius:10px;
+ -moz-border-radius: 10px;
+ -webkit-border-radius: 10px;
background: -moz-linear-gradient(top, rgba(53,106,160,0.79) 0%, rgba(53,106,160,0.79) 19%, rgba(53,106,160,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(53,106,160,0.79)), color-stop(19%,rgba(53,106,160,0.79)), color-stop(100%,rgba(53,106,160,1))); /* Chrome,Safari4+ */
@@ -299,9 +299,17 @@ background: -ms-linear-gradient(top, rgba(53,106,160,0.79) 0%,rgba(53,106,160,0.
background: linear-gradient(to bottom, rgba(53,106,160,0.79) 0%,rgba(53,106,160,0.79) 19%,rgba(53,106,160,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9356aa0', endColorstr='#356aa0',GradientType=0 ); /* IE6-9 */
}
+@media only screen and (max-width:955px) {
+ td.mtitle {
+ border-radius:0px;
+ -moz-border-radius: 0px;
+ -webkit-border-radius: 0px;
+ }
+}
td.mtitle a.mtitle {
color : white;
}
+
td.msubtitle {
text-align:center;
height:20px;
@@ -367,6 +375,13 @@ td.selectedcell{
background: linear-gradient(to bottom, #b8c6df 0%,#6d88b7 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8c6df', endColorstr='#6d88b7',GradientType=0 ); /* IE6-9 */
}
+@media only screen and (max-width:955px) {
+ td.selectedcell {
+ border-radius:0px;
+ -moz-border-radius: 0px;
+ -webkit-border-radius: 0px;
+ }
+}
a.mtitle {
text-decoration:none;
display:inline;
diff --git a/include/constant.php b/include/constant.php
index 2b8eaad85..b99ad6782 100644
--- a/include/constant.php
+++ b/include/constant.php
@@ -101,7 +101,7 @@ if ( !defined("SITE_UPDATE_PLUGIN"))
define ("SITE_UPDATE_PLUGIN",'http://www.noalyss.eu/plugin_last_version.txt');
-define ("DBVERSION",119);
+define ("DBVERSION",120);
define ("MONO_DATABASE",25);
define ("DBVERSIONREPO",16);
define ('NOTFOUND','--not found--');