diff --git a/src/dede/css/base.css b/src/dede/css/base.css index 247fec98..560cb993 100755 --- a/src/dede/css/base.css +++ b/src/dede/css/base.css @@ -37,40 +37,40 @@ li,dd { select { height: calc(1.5em + .75rem + 2px); padding: .375rem .75rem; -font-size: 1rem; -font-weight: 400; -color: #495057; -background-color: #fff; -background-clip: padding-box; -border: 1px solid #ced4da; -border-radius: .25rem; -transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; + font-size: 1rem; + font-weight: 400; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: .25rem; + transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; } input[type="button"],input[type="submit"],input[type="reset"] { -border: none; -border-right: 1px solid #ACACAC; -border-bottom: 1px solid #ACACAC; -background-color: #F1F8B4; -padding: 2px; -padding-right: 5px; -padding-left: 5px; -cursor: pointer; + border: none; + border-right: 1px solid #ACACAC; + border-bottom: 1px solid #ACACAC; + background-color: #F1F8B4; + padding: 2px; + padding-right: 5px; + padding-left: 5px; + cursor: pointer; } input[type="text"],input[type="password"] { -font-size: 1rem; -font-weight: 400; -color: #495057; -background-color: #fff; -background-clip: padding-box; -border: 1px solid #ced4da; -border-radius: .25rem; -height: calc(1.5em + .75rem + 2px); -padding: .375rem .75rem; -transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; -line-height: 18px; -vertical-align: middle; + font-size: 1rem; + font-weight: 400; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: .25rem; + height: calc(1.5em + .75rem + 2px); + padding: .375rem .75rem; + transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; + line-height: 18px; + vertical-align: middle; } input[type="text"]:focus,input[type="password"]:focus { diff --git a/src/include/helpers/channelunit.helper.php b/src/include/helpers/channelunit.helper.php index 0c08a887..f0c130a6 100755 --- a/src/include/helpers/channelunit.helper.php +++ b/src/include/helpers/channelunit.helper.php @@ -392,7 +392,7 @@ function GetSonIds($id,$channel=0,$addthis=true) { global $cfg_Cs; $GLOBALS['idArray'] = array(); - if( !is_array($cfg_Cs) ) + if( !is_array($cfg_Cs) && file_exists(DEDEDATA."/cache/inc_catalog_base.inc") ) { require_once(DEDEDATA."/cache/inc_catalog_base.inc"); } diff --git a/src/install/images/top-logo.png b/src/install/images/top-logo.png old mode 100755 new mode 100644 index 3d7b5f9a..26182bab Binary files a/src/install/images/top-logo.png and b/src/install/images/top-logo.png differ diff --git a/src/install/style.css b/src/install/style.css index 66a30868..cd973649 100755 --- a/src/install/style.css +++ b/src/install/style.css @@ -3,6 +3,7 @@ *{ padding:0px; margin:0px; + font-size: 13px; } body{ font-family:Verdana, Arial, Helvetica, sans-serif; @@ -23,6 +24,44 @@ a:hover{ input,button,select{ vertical-align:middle; } + +select { + height: calc(1.5em + .75rem + 2px); + padding: .375rem .75rem; + font-weight: 400; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: .25rem; + transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; +} + +input[type="button"],input[type="submit"],input[type="reset"] { + border: none; + border-right: 1px solid #ACACAC; + border-bottom: 1px solid #ACACAC; + background-color: #F1F8B4; + padding: 2px; + padding-right: 5px; + padding-left: 5px; + cursor: pointer; +} + +input[type="text"],input[type="password"] { + font-size: 1rem; + font-weight: 400; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: .25rem; + height: calc(1.5em + .75rem + 2px); + padding: .375rem .75rem; + transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; + line-height: 18px; + vertical-align: middle; +} .fc-690{ color:#690; } @@ -49,7 +88,7 @@ input,button,select{ line-height:1000%; } .top .top-link{ - height:15px; + height:25px; padding:12px 12px 0px 0px; overflow:hidden; } @@ -73,11 +112,11 @@ input,button,select{ .top .top-version{ height:40px; float:right; - padding:7px 12px 0px 0px; + padding:13px 13px 0px 0px; } .top .top-version h2{ - color:#E8F5E3; - font-size:26px; + color:#c0d4b8; + font-size:22px; font-style:italic; cursor:default; } @@ -233,36 +272,6 @@ input,button,select{ overflow:hidden; clear:both; } -.over-link a{ - line-height:14px; - padding:6px 20px; - border-style:solid; - border-width:1px; - border-color:#EEE #CCC #CCC #EEE; - background:#FAFAFA; - color:#333; - display:block; - float:left; - margin-right:20px; - text-decoration:none; -} - -.olink a{ - line-height:14px; - padding:2px 20px; - border-style:solid; - border-width:1px; - border-color:#EEE #CCC #CCC #EEE; - background:#EAF4DD; - color:#333; - display:block; - margin-left:8px; - float:left; - width:55px; - margin-right:20px; - text-decoration:none; -} - .waitpage { top:0; left:0; diff --git a/src/install/templates/step-1.html b/src/install/templates/step-1.html index 9f71f150..6eb03f52 100755 --- a/src/install/templates/step-1.html +++ b/src/install/templates/step-1.html @@ -3,7 +3,13 @@