From a9349370fc52d34a366b026332a2fcde67ad2370 Mon Sep 17 00:00:00 2001 From: xushubieli Date: Thu, 20 Jan 2022 15:25:54 +0800 Subject: [PATCH 01/15] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=E7=9B=AE=E5=BD=95=E5=92=8C=E5=AF=B9=E8=AF=9D?= =?UTF-8?q?=E6=A1=86=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dede/config.php | 83 +++++++++++-------------------- src/dede/css/base.css | 2 +- src/static/img/base.css | 32 +----------- src/templets/plus/win_templet.htm | 12 ++--- 4 files changed, 36 insertions(+), 93 deletions(-) diff --git a/src/dede/config.php b/src/dede/config.php index f2ea56b0..8e0e0b57 100755 --- a/src/dede/config.php +++ b/src/dede/config.php @@ -1,5 +1,4 @@ safeCheck = FALSE; $dsql->SetLongLink(); -$cfg_admin_skin = 1; // 后台管理风格 - -if (file_exists(DEDEDATA.'/admin/skin.txt')) { - $skin = file_get_contents(DEDEDATA.'/admin/skin.txt'); +$cfg_admin_skin = 1;//后台管理风格 +if (file_exists(DEDEDATA . '/admin/skin.txt')) { + $skin = file_get_contents(DEDEDATA . '/admin/skin.txt'); $cfg_admin_skin = !in_array($skin, array(1, 2, 3, 4)) ? 1 : $skin; } - -// 检查CSRF +//检查CSRF function CheckCSRF() { $cc_csrf_token_check = GetCookie("dede_csrf_token"); - if ( - !(isset($_POST['_csrf_token'], $cc_csrf_token_check) - && is_string($_POST['_csrf_token']) && is_string($cc_csrf_token_check) - && hash_equals($_POST['_csrf_token'], $cc_csrf_token_check)) - ) { - ShowMsg('CSRF校验失败,请刷新页面重新提交', '-1'); - exit(); - } - DropCookie("dede_csrf_token"); } - -// 生成CSRF校验token,在比较重要的表单中应该要加上这个token校验 +//生成CSRF校验token,在比较重要的表单中应该要加上这个token校验 $cc_csrf_token = GetCookie("dede_csrf_token"); if (!isset($GLOBALS['csrf_token']) || $GLOBALS['csrf_token'] === null) { if ( @@ -50,32 +37,26 @@ if (!isset($GLOBALS['csrf_token']) || $GLOBALS['csrf_token'] === null) { $GLOBALS['csrf_token'] = md5(uniqid(mt_rand(), TRUE)); } } - if (strtoupper($_SERVER['REQUEST_METHOD']) !== 'POST') { PutCookie('dede_csrf_token', $GLOBALS['csrf_token'], 7200, '/'); } - - //获得当前脚本名称,如果你的系统被禁用了$_SERVER变量,请自行更改这个选项 $dedeNowurl = $s_scriptName = ''; $isUrlOpen = @ini_get('allow_url_fopen'); $dedeNowurl = GetCurUrl(); $dedeNowurls = explode('?', $dedeNowurl); $s_scriptName = $dedeNowurls[0]; - //检验用户登录状态 $cuserLogin = new userLogin(); - if ($cuserLogin->getUserID() == -1) { if (preg_match("#PHP (.*) Development Server#", $_SERVER['SERVER_SOFTWARE'])) { $dirname = dirname($_SERVER['SCRIPT_NAME']); - header("location:{$dirname}/login.php?gotopage=".urlencode($dedeNowurl)); + header("location:{$dirname}/login.php?gotopage=" . urlencode($dedeNowurl)); } else { - header("location:login.php?gotopage=".urlencode($dedeNowurl)); + header("location:login.php?gotopage=" . urlencode($dedeNowurl)); } exit(); } - function XSSClean($val) { if (is_array($val)) { @@ -87,7 +68,6 @@ function XSSClean($val) } return RemoveXss($val); } - if ($cfg_dede_log == 'Y') { $s_nologfile = '_main|_list'; $s_needlogfile = 'sys_|file_'; @@ -96,22 +76,19 @@ if ($cfg_dede_log == 'Y') { $s_scriptNames = explode('/', $s_scriptName); $s_scriptNames = $s_scriptNames[count($s_scriptNames) - 1]; $s_userip = GetIP(); - if ($s_method == 'POST' || (!preg_match("#".$s_nologfile."#i", $s_scriptNames) && $s_query != '') || preg_match("#".$s_needlogfile."#i", $s_scriptNames)) { + if ($s_method == 'POST' || (!preg_match("#" . $s_nologfile . "#i", $s_scriptNames) && $s_query != '') || preg_match("#" . $s_needlogfile . "#i", $s_scriptNames)) { $inquery = "INSERT INTO `#@__log`(adminid,filename,method,query,cip,dtime) - VALUES ('".$cuserLogin->getUserID()."','{$s_scriptNames}','{$s_method}','".addslashes($s_query)."','{$s_userip}','".time()."');"; + VALUES ('" . $cuserLogin->getUserID() . "','{$s_scriptNames}','{$s_method}','" . addslashes($s_query) . "','{$s_userip}','" . time() . "');"; $dsql->ExecuteNoneQuery($inquery); } } - -//管理缓存、管理员频道缓存 -$cache1 = DEDEDATA.'/cache/inc_catalog_base.inc'; +//管理缓存管理员频道缓存 +$cache1 = DEDEDATA . '/cache/inc_catalog_base.inc'; if (!file_exists($cache1)) UpDateCatCache(); -$cacheFile = DEDEDATA.'/cache/admincat_'.$cuserLogin->userID.'.inc'; +$cacheFile = DEDEDATA . '/cache/admincat_' . $cuserLogin->userID . '.inc'; if (file_exists($cacheFile)) require_once($cacheFile); - //更新服务器 -require_once(DEDEDATA.'/admin/config_update.php'); - +require_once(DEDEDATA . '/admin/config_update.php'); if (strlen($cfg_cookie_encode) <= 10) { $chars = 'abcdefghigklmnopqrstuvwxwyABCDEFGHIGKLMNOPQRSTUVWXWY0123456789'; $hash = ''; @@ -121,28 +98,27 @@ if (strlen($cfg_cookie_encode) <= 10) { $hash .= $chars[mt_rand(0, $max)]; } $dsql->ExecuteNoneQuery("UPDATE `#@__sysconfig` SET `value`='{$hash}' WHERE varname='cfg_cookie_encode' "); - $configfile = DEDEDATA.'/config.cache.inc.php'; + $configfile = DEDEDATA . '/config.cache.inc.php'; if (!is_writeable($configfile)) { echo "配置文件'{$configfile}'不支持写入,无法修改系统配置参数!"; exit(); } $fp = fopen($configfile, 'w'); flock($fp, 3); - fwrite($fp, "<"."?php\r\n"); + fwrite($fp, "<" . "?php\r\n"); $dsql->SetQuery("SELECT `varname`,`type`,`value`,`groupid` FROM `#@__sysconfig` ORDER BY aid ASC "); $dsql->Execute(); while ($row = $dsql->GetArray()) { if ($row['type'] == 'number') { if ($row['value'] == '') $row['value'] = 0; - fwrite($fp, "\${$row['varname']} = ".$row['value'].";\r\n"); + fwrite($fp, "\${$row['varname']} = " . $row['value'] . ";\r\n"); } else { - fwrite($fp, "\${$row['varname']} = '".str_replace("'", '', $row['value'])."';\r\n"); + fwrite($fp, "\${$row['varname']} = '" . str_replace("'", '', $row['value']) . "';\r\n"); } } - fwrite($fp, "?".">"); + fwrite($fp, "?" . ">"); fclose($fp); } - /** * 更新栏目缓存 * @@ -152,8 +128,8 @@ if (strlen($cfg_cookie_encode) <= 10) { function UpDateCatCache() { global $dsql, $cache1, $cuserLogin; - $cache2 = DEDEDATA.'/cache/channelsonlist.inc'; - $cache3 = DEDEDATA.'/cache/channeltoplist.inc'; + $cache2 = DEDEDATA . '/cache/channelsonlist.inc'; + $cache3 = DEDEDATA . '/cache/channeltoplist.inc'; $dsql->SetQuery("SELECT id,reid,channeltype,issend,typename FROM `#@__arctype`"); $dsql->Execute(); $fp1 = fopen($cache1, 'w'); @@ -161,7 +137,7 @@ function UpDateCatCache() $fp1Header = "<{$phph}php\r\nglobal \$cfg_Cs;\r\n\$cfg_Cs=array();\r\n"; fwrite($fp1, $fp1Header); while ($row = $dsql->GetObject()) { - // 将typename缓存起来 + //将typename缓存起来 $row->typename = base64_encode($row->typename); fwrite($fp1, "\$cfg_Cs[{$row->id}]=array({$row->reid},{$row->channeltype},{$row->issend},'{$row->typename}');\r\n"); } @@ -171,12 +147,11 @@ function UpDateCatCache() @unlink($cache2); @unlink($cache3); } - -// 清空选项缓存 +//清空选项缓存 function ClearOptCache() { - $tplCache = DEDEDATA.'/tplcache/'; - $fileArray = glob($tplCache."inc_option_*.inc"); + $tplCache = DEDEDATA . '/tplcache/'; + $fileArray = glob($tplCache . "inc_option_*.inc"); if (count($fileArray) > 1) { foreach ($fileArray as $key => $value) { if (file_exists($value)) unlink($value); @@ -186,7 +161,6 @@ function ClearOptCache() } return FALSE; } - /** * 引入模板文件 * @@ -197,9 +171,8 @@ function ClearOptCache() */ function DedeInclude($filename, $isabs = FALSE) { - return $isabs ? $filename : DEDEADMIN.'/'.$filename; + return $isabs ? $filename : DEDEADMIN . '/' . $filename; } - /** * 根据用户mid获取用户名称 * @@ -217,4 +190,4 @@ if (!function_exists('GetMemberName')) { $rs = $dsql->GetOne("SELECT * FROM `#@__member` WHERE mid='{$mid}' "); return $rs['uname']; } -} +} \ No newline at end of file diff --git a/src/dede/css/base.css b/src/dede/css/base.css index d9b29815..823300e7 100644 --- a/src/dede/css/base.css +++ b/src/dede/css/base.css @@ -1,2 +1,2 @@ /* 2022 base.css Xushubieli Provide */ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;color:#495057;background:#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]{padding:.25rem .5rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);font-size:1rem;font-weight:400;color:#495057;background:#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;line-height:18px;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{border-color:#28a745;color:#424b51;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.25rem .5rem;line-height:18px;vertical-align:middle;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070}textarea{padding:.25rem .5rem;font-size:1rem;font-weight:400;color:#495057;background:#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;vertical-align:middle;line-height:16px;overflow:auto;resize:vertical}textarea:focus{border-color:#28a745;color:#424b51;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.pubinputs{padding:.25rem .5rem;width:250px;height:16px;line-height:16px;border-width:1px;border-style:solid;border-color:#999 #dddddd #dddddd #999}.iptxt{padding:.25rem .5rem;height:14px;line-height:14px;border-width:1px;border-style:solid;border-color:#999 #dddddd #dddddd #999}.pubinput{padding-top:6px;padding-bottom:0;height:24px;width:250px}.pubinputl{padding-top:6px;padding-bottom:0;height:24px;width:350px}.np{border:none}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.25rem .5rem;border:none;border-bottom:1px solid #ccc;background:#f2f2f2;border-radius:.2rem;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC;background:url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px overflow-y:auto;background:#FCFEF1;overflow:auto}.dlg{padding:.25rem .5rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.25rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;width:100%;height:120%;top:0;left:0;background:#cdcdcd;filter:Alpha(opacity=50);-moz-opacity:.5;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.25rem .5rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.25rem .5rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;filter:Alpha(opacity=70);-moz-opacity:.7;background:url(../../images/loading1.gif)#ababab center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.25rem .5rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:24px;font-size:12px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{float:left;font-size:12px;padding:0;height:18px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;filter:alpha(opacity=00);-moz-opacity:.0;opacity:.0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img,input[type=checkbox],input[type=radio]{vertical-align:text-bottom} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{padding:.375rem .75rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.25rem .5rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input,input[type=text],input[type=password]{padding:.375rem .75rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.25rem .5rem;line-height:18px;vertical-align:middle;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070}textarea{padding:.25rem .5rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;overflow:auto}textarea:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.pubinputs{padding:.25rem .5rem;width:250px;height:16px;line-height:16px;border-width:1px;border-style:solid;border-color:#999 #dddddd #dddddd #999}.iptxt{padding:.25rem .5rem;height:14px;line-height:14px;border-width:1px;border-style:solid;border-color:#999 #dddddd #dddddd #999}.pubinput{padding-top:6px;padding-bottom:0;height:24px;width:250px}.pubinputl{padding-top:6px;padding-bottom:0;height:24px;width:350px}.np{border:none}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.25rem .5rem;border:none;border-bottom:1px solid #ccc;background:#f2f2f2;border-radius:.2rem;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC;background:url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px overflow-y:auto;background:#FCFEF1;overflow:auto}.dlg{padding:.25rem .5rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;width:100%;height:120%;top:0;left:0;background:#cdcdcd;filter:Alpha(opacity=50);-moz-opacity:.5;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.25rem .5rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.25rem .5rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;filter:Alpha(opacity=70);-moz-opacity:.7;background:url(../../images/loading1.gif)#ababab center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.25rem .5rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:24px;font-size:12px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{float:left;font-size:12px;padding:0;height:18px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;filter:alpha(opacity=00);-moz-opacity:.0;opacity:.0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img,input[type=checkbox],input[type=radio]{vertical-align:text-bottom} \ No newline at end of file diff --git a/src/static/img/base.css b/src/static/img/base.css index 7acca60b..81382337 100755 --- a/src/static/img/base.css +++ b/src/static/img/base.css @@ -1,31 +1 @@ -* {font-size: 12px;line-height: 1.5;} -body {font-size: 12px;line-height: 1.5;} -select,textarea{vertical-align:middle;} -a:link { font-size: 12px; color: #000000; } -a:visited{ font-size: 12px; color: #000000;} -a:hover {font-size: 12px;color: red} -div,form,h1,h2,h3,h4,h5,h6{ margin: 0; padding:0;} -.m1{border-left: 1px solid #DFDFDB; border-top: 1px solid #DFDFDB; border-bottom: 1px solid #808080} -.m2{border-left: 1px solid #DFDFDB; border-bottom: 1px solid #808080; border-top: 1px solid #DFDFDB;border-right: 1px solid #DFDFDB;} -.m3{border-left: 1px solid #DFDFDB; border-top: 1px solid #DFDFDB;border-right: 1px solid #DFDFDB;} -.article{FONT-SIZE: 10pt; LINE-HEIGHT: 160%;table-layout:fixed;word-break:break-all} -.bn{color:#FFFFFF;font-size:0.1pt;line-height:50%} -.contents{font-size:1pt;color:#F7F6F8} -.nb{border: 1px solid #000000;height:18px} -.coolbg {border-right: 2px solid #ACACAC; border-bottom: 2px solid #ACACAC; background-color: #E6E6E6} -.ctfield{ padding: 3px; line-height: 150%} -.nndiv{ width: 175px; height:20px; margin: 0px;padding: 0px;word-break: break-all;overflow: hidden; } -.alltxt { - border-width:1px; - border-style:solid; - border-color:#707070 #CECECE #CECECE #707070; - padding:2px 4px; - line-height:18px; - vertical-align:middle; -} -.maintable { - width: 98%!important; -} -a.btn { - color: white!important; -} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}li,dd{margin:0;padding:0;list-style-type:none}select{padding:.375rem .75rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}textarea{padding:.25rem .5rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;overflow:auto}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#FFFFFF;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file diff --git a/src/templets/plus/win_templet.htm b/src/templets/plus/win_templet.htm index f6f58b4e..abcfbfec 100755 --- a/src/templets/plus/win_templet.htm +++ b/src/templets/plus/win_templet.htm @@ -1,12 +1,12 @@ - - {dede:wintitle/} - - - - + +{dede:wintitle/} + + + + From 97034f788aa3d612cf3874f44082ae430762961c Mon Sep 17 00:00:00 2001 From: xushubieli Date: Mon, 24 Jan 2022 10:17:32 +0800 Subject: [PATCH 02/15] Update archives_do.php --- src/dede/archives_do.php | 66 +++++++++++++++------------------------- 1 file changed, 24 insertions(+), 42 deletions(-) diff --git a/src/dede/archives_do.php b/src/dede/archives_do.php index ca8b26c4..7b6d1de2 100755 --- a/src/dede/archives_do.php +++ b/src/dede/archives_do.php @@ -284,7 +284,7 @@ else if ($dopost == "delArchives") { $win->AddHidden("dopost", $dopost); $win->AddHidden("qstr", $qstr); $win->AddHidden("aid", $aid); - $win->AddTitle("你确实要删除“ $qstr 和 $aid ”这些文档?"); + $win->AddTitle("你确实要删除 $qstr 和 $aid 这些文档?"); $winform = $win->GetWindow("ok"); $win->Display(); } @@ -308,8 +308,8 @@ else if ($dopost == 'moveArchives') { //输出AJAX可移动窗体 $divname = 'moveArchives'; echo "
"; - echo "
移动文档
"; - echo "
"; + echo "
移动文档
"; + echo "
"; echo "
"; echo "
"; echo ""; @@ -318,23 +318,19 @@ else if ($dopost == 'moveArchives') { ?>
- + + +
 目标栏目: - -
 文档ID: -
- 移动到的目标栏目必须和选定的文档频道类型一致,否则程序会自动勿略不符合的文档。 + +
移动到的目标栏目必须和选定的文档频道类型一致,否则程序会自动勿略不符合的文档。
- -    - -
@@ -457,7 +453,7 @@ else if ($dopost == 'clear') { $win->AddHidden("qstr", $qstr); $win->AddHidden("aid", $aid); $win->AddHidden("recycle", $recycle); - $win->AddTitle("本次操作将清空回收站所有共 $num 篇文档
你确实要永久删除“ $qstr ”这些文档?"); + $win->AddTitle("本次操作将清空回收站所有共 $num 篇文档
你确实要永久删除 $qstr 这些文档?"); $winform = $win->GetWindow("ok"); $win->Display(); } @@ -498,7 +494,7 @@ else if ($dopost == 'del') { $win->AddHidden("qstr", $qstr); $win->AddHidden("aid", $aid); $win->AddHidden("recycle", $recycle); - $win->AddTitle("你确实要永久删除“ $qstr 和 $aid ”这些文档?"); + $win->AddTitle("你确实要永久删除 $qstr 和 $aid 这些文档?"); $winform = $win->GetWindow("ok"); $win->Display(); } @@ -556,15 +552,11 @@ else if ($dopost == 'quickEdit') {  标题: - - - +  简略标题: - - - +  阅读权限: @@ -586,16 +578,12 @@ else if ($dopost == 'quickEdit') {  关键字: - - - + - -    - - + + @@ -785,7 +773,8 @@ else if ($dopost == 'attsAdd') { /*-------------------------- //批量删除属性 function attsDel(){ } ----------------------------*/ else if ($dopost == 'attsDel') { +---------------------------*/ +else if ($dopost == 'attsDel') { CheckPurview('a_Commend,sys_ArcBatch'); if (!empty($aid) && empty($qstr)) $qstr = $aid; if ($qstr == '') { @@ -850,7 +839,7 @@ else if ($dopost == 'attsDlg') { echo ""; ?> - + - + + +
 属 性: 属性: '>
 文档ID: - -
- -    - -
@@ -897,13 +882,10 @@ else if ($dopost == 'getCatMap') { $tus = new TypeUnitSelector(); ?> -
- ListAllType($channelid); ?> -
+
ListAllType($channelid); ?>
- -    - + +
Date: Mon, 24 Jan 2022 11:21:33 +0800 Subject: [PATCH 03/15] Update frame.css --- src/dede/css/frame.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dede/css/frame.css b/src/dede/css/frame.css index 07070363..1ee5fd0d 100644 --- a/src/dede/css/frame.css +++ b/src/dede/css/frame.css @@ -1 +1 @@ -*{padding:0;margin:0;box-sizing:border-box}a{text-decoration:none}html,body{width:100%;height:100%}body{height:100%;font-size:12px;overflow:hidden;z-index:1}body.showmenu{background:url(../images/leftmenu_bg.gif)-10px top repeat-y}body.hidemenu{background:none}ul{list-style:none}form{margin:0;padding:0}.head{width:100%;height:76px;overflow:hidden;z-index:8;position:relative}.top{height:46px;width:100%;background-image:linear-gradient(135deg,#008E38 0%,#639709 100%);overflow:hidden;clear:both}.top .top_logo{float:left;margin-left:30px;height:46px;line-height:46px}.top .top_logo a{font-size:18px;font-weight:600;color:#fff}.top .top_version{display:inline-block;margin-top:12px;margin-left:10px;color:#fff}.top .top_link{float:right;margin-right:30px}.top .top_link ul{float:left;line-height:46px;overflow:hidden}.top .top_link ul li.welcome img{margin-top:-4px;margin-right:10px;width:30px;height:30px;vertical-align:middle}.top .top_link ul li{float:left;color:#fff}.top .top_link ul li a{color:#fff;padding-left:20px}.top .top_link ul li a:hover{color:#ccc}.top .top_link .quick{padding:3px 0px 0px 0px;float:left}.top .top_link .quick a{display:block;color:#C60;float:left;line-height:21px;height:21px;overflow:hidden}.top .top_link .quick a.ac_qucikmenu{width:81px;background:url(../images/quick_bg.gif)left top no-repeat;letter-spacing:1px;text-indent:8px}.top .top_link .quick a.ac_qucikmenu:hover{background:url(../images/quick_bg.gif)left bottom no-repeat}.top .top_link .quick a.ac_qucikadd{width:19px;background:url(../images/quick_bg.gif)right top no-repeat}.top .top_link .quick a.ac_qucikadd:hover{background:url(../images/quick_bg.gif)right bottom no-repeat}.topnav{width:100%;height:30px;background:#333;overflow:hidden;clear:both}.topnav .menuact{width:168px;float:left;padding-left:30px;overflow:hidden;padding-top:6px}.topnav .menuact a{overflow:hidden;color:#eee;padding-right:10px}.topnav .menuact a:hover{color:#fff}.nav{float:left;padding-left:2px;line-height:26px;color:#999}.nav ul li{float:left;display:block;margin-left:4px}.nav ul li a{padding:0 10px 0px 10px;color:#FFCC00}.nav ul li a:hover{color:#fff}.nav ul li a.thisclass,.nav ul li a.thisclass:hover{color:#4E8100;display:block;font-weight:bold;background:#fff;line-height:23px;border-top:2px solid #FFDE59;margin-top:4px;padding:0 10px 0px 10px}.sysmsg{height:30px;overflow:hidden;line-height:30px;padding-right:30px;float:right;color:#999;width:500px}.scroll{float:right;overflow:hidden;height:30px}.scroll ul li,.sysmsg ul li a{color:#bbb}.scroll ul li{height:26px;overflow:hidden;line-height:26px;float:right;clear:both;padding-left:20px;background:url(../images/ico-sysmsg.png)5px 8px no-repeat}.scroll ul li a:hover{text-decoration:underline}.scroll a{padding-left:10px;color:#fff}body.showmenu .left{display:block}body.hidemenu .left{display:none}body.showmenu .right{left:220px}body.hidemenu .right{left:0}.left{position:absolute;top:76px;width:220px;left:0;bottom:0;z-index:7}.menu{height:100%}.top_link{font-size:12px}.menu iframe{height:100%;width:99.99%;z-index:20}.right{position:absolute;right:0;top:76px;bottom:0;z-index:7}.main{height:100%}.main iframe{height:100%;width:99.99%;z-index:20}.qucikmenu{position:absolute;right:10px;top:32px;z-index:9;display:none}.qucikmenu ul{width:110px;list-style:none;border:1px solid #E7E7E7;background:#fff}.qucikmenu ul li{display:block;text-align:left}.qucikmenu ul li a{height:30px;line-height:30px;display:block;color:#666;padding-left:10px;padding-right:10px}.qucikmenu ul li a:hover{background:#F7F7F7}.pagemask{width:100%;height:100%;background:#000;position:absolute;z-index:100;filter:alpha(opacity=70);-moz-opacity:.7;opacity:.7;display:none}.iframemask{position:absolute;z-index:80;top:0;left:0;background:#fff;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;height:100%;width:100%;display:none}.allmenu{margin-left:-400px;padding:10px;display:none;width:800px;position:absolute;top:76px;left:50%;z-index:999;background:#fff;border-radius:.2rem}.allmenu .allmenu-box{margin:0 auto;text-align:left;overflow:hidden;padding-left:2px}.maptop{float:left;width:130px;overflow:hidden;padding-right:6px;padding-left:6px;margin-left:-1px}.maptop dt.bigitem{padding:5px 10px;background:#333;color:#fff;line-height:18px;font-weight:600}.mapitem dt{line-height:21px;font-weight:bold;text-indent:10px;background:#EFF1F1}.mapitem ul{margin-top:10px;margin-bottom:10px}.mapitem ul li{text-indent:20px;line-height:24px;background:url(../images/arrr.gif)4px 6px no-repeat}.allmenu a{color:#5C604F}.allmenu a:hover{color:#F63}#login .theme{clear:both;padding:10px;width:70%;margin-top:20px}#login .theme li{margin-bottom:15px;margin-top:5px;overflow:hidden}#login .theme span{color:#000;width:150px;display:inline-block;float:left;text-align:right;height:22px;line-height:22px}input[type="text"],input[type="password"]{width:140px;border-width:1px;border-style:solid;border-color:#fff;padding:2px 4px;height:18px;line-height:18px;vertical-align:middle;background:#fff}input[type="text"]:focus,input[type="password"]:focus{border-color:#6FB1DF;color:#333;-moz-box-shadow:0 0 3px #A5C760;-webkit-border-shadow:0 0 3px #A5C760;box-shadow:0 0 3px #A5C760}* html input.text{width:220px;border:1px solid #a7a6aa;background:#fff url(../images/input.gif)0 0 no-repeat;margin-top:-1px;margin-right:5px;margin-bottom:0;margin-left:2px;padding:3px;line-height:12px}* html input.radio{margin:-1px 0 0 -2px}.allsearch{float:left;margin-top:7px!important;font-size:12px;border:1px solid #fff;border-radius:.2rem}.np{margin-left:10px;width:40px;height:18px;line-height:18px;font-size:12px;color:#fff;cursor:pointer;background:#57960f;border:none;border-radius:.2rem}#help{background:url(../images/dlgtitle.gif)repeat-x scroll 0 0 transparent;bottom:0;left:0;position:absolute;width:100%;height:28px;border-top:1px solid #390;line-height:28px;text-align:right;padding-top:0;padding-bottom:0}#help #content{padding-right:12px;background:url(../images/gtk-edit.png)no-repeat scroll 0px -1px;padding-left:20px} \ No newline at end of file +*{padding:0;margin:0;box-sizing:border-box}a{text-decoration:none}html,body{width:100%;height:100%}body{height:100%;font-size:12px;overflow:hidden;z-index:1}body.showmenu{background:url(../images/leftmenu_bg.gif)-10px top repeat-y}body.hidemenu{background:none}ul{list-style:none}form{margin:0;padding:0}.head{width:100%;height:76px;overflow:hidden;z-index:8;position:relative}.top{height:46px;width:100%;background-image:linear-gradient(135deg,#008E38 0%,#639709 100%);overflow:hidden;clear:both}.top .top_logo{float:left;margin-left:30px;height:46px;line-height:46px}.top .top_logo a{font-size:18px;font-weight:600;color:#fff}.top .top_version{display:inline-block;margin-top:12px;margin-left:10px;color:#fff}.top .top_link{float:right;margin-right:30px}.top .top_link ul{float:left;line-height:46px;overflow:hidden}.top .top_link ul li.welcome img{margin-top:-4px;margin-right:10px;width:30px;height:30px;vertical-align:middle}.top .top_link ul li{float:left;color:#fff}.top .top_link ul li a{color:#fff;padding-left:20px}.top .top_link ul li a:hover{color:#ccc}.top .top_link .quick{padding:3px 0px 0px 0px;float:left}.top .top_link .quick a{display:block;color:#C60;float:left;line-height:21px;height:21px;overflow:hidden}.topnav{width:100%;height:30px;line-height:30px;background:#393d49;overflow:hidden;clear:both}.topnav .menuact{width:168px;float:left;padding-left:30px;overflow:hidden}.topnav .menuact a{overflow:hidden;color:#eee;padding-right:10px}.topnav .menuact a:hover{color:#fff}.nav{float:left;padding-left:2px;line-height:26px;color:#999}.nav ul li{float:left;display:block;margin-left:4px}.nav ul li a{padding:0 10px 0px 10px;color:#FFCC00}.nav ul li a:hover{color:#fff}.nav ul li a.thisclass,.nav ul li a.thisclass:hover{color:#4E8100;display:block;font-weight:bold;background:#fff;line-height:23px;border-top:2px solid #FFDE59;margin-top:4px;padding:0 10px 0px 10px}.sysmsg{padding-right:30px;float:right;width:500px;color:#999;overflow:hidden}.scroll{float:right;overflow:hidden}.scroll ul li,.sysmsg ul li a{color:#bbb}.scroll ul li a:hover{text-decoration:underline}.scroll a{padding-left:10px;color:#fff}body.showmenu .left{display:block}body.hidemenu .left{display:none}body.showmenu .right{left:220px}body.hidemenu .right{left:0}.left{position:absolute;top:76px;width:220px;left:0;bottom:0;z-index:7}.menu{height:100%}.top_link{font-size:12px}.menu iframe{height:100%;width:99.99%;z-index:20}.right{position:absolute;right:0;top:76px;bottom:0;z-index:7}.main{height:100%}.main iframe{height:100%;width:99.99%;z-index:20}.qucikmenu{position:absolute;right:10px;top:32px;z-index:9;display:none}.qucikmenu ul{width:110px;list-style:none;border:1px solid #E7E7E7;background:#fff}.qucikmenu ul li{display:block;text-align:left}.qucikmenu ul li a{height:30px;line-height:30px;display:block;color:#666;padding-left:10px;padding-right:10px}.qucikmenu ul li a:hover{background:#F7F7F7}.pagemask{width:100%;height:100%;background:#424b51;position:absolute;z-index:100;filter:alpha(opacity=70);-moz-opacity:.7;opacity:.7;display:none}.iframemask{position:absolute;z-index:80;top:0;left:0;background:#fff;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;height:100%;width:100%;display:none}.allmenu{margin-left:-400px;padding:10px;display:none;width:800px;position:absolute;top:76px;left:50%;z-index:999;background:#fff;border-radius:.2rem}.allmenu .allmenu-box{margin:0 auto;text-align:left;overflow:hidden;padding-left:2px}.maptop{float:left;width:130px;overflow:hidden;padding-right:6px;padding-left:6px;margin-left:-1px}.maptop dt.bigitem{padding:5px 10px;line-height:18px;color:#fff;background:#424b51}.mapitem dt{line-height:30px;font-weight:bold;text-indent:10px;background:#EFF1F1}.mapitem ul{margin-top:10px;margin-bottom:10px}.mapitem ul li{text-indent:20px;line-height:24px;background:url(../images/arrr.gif)0 8px no-repeat}.allmenu a{color:#5C604F}.allmenu a:hover{color:#F63}#login .theme{clear:both;padding:10px;width:70%;margin-top:20px}#login .theme li{margin-bottom:15px;margin-top:5px;overflow:hidden}#login .theme span{display:inline-block;float:left;width:150px;height:22px;line-height:22px;color:#424b51;text-align:right}input[type="text"],input[type="password"]{padding:2px 4px;width:140px;height:18px;line-height:18px;border-width:1px;border-style:solid;border-color:#fff;background:#fff;vertical-align:middle}input[type="text"]:focus,input[type="password"]:focus{color:#424b51;border-color:#6FB1DF;-moz-box-shadow:0 0 3px #A5C760;-webkit-border-shadow:0 0 3px #A5C760;box-shadow:0 0 3px #A5C760}* html input.text{width:220px;border:1px solid #a7a6aa;background:#fff url(../images/input.gif)0 0 no-repeat;margin-top:-1px;margin-right:5px;margin-bottom:0;margin-left:2px;padding:3px;line-height:12px}* html input.radio{margin:-1px 0 0 -2px}.allsearch{float:left;margin-top:6px!important;font-size:12px;border:1px solid #fff;border-radius:.2rem}.np{margin-left:10px;width:40px;height:18px;font-size:12px;color:#fff;background:#57960f;border-radius:.2rem;border:none;cursor:pointer} \ No newline at end of file From a227806bbee42f132de9e1f2f19dfc72a7b6f4ae Mon Sep 17 00:00:00 2001 From: xushubieli Date: Mon, 24 Jan 2022 12:08:55 +0800 Subject: [PATCH 04/15] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=96=87=E6=9C=AC?= =?UTF-8?q?=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dede/css/base.css | 3 +-- src/static/img/base.css | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/dede/css/base.css b/src/dede/css/base.css index 823300e7..54ba0ec8 100644 --- a/src/dede/css/base.css +++ b/src/dede/css/base.css @@ -1,2 +1 @@ -/* 2022 base.css Xushubieli Provide */ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{padding:.375rem .75rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.25rem .5rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input,input[type=text],input[type=password]{padding:.375rem .75rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.25rem .5rem;line-height:18px;vertical-align:middle;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070}textarea{padding:.25rem .5rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;overflow:auto}textarea:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.pubinputs{padding:.25rem .5rem;width:250px;height:16px;line-height:16px;border-width:1px;border-style:solid;border-color:#999 #dddddd #dddddd #999}.iptxt{padding:.25rem .5rem;height:14px;line-height:14px;border-width:1px;border-style:solid;border-color:#999 #dddddd #dddddd #999}.pubinput{padding-top:6px;padding-bottom:0;height:24px;width:250px}.pubinputl{padding-top:6px;padding-bottom:0;height:24px;width:350px}.np{border:none}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.25rem .5rem;border:none;border-bottom:1px solid #ccc;background:#f2f2f2;border-radius:.2rem;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC;background:url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px overflow-y:auto;background:#FCFEF1;overflow:auto}.dlg{padding:.25rem .5rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;width:100%;height:120%;top:0;left:0;background:#cdcdcd;filter:Alpha(opacity=50);-moz-opacity:.5;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.25rem .5rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.25rem .5rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;filter:Alpha(opacity=70);-moz-opacity:.7;background:url(../../images/loading1.gif)#ababab center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.25rem .5rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:24px;font-size:12px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{float:left;font-size:12px;padding:0;height:18px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;filter:alpha(opacity=00);-moz-opacity:.0;opacity:.0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img,input[type=checkbox],input[type=radio]{vertical-align:text-bottom} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;line-height:18px;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{border-color:#28a745;color:#424b51;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.375rem .75rem;line-height:18px;vertical-align:middle;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070}textarea{padding:.375rem .75rem;font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;line-height:16px;overflow:auto;resize:vertical}textarea:focus{border-color:#28a745;color:#424b51;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.pubinputs{padding:.375rem .75rem;width:250px;height:16px;line-height:16px;border-width:1px;border-style:solid;border-color:#999 #dddddd #dddddd #999}.iptxt{padding:.375rem .75rem;height:14px;line-height:14px;border-width:1px;border-style:solid;border-color:#999 #dddddd #dddddd #999}.pubinput{padding-top:6px;padding-bottom:0;height:24px;width:250px}.pubinputl{padding-top:6px;padding-bottom:0;height:24px;width:350px}.np{border:none}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;border:none;border-bottom:1px solid #ccc;background:#f2f2f2;border-radius:.2rem;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC;background:url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px overflow-y:auto;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;width:100%;height:120%;top:0;left:0;background:#cdcdcd;filter:Alpha(opacity=50);-moz-opacity:.5;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;filter:Alpha(opacity=70);-moz-opacity:.7;background:url(../../images/loading1.gif)#ababab center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:24px;font-size:12px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{float:left;font-size:12px;padding:0;height:18px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;filter:alpha(opacity=00);-moz-opacity:.0;opacity:.0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img,input[type=checkbox],input[type=radio]{vertical-align:text-bottom} \ No newline at end of file diff --git a/src/static/img/base.css b/src/static/img/base.css index 81382337..7705512f 100755 --- a/src/static/img/base.css +++ b/src/static/img/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}li,dd{margin:0;padding:0;list-style-type:none}select{padding:.375rem .75rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}textarea{padding:.25rem .5rem;font-size:1rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;overflow:auto}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#FFFFFF;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input,input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;line-height:18px;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{border-color:#28a745;color:#424b51;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.375rem .75rem;line-height:18px;vertical-align:middle;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070}textarea{padding:.375rem .75rem;font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;line-height:16px;overflow:auto;resize:vertical}textarea:focus{border-color:#28a745;color:#424b51;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#FFFFFF;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file From b8c2c02a4ee06b654dde149620924f127df42d18 Mon Sep 17 00:00:00 2001 From: xushubieli Date: Mon, 24 Jan 2022 14:45:16 +0800 Subject: [PATCH 05/15] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=96=87=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dede/css/base.css | 2 +- src/static/img/base.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dede/css/base.css b/src/dede/css/base.css index 54ba0ec8..3a9159f5 100644 --- a/src/dede/css/base.css +++ b/src/dede/css/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;line-height:18px;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{border-color:#28a745;color:#424b51;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.375rem .75rem;line-height:18px;vertical-align:middle;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070}textarea{padding:.375rem .75rem;font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;line-height:16px;overflow:auto;resize:vertical}textarea:focus{border-color:#28a745;color:#424b51;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.pubinputs{padding:.375rem .75rem;width:250px;height:16px;line-height:16px;border-width:1px;border-style:solid;border-color:#999 #dddddd #dddddd #999}.iptxt{padding:.375rem .75rem;height:14px;line-height:14px;border-width:1px;border-style:solid;border-color:#999 #dddddd #dddddd #999}.pubinput{padding-top:6px;padding-bottom:0;height:24px;width:250px}.pubinputl{padding-top:6px;padding-bottom:0;height:24px;width:350px}.np{border:none}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;border:none;border-bottom:1px solid #ccc;background:#f2f2f2;border-radius:.2rem;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC;background:url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px overflow-y:auto;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;width:100%;height:120%;top:0;left:0;background:#cdcdcd;filter:Alpha(opacity=50);-moz-opacity:.5;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;filter:Alpha(opacity=70);-moz-opacity:.7;background:url(../../images/loading1.gif)#ababab center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:24px;font-size:12px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{float:left;font-size:12px;padding:0;height:18px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;filter:alpha(opacity=00);-moz-opacity:.0;opacity:.0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img,input[type=checkbox],input[type=radio]{vertical-align:text-bottom} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input,input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.375rem .75rem;line-height:18px;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070;vertical-align:middle}textarea{padding:.375rem .75rem;line-height:18px;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;overflow:auto;resize:vertical}textarea:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.pubinputs{padding:.375rem .75rem;width:250px;height:16px;line-height:16px;border-width:1px;border-style:solid;border-color:#999 #ddd #ddd #999}.iptxt{padding:.375rem .75rem;height:14px;line-height:14px;border-width:1px;border-style:solid;border-color:#999 #ddd #ddd #999}.pubinput{padding-top:6px;padding-bottom:0;height:24px;width:250px}.pubinputl{padding-top:6px;padding-bottom:0;height:24px;width:350px}.np{border:none}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;border-bottom:1px solid #ccc;background:#f2f2f2;border-radius:.2rem;border:none;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC;background:url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px overflow-y:auto;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;width:100%;height:120%;top:0;left:0;background:#cdcdcd;filter:Alpha(opacity=50);-moz-opacity:.5;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;filter:Alpha(opacity=70);-moz-opacity:.7;background:url(../../images/loading1.gif)#ababab center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:24px;font-size:12px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{float:left;font-size:12px;padding:0;height:18px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;filter:alpha(opacity=00);-moz-opacity:.0;opacity:.0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file diff --git a/src/static/img/base.css b/src/static/img/base.css index 7705512f..a6d7eebd 100755 --- a/src/static/img/base.css +++ b/src/static/img/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input,input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;line-height:18px;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{border-color:#28a745;color:#424b51;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.375rem .75rem;line-height:18px;vertical-align:middle;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070}textarea{padding:.375rem .75rem;font-size:1rem;font-weight:400;color:#495057;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;line-height:16px;overflow:auto;resize:vertical}textarea:focus{border-color:#28a745;color:#424b51;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#FFFFFF;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input,input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.375rem .75rem;line-height:18px;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070;vertical-align:middle}textarea{padding:.375rem .75rem;line-height:18px;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;overflow:auto;resize:vertical}textarea:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file From c82525596773c062ca3383ee6f9c62e9ca75d52e Mon Sep 17 00:00:00 2001 From: xushubieli Date: Mon, 24 Jan 2022 15:15:12 +0800 Subject: [PATCH 06/15] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=AB=98=E4=BA=AE?= =?UTF-8?q?=E8=BF=87=E6=B8=A1=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dede/css/base.css | 2 +- src/static/img/base.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dede/css/base.css b/src/dede/css/base.css index 3a9159f5..78f3b70a 100644 --- a/src/dede/css/base.css +++ b/src/dede/css/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input,input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.375rem .75rem;line-height:18px;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070;vertical-align:middle}textarea{padding:.375rem .75rem;line-height:18px;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;overflow:auto;resize:vertical}textarea:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.pubinputs{padding:.375rem .75rem;width:250px;height:16px;line-height:16px;border-width:1px;border-style:solid;border-color:#999 #ddd #ddd #999}.iptxt{padding:.375rem .75rem;height:14px;line-height:14px;border-width:1px;border-style:solid;border-color:#999 #ddd #ddd #999}.pubinput{padding-top:6px;padding-bottom:0;height:24px;width:250px}.pubinputl{padding-top:6px;padding-bottom:0;height:24px;width:350px}.np{border:none}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;border-bottom:1px solid #ccc;background:#f2f2f2;border-radius:.2rem;border:none;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC;background:url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px overflow-y:auto;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;width:100%;height:120%;top:0;left:0;background:#cdcdcd;filter:Alpha(opacity=50);-moz-opacity:.5;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;filter:Alpha(opacity=70);-moz-opacity:.7;background:url(../../images/loading1.gif)#ababab center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:24px;font-size:12px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{float:left;font-size:12px;padding:0;height:18px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;filter:alpha(opacity=00);-moz-opacity:.0;opacity:.0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none}input,input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,input[type=text]:focus,input[type="password"]:focus,textarea:focus{color:#424b51;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}label{display:inline-block;margin:.6rem 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.alltxt{padding:.375rem .75rem;line-height:18px;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070;vertical-align:middle}.pubinputs{padding:.375rem .75rem;width:250px;height:16px;line-height:16px;border-width:1px;border-style:solid;border-color:#999 #ddd #ddd #999}.iptxt{padding:.375rem .75rem;height:14px;line-height:14px;border-width:1px;border-style:solid;border-color:#999 #ddd #ddd #999}.pubinput{padding-top:6px;padding-bottom:0;height:24px;width:250px}.pubinputl{padding-top:6px;padding-bottom:0;height:24px;width:350px}.np{border:none}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;border-bottom:1px solid #ccc;background:#f2f2f2;border-radius:.2rem;border:none;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC;background:url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px overflow-y:auto;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;width:100%;height:120%;top:0;left:0;background:#cdcdcd;filter:Alpha(opacity=50);-moz-opacity:.5;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;filter:Alpha(opacity=70);-moz-opacity:.7;background:url(../../images/loading1.gif)#ababab center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:24px;font-size:12px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{float:left;font-size:12px;padding:0;height:18px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;filter:alpha(opacity=00);-moz-opacity:.0;opacity:.0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file diff --git a/src/static/img/base.css b/src/static/img/base.css index a6d7eebd..a110a6b7 100755 --- a/src/static/img/base.css +++ b/src/static/img/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none;cursor:pointer}input,input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=text]:focus,input[type="password"]:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745;outline:none}input:disabled,input[readonly]{background:#e9ecef;opacity:1}label{display:inline-block;margin:.6rem 0}.alltxt{padding:.375rem .75rem;line-height:18px;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070;vertical-align:middle}textarea{padding:.375rem .75rem;line-height:18px;color:#424b51;background:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle;overflow:auto;resize:vertical}textarea:focus{color:#424b51;border-color:#28a745;-moz-box-shadow:0 0 2px #28a745;-webkit-box-shadow:0 0 2px #28a745;box-shadow:0 0 2px #28a745}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none}input,input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,input[type=text]:focus,input[type="password"]:focus,textarea:focus{color:#424b51;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}label{display:inline-block;margin:.6rem 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.alltxt{padding:.375rem .75rem;line-height:18px;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070;vertical-align:middle}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file From 0d1df4bba519a8b09d75b14edf11d388c6089bd6 Mon Sep 17 00:00:00 2001 From: xushubieli Date: Mon, 24 Jan 2022 15:55:10 +0800 Subject: [PATCH 07/15] =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dede/css/base.css | 2 +- src/dede/css/frame.css | 2 +- src/static/img/base.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dede/css/base.css b/src/dede/css/base.css index 78f3b70a..24746847 100644 --- a/src/dede/css/base.css +++ b/src/dede/css/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none}input,input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,input[type=text]:focus,input[type="password"]:focus,textarea:focus{color:#424b51;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}label{display:inline-block;margin:.6rem 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.alltxt{padding:.375rem .75rem;line-height:18px;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070;vertical-align:middle}.pubinputs{padding:.375rem .75rem;width:250px;height:16px;line-height:16px;border-width:1px;border-style:solid;border-color:#999 #ddd #ddd #999}.iptxt{padding:.375rem .75rem;height:14px;line-height:14px;border-width:1px;border-style:solid;border-color:#999 #ddd #ddd #999}.pubinput{padding-top:6px;padding-bottom:0;height:24px;width:250px}.pubinputl{padding-top:6px;padding-bottom:0;height:24px;width:350px}.np{border:none}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;border-bottom:1px solid #ccc;background:#f2f2f2;border-radius:.2rem;border:none;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC;background:url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px overflow-y:auto;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;width:100%;height:120%;top:0;left:0;background:#cdcdcd;filter:Alpha(opacity=50);-moz-opacity:.5;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;filter:Alpha(opacity=70);-moz-opacity:.7;background:url(../../images/loading1.gif)#ababab center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;font-size:12px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:24px;font-size:12px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{float:left;font-size:12px;padding:0;height:18px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;filter:alpha(opacity=00);-moz-opacity:.0;opacity:.0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{color:#424b51;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.np{border:0}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;background:#f2f2f2;border-bottom:1px solid #ccc;border-radius:.2rem;border:0;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;top:0;left:0;width:100%;height:120%;background:#cdcdcd;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background:#fff url(../images/allbtbg.gif);border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;opacity:.7;background:#ababab url(../../images/loading1.gif)center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:26px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{padding:0;float:left;height:18px;font-size:12px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;opacity:0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file diff --git a/src/dede/css/frame.css b/src/dede/css/frame.css index 1ee5fd0d..ead8fe75 100644 --- a/src/dede/css/frame.css +++ b/src/dede/css/frame.css @@ -1 +1 @@ -*{padding:0;margin:0;box-sizing:border-box}a{text-decoration:none}html,body{width:100%;height:100%}body{height:100%;font-size:12px;overflow:hidden;z-index:1}body.showmenu{background:url(../images/leftmenu_bg.gif)-10px top repeat-y}body.hidemenu{background:none}ul{list-style:none}form{margin:0;padding:0}.head{width:100%;height:76px;overflow:hidden;z-index:8;position:relative}.top{height:46px;width:100%;background-image:linear-gradient(135deg,#008E38 0%,#639709 100%);overflow:hidden;clear:both}.top .top_logo{float:left;margin-left:30px;height:46px;line-height:46px}.top .top_logo a{font-size:18px;font-weight:600;color:#fff}.top .top_version{display:inline-block;margin-top:12px;margin-left:10px;color:#fff}.top .top_link{float:right;margin-right:30px}.top .top_link ul{float:left;line-height:46px;overflow:hidden}.top .top_link ul li.welcome img{margin-top:-4px;margin-right:10px;width:30px;height:30px;vertical-align:middle}.top .top_link ul li{float:left;color:#fff}.top .top_link ul li a{color:#fff;padding-left:20px}.top .top_link ul li a:hover{color:#ccc}.top .top_link .quick{padding:3px 0px 0px 0px;float:left}.top .top_link .quick a{display:block;color:#C60;float:left;line-height:21px;height:21px;overflow:hidden}.topnav{width:100%;height:30px;line-height:30px;background:#393d49;overflow:hidden;clear:both}.topnav .menuact{width:168px;float:left;padding-left:30px;overflow:hidden}.topnav .menuact a{overflow:hidden;color:#eee;padding-right:10px}.topnav .menuact a:hover{color:#fff}.nav{float:left;padding-left:2px;line-height:26px;color:#999}.nav ul li{float:left;display:block;margin-left:4px}.nav ul li a{padding:0 10px 0px 10px;color:#FFCC00}.nav ul li a:hover{color:#fff}.nav ul li a.thisclass,.nav ul li a.thisclass:hover{color:#4E8100;display:block;font-weight:bold;background:#fff;line-height:23px;border-top:2px solid #FFDE59;margin-top:4px;padding:0 10px 0px 10px}.sysmsg{padding-right:30px;float:right;width:500px;color:#999;overflow:hidden}.scroll{float:right;overflow:hidden}.scroll ul li,.sysmsg ul li a{color:#bbb}.scroll ul li a:hover{text-decoration:underline}.scroll a{padding-left:10px;color:#fff}body.showmenu .left{display:block}body.hidemenu .left{display:none}body.showmenu .right{left:220px}body.hidemenu .right{left:0}.left{position:absolute;top:76px;width:220px;left:0;bottom:0;z-index:7}.menu{height:100%}.top_link{font-size:12px}.menu iframe{height:100%;width:99.99%;z-index:20}.right{position:absolute;right:0;top:76px;bottom:0;z-index:7}.main{height:100%}.main iframe{height:100%;width:99.99%;z-index:20}.qucikmenu{position:absolute;right:10px;top:32px;z-index:9;display:none}.qucikmenu ul{width:110px;list-style:none;border:1px solid #E7E7E7;background:#fff}.qucikmenu ul li{display:block;text-align:left}.qucikmenu ul li a{height:30px;line-height:30px;display:block;color:#666;padding-left:10px;padding-right:10px}.qucikmenu ul li a:hover{background:#F7F7F7}.pagemask{width:100%;height:100%;background:#424b51;position:absolute;z-index:100;filter:alpha(opacity=70);-moz-opacity:.7;opacity:.7;display:none}.iframemask{position:absolute;z-index:80;top:0;left:0;background:#fff;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;height:100%;width:100%;display:none}.allmenu{margin-left:-400px;padding:10px;display:none;width:800px;position:absolute;top:76px;left:50%;z-index:999;background:#fff;border-radius:.2rem}.allmenu .allmenu-box{margin:0 auto;text-align:left;overflow:hidden;padding-left:2px}.maptop{float:left;width:130px;overflow:hidden;padding-right:6px;padding-left:6px;margin-left:-1px}.maptop dt.bigitem{padding:5px 10px;line-height:18px;color:#fff;background:#424b51}.mapitem dt{line-height:30px;font-weight:bold;text-indent:10px;background:#EFF1F1}.mapitem ul{margin-top:10px;margin-bottom:10px}.mapitem ul li{text-indent:20px;line-height:24px;background:url(../images/arrr.gif)0 8px no-repeat}.allmenu a{color:#5C604F}.allmenu a:hover{color:#F63}#login .theme{clear:both;padding:10px;width:70%;margin-top:20px}#login .theme li{margin-bottom:15px;margin-top:5px;overflow:hidden}#login .theme span{display:inline-block;float:left;width:150px;height:22px;line-height:22px;color:#424b51;text-align:right}input[type="text"],input[type="password"]{padding:2px 4px;width:140px;height:18px;line-height:18px;border-width:1px;border-style:solid;border-color:#fff;background:#fff;vertical-align:middle}input[type="text"]:focus,input[type="password"]:focus{color:#424b51;border-color:#6FB1DF;-moz-box-shadow:0 0 3px #A5C760;-webkit-border-shadow:0 0 3px #A5C760;box-shadow:0 0 3px #A5C760}* html input.text{width:220px;border:1px solid #a7a6aa;background:#fff url(../images/input.gif)0 0 no-repeat;margin-top:-1px;margin-right:5px;margin-bottom:0;margin-left:2px;padding:3px;line-height:12px}* html input.radio{margin:-1px 0 0 -2px}.allsearch{float:left;margin-top:6px!important;font-size:12px;border:1px solid #fff;border-radius:.2rem}.np{margin-left:10px;width:40px;height:18px;font-size:12px;color:#fff;background:#57960f;border-radius:.2rem;border:none;cursor:pointer} \ No newline at end of file +*{padding:0;margin:0;box-sizing:border-box}a{text-decoration:none}html,body{width:100%;height:100%}body{height:100%;font-size:12px;overflow:hidden;z-index:1}body.showmenu{background:url(../images/leftmenu_bg.gif)-10px top repeat-y}body.hidemenu{background:none}ul{list-style:none}form{margin:0;padding:0}.head{width:100%;height:76px;overflow:hidden;z-index:8;position:relative}.top{height:46px;width:100%;background-image:linear-gradient(135deg,#008E38 0%,#639709 100%);overflow:hidden;clear:both}.top .top_logo{float:left;margin-left:30px;height:46px;line-height:46px}.top .top_logo a{font-size:18px;font-weight:600;color:#fff}.top .top_version{display:inline-block;margin-top:12px;margin-left:10px;color:#fff}.top .top_link{float:right;margin-right:30px}.top .top_link ul{float:left;line-height:46px;overflow:hidden}.top .top_link ul li.welcome img{margin-top:-4px;margin-right:10px;width:30px;height:30px;vertical-align:middle}.top .top_link ul li{float:left;color:#fff}.top .top_link ul li a{color:#fff;padding-left:20px}.top .top_link ul li a:hover{color:#ccc}.top .top_link .quick{padding:3px 0px 0px 0px;float:left}.top .top_link .quick a{display:block;color:#C60;float:left;line-height:21px;height:21px;overflow:hidden}.topnav{width:100%;height:30px;line-height:30px;background:#393d49;overflow:hidden;clear:both}.topnav .menuact{width:168px;float:left;padding-left:30px;overflow:hidden}.topnav .menuact a{overflow:hidden;color:#eee;padding-right:10px}.topnav .menuact a:hover{color:#fff}.nav{float:left;padding-left:2px;line-height:26px;color:#999}.nav ul li{float:left;display:block;margin-left:4px}.nav ul li a{padding:0 10px 0px 10px;color:#FFCC00}.nav ul li a:hover{color:#fff}.nav ul li a.thisclass,.nav ul li a.thisclass:hover{color:#4E8100;display:block;font-weight:bold;background:#fff;line-height:23px;border-top:2px solid #FFDE59;margin-top:4px;padding:0 10px 0px 10px}.sysmsg{padding-right:30px;float:right;width:500px;color:#999;overflow:hidden}.scroll{float:right;overflow:hidden}.scroll ul li,.sysmsg ul li a{color:#bbb}.scroll ul li a:hover{text-decoration:underline}.scroll a{padding-left:10px;color:#fff}body.showmenu .left{display:block}body.hidemenu .left{display:none}body.showmenu .right{left:220px}body.hidemenu .right{left:0}.left{position:absolute;top:76px;width:220px;left:0;bottom:0;z-index:7}.menu{height:100%}.top_link{font-size:12px}.menu iframe{height:100%;width:99.99%;z-index:20}.right{position:absolute;right:0;top:76px;bottom:0;z-index:7}.main{height:100%}.main iframe{height:100%;width:99.99%;z-index:20}.qucikmenu{position:absolute;right:10px;top:32px;z-index:9;display:none}.qucikmenu ul{width:110px;list-style:none;border:1px solid #E7E7E7;background:#fff}.qucikmenu ul li{display:block;text-align:left}.qucikmenu ul li a{height:30px;line-height:30px;display:block;color:#666;padding-left:10px;padding-right:10px}.qucikmenu ul li a:hover{background:#F7F7F7}.pagemask{width:100%;height:100%;background:#424b51;position:absolute;z-index:100;filter:alpha(opacity=70);-moz-opacity:.7;opacity:.7;display:none}.iframemask{position:absolute;z-index:80;top:0;left:0;background:#fff;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;height:100%;width:100%;display:none}.allmenu{margin-left:-400px;padding:10px;display:none;width:800px;position:absolute;top:76px;left:50%;z-index:999;background:#fff;border-radius:.2rem}.allmenu .allmenu-box{margin:0 auto;text-align:left;overflow:hidden;padding-left:2px}.maptop{float:left;width:130px;overflow:hidden;padding-right:6px;padding-left:6px;margin-left:-1px}.maptop dt.bigitem{padding:5px 10px;line-height:18px;color:#fff;background:#424b51}.mapitem dt{line-height:30px;font-weight:bold;text-indent:10px;background:#EFF1F1}.mapitem ul{margin-top:10px;margin-bottom:10px}.mapitem ul li{text-indent:20px;line-height:24px;background:url(../images/arrr.gif)0 8px no-repeat}.allmenu a{color:#5C604F}.allmenu a:hover{color:#F63}#login .theme{clear:both;padding:10px;width:70%;margin-top:20px}#login .theme li{margin-bottom:15px;margin-top:5px;overflow:hidden}#login .theme span{display:inline-block;float:left;width:150px;height:22px;line-height:22px;color:#424b51;text-align:right}input[type="text"],input[type="password"]{padding:2px 4px;width:140px;height:18px;line-height:18px;border-width:1px;border-style:solid;border-color:#fff;background:#fff;vertical-align:middle}input[type="text"]:focus,input[type="password"]:focus{box-shadow:none;outline:none}* html input.text{width:220px;border:1px solid #a7a6aa;background:#fff url(../images/input.gif)0 0 no-repeat;margin-top:-1px;margin-right:5px;margin-bottom:0;margin-left:2px;padding:3px;line-height:12px}* html input.radio{margin:-1px 0 0 -2px}.allsearch{float:left;margin-top:6px!important;font-size:12px;border:1px solid #fff;border-radius:.2rem}.np{margin-left:10px;width:40px;height:18px;font-size:12px;color:#fff;background:#57960f;border-radius:.2rem;border:none;cursor:pointer} \ No newline at end of file diff --git a/src/static/img/base.css b/src/static/img/base.css index a110a6b7..1a8817bf 100755 --- a/src/static/img/base.css +++ b/src/static/img/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:none}input,input[type=text],input[type=password]{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #ced4da;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,input[type=text]:focus,input[type="password"]:focus,textarea:focus{color:#424b51;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}label{display:inline-block;margin:.6rem 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.alltxt{padding:.375rem .75rem;line-height:18px;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070;vertical-align:middle}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{color:#424b51;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file From 9b202e547c0f306f24af99b4c3e36e203139a80c Mon Sep 17 00:00:00 2001 From: xushubieli Date: Fri, 28 Jan 2022 10:34:05 +0800 Subject: [PATCH 08/15] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=8F=92=E4=BB=B6?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dede/css/base.css | 2 +- src/static/img/base.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dede/css/base.css b/src/dede/css/base.css index 24746847..99a459af 100644 --- a/src/dede/css/base.css +++ b/src/dede/css/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{color:#424b51;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.np{border:0}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;background:#f2f2f2;border-bottom:1px solid #ccc;border-radius:.2rem;border:0;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;top:0;left:0;width:100%;height:120%;background:#cdcdcd;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background:#fff url(../images/allbtbg.gif);border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;opacity:.7;background:#ababab url(../../images/loading1.gif)center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:26px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{padding:0;float:left;height:18px;font-size:12px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;opacity:0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{color:#fff;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.np{border:0}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;background:#f2f2f2;border-bottom:1px solid #ccc;border-radius:.2rem;border:0;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;top:0;left:0;width:100%;height:120%;background:#cdcdcd;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background:#fff url(../images/allbtbg.gif);border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;opacity:.7;background:#ababab url(../../images/loading1.gif)center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:26px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{padding:0;float:left;height:18px;font-size:12px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;opacity:0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file diff --git a/src/static/img/base.css b/src/static/img/base.css index 1a8817bf..b26fa672 100755 --- a/src/static/img/base.css +++ b/src/static/img/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{color:#424b51;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{color:#fff;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file From 8cca8bf47cef3baba99852501f4cfd0d568e1dc4 Mon Sep 17 00:00:00 2001 From: xushubieli Date: Fri, 28 Jan 2022 11:19:34 +0800 Subject: [PATCH 09/15] =?UTF-8?q?=E8=B0=83=E6=95=B4=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dede/css/base.css | 2 +- src/static/img/base.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dede/css/base.css b/src/dede/css/base.css index 99a459af..da7581bc 100644 --- a/src/dede/css/base.css +++ b/src/dede/css/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{color:#fff;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.np{border:0}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;background:#f2f2f2;border-bottom:1px solid #ccc;border-radius:.2rem;border:0;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;top:0;left:0;width:100%;height:120%;background:#cdcdcd;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background:#fff url(../images/allbtbg.gif);border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;opacity:.7;background:#ababab url(../../images/loading1.gif)center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:26px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{padding:0;float:left;height:18px;font-size:12px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;opacity:0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.np{border:0}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;background:#f2f2f2;border-bottom:1px solid #ccc;border-radius:.2rem;border:0;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;top:0;left:0;width:100%;height:120%;background:#cdcdcd;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background:#fff url(../images/allbtbg.gif);border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;opacity:.7;background:#ababab url(../../images/loading1.gif)center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:26px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{padding:0;float:left;height:18px;font-size:12px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;opacity:0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file diff --git a/src/static/img/base.css b/src/static/img/base.css index b26fa672..f623c28b 100755 --- a/src/static/img/base.css +++ b/src/static/img/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{color:#fff;border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file From ead84ab47896d4a30f9db11485c5173a7600383f Mon Sep 17 00:00:00 2001 From: xushubieli Date: Fri, 28 Jan 2022 14:52:50 +0800 Subject: [PATCH 10/15] =?UTF-8?q?=E5=90=8E=E7=BB=AD=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E7=BB=9F=E4=B8=80=E8=A1=8C=E9=AB=98=E6=96=87=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dede/css/base.css | 2 +- src/static/img/base.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dede/css/base.css b/src/dede/css/base.css index da7581bc..6bab7f2d 100644 --- a/src/dede/css/base.css +++ b/src/dede/css/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.np{border:0}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.375rem .75rem;background:#f2f2f2;border-bottom:1px solid #ccc;border-radius:.2rem;border:0;cursor:pointer}.coolbg2{border:1px solid #000;background:#DFDDD2;height:18px}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px;background:#FCFEF1;overflow:auto}.dlg{padding:.375rem .75rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;top:0;left:0;width:100%;height:120%;background:#cdcdcd;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.375rem .75rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.375rem .75rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background:#fff url(../images/allbtbg.gif);border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;opacity:.7;background:#ababab url(../../images/loading1.gif)center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.375rem .75rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:26px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{padding:0;float:left;height:18px;font-size:12px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;opacity:0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 10px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.25rem .5rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.25rem .5rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.25rem .5rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.25rem .5rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.np{border:0}.linerow{border-bottom:1px solid #ACACAC}.coolbg{padding:.25rem .5rem;background:#f2f2f2;border-bottom:1px solid #ccc;border-radius:.2rem;border:0;cursor:pointer}.coolbg2{height:18px;background:#DFDDD2;border:1px solid #000}.ll{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background:#E6E6E6}.bline{height:36px;background:#fff;border-bottom:1px solid #eee}#uploadfield{float:left}.bline2{border-bottom:1px solid #eee}.coolbt{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#E4F7D7;cursor:pointer}.coolbt2{border-left:1px solid #EFEFEF;border-top:1px solid #EFEFEF;border-bottom:1px solid #ACACAC;background:#F7FCDA}.coolbg3{width:140px;height:20px;border:1px solid #BDC5B4;background:#DFDDD2;text-align:right}.coolbg61{width:380px;height:26px;line-height:26px;border-top:1px solid #BDC5B4;border-left:1px solid #BDC5B4;border-right:1px solid #BDC5B4;background:#E7F3B1;text-align:right}.coolbg62{padding:6px;width:380px;height:300px;border:1px solid #BDC5B4;background:#F8FDF0}.coolbg4{width:190px;height:24px;line-height:24px;border-bottom:1px solid #C9CFC1;background:#F9FCDC url(../images/dlgtitle.gif)repeat-x;text-align:right}.coolbg5{width:190px;height:6px;border-top:1px solid #BDC5B4;background:#F9FCDC}.wsselect{height:60px;line-height:24px;background:#FCFEF1;overflow:auto}.dlg{padding:.25rem .5rem;border:2px solid #008E38;background:#F0FAEB;width:360px;line-height:160%}.pubdlg{background:#fff;border:4px solid #008E38;border-radius:.2rem;z-index:8888}.pubdlg .title{height:29px;line-height:29px;border-bottom:1px solid #C9CFC1;background:url(../images/dlgtitle.gif)repeat-x;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:29px;font-weight:600;color:#424b51}.pubdlg .titRight{float:right;padding:0}.fullpagediv{position:absolute;top:0;left:0;width:100%;height:120%;background:#cdcdcd;opacity:.5;z-index:1999}.quicksel{margin-left:10px;margin-top:10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #C0CC9D}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:6px;line-height:24px;border-bottom:1px dashed #ccc;background:#FBFEEF;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{float:left;margin-right:8px}.mysource,.mywriter{padding:.25rem .5rem;width:280px;line-height:160%;border:4px solid #008E38;background:#F0FAEB;z-index:10001}.dlgws div{width:100%}.dlgTesttitle{padding:.25rem .5rem;width:300px;line-height:150%;border:2px solid #008E38;background:#F0FAEB}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#DCECA6}.option2{background:#F7FBD2}.option3{background:#fff}.ininput{width:96%;height:20px;border:1px solid #fff}.nbt{padding:2px;background:#fff url(../images/allbtbg.gif);border:1px solid #A5AF83}.tdt{padding-left:6px}.waitpage{position:absolute;top:0;left:0;opacity:.7;background:#ababab url(../../images/loading1.gif)center no-repeat;z-index:10000}.divpre img{max-width:150px;max-height:100px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:auto;width:98%;height:28px;border:1px dotted #BFD67C;background:url(../images/wbg.gif)}.bodytitle div{float:left}.bodytitletxt{padding-left:6px;line-height:28px}.tbtitle td{padding:6px}.tblist td{padding:6px;background:#fff}.tblist td.tbsname{padding:6px;background:#F9FFE6}.colordlg{padding:.25rem .5rem;width:100px;line-height:160%;border:2px dashed #008E38;background:#F0FAEB;z-index:10005}option.alltype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.btype{padding-left:16px;height:18px;line-height:18px;background:url(../images/arr4.gif)3px 4px no-repeat}option.stype{padding-left:26px;height:18px;line-height:18px;background:url(../images/arrr.gif)10px 4px no-repeat}.ilist{border-top:1px dashed #eee;border-bottom:1px dashed #eee;border-left:1px dashed #eee}.ilist td{border-right:1px dashed #eee}#typeid2{padding:0;float:left;height:18px;font-size:12px;background:url(../images/typeid2bg.gif)no-repeat;border:0}#litpic{margin-left:-20px;width:85px;height:20px;opacity:0;cursor:pointer}.litpic_span{margin-left:-60px;width:76px;height:22px;overflow:hidden;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:30px;background:url(../images/calendar.gif)10px no-repeat}#title{background:url(../images/ruler.gif)repeat-x 0px 6px}.spec{width:60px}.gtab a{display:block;float:left;width:80px;height:26px;line-height:26px;text-align:center}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}span.page-link{color:#fff;background:#28a745}a.btn{color:white!important}.btn-success{background:#28a745;border-color:#28a745}.table{color:#424b51}.table td,.table th{padding:.6rem;vertical-align:middle}.table th img,.table td img{vertical-align:text-bottom} \ No newline at end of file diff --git a/src/static/img/base.css b/src/static/img/base.css index f623c28b..2ee285fa 100755 --- a/src/static/img/base.css +++ b/src/static/img/base.css @@ -1 +1 @@ -*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.375rem .75rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.375rem .75rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.375rem .75rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;font-size:0.1pt;line-height:50%}.contents{font-size:1pt;color:#F7F6F8}.nb{border:1px solid #000;height:18px}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:3px;line-height:150%}.nndiv{width:170px;height:20px;margin:0px;padding:0px;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file +*{font-size:12px;letter-spacing:.4px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style-type:none}select{height:calc(1.5em + .75rem + 2px);padding:.25rem .5rem;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s}input{padding:.25rem .5rem;height:calc(1.5em + .75rem + 2px);line-height:18px;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input[type=button],input[type=submit],input[type=reset]{padding:.25rem .5rem;line-height:1.5;color:#fff;background:#28a745;border-radius:.2rem;border:0}textarea{padding:.25rem .5rem;line-height:18px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;border:1px solid #eee;border-radius:.2rem;transition:all .6s;vertical-align:middle}input:focus,textarea:focus{border-color:#28a745;box-shadow:0 0 2px #28a745;outline:none}input[type=radio],input[type=checkbox]{box-shadow:none;outline:none}label{display:inline-block;margin:10px 0}img{margin-right:6px;border-radius:.2rem;vertical-align:baseline}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:.8}a:visited{color:#666}.m1{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-bottom:1px solid #808080}.m2{border-left:1px solid #DFDFDB;border-bottom:1px solid #808080;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.m3{border-left:1px solid #DFDFDB;border-top:1px solid #DFDFDB;border-right:1px solid #DFDFDB}.article{FONT-SIZE:10pt;LINE-HEIGHT:160%;table-layout:fixed;word-break:break-all}.bn{color:#fff;line-height:50%}.contents{color:#F7F6F8}.nb{border:1px solid #ccc}.coolbg{border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#E6E6E6}.ctfield{padding:2px;line-height:150%}.nndiv{width:170px;height:20px;margin:0;padding:0;word-break:break-all;overflow:hidden}.maintable{width:98%!important}a.btn{color:white!important} \ No newline at end of file From f65a9f6ec9c2c22389bc005f2f99420c54c3a1fb Mon Sep 17 00:00:00 2001 From: xushubieli Date: Fri, 28 Jan 2022 15:41:06 +0800 Subject: [PATCH 11/15] =?UTF-8?q?6.0.4=E5=BF=AB=E6=8D=B7=E7=AA=97=E5=8F=A3?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=9C=80=E5=90=8E=E7=95=8C=E9=9D=A2=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dede/catalog_edit.php | 207 +++++++++++++---------------- src/dede/js/dialog.js | 36 +++-- src/dede/templets/article_add.htm | 3 +- src/dede/templets/article_edit.htm | 4 +- src/dede/templets/catalog_main.htm | 4 +- src/dede/templets/index_menu2.htm | 4 +- src/dede/templets/login.htm | 4 +- 7 files changed, 115 insertions(+), 147 deletions(-) diff --git a/src/dede/catalog_edit.php b/src/dede/catalog_edit.php index 1362927e..040f7405 100755 --- a/src/dede/catalog_edit.php +++ b/src/dede/catalog_edit.php @@ -1,5 +1,4 @@ ExecuteNoneQuery($upquery)) { - ShowMsg("保存当前栏目更改时失败,请检查你的输入资料是否存在问题!", "-1"); + ShowMsg("保存当前栏目更改时失败,请检查你的输入资料是否存在问题", "-1"); exit(); } - //如果选择子栏目可投稿,更新顶级栏目为可投稿 if ($topid > 0 && $issend == 1) { $dsql->ExecuteNoneQuery("UPDATE `#@__arctype` SET issend='$issend' WHERE id='$topid'; "); } $slinks = " id IN (".GetSonIds($id).")"; - //修改顶级栏目时强制修改下级的多站点支持属性 if ($topid == 0 && preg_match("#,#", $slinks)) { $upquery = "UPDATE `#@__arctype` SET moresite='$moresite', siteurl='$siteurl',sitepath='$sitepath',ishidden='$ishidden' WHERE 1=1 AND $slinks"; $dsql->ExecuteNoneQuery($upquery); } - //更改子栏目属性 if (!empty($upnext)) { - $upquery = "UPDATE `#@__arctype` SET - issend='$issend', - defaultname='$defaultname', - channeltype='$channeltype', - tempindex='$tempindex', - templist='$templist', - temparticle='$temparticle', - namerule='$namerule', - namerule2='$namerule2', - ishidden='$ishidden' - WHERE 1=1 AND $slinks"; + $upquery = "UPDATE `#@__arctype` SET + issend='$issend', + defaultname='$defaultname', + channeltype='$channeltype', + tempindex='$tempindex', + templist='$templist', + temparticle='$temparticle', + namerule='$namerule', + namerule2='$namerule2', + ishidden='$ishidden' + WHERE 1=1 AND $slinks"; if (!$dsql->ExecuteNoneQuery($upquery)) { - ShowMsg("更改当前栏目成功,但更改下级栏目属性时失败!", "-1"); + ShowMsg("更改当前栏目成功,但更改下级栏目属性时失败", "-1"); exit(); } } UpDateCatCache(); - ShowMsg("成功更改一个分类!", "catalog_main.php"); + ShowMsg("成功更改一个分类", "catalog_main.php"); exit(); } //End Save Action else if ($dopost == "savetime") { $uptopsql = ''; $slinks = " id IN (".GetSonIds($id).")"; - //顶级栏目二级域名根目录处理 if ($topid == 0 && $moresite == 1) { $sitepath = $typedir; @@ -118,27 +108,24 @@ else if ($dopost == "savetime") { if ($topid > 0 && $issend == 1) { $dsql->ExecuteNoneQuery("UPDATE `#@__arctype` SET issend='$issend' WHERE id='$topid'; "); } - $upquery = "UPDATE `#@__arctype` SET - issend='$issend', - sortrank='$sortrank', - typedir='$typedir', - typename='$typename', - isdefault='$isdefault', - defaultname='$defaultname', - ispart='$ispart', - corank='$corank' $uptopsql + issend='$issend', + sortrank='$sortrank', + typedir='$typedir', + typename='$typename', + isdefault='$isdefault', + defaultname='$defaultname', + ispart='$ispart', + corank='$corank' $uptopsql WHERE id='$id' "; - if (!$dsql->ExecuteNoneQuery($upquery)) { - ShowMsg("保存当前栏目更改时失败,请检查你的输入资料是否存在问题!", "-1"); + ShowMsg("保存当前栏目更改时失败,请检查你的输入资料是否存在问题", "-1"); exit(); } UpDateCatCache(); - ShowMsg("成功更改一个分类!", "catalog_main.php"); + ShowMsg("成功更改一个分类", "catalog_main.php"); exit(); } - //读取栏目信息 $dsql->SetQuery("SELECT tp.*,ch.typename as ctypename FROM `#@__arctype` tp LEFT JOIN `#@__channeltype` ch ON ch.id=tp.channeltype WHERE tp.id=$id"); $myrow = $dsql->GetOne(); @@ -152,7 +139,6 @@ if ($topid > 0) { } } $myrow['content'] = empty($myrow['content']) ? " " : $myrow['content']; - //读取频道模型信息 $channelid = $myrow['channeltype']; $dsql->SetQuery("SELECT id,typename,nid FROM `#@__channeltype` WHERE id<>-1 AND isshow=1 ORDER BY id"); @@ -168,105 +154,92 @@ PutCookie('lastCid', GetTopid($id), 3600 * 24, "/"); if ($dopost == 'time') { ?>
- - - - + + + + + + + - - + - - + + - + - + echo "\r\n"; + } + ?> + (仅限制栏目里的文档浏览权限) + - + + + + - - + + +
+
+ + -
- 当前是快捷编辑模式,如果您要修改更详细的参数,请使用高级模式>> + 当前是快捷编辑模式,您要修改更详细的参数,请使用高级模式
是否支持投稿: -   -
- 内容模型: - 内容模型: $arr) { if ($k == $channelid) echo "{$arr['typename']} | {$arr['nid']}"; } ?> - [修改] + 修改
- 栏目名称: - 栏目名称:
排列顺序: - (由低 -> 高) (由低 -> 高)
浏览权限: + - (仅限制栏目里的文档浏览权限)
文件保存目录:
栏目列表选项: - - -
默认页的名称: 默认页的名称:
栏目属性: -
-
-
- -     - + + +
.close{float:right;cursor:default;}") - +document.write("") function editTitle(aid) { var show = document.getElementById("show_news"); var myajax = new DedeAjax(show, false, false, "", "", ""); myajax.SendGet2("catalog_edit.php?dopost=time&id=" + aid); DedeXHTTP = null; } - function $Dede(id) { return document.getElementById(id) } function AlertMsg(title, id) { var msgw, msgh, msgbg, msgcolor, bordercolor, titlecolor, titlebg, content; //弹出窗口设置 - msgw = 600; //窗口宽度 - msgh = 400; //窗口高度 - msgbg = "#FFF"; //内容背景 - msgcolor = "#000"; //内容颜色 - bordercolor = "#5A6D58"; //边框颜色 - titlecolor = "#254015"; //标题颜色 - titlebg = "#369 url(images/tbg.gif)"; //标题背景 + msgw = 600;//窗口宽度 + msgbg = "#FFF";//内容背景 + msgcolor = "#000";//内容颜色 + bordercolor = "#5A6D58";//边框颜色 + titlecolor = "#254015";//标题颜色 + titlebg = "#369 url(images/tbg.gif)";//标题背景 //遮罩背景设置 content = "
对不起,载入失败
"; var sWidth, sHeight; sWidth = screen.availWidth; if (screen.availHeight > document.body.scrollHeight) { - sHeight = screen.availHeight; //少于一屏 + sHeight = screen.availHeight;//少于一屏 } else { - sHeight = document.body.scrollHeight; //多于一屏 + sHeight = document.body.scrollHeight;//多于一屏 } //创建遮罩背景 var maskObj = document.createElement("div"); @@ -42,7 +38,7 @@ function AlertMsg(title, id) { maskObj.style.position = "absolute"; maskObj.style.top = "0"; maskObj.style.left = "0"; - maskObj.style.background = "#777"; + maskObj.style.background = "#666"; maskObj.style.filter = "Alpha(opacity=30);"; maskObj.style.opacity = "0.3"; maskObj.style.width = sWidth + "px"; @@ -59,7 +55,7 @@ function AlertMsg(title, id) { msgObj.style.left = "100px"; msgObj.style.width = msgw + "px"; msgObj.style.height = msgh + "px"; - msgObj.style.fontSize = "12px"; + msgObj.style.fontSize = "14px"; msgObj.style.background = msgbg; msgObj.style.border = "1px solid " + bordercolor; msgObj.style.zIndex = "10001"; @@ -67,13 +63,13 @@ function AlertMsg(title, id) { var thObj = document.createElement("div"); thObj.setAttribute("id", "msgth"); thObj.className = "DragAble"; - thObj.title = "按住鼠标左键可以拖动窗口!"; + thObj.title = "按住鼠标左键可以拖动窗口"; thObj.style.cursor = "move"; - thObj.style.padding = "4px 6px"; + thObj.style.padding = "10px"; thObj.style.color = titlecolor; thObj.style.fontWeight = 'bold'; thObj.style.background = titlebg; - var titleStr = "关闭" + "" + title + ""; + var titleStr = "关闭" + "" + title + ""; thObj.innerHTML = titleStr; //创建内容 var bodyObj = document.createElement("div"); @@ -102,7 +98,6 @@ var nn6 = document.getElementById && !document.all; var isdrag = false; var y, x; var oDragObj; - function moveMouse(e) { if (isdrag) { oDragObj.style.top = (nn6 ? nTY + e.clientY - y : nTY + event.clientY - y) + "px"; @@ -110,7 +105,6 @@ function moveMouse(e) { return false; } } - function initDrag(e) { var oDragHandle = nn6 ? e.target : event.srcElement; var topElement = "HTML"; @@ -129,4 +123,4 @@ function initDrag(e) { } } document.onmousedown = initDrag; -document.onmouseup = new Function("isdrag=false"); +document.onmouseup = new Function("isdrag=false"); \ No newline at end of file diff --git a/src/dede/templets/article_add.htm b/src/dede/templets/article_add.htm index a8fc8eca..75029002 100755 --- a/src/dede/templets/article_add.htm +++ b/src/dede/templets/article_add.htm @@ -31,10 +31,9 @@ function checkSubmit() { } diff --git a/src/dede/templets/catalog_main.htm b/src/dede/templets/catalog_main.htm index eff93916..7116ea64 100755 --- a/src/dede/templets/catalog_main.htm +++ b/src/dede/templets/catalog_main.htm @@ -101,8 +101,8 @@ function SingleMenu(eobj,obj,tid,tname) } diff --git a/src/dede/tpl.php b/src/dede/tpl.php index f049965a..b3e44589 100755 --- a/src/dede/tpl.php +++ b/src/dede/tpl.php @@ -148,7 +148,7 @@ function _upload() {} -----------------------*/ else if ($action == 'uploadok') { CheckCSRF(); if (!is_uploaded_file($upfile)) { - ShowMsg("貌似你什么都没有上传哦!", "javascript:;"); + ShowMsg("貌似您什么都没有上传哦!", "javascript:;"); exit(); } else { if (!preg_match("#\.(htm|html)$#", $upfile_name)) { @@ -186,7 +186,7 @@ function lib_demotag(&\$ctag,&\$refObj) extract(\$ctag->CAttribute->Items, EXTR_SKIP); \$revalue = ''; - //你需编写的代码,不能用echo之类语法,把最终返回值传给\$revalue + //您需编写的代码,不能用echo之类语法,把最终返回值传给\$revalue //------------------------------------------------------ \$revalue = 'Hello Word!'; diff --git a/src/include/arc.taglist.class.php b/src/include/arc.taglist.class.php index 8e9cca35..8636986c 100755 --- a/src/include/arc.taglist.class.php +++ b/src/include/arc.taglist.class.php @@ -74,7 +74,7 @@ class TagList $this->TagInfos = $this->dsql->GetOne("Select * From `#@__tagindex` where tag like '{$this->Tag}' "); if (!is_array($this->TagInfos)) { $fullsearch = $GLOBALS['cfg_phpurl']."/search.php?keyword=".$this->Tag."&searchtype=titlekeyword"; - $msg = "系统无此标签,可能已经移除!

你还可以尝试通过搜索程序去搜索这个关键字:前往搜索>>"; + $msg = "系统无此标签,可能已经移除!

您还可以尝试通过搜索程序去搜索这个关键字:前往搜索>>"; ShowMsg($msg, "-1"); exit(); } diff --git a/src/include/common.inc.php b/src/include/common.inc.php index 25221c83..9b7cc385 100755 --- a/src/include/common.inc.php +++ b/src/include/common.inc.php @@ -203,7 +203,7 @@ $cfg_soft_devteam = 'DedeBIZ'; //文档的默认命名规则 $art_shortname = $cfg_df_ext = '.html'; $cfg_df_namerule = '{typedir}/{aid}'.$cfg_df_ext; -//新建目录的权限,如果你使用别的属性,本程不保证程序能顺利在Linux或Unix系统运行 +//新建目录的权限,如果您使用别的属性,本程不保证程序能顺利在Linux或Unix系统运行 if (isset($cfg_ftp_mkdir) && $cfg_ftp_mkdir == 'Y') { $cfg_dir_purview = '0755'; } else { diff --git a/src/include/data/pinyin-utf8.dat b/src/include/data/pinyin-utf8.dat index f87f6433..ebe01b17 100755 --- a/src/include/data/pinyin-utf8.dat +++ b/src/include/data/pinyin-utf8.dat @@ -1944,7 +1944,7 @@ 泥`ni 尼`ni 拟`ni -你`ni +您`ni 匿`ni 腻`ni 逆`ni diff --git a/src/include/dedevote.class.php b/src/include/dedevote.class.php index 76f7b28c..8196efae 100755 --- a/src/include/dedevote.class.php +++ b/src/include/dedevote.class.php @@ -156,7 +156,7 @@ class DedeVote { global $ENV_GOBACK_URL, $file, $memberID, $row, $content; if (empty($voteitem)) { - return '你没选中任何项目!'; + return '您没选中任何项目!'; } $items = ''; diff --git a/src/include/helpers/extend.helper.php b/src/include/helpers/extend.helper.php index d7589c5f..bd1ee8ef 100755 --- a/src/include/helpers/extend.helper.php +++ b/src/include/helpers/extend.helper.php @@ -31,7 +31,7 @@ if (!function_exists('ParCv')) { if (!function_exists('ParamError')) { function ParamError() { - ShowMsg('对不起,你输入的参数有误!', 'javascript:;'); + ShowMsg('对不起,您输入的参数有误!', 'javascript:;'); exit(); } } diff --git a/src/include/helpers/file.helper.php b/src/include/helpers/file.helper.php index f1669334..f544206d 100755 --- a/src/include/helpers/file.helper.php +++ b/src/include/helpers/file.helper.php @@ -59,7 +59,7 @@ if (!function_exists('OpenFtp')) { global $cfg_basedir, $cfg_ftp_host, $cfg_ftp_port, $cfg_ftp_user, $cfg_ftp_pwd, $cfg_ftp_root, $g_ftpLink; if (!$g_ftpLink) { if ($cfg_ftp_host == '') { - echo "由于你的站点的PHP配置存在限制,程序尝试用FTP进行目录操作,你必须在后台指定FTP相关的变量!"; + echo "由于您的站点的PHP配置存在限制,程序尝试用FTP进行目录操作,您必须在后台指定FTP相关的变量!"; exit(); } $g_ftpLink = ftp_connect($cfg_ftp_host, $cfg_ftp_port); diff --git a/src/include/helpers/upload.helper.php b/src/include/helpers/upload.helper.php index 65c6b33d..cd85271d 100755 --- a/src/include/helpers/upload.helper.php +++ b/src/include/helpers/upload.helper.php @@ -120,7 +120,7 @@ if (!function_exists('MemberUploads')) { //源文件类型检查 if ($utype == 'image') { if (!preg_match("/\.(".$cfg_imgtype.")$/", $GLOBALS[$upname.'_name'])) { - ShowMsg("你所上传的图片类型不在许可列表,请上传{$cfg_imgtype}类型!", '-1'); + ShowMsg("您所上传的图片类型不在许可列表,请上传{$cfg_imgtype}类型!", '-1'); exit(); } $sparr = array("image/pjpeg", "image/jpeg", "image/gif", "image/png", "image/xpng", "image/wbmp"); @@ -133,10 +133,10 @@ if (!function_exists('MemberUploads')) { ShowMsg('上传的文件必须为flash文件!', '-1'); exit(); } else if ($utype == 'media' && !preg_match("/\.(".$cfg_mediatype.")$/", $GLOBALS[$upname.'_name'])) { - ShowMsg('你所上传的文件类型必须为:'.$cfg_mediatype, '-1'); + ShowMsg('您所上传的文件类型必须为:'.$cfg_mediatype, '-1'); exit(); } else if (!preg_match("/\.(".$allAllowType.")$/", $GLOBALS[$upname.'_name'])) { - ShowMsg("你所上传的文件类型不被允许!", '-1'); + ShowMsg("您所上传的文件类型不被允许!", '-1'); exit(); } //再次严格检测文件扩展名是否符合系统定义的类型 @@ -144,12 +144,12 @@ if (!function_exists('MemberUploads')) { $sname = $fs[count($fs) - 1]; $alltypes = explode('|', $allAllowType); if (!in_array(strtolower($sname), $alltypes)) { - ShowMsg('你所上传的文件类型不被允许!', '-1'); + ShowMsg('您所上传的文件类型不被允许!', '-1'); exit(); } //强制禁止的文件类型 if (preg_match("/(asp|php|pl|cgi|shtm|js)$/", $sname)) { - ShowMsg('你上传的文件为系统禁止的类型!', '-1'); + ShowMsg('您上传的文件为系统禁止的类型!', '-1'); exit(); } if ($exname == '') { @@ -162,7 +162,7 @@ if (!function_exists('MemberUploads')) { if (@filesize($cfg_basedir.$filename) > $GLOBALS['cfg_mb_upload_size'] * 1024) { @unlink($cfg_basedir.$filename); - ShowMsg('你上传的文件超出系统大小限制!', '-1'); + ShowMsg('您上传的文件超出系统大小限制!', '-1'); exit(); } diff --git a/src/include/memberlogin.class.php b/src/include/memberlogin.class.php index e54d8b56..41c38036 100755 --- a/src/include/memberlogin.class.php +++ b/src/include/memberlogin.class.php @@ -44,7 +44,7 @@ function CheckUserID($uid, $msgtitle = '用户名', $ckhas = TRUE) if (isset($ck_uid[$i + 1]) && ord($ck_uid[$i + 1]) > 0x40) { $i++; } else { - return $msgtitle.'可能含有乱码,建议你改用英文字母和数字组合!'; + return $msgtitle.'可能含有乱码,建议您改用英文字母和数字组合!'; } } else { if (preg_match("/[^0-9a-z@\.-]/i", $ck_uid[$i])) { @@ -69,13 +69,13 @@ function CheckNotAllow() global $dsql, $cfg_ml, $cfg_mb_spacesta; if (empty($cfg_ml->M_ID)) return; if ($cfg_ml->M_Spacesta == -2) { - ShowMsg("你已经被禁言,请与管理员联系!", "-1"); + ShowMsg("您已经被禁言,请与管理员联系!", "-1"); exit(); } else if ($cfg_ml->M_Spacesta == -10) { - ShowMsg("系统开启了邮件审核机制,因此你的帐号需要审核后才能发信息!", "-1"); + ShowMsg("系统开启了邮件审核机制,因此您的帐号需要审核后才能发信息!", "-1"); exit(); } else if ($cfg_ml->M_Spacesta < 0) { - ShowMsg('系统开启了审核机制,因此你的帐号需要管理员审核后才能发信息!', '-1'); + ShowMsg('系统开启了审核机制,因此您的帐号需要管理员审核后才能发信息!', '-1'); exit(); } } @@ -264,7 +264,7 @@ class MemberLogin $hasuse = $this->GetUserSpace(); $maxSize = $cfg_mb_max * 1024 * 1024; if ($hasuse >= $maxSize) { - ShowMsg('你的空间已满,不允许上传新文件!', '-1'); + ShowMsg('您的空间已满,不允许上传新文件!', '-1'); exit(); } } @@ -472,10 +472,10 @@ class MemberLogin { $sta = ''; if ($this->M_Rank == 0) { - $sta .= "你目前的身份是:普通会员"; + $sta .= "您目前的身份是:普通会员"; } else { $row = $dsql->GetOne("Select membername From `#@__arcrank` where rank='".$this->M_Rank."'"); - $sta .= "你目前的身份是:".$row['membername']; + $sta .= "您目前的身份是:".$row['membername']; $rs = $dsql->GetOne("Select id From `#@__admin` where userid='".$this->M_LoginID."'"); if (!is_array($rs)) { if ($this->M_Rank > 10 && $this->M_HasDay > 0) $sta .= " 剩余天数: ".$this->M_HasDay." 天 "; diff --git a/src/include/taglib/demotag.lib.php b/src/include/taglib/demotag.lib.php index 2bc94b83..c3b4074f 100755 --- a/src/include/taglib/demotag.lib.php +++ b/src/include/taglib/demotag.lib.php @@ -23,7 +23,7 @@ function lib_demotag(&$ctag, &$refObj) extract($ctag->CAttribute->Items, EXTR_SKIP); $revalue = ''; - //你需编写的代码,不能用echo之类语法,把最终返回值传给$revalue + //您需编写的代码,不能用echo之类语法,把最终返回值传给$revalue //------------------------------------------------------ $revalue = 'Hello Word!'; diff --git a/src/include/userlogin.class.php b/src/include/userlogin.class.php index 43f016b8..a6d5a943 100755 --- a/src/include/userlogin.class.php +++ b/src/include/userlogin.class.php @@ -55,7 +55,7 @@ function TestPurview($n) function CheckPurview($n) { if (!TestPurview($n)) { - ShowMsg("对不起,你没有权限执行此操作!

点击此返回上一页>>", 'javascript:;'); + ShowMsg("对不起,您没有权限执行此操作!

点击此返回上一页>>", 'javascript:;'); exit(); } } diff --git a/src/install/config.cache.inc.php b/src/install/config.cache.inc.php index 94656045..23875b1b 100755 --- a/src/install/config.cache.inc.php +++ b/src/install/config.cache.inc.php @@ -19,7 +19,7 @@ $cfg_mediatype = 'swf|mpg|mp3|rm|rmvb|wmv|wma|wav|mid|mov'; $cfg_specnote = 6; $cfg_list_symbol = ' > '; $cfg_notallowstr = '非典|艾滋病|阳痿'; -$cfg_replacestr = '她妈|它妈|他妈|你妈|去死|贱人'; +$cfg_replacestr = '她妈|它妈|他妈|您妈|去死|贱人'; $cfg_feedbackcheck = 'N'; $cfg_keyword_replace = 'Y'; $cfg_fck_xhtml = 'N'; diff --git a/src/install/index.php b/src/install/index.php index 2bce7687..a47c3b00 100644 --- a/src/install/index.php +++ b/src/install/index.php @@ -27,7 +27,7 @@ foreach(Array('_GET','_POST','_COOKIE') as $_request) require_once(DEDEINC.'/common.func.php'); if(file_exists(INSLOCKFILE)) { - exit(" 程序已运行安装,如果你确定要重新安装,请先从FTP中删除 install/install_lock.txt!"); + exit(" 程序已运行安装,如果您确定要重新安装,请先从FTP中删除 install/install_lock.txt!"); } if(empty($step)) { @@ -105,7 +105,7 @@ else if($step==2) $dbtype = 'mysql'; $conn = mysql_connect($dbhost,$dbuser,$dbpwd) or die(""); mysql_query("CREATE DATABASE IF NOT EXISTS `".$dbname."`;",$conn); - mysql_select_db($dbname, $conn) or die(""); + mysql_select_db($dbname, $conn) or die(""); //获得数据库版本信息 $rs = mysql_query("SELECT VERSION();",$conn); $row = mysql_fetch_array($rs); diff --git a/src/install/sql-dfdata.txt b/src/install/sql-dfdata.txt index a3875b3c..985d9326 100755 --- a/src/install/sql-dfdata.txt +++ b/src/install/sql-dfdata.txt @@ -594,7 +594,7 @@ INSERT INTO `#@__sys_set` VALUES('1','nature','性格外向,性格内向,活泼 ('2','language','普通话,上海话,广东话,英语,日语,韩语,法语,意大利语,德语,西班牙语,俄语,阿拉伯语'); -INSERT INTO `#@__vote` VALUES('1','你是从哪儿得知本站的?','1266336000','1584547200','0','0','1','1','0','0','朋友介绍rn门户网站的搜索引擎rnGoogle或百度搜索rn别的网站上的链接rn其它途径rn'); +INSERT INTO `#@__vote` VALUES('1','您是从哪儿得知本站的?','1266336000','1584547200','0','0','1','1','0','0','朋友介绍rn门户网站的搜索引擎rnGoogle或百度搜索rn别的网站上的链接rn其它途径rn'); INSERT INTO `#@__sys_enum` VALUES('139','cms制作','503','vocation','503','0'), ('39','租房','1','house','0','1'), @@ -3994,7 +3994,7 @@ INSERT INTO `#@__sysconfig` VALUES('1','cfg_basehost','站点根网址','1','str ('47','cfg_cli_time','服务器时区设置','2','number','8'), ('48','cfg_mb_addontype','会员附件许可的类型','4','bstring','swf|mpg|mp3|rm|rmvb|wmv|wma|wav|mid|mov|zip|rar|doc|xsl|ppt|wps'), ('49','cfg_mb_max','会员附件总大小限制(MB)','4','number','500'), -('20','cfg_replacestr','替换词语(词语会被替换成***)
用|分开,但不要在结尾加|','5','bstring','她妈|它妈|他妈|你妈|去死|贱人'), +('20','cfg_replacestr','替换词语(词语会被替换成***)
用|分开,但不要在结尾加|','5','bstring','她妈|它妈|他妈|您妈|去死|贱人'), ('719','cfg_makeindex','发布文章后马上更新网站主页','6','bool','N'), ('51','cfg_keyword_like','使用关键词关连文章','6','bool','N'), ('52','cfg_index_max','网站主页调用函数最大索引文档数
不适用于经常单栏目采集过多内容的网站
不启用本项此值设置为0即可','6','number','10000'), diff --git a/src/install/templates/step-1.html b/src/install/templates/step-1.html index 7dcd696f..9fab8c4d 100755 --- a/src/install/templates/step-1.html +++ b/src/install/templates/step-1.html @@ -100,7 +100,7 @@
在根目录安装时不必理会
- 安装即表示你同意站点授权协议 + 安装即表示您同意站点授权协议 diff --git a/src/member/ajax_loginsta.php b/src/member/ajax_loginsta.php index 23a69506..979a411d 100755 --- a/src/member/ajax_loginsta.php +++ b/src/member/ajax_loginsta.php @@ -48,7 +48,7 @@ if ($format === 'json') { } ?>
-
你好:M_UserName; ?>,欢迎登录
+
您好:M_UserName; ?>,欢迎登录
diff --git a/src/member/album_add.php b/src/member/album_add.php index 417ef118..3a21ce7b 100755 --- a/src/member/album_add.php +++ b/src/member/album_add.php @@ -14,11 +14,11 @@ require_once(dirname(__FILE__)."/config.php"); //考虑安全原因不管是否开启游客投稿功能,都不允许用户对图集投稿 CheckRank(0, 0); if ($cfg_mb_lit == 'Y') { - ShowMsg("由于系统开启了精简版会员空间,你访问的功能不可用!", "-1"); + ShowMsg("由于系统开启了精简版会员空间,您访问的功能不可用!", "-1"); exit(); } if ($cfg_mb_album == 'N') { - ShowMsg("对不起,由于系统关闭了图集功能,你访问的功能不可用!", "-1"); + ShowMsg("对不起,由于系统关闭了图集功能,您访问的功能不可用!", "-1"); exit(); } require_once(DEDEINC."/dedetag.class.php"); @@ -182,7 +182,7 @@ VALUES ('$arcID','$typeid','$sortrank','$flag','$ismake','$channelid','$arcrank' //返回成功信息 $msg = " -  请选择你的后续操作: +  请选择您的后续操作: 继续发布图集    查看图集 diff --git a/src/member/album_edit.php b/src/member/album_edit.php index 0d89e414..48e7e0c3 100755 --- a/src/member/album_edit.php +++ b/src/member/album_edit.php @@ -12,11 +12,11 @@ require_once(dirname(__FILE__)."/config.php"); CheckRank(0, 0); if ($cfg_mb_lit == 'Y') { - ShowMsg("由于系统开启了精简版会员空间,你访问的功能不可用!", "-1"); + ShowMsg("由于系统开启了精简版会员空间,您访问的功能不可用!", "-1"); exit(); } if ($cfg_mb_album == 'N') { - ShowMsg("对不起,由于系统关闭了图集功能,你访问的功能不可用!", "-1"); + ShowMsg("对不起,由于系统关闭了图集功能,您访问的功能不可用!", "-1"); exit(); } require_once(DEDEINC."/dedetag.class.php"); @@ -44,7 +44,7 @@ if (empty($dopost)) { $dtime = time(); $maxtime = $cfg_mb_editday * 24 * 3600; if ($dtime - $row['senddate'] > $maxtime) { - ShowMsg("这篇文档已经锁定,你不能再修改它!", "-1"); + ShowMsg("这篇文档已经锁定,您不能再修改它!", "-1"); exit(); } } @@ -170,7 +170,7 @@ function _Save(){ } //--------------------------------- //返回成功信息 //---------------------------------- - $msg = "  请选择你的后续操作: + $msg = "  请选择您的后续操作: 发布新图集    查看更改 diff --git a/src/member/archives_add.php b/src/member/archives_add.php index 224129b8..412f3be7 100755 --- a/src/member/archives_add.php +++ b/src/member/archives_add.php @@ -144,7 +144,7 @@ VALUES ('$arcID','$typeid','$sortrank','$flag','$ismake','$channelid','$arcrank' //返回成功信息 $msg = " -   请选择你的后续操作: +   请选择您的后续操作: 继续发布内容    查看内容 diff --git a/src/member/archives_do.php b/src/member/archives_do.php index 89e66a25..bdac2666 100755 --- a/src/member/archives_do.php +++ b/src/member/archives_do.php @@ -99,7 +99,7 @@ function delArchives() $row = $dsql->GetOne($equery); if (!is_array($row)) { - ShowMsg("你没有权限删除这篇文档!", "-1"); + ShowMsg("您没有权限删除这篇文档!", "-1"); exit(); } if (trim($row['maintable']) == '') $row['maintable'] = '#@__archives'; @@ -110,7 +110,7 @@ function delArchives() } $arr = $dsql->GetOne($equery); if (!is_array($arr)) { - ShowMsg("你没有权限删除这篇文档!", "-1"); + ShowMsg("您没有权限删除这篇文档!", "-1"); exit(); } @@ -118,7 +118,7 @@ function delArchives() $dtime = time(); $maxtime = $cfg_mb_editday * 24 * 3600; if ($dtime - $row['senddate'] > $maxtime) { - ShowMsg("这篇文档已经锁定,你不能再删除它!", "-1"); + ShowMsg("这篇文档已经锁定,您不能再删除它!", "-1"); exit(); } } diff --git a/src/member/archives_edit.php b/src/member/archives_edit.php index cca7db66..13e7da69 100755 --- a/src/member/archives_edit.php +++ b/src/member/archives_edit.php @@ -36,7 +36,7 @@ if (empty($dopost)) { $dtime = time(); $maxtime = $cfg_mb_editday * 24 * 3600; if ($dtime - $row['senddate'] > $maxtime) { - ShowMsg("这篇文档已经锁定,你不能再修改它!", "-1"); + ShowMsg("这篇文档已经锁定,您不能再修改它!", "-1"); exit(); } } @@ -120,7 +120,7 @@ function _SaveArticle(){ } if ($artUrl == '') $artUrl = $cfg_phpurl."/view.php?aid=$aid"; //返回成功信息 - $msg = "  请选择你的后续操作: + $msg = "  请选择您的后续操作: 发布新内容    查看更改 diff --git a/src/member/archives_sg_add.php b/src/member/archives_sg_add.php index c65157fd..0913e0f0 100755 --- a/src/member/archives_sg_add.php +++ b/src/member/archives_sg_add.php @@ -80,7 +80,7 @@ function _SaveArticle(){ } //检测栏目是否有投稿权限 if ($cInfos['issend'] != 1 || $cInfos['ispart'] != 0 || $cInfos['channeltype'] != $channelid || $cInfos['cissend'] != 1) { - ShowMsg("你所选择的栏目不支持投稿!", "-1"); + ShowMsg("您所选择的栏目不支持投稿!", "-1"); exit(); } @@ -181,7 +181,7 @@ function _SaveArticle(){ } //返回成功信息 $msg = " -   请选择你的后续操作: +   请选择您的后续操作: 继续发布内容    查看内容 diff --git a/src/member/archives_sg_edit.php b/src/member/archives_sg_edit.php index f928509e..c30a9659 100755 --- a/src/member/archives_sg_edit.php +++ b/src/member/archives_sg_edit.php @@ -34,7 +34,7 @@ if (empty($dopost)) { } $addRow = $dsql->GetOne("SELECT * FROM `{$cInfos['addtable']}` WHERE aid='$aid'; "); if ($addRow['mid'] != $cfg_ml->M_ID) { - ShowMsg("对不起,你没权限操作此文档!", "-1"); + ShowMsg("对不起,您没权限操作此文档!", "-1"); exit(); } $addRow['id'] = $addRow['aid']; @@ -71,7 +71,7 @@ function _SaveArticle(){ } //检测栏目是否有投稿权限 if ($cInfos['issend'] != 1 || $cInfos['ispart'] != 0 || $cInfos['channeltype'] != $channelid || $cInfos['cissend'] != 1) { - ShowMsg("你所选择的栏目不支持投稿!", "-1"); + ShowMsg("您所选择的栏目不支持投稿!", "-1"); exit(); } @@ -140,7 +140,7 @@ function _SaveArticle(){ } if ($artUrl == '') $artUrl = $cfg_phpurl."/view.php?aid=$aid"; //返回成功信息 - $msg = "请选择你的后续操作: + $msg = "请选择您的后续操作: 发布新内容    查看更改 diff --git a/src/member/article_add.php b/src/member/article_add.php index d2214c3f..ebf72914 100755 --- a/src/member/article_add.php +++ b/src/member/article_add.php @@ -132,7 +132,7 @@ VALUES ('$arcID','$typeid','$sortrank','$flag','$ismake','$channelid','$arcrank' //返回成功信息 $msg = - "请选择你的后续操作: + "请选择您的后续操作: 继续发布文章    查看文章 diff --git a/src/member/article_edit.php b/src/member/article_edit.php index 2120860a..f9033b1a 100755 --- a/src/member/article_edit.php +++ b/src/member/article_edit.php @@ -36,7 +36,7 @@ if (empty($dopost)) { $dtime = time(); $maxtime = $cfg_mb_editday * 24 * 3600; if ($dtime - $row['senddate'] > $maxtime) { - ShowMsg("这篇文档已经锁定,你不能再修改它!", "-1"); + ShowMsg("这篇文档已经锁定,您不能再修改它!", "-1"); exit(); } } @@ -110,7 +110,7 @@ function _SaveArticle(){ } } //返回成功信息 - $msg = "  请选择你的后续操作: + $msg = "  请选择您的后续操作: 发布新文章    查看更改 diff --git a/src/member/buy_action.php b/src/member/buy_action.php index b693e18d..cbafe573 100755 --- a/src/member/buy_action.php +++ b/src/member/buy_action.php @@ -54,7 +54,7 @@ if ($product == 'member') { $ptype = "会员升级"; $row = $dsql->GetOne("SELECT * FROM `#@__member_type` WHERE aid='{$pid}'"); if (!is_array($row)) { - ShowMsg("无法识别你的订单!", 'javascript:;'); + ShowMsg("无法识别您的订单!", 'javascript:;'); exit(); } $pname = $row['pname']; @@ -63,7 +63,7 @@ if ($product == 'member') { $ptype = "点卡购买"; $row = $dsql->GetOne("SELECT * From `#@__moneycard_type` WHERE tid='{$pid}'"); if (!is_array($row)) { - ShowMsg("无法识别你的订单!", 'javascript:;'); + ShowMsg("无法识别您的订单!", 'javascript:;'); exit(); } $pname = $row['pname']; @@ -81,7 +81,7 @@ if (!isset($paytype)) { } if ($price == '') { - echo "无法识别你的订单!"; + echo "无法识别您的订单!"; exit(); } diff --git a/src/member/check_card.php b/src/member/check_card.php index 263e24cb..26420ec6 100755 --- a/src/member/check_card.php +++ b/src/member/check_card.php @@ -37,5 +37,5 @@ $hasMoney = $row['num']; $dsql->ExecuteNoneQuery("UPDATE `#@__moneycard_record` SET uid='".$cfg_ml->M_ID."',isexp='-1',utime='".time()."' WHERE cardid='$cardid' "); $dsql->ExecuteNoneQuery("UPDATE `#@__member` SET money=money+$hasMoney WHERE mid='".$cfg_ml->M_ID."'"); -ShowMsg("充值成功,你本次增加的金币为:{$hasMoney} 个!", -1); +ShowMsg("充值成功,您本次增加的金币为:{$hasMoney} 个!", -1); exit(); diff --git a/src/member/config.php b/src/member/config.php index 764fbc05..5165cac0 100755 --- a/src/member/config.php +++ b/src/member/config.php @@ -112,7 +112,7 @@ if (strtoupper($_SERVER['REQUEST_METHOD']) !== 'POST') { } -//获得当前脚本名称,如果你的系统被禁用了$_SERVER变量,请自行更改这个选项 +//获得当前脚本名称,如果您的系统被禁用了$_SERVER变量,请自行更改这个选项 $dedeNowurl = $s_scriptName = ''; $dedeNowurl = GetCurUrl(); $dedeNowurls = explode('?', $dedeNowurl); @@ -127,7 +127,7 @@ if ($cfg_mb_open == 'N') { if ($format === 'json') { echo json_encode(array( "code" => -1, - "msg" => "系统关闭了会员功能,因此你无法访问此页面", + "msg" => "系统关闭了会员功能,因此您无法访问此页面", "data" => null, )); exit; @@ -135,7 +135,7 @@ if ($cfg_mb_open == 'N') { die(''); } } else { - ShowMsg("系统关闭了会员功能,因此你无法访问此页面!", "javascript:;"); + ShowMsg("系统关闭了会员功能,因此您无法访问此页面!", "javascript:;"); exit(); } } @@ -199,10 +199,10 @@ function CheckRank($rank = 0, $money = 0) $myname = "普通会员"; } } - ShowMsg("对不起,需要:$needname 才能访问本页面。
你目前的等级是:$myname 。", "-1", 0, 5000); + ShowMsg("对不起,需要:$needname 才能访问本页面。
您目前的等级是:$myname 。", "-1", 0, 5000); exit(); } else if ($cfg_ml->M_Money < $money) { - ShowMsg("对不起,需要花费金币:$money 才能访问本页面。
你目前拥有的金币是:".$cfg_ml->M_Money." 。", "-1", 0, 5000); + ShowMsg("对不起,需要花费金币:$money 才能访问本页面。
您目前拥有的金币是:".$cfg_ml->M_Money." 。", "-1", 0, 5000); exit(); } } diff --git a/src/member/content_list.php b/src/member/content_list.php index 32be6f58..359dfffc 100755 --- a/src/member/content_list.php +++ b/src/member/content_list.php @@ -36,7 +36,7 @@ $maxtime = $cfg_mb_editday * 24 * 3600; //禁止访问无权限的模型 if ($cInfos['usertype'] != '' && $cInfos['usertype'] != $cfg_ml->M_MbType) { - ShowMsg('你无权限访问该部分', '-1'); + ShowMsg('您无权限访问该部分', '-1'); exit(); } diff --git a/src/member/content_sg_list.php b/src/member/content_sg_list.php index a1dfe462..f0452c73 100755 --- a/src/member/content_sg_list.php +++ b/src/member/content_sg_list.php @@ -34,7 +34,7 @@ $arcsta = $cInfos['arcsta']; //禁止访问无权限的模型 if ($cInfos['usertype'] != '' && $cInfos['usertype'] != $cfg_ml->M_MbType) { - ShowMsg('你无权限访问该部分', '-1'); + ShowMsg('您无权限访问该部分', '-1'); exit(); } diff --git a/src/member/edit_baseinfo.php b/src/member/edit_baseinfo.php index 0f81a729..e28fb3df 100755 --- a/src/member/edit_baseinfo.php +++ b/src/member/edit_baseinfo.php @@ -27,11 +27,11 @@ if ($dopost == 'save') { exit(); } if (!is_array($row) || $row['pwd'] != md5($oldpwd)) { - ShowMsg('你输入的旧密码错误或没填写,不允许修改资料!', '-1'); + ShowMsg('您输入的旧密码错误或没填写,不允许修改资料!', '-1'); exit(); } if ($userpwd != $userpwdok) { - ShowMsg('你两次输入的新密码不一致!', '-1'); + ShowMsg('您两次输入的新密码不一致!', '-1'); exit(); } if ($userpwd == '') { @@ -45,7 +45,7 @@ if ($dopost == 'save') { //修改安全问题或Email if ($email != $row['email'] || ($newsafequestion != 0 && $newsafeanswer != '')) { if ($row['safequestion'] != 0 && ($row['safequestion'] != $safequestion || $row['safeanswer'] != $safeanswer)) { - ShowMsg('你的旧安全问题及答案不正确,不能修改Email或安全问题!', '-1'); + ShowMsg('您的旧安全问题及答案不正确,不能修改Email或安全问题!', '-1'); exit(); } @@ -62,7 +62,7 @@ if ($dopost == 'save') { //修改安全问题 if ($newsafequestion != 0 && $newsafeanswer != '') { if (strlen($newsafeanswer) > 30) { - ShowMsg('你的新安全问题的答案太长了,请保持在30字节以内!', '-1'); + ShowMsg('您的新安全问题的答案太长了,请保持在30字节以内!', '-1'); exit(); } else { $newsafequestion = HtmlReplace($newsafequestion, 1); @@ -98,7 +98,7 @@ if ($dopost == 'save') { } // 清除会员缓存 $cfg_ml->DelCache($cfg_ml->M_ID); - ShowMsg('成功更新你的基本资料!', 'edit_baseinfo.php', 0, 5000); + ShowMsg('成功更新您的基本资料!', 'edit_baseinfo.php', 0, 5000); exit(); } include(DEDEMEMBER."/templets/edit_baseinfo.htm"); diff --git a/src/member/inc/archives_check.php b/src/member/inc/archives_check.php index 0a6b3cc2..05a540bd 100755 --- a/src/member/inc/archives_check.php +++ b/src/member/inc/archives_check.php @@ -39,7 +39,7 @@ $cInfos = $dsql->GetOne($query); //检测栏目是否有投稿权限 if ($cInfos['issend'] != 1 || $cInfos['ispart'] != 0 || $cInfos['channeltype'] != $channelid || $cInfos['cissend'] != 1) { - ShowMsg("你所选择的栏目不支持投稿!", "-1"); + ShowMsg("您所选择的栏目不支持投稿!", "-1"); exit(); } diff --git a/src/member/inc/archives_check_edit.php b/src/member/inc/archives_check_edit.php index b7938741..4471a930 100755 --- a/src/member/inc/archives_check_edit.php +++ b/src/member/inc/archives_check_edit.php @@ -38,7 +38,7 @@ $addtable = $cInfos['addtable']; //检测栏目是否有投稿权限 if ($cInfos['issend'] != 1 || $cInfos['ispart'] != 0 || $cInfos['channeltype'] != $channelid || $cInfos['cissend'] != 1) { - ShowMsg("你所选择的栏目不支持投稿!", "-1"); + ShowMsg("您所选择的栏目不支持投稿!", "-1"); exit(); } diff --git a/src/member/inc/config_space.php b/src/member/inc/config_space.php index 931a7061..d61f72a8 100755 --- a/src/member/inc/config_space.php +++ b/src/member/inc/config_space.php @@ -13,7 +13,7 @@ if (!defined('DEDEMEMBER')) exit('dedebiz'); //检查是否开放会员功能 if ($cfg_mb_open == 'N') { - ShowMsg("系统关闭了会员功能,因此你无法访问此页面!", "javascript:;"); + ShowMsg("系统关闭了会员功能,因此您无法访问此页面!", "javascript:;"); exit(); } @@ -122,7 +122,7 @@ function GetUserSpaceInfos() where m.userid like '$uid' ORDER BY g.dtime DESC "; $_vars = $dsql->GetOne($query); if (!is_array($_vars)) { - ShowMsg("你访问的用户可能已经被删除!", "javascript:;"); + ShowMsg("您访问的用户可能已经被删除!", "javascript:;"); exit(); } if ($_vars['face'] == '') { diff --git a/src/member/index_do.php b/src/member/index_do.php index d3712190..5626ebe7 100755 --- a/src/member/index_do.php +++ b/src/member/index_do.php @@ -16,11 +16,11 @@ function check_email() *******************/ if ($fmdo == 'sendMail') { if (!CheckEmail($cfg_ml->fields['email'])) { - ShowMsg('你的邮箱格式有错误!', '-1'); + ShowMsg('您的邮箱格式有错误!', '-1'); exit(); } if ($cfg_ml->fields['spacesta'] != -10) { - ShowMsg('你的帐号不在邮件验证状态,本操作无效!', '-1'); + ShowMsg('您的帐号不在邮件验证状态,本操作无效!', '-1'); exit(); } $userhash = md5($cfg_cookie_encode.'--'.$cfg_ml->fields['mid'].'--'.$cfg_ml->fields['email']); @@ -55,22 +55,22 @@ if ($fmdo == 'sendMail') { } } - ShowMsg('成功发送邮件,请稍后登录你的邮箱进行接收!', '/member'); + ShowMsg('成功发送邮件,请稍后登录您的邮箱进行接收!', '/member'); exit(); } else if ($fmdo == 'checkMail') { $mid = intval($mid); if (empty($mid)) { - ShowMsg('你的效验串不合法!', '-1'); + ShowMsg('您的效验串不合法!', '-1'); exit(); } $row = $dsql->GetOne("SELECT * FROM `#@__member` WHERE mid='{$mid}' "); $needUserhash = md5($cfg_cookie_encode.'--'.$mid.'--'.$row['email']); if ($needUserhash != $userhash) { - ShowMsg('你的效验串不合法!', '-1'); + ShowMsg('您的效验串不合法!', '-1'); exit(); } if ($row['spacesta'] != -10) { - ShowMsg('你的帐号不在邮件验证状态,本操作无效!', '-1'); + ShowMsg('您的帐号不在邮件验证状态,本操作无效!', '-1'); exit(); } $dsql->ExecuteNoneQuery("UPDATE `#@__member` SET spacesta=0 WHERE mid='{$mid}' "); @@ -193,7 +193,7 @@ else if ($fmdo == 'login') { } if (CheckUserID($userid, '', false) != 'ok') { ResetVdValue(); - ShowMsg("你输入的用户名 {$userid} 不合法!", "index.php"); + ShowMsg("您输入的用户名 {$userid} 不合法!", "index.php"); exit(); } if ($pwd == '') { diff --git a/src/member/login.php b/src/member/login.php index 54e54156..0081856c 100755 --- a/src/member/login.php +++ b/src/member/login.php @@ -10,7 +10,7 @@ require_once(dirname(__FILE__)."/config.php"); $gourl = RemoveXSS($gourl); if ($cfg_ml->IsLogin()) { - ShowMsg('你已经登录系统,无需重新注册!', 'index.php'); + ShowMsg('您已经登录系统,无需重新注册!', 'index.php'); exit(); } require_once(dirname(__FILE__)."/templets/login.htm"); diff --git a/src/member/pm.php b/src/member/pm.php index 1473c81f..9bdb1ccf 100755 --- a/src/member/pm.php +++ b/src/member/pm.php @@ -15,7 +15,7 @@ $menutype = 'mydede'; $menutype_son = 'pm'; $id = isset($id) ? intval($id) : 0; if ($cfg_mb_lit == 'Y') { - ShowMsg('由于系统开启了精简版会员空间,你不能向其它会员发短信息,不过你可以向他留言!', '-1'); + ShowMsg('由于系统开启了精简版会员空间,您不能向其它会员发短信息,不过您可以向他留言!', '-1'); exit(); } @@ -40,7 +40,7 @@ if ($dopost == 'read') { $result = array( "code" => -1, "data" => null, - "msg" => "对不起,你指定的消息不存在或你没权限查看", + "msg" => "对不起,您指定的消息不存在或您没权限查看", ); echo json_encode($result); exit(); diff --git a/src/member/reg_new.php b/src/member/reg_new.php index e8278b18..bcc141a4 100755 --- a/src/member/reg_new.php +++ b/src/member/reg_new.php @@ -19,7 +19,7 @@ $step = empty($step) ? 1 : intval($step); if ($step == 1) { if ($cfg_ml->IsLogin()) { - ShowMsg('你已经登录系统,无需重新注册!', 'index.php'); + ShowMsg('您已经登录系统,无需重新注册!', 'index.php'); exit(); } if ($dopost == 'regbase') { @@ -51,15 +51,15 @@ if ($step == 1) { exit(); } if (strlen($userid) > 20 || strlen($uname) > 36) { - ShowMsg('你的用户名或用户笔名过长,不允许注册!', '-1'); + ShowMsg('您的用户名或用户笔名过长,不允许注册!', '-1'); exit(); } if (strlen($userid) < $cfg_mb_idmin || strlen($pwd) < $cfg_mb_pwdmin) { - ShowMsg("你的用户名或密码过短,不允许注册!", "-1"); + ShowMsg("您的用户名或密码过短,不允许注册!", "-1"); exit(); } if ($pwdc != $pwd) { - ShowMsg('你两次输入的密码不一致!', '-1'); + ShowMsg('您两次输入的密码不一致!', '-1'); exit(); } @@ -69,7 +69,7 @@ if ($step == 1) { //检测用户名是否存在 $row = $dsql->GetOne("SELECT mid FROM `#@__member` WHERE userid LIKE '$userid' "); if (is_array($row)) { - ShowMsg("你指定的用户名 {$userid} 已存在,请使用别的用户名!", "-1"); + ShowMsg("您指定的用户名 {$userid} 已存在,请使用别的用户名!", "-1"); exit(); } @@ -125,7 +125,7 @@ if ($step == 1) { $cfg_ml = new MemberLogin(7 * 3600); $rs = $cfg_ml->CheckUser($userid, $userpwd); - ShowMsg('你已经登录系统,无需重新注册!', 'index.php'); + ShowMsg('您已经登录系统,无需重新注册!', 'index.php'); exit; } else { ShowMsg("注册失败,请检查资料是否有误或与管理员联系!", "-1"); @@ -138,7 +138,7 @@ if ($step == 1) { ShowMsg("尚未完成基本信息的注册,请返回重新填写!", "index_do.php?fmdo=user&dopost=regnew"); exit; } else { - ShowMsg('你已经登录系统,无需重新注册!', 'index.php'); + ShowMsg('您已经登录系统,无需重新注册!', 'index.php'); exit; } } diff --git a/src/member/resetpassword.php b/src/member/resetpassword.php index f4a88083..5cf9bf29 100755 --- a/src/member/resetpassword.php +++ b/src/member/resetpassword.php @@ -36,7 +36,7 @@ if ($dopost == "") { showmsg('对不起,请输入正确的邮箱格式', '-1'); exit; } else if (CheckUserID($userid, '', false) != 'ok') { - ShowMsg("你输入的用户名 {$userid} 不合法!", "-1"); + ShowMsg("您输入的用户名 {$userid} 不合法!", "-1"); exit(); } $member = member($mail, $userid); diff --git a/src/member/soft_add.php b/src/member/soft_add.php index de1996cc..57a951c4 100755 --- a/src/member/soft_add.php +++ b/src/member/soft_add.php @@ -13,7 +13,7 @@ require_once(dirname(__FILE__)."/config.php"); //考虑安全原因不管是否开启游客投稿功能,都不允许用户投稿 CheckRank(0, 0); if ($cfg_mb_lit == 'Y') { - ShowMsg("由于系统开启了精简版会员空间,你访问的功能不可用!", "-1"); + ShowMsg("由于系统开启了精简版会员空间,您访问的功能不可用!", "-1"); exit(); } require_once(DEDEINC."/dedetag.class.php"); @@ -79,7 +79,7 @@ function _SaveArticle(){ } if ($v == '') { continue; } else if ($v == 'templet') { - ShowMsg("你保存的字段有误,请检查!", "-1"); + ShowMsg("您保存的字段有误,请检查!", "-1"); exit(); } $vs = explode(',', $v); @@ -195,7 +195,7 @@ VALUES ('$arcID','$typeid','$sortrank','$flag','$ismake','$channelid','$arcrank' //返回成功信息 $msg = " - 请选择你的后续操作: + 请选择您的后续操作: 继续发布软件    查看软件 diff --git a/src/member/soft_edit.php b/src/member/soft_edit.php index 789fc864..1c81cfa1 100755 --- a/src/member/soft_edit.php +++ b/src/member/soft_edit.php @@ -42,7 +42,7 @@ if (empty($dopost)) { $dtime = time(); $maxtime = $cfg_mb_editday * 24 * 3600; if ($dtime - $row['senddate'] > $maxtime) { - ShowMsg("这篇文档已经锁定,你不能再修改它!", "-1"); + ShowMsg("这篇文档已经锁定,您不能再修改它!", "-1"); exit(); } } @@ -212,7 +212,7 @@ function _SaveArticle(){ } } //返回成功信息 - $msg = "  请选择你的后续操作: + $msg = "  请选择您的后续操作: 发布新软件    查看更改 diff --git a/src/member/templets/buy.htm b/src/member/templets/buy.htm index 95cd4d9f..830f4694 100755 --- a/src/member/templets/buy.htm +++ b/src/member/templets/buy.htm @@ -43,7 +43,7 @@ fields['scores'] / $cfg_money_scores); ?> - 用积分兑换金币  () + 用积分兑换金币  ()
diff --git a/src/member/templets/buy_action_payment.htm b/src/member/templets/buy_action_payment.htm index dddbf33f..95a68a93 100755 --- a/src/member/templets/buy_action_payment.htm +++ b/src/member/templets/buy_action_payment.htm @@ -35,7 +35,7 @@
订单确认
购买点卡/会员服务
diff --git a/src/member/templets/content_list.htm b/src/member/templets/content_list.htm index 92c13723..85aeaa8a 100755 --- a/src/member/templets/content_list.htm +++ b/src/member/templets/content_list.htm @@ -18,7 +18,7 @@ location = "archives_do.php?dopost=edit&channelid=" + channelid + "&aid=" + aid; } function delArc(aid) { - if (window.confirm('你确定要删除这篇文档吗?')) location = "archives_do.php?aid=" + aid + "&dopost=delArc"; + if (window.confirm('您确定要删除这篇文档吗?')) location = "archives_do.php?aid=" + aid + "&dopost=delArc"; } diff --git a/src/member/templets/content_sg_list.htm b/src/member/templets/content_sg_list.htm index 3a190a99..88b51389 100755 --- a/src/member/templets/content_sg_list.htm +++ b/src/member/templets/content_sg_list.htm @@ -18,7 +18,7 @@ location = "archives_do.php?dopost=edit&channelid=" + channelid + "&aid=" + aid; } function delArc(aid) { - if (window.confirm('你确定要删除这篇文档吗?')) location = "archives_do.php?aid=" + aid + "&dopost=delArc"; + if (window.confirm('您确定要删除这篇文档吗?')) location = "archives_do.php?aid=" + aid + "&dopost=delArc"; } diff --git a/src/member/templets/mypay.htm b/src/member/templets/mypay.htm index d961db42..5426f950 100755 --- a/src/member/templets/mypay.htm +++ b/src/member/templets/mypay.htm @@ -96,10 +96,10 @@ { var selid = GetCheckfolderItem(); if(selid=='') { - alert("你没选中任何信息!"); + alert("您没选中任何信息!"); return false; } - if(window.confirm("你确定要删除这些消息么?")) + if(window.confirm("您确定要删除这些消息么?")) { location = "mypay.php?dopost=del&ids="+selid; } diff --git a/src/member/templets/operation.htm b/src/member/templets/operation.htm index af4a2f36..52989b1b 100755 --- a/src/member/templets/operation.htm +++ b/src/member/templets/operation.htm @@ -95,10 +95,10 @@ { var selid = GetCheckfolderItem(); if(selid=='') { - ShowMsg("你没选中任何信息!"); + ShowMsg("您没选中任何信息!"); return false; } - if(window.confirm("你确定要删除这些消息么?")) + if(window.confirm("您确定要删除这些消息么?")) { location = "operation.php?dopost=del&ids="+selid; } diff --git a/src/member/templets/pm-main.htm b/src/member/templets/pm-main.htm index d0a97095..fb61bd52 100755 --- a/src/member/templets/pm-main.htm +++ b/src/member/templets/pm-main.htm @@ -143,10 +143,10 @@ function DoSubmit(myfolder) { var selid = GetCheckfolderItem(); if (selid == '') { - ShowMsg("你没选中任何信息!"); + ShowMsg("您没选中任何信息!"); return false; } - if (window.confirm("你确定要删除这些消息么?")) { + if (window.confirm("您确定要删除这些消息么?")) { location = "pm.php?dopost=del&ids=" + selid + "&folder=" + myfolder; } } diff --git a/src/member/templets/shops_orders.htm b/src/member/templets/shops_orders.htm index 344da016..be358301 100755 --- a/src/member/templets/shops_orders.htm +++ b/src/member/templets/shops_orders.htm @@ -115,10 +115,10 @@ { var selid = GetCheckfolderItem(); if(selid=='') { - alert("你没选中任何信息!"); + alert("您没选中任何信息!"); return false; } - if(window.confirm("你确定要删除这些消息么?")) + if(window.confirm("您确定要删除这些消息么?")) { location = "shops_orders.php?dopost=del&ids="+selid; } diff --git a/src/member/templets/shops_products.htm b/src/member/templets/shops_products.htm index 319d7b5b..1c2462dd 100755 --- a/src/member/templets/shops_products.htm +++ b/src/member/templets/shops_products.htm @@ -165,10 +165,10 @@ { var selid = GetCheckfolderItem(); if(selid=='') { - alert("你没选中任何信息!"); + alert("您没选中任何信息!"); return false; } - if(window.confirm("你确定要删除这些消息么?")) + if(window.confirm("您确定要删除这些消息么?")) { location = "shops_products.php?dopost=del&ids="+selid; } diff --git a/src/plus/advancedsearch.php b/src/plus/advancedsearch.php index 016891c5..cbefac80 100755 --- a/src/plus/advancedsearch.php +++ b/src/plus/advancedsearch.php @@ -49,7 +49,7 @@ if (empty($sql)) { $q = stripslashes($q); $q = preg_replace("#[\|\"\r\n\t%\*\?\(\)\$;,'%<>]#", " ", trim($q)); if (($cfg_notallowstr != '' && preg_match("#".$cfg_notallowstr."#i", $q)) || ($cfg_replacestr != '' && preg_match("#".$cfg_replacestr."#i", $q))) { - echo "你的信息中存在非法内容,被系统禁止![返回]"; + echo "您的信息中存在非法内容,被系统禁止![返回]"; exit(); } $q = addslashes($q); diff --git a/src/plus/carbuyaction.php b/src/plus/carbuyaction.php index d4b90735..a36fe50d 100755 --- a/src/plus/carbuyaction.php +++ b/src/plus/carbuyaction.php @@ -17,7 +17,7 @@ require_once DEDEINC.'/shopcar.class.php'; require_once DEDEINC.'/memberlogin.class.php'; if ($cfg_mb_open == 'N') { - ShowMsg("系统关闭了会员功能,因此你无法访问此页面!", "javascript:;"); + ShowMsg("系统关闭了会员功能,因此您无法访问此页面!", "javascript:;"); exit(); } $rs = array(); diff --git a/src/plus/diy.php b/src/plus/diy.php index 3b992f7c..51218f52 100755 --- a/src/plus/diy.php +++ b/src/plus/diy.php @@ -124,7 +124,7 @@ else if ($action == 'list') { $row = $dsql->GetOne($query); if (!is_array($row)) { - showmsg('你访问的记录不存在或未经审核', '-1'); + showmsg('您访问的记录不存在或未经审核', '-1'); exit(); } $fieldlist = $diy->getFieldList(); diff --git a/src/plus/download.php b/src/plus/download.php index da3b6263..32574ce9 100755 --- a/src/plus/download.php +++ b/src/plus/download.php @@ -186,8 +186,8 @@ function getSoft_new() $memberTypes[$row->rank] = $row->membername; } $memberTypes[0] = "游客"; - $msgtitle = "你没有权限下载软件:{$arctitle}!"; - $moremsg = "这个软件需要 ".$memberTypes[$needRank]." 才能下载,你目前是:".$memberTypes[$cfg_ml->M_Rank]." !"; + $msgtitle = "您没有权限下载软件:{$arctitle}!"; + $moremsg = "这个软件需要 ".$memberTypes[$needRank]." 才能下载,您目前是:".$memberTypes[$cfg_ml->M_Rank]." !"; include_once(DEDETEMPLATE.'/plus/view_msg.htm'); exit(); } @@ -201,8 +201,8 @@ function getSoft_new() if (!is_array($row)) { //没有足够的金币 if ($needMoney > $cfg_ml->M_Money || $cfg_ml->M_Money == '') { - $msgtitle = "你没有权限下载软件:{$arctitle}!"; - $moremsg = "这个软件需要 ".$needMoney." 金币 才能下载,你目前拥有金币:".$cfg_ml->M_Money." 个 !"; + $msgtitle = "您没有权限下载软件:{$arctitle}!"; + $moremsg = "这个软件需要 ".$needMoney." 金币 才能下载,您目前拥有金币:".$cfg_ml->M_Money." 个 !"; include_once(DEDETEMPLATE.'/plus/view_msg.htm'); exit(0); } diff --git a/src/plus/feedback.php b/src/plus/feedback.php index ec7fee4f..9b6158c1 100755 --- a/src/plus/feedback.php +++ b/src/plus/feedback.php @@ -272,7 +272,7 @@ function __SendFeedback(){ } if ($ischeck == 0) { echo json_encode(array( "code" => 200, - "msg" => "成功发表评论,但需审核后才会显示你的评论", + "msg" => "成功发表评论,但需审核后才会显示您的评论", "data" => "ok", )); } else { diff --git a/src/plus/list.php b/src/plus/list.php index 0d68c15b..9ac83969 100755 --- a/src/plus/list.php +++ b/src/plus/list.php @@ -55,8 +55,8 @@ if ($tinfos['issystem'] == -1) { $memberTypes[$row->rank] = $row->membername; } $memberTypes[0] = "游客或没权限会员"; - $msgtitle = "你没有权限浏览栏目:{$lv->Fields['typename']} !"; - $moremsg = "这个栏目需要 ".$memberTypes[$lv->Fields['corank']]." 才能访问,你目前是:".$memberTypes[$cfg_ml->M_Rank]." !"; + $msgtitle = "您没有权限浏览栏目:{$lv->Fields['typename']} !"; + $moremsg = "这个栏目需要 ".$memberTypes[$lv->Fields['corank']]." 才能访问,您目前是:".$memberTypes[$cfg_ml->M_Rank]." !"; include_once(DEDETEMPLATE.'/plus/view_msg_catalog.htm'); exit(); } diff --git a/src/plus/recommend.php b/src/plus/recommend.php index 59c06cca..0c4e7395 100755 --- a/src/plus/recommend.php +++ b/src/plus/recommend.php @@ -42,7 +42,7 @@ else if ($action == 'send') { } $mailbody = ''; $msg = RemoveXSS(dede_htmlspecialchars($msg)); - $mailtitle = "你的好友给你推荐了一篇文章"; + $mailtitle = "您的好友给您推荐了一篇文章"; $mailbody .= "$msg \r\n\r\n"; $mailbody .= "Powered by https://www.dedebiz.com DedeBIZ内容管理系统!"; diff --git a/src/plus/search.php b/src/plus/search.php index e516b142..514a782a 100755 --- a/src/plus/search.php +++ b/src/plus/search.php @@ -67,7 +67,7 @@ $keyword = addslashes(cn_substr($keyword, 30)); $typeid = intval($typeid); if ($cfg_notallowstr != '' && preg_match("#".$cfg_notallowstr."#i", $keyword)) { - ShowMsg("你的搜索关键字中存在非法内容,被系统禁止!", "-1"); + ShowMsg("您的搜索关键字中存在非法内容,被系统禁止!", "-1"); exit(); } diff --git a/src/plus/view.php b/src/plus/view.php index b4f62352..55614f3a 100755 --- a/src/plus/view.php +++ b/src/plus/view.php @@ -63,8 +63,8 @@ if ($needMoney > 0 || $needRank > 1) { $memberTypes[$row->rank] = $row->membername; } $memberTypes[0] = "游客或没权限会员"; - $msgtitle = "你没有权限浏览文档:{$arctitle} !"; - $moremsg = "这篇文档需要 ".$memberTypes[$needRank]." 才能访问,你目前是:".$memberTypes[$cfg_ml->M_Rank]." !"; + $msgtitle = "您没有权限浏览文档:{$arctitle} !"; + $moremsg = "这篇文档需要 ".$memberTypes[$needRank]." 才能访问,您目前是:".$memberTypes[$cfg_ml->M_Rank]." !"; include_once(DEDETEMPLATE.'/plus/view_msg.htm'); exit(); } @@ -76,8 +76,8 @@ if ($needMoney > 0 || $needRank > 1) { //未购买过此文章 if (!is_array($row)) { if ($cfg_ml->M_Money == '' || $needMoney > $cfg_ml->M_Money) { - $msgtitle = "你没有权限浏览文档:{$arctitle} !"; - $moremsg = "这篇文档需要 ".$needMoney." 金币 才能访问,你目前拥有金币:".$cfg_ml->M_Money." 个 !"; + $msgtitle = "您没有权限浏览文档:{$arctitle} !"; + $moremsg = "这篇文档需要 ".$needMoney." 金币 才能访问,您目前拥有金币:".$cfg_ml->M_Money." 个 !"; include_once(DEDETEMPLATE.'/plus/view_msg.htm'); $arc->Close(); exit(); @@ -101,7 +101,7 @@ if ($needMoney > 0 || $needRank > 1) { } $msgtitle = "扣金币购买阅读!"; - $moremsg = "阅读该文档内容需要付费!
这篇文档需要 ".$needMoney." 金币 才能访问,你目前拥有金币 ".$cfg_ml->M_Money." 个!
确认阅读请点 [确认付点阅读]"; + $moremsg = "阅读该文档内容需要付费!
这篇文档需要 ".$needMoney." 金币 才能访问,您目前拥有金币 ".$cfg_ml->M_Money." 个!
确认阅读请点 [确认付点阅读]"; include_once($cfg_basedir.$cfg_templets_dir."/plus/view_msg.htm"); $arc->Close(); exit(); diff --git a/src/plus/vote.php b/src/plus/vote.php index b42357c4..4ee8c034 100755 --- a/src/plus/vote.php +++ b/src/plus/vote.php @@ -49,9 +49,9 @@ if ($row['isallow'] == 1) { if ($dopost == 'send') { if (!empty($voteitem)) { - $rsmsg = "
 你方才的投票状态:".$vo->SaveVote($voteitem)."
"; + $rsmsg = "
 您方才的投票状态:".$vo->SaveVote($voteitem)."
"; } else { - $rsmsg = "
 你刚才没选择任何投票项目!
"; + $rsmsg = "
 您刚才没选择任何投票项目!
"; } if ($row['isenable'] == 1) { diff --git a/src/static/js/member_album.js b/src/static/js/member_album.js index 8b0ec31e..aeb4a715 100644 --- a/src/static/js/member_album.js +++ b/src/static/js/member_album.js @@ -91,7 +91,7 @@ function LoadTestDiv() var dfstr = '粘贴到这里...'; if(document.getElementById('imagebody').value.length <= dfstr.length) { - alert('你还没有粘贴任何东西都编辑框哦!'); + alert('您还没有粘贴任何东西都编辑框哦!'); return; } if(!newobj){ diff --git a/src/templets/default/article_default.htm b/src/templets/default/article_default.htm index fc8c6fed..53b53371 100755 --- a/src/templets/default/article_default.htm +++ b/src/templets/default/article_default.htm @@ -50,8 +50,8 @@
diff --git a/src/templets/default/article_default_sg.htm b/src/templets/default/article_default_sg.htm index fc8c6fed..53b53371 100755 --- a/src/templets/default/article_default_sg.htm +++ b/src/templets/default/article_default_sg.htm @@ -50,8 +50,8 @@
diff --git a/src/templets/default/top.htm b/src/templets/default/top.htm index 5d30adbd..82e71153 100644 --- a/src/templets/default/top.htm +++ b/src/templets/default/top.htm @@ -3,7 +3,7 @@ - 你正在使用一个 过时 的浏览器。请 升级您的浏览器,以提高您的体验。 + 您正在使用一个 过时 的浏览器。请 升级您的浏览器,以提高您的体验。
- + - +
你好友的Email:您好友的Email:
你的留言:您的留言: