####update:
 - 分享可以修改路径;避免文件移动后原始分享路径失效问题
 - 分享后自动刷新当前目录;跟新配置数据
 - 文件管理 当前文件夹不可写,对应右键菜单功能屏蔽
####fix bug
 - cookie自动登录失败,导致页面css丢失问题
 - 解压不了、权限验证过于严格问题
 - 左侧树目录被底部盖住问题
 - 分享office不了预览问题
 - 用户组;用户组列表选择错误
 - 菜单编辑中文部分乱码
 - 图片预览优化
pull/19/head
warlee 2015-03-26 17:50:26 +08:00
parent 3a95394799
commit 696cd04328
73 changed files with 545 additions and 372 deletions

View File

@ -1,5 +1,13 @@
###ver3.02 `2015/3/25`
###ver3.03 `2015/3/26`
####update:
- 分享可以修改路径;避免文件移动后原始分享路径失效问题
- 分享后自动刷新当前目录;跟新配置数据
- 文件管理 当前文件夹不可写,对应右键菜单功能屏蔽
####fix bug
- cookie自动登录失败导致页面css丢失问题
- 解压不了、权限验证过于严格问题
- 左侧树目录被底部盖住问题
- 分享office不了预览问题
- 用户组;用户组列表选择错误
- 菜单编辑中文部分乱码

View File

@ -47,11 +47,9 @@ define('STATIC_PATH',"./static/");//静态文件目录
define('USER_PATH', DATA_PATH .'User/'); //用户目录
//自定义用户目录需要先将data/User移到别的地方 例如修改成如下地址
//define('USER_PATH', DATA_PATH .'/Library/WebServer/Documents/User');
define('PUBLIC_PATH', DATA_PATH .'public/'); //公共目录
//公共共享目录,读写权限跟随用户目录的读写权限 例如修改成如下地址
//define('PUBLIC_PATH','/Library/WebServer/Documents/Public/');
/*
* office服务器配置默认调用的微软的接口程序需要部署到外网。
* 本地部署weboffice 引号内填写office解析服务器地址 形如: http://---/view.aspx?src=

View File

@ -1,2 +1,2 @@
<?php
define('KOD_VERSION','3.02');
define('KOD_VERSION','3.03');

View File

@ -46,7 +46,7 @@ class editor extends Controller{
$filestr = rawurldecode($this->in['filestr']);
$charset = $this->in['charset'];
$path =_DIR($this->in['path']);
if (!is_writable($path)) show_json($this->L['no_permission_write'],false);
if (!is_writable($path)) show_json($this->L['no_permission_write_file'],false);
if ($charset !='' || $charset != 'utf-8') {
$filestr=mb_convert_encoding($filestr,$this->in['charset'],'utf-8');
@ -88,7 +88,7 @@ class editor extends Controller{
public function setConfig(){
$file = USER.'data/editor_config.php';
if (!is_writeable($file)) {//配置不可写
show_json($this->L['no_permission_write'],false);
show_json($this->L['no_permission_write_file'],false);
}
$key= $this->in['k'];
$value = $this->in['v'];

View File

@ -70,7 +70,7 @@ class explorer extends Controller{
}
public function pathRname(){
if (!is_writable($this->path)) {
show_json($this->L['no_permission_write'],false);
show_json($this->L['no_permission_write_all'],false);
}
$rname_to=_DIR($this->in['rname_to']);
$this->_pathAllow($rname_to);
@ -516,16 +516,17 @@ class explorer extends Controller{
public function unzip(){
load_class('pclzip');
ini_set('memory_limit', '2028M');//2G;
$path=$this->path;
$path=$this->path;
$name = get_path_this($path);
$name = substr($name,0,strrpos($name,'.'));
$unzip_to=get_path_father($path).$name;
if (isset($this->in['path_to'])) {//解压到指定位置
$unzip_to = _DIR($this->in['path_to']);
}
if (!is_writeable($unzip_to)) {
//所在目录不可写
if (!is_writeable(get_path_father($path))){
show_json($this->L['no_permission_write'],false);
}
}
$zip = new PclZip($path);//
if ($GLOBALS['is_root'] == 1){
$result = $zip->extract(PCLZIP_OPT_PATH,$unzip_to,

View File

@ -62,7 +62,7 @@ class setting extends Controller{
public function set(){
$file = $this->config['user_seting_file'];
if (!is_writeable($file)) {//配置不可写
show_json($this->L['no_permission_write'],false);
show_json($this->L['no_permission_write_file'],false);
}
$key = $this->in['k'];
$value = $this->in['v'];

View File

@ -30,11 +30,10 @@ class user extends Controller
if (ST == 'share') return true;//共享页面
if(in_array(ACT,$this->notCheck)){//不需要判断的action
return;
}else if(isset($_SESSION['kod_login']) && $_SESSION['kod_login'] === true){
}else if($_SESSION['kod_login']===true && $_SESSION['kod_user']['name']!=''){
define('USER',USER_PATH.$this->user['name'].'/');
define('USER_TEMP',USER.'data/temp/');
define('USER_RECYCLE',USER.'recycle/');
if (!file_exists(USER)) {
$this->logout();
}
@ -53,15 +52,15 @@ class user extends Controller
$this->config['user_fav_file'] = USER.'data/fav.php'; // 收藏夹文件存放地址.
$this->config['user_seting_file'] = USER.'data/config.php'; //用户配置文件
$this->config['user'] = fileCache::load($this->config['user_seting_file']);
if(count($this->config['user'])<1){
if($this->config['user']['theme']==''){
$this->config['user'] = $this->config['setting_default'];
}
return;
}else if(isset($_COOKIE['kod_name']) && isset($_COOKIE['kod_token'])){
}else if($_COOKIE['kod_name']!='' && $_COOKIE['kod_token']!=''){
$member = new fileCache(USER_SYSTEM.'member.php');
$user = $member->get($_COOKIE['kod_name']);
if (!is_array($user) || !isset($user['password'])) {
$this->login();
$this->logout();
}
if(md5($user['password'].get_client_ip()) == $_COOKIE['kod_token']){
session_start();//re start
@ -72,6 +71,7 @@ class user extends Controller
header('location:'.get_url());
exit;
}
$this->logout();//session user数据不存在
}else{
if ($this->config['setting_system']['auto_login'] != '1') {
$this->logout();//不自动登录
@ -106,7 +106,7 @@ class user extends Controller
'web_root' => $GLOBALS['web_root'],
'web_host' => HOST,
'static_path' => STATIC_PATH,
'basic_path' => BASIC_PATH,
'basic_path' => $basic_path,
'version' => KOD_VERSION,
'app_host' => APPHOST,
'office_server' => OFFICE_SERVER,
@ -133,11 +133,6 @@ class user extends Controller
* 登陆view
*/
public function login($msg = ''){
// session_start();
// setcookie('kod_name', null, time()-3600);
// setcookie('kod_token', null, time()-3600);
// setcookie('kod_user_language', '', time()-3600);
// session_destroy();
if (!file_exists(USER_SYSTEM.'install.lock')) {
$this->display('install.html');exit;
}
@ -152,6 +147,7 @@ class user extends Controller
public function loginFirst(){
touch(USER_SYSTEM.'install.lock');
header('location:./index.php?user/login');
exit;
}
/**
* 退出处理
@ -163,6 +159,7 @@ class user extends Controller
setcookie('kod_user_language', '', time()-3600);
session_destroy();
header('location:./index.php?user/login');
exit;
}
/**

0
data/User/admin/data/config.php Normal file → Executable file
View File

0
data/User/demo/data/config.php Normal file → Executable file
View File

0
data/User/guest/data/config.php Normal file → Executable file
View File

View File

@ -23,12 +23,13 @@ $L = array(
"set_background" =>"as your desktop wallpaper",
"share" =>"Share",
"share_path" =>"Share path",
"share_title" =>"Resource sharing",
"share_name" =>"Share title",
"share_time" =>"Expiration time",
"share_time_desc" =>"Blank says don't set an expiration time",
"share_time" =>"Expiration",
"share_time_desc" =>"Empty is no expiration",
"share_password" =>"Password",
"share_password_desc" =>"Vlank that do not need the password",
"share_password_desc" =>"Empty not password",
"share_cancle" =>"Cancel share",
"share_create" =>"Create Share",
"share_url" =>"Share Link",
@ -433,7 +434,9 @@ Even as webIDE, can be directly online development. You can also integrate the t
"copy_success" => "[copy]covering the clipboard copy success!",
"cute_success" => "[cut]covering the clipboard success!",
"clipboard_state" => "clipboard state:",
"no_permission_write" => "can't write,check the path or permission",
"no_permission_write_all" => "can't write,check the permission",
"no_permission_write" => "path can't write,check the permission",
"no_permission_write_file" => "file can't write,check the permission",
"copy_not_exists" => "source does not exist",
"current_has_parent" => "the destination folder is a subfolder of the source folder!",
"past_success" => "<b> paste operation to complete the </b>",

View File

@ -22,6 +22,7 @@ $L= array(
"set_background" =>"设置为桌面壁纸",
"share" =>"分享",
"share_path" =>"分享路径",
"share_title" =>"资源分享",
"share_name" =>"分享标题",
"share_time" =>"到期时间",
@ -439,7 +440,9 @@ $L= array(
"copy_success" => "【复制】—— 覆盖剪贴板成功!",
"cute_success" => "【剪切】—— 覆盖剪贴板成功!",
"clipboard_state" => "剪切板状态:",
"no_permission_write" => "该文件或目录没有写权限",
"no_permission_write_all" => "该文件或目录没有写权限",
"no_permission_write" => "该目录没有写权限",
"no_permission_write_file" => "该文件没有写权限",
"copy_not_exists" => "来源不存在",
"current_has_parent" => "目标文件夹是源文件夹的子文件夹!",
"past_success" => "<b>粘贴操作完成</b>",

View File

@ -23,6 +23,7 @@ $L= array(
"set_background" =>"設置為桌面壁紙",
"share" =>"分享",
"share_path" =>"分享路径",
"share_title" =>"資源分享",
"share_name" =>"分享標題",
"share_time" =>"到期時間",
@ -436,7 +437,9 @@ $L= array(
"copy_success" => "【複製】—— 覆蓋剪貼板成功!",
"cute_success" => "【剪切】—— 覆蓋剪貼板成功!",
"clipboard_state" => "剪切板狀態:",
"no_permission_write" => "該文件或目錄沒有寫權限",
"no_permission_write" => "該目錄沒有寫權限",
"no_permission_write_all" => "该文件或目录没有写权限",
"no_permission_write_file" => "该文件沒有寫權限",
"copy_not_exists" => "來源不存在",
"current_has_parent" => "目標檔夾是原始檔案夾的子檔夾!",
"past_success" => "<b>粘貼操作完成</b>",

View File

@ -1 +0,0 @@
<?php exit;?>{"system_password":"LFucrECgwZ","system_name":"KodExplorer","system_desc":"\u2014\u2014\u8292\u679c\u4e91.\u8d44\u6e90\u7ba1\u7406\u5668","path_hidden":".htaccess,.git,.DS_Store","auto_login":"1","first_in":"explorer","new_user_app":"365\u65e5\u5386,pptv\u76f4\u64ad,ps,qq\u97f3\u4e50,\u641c\u72d0\u5f71\u89c6,\u65f6\u949f,\u5929\u6c14,\u6c34\u679c\u5fcd\u8005,\u8ba1\u7b97\u5668,\u8c46\u74e3\u7535\u53f0,\u97f3\u60a6\u53f0,icloud","new_user_folder":"download,music,image,desktop","menu":[{"name":"desktop","type":"system","url":"index.php?desktop","target":"_self","use":"1"},{"name":"explorer","type":"system","url":"index.php?explorer","target":"_self","use":"1"},{"name":"editor","type":"system","url":"index.php?editor","target":"_self","use":"1"},{"name":"adminer","type":"","url":".\/lib\/plugins\/adminer\/","target":"_blank","use":"1"}]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -35,9 +35,7 @@ body, input, textarea{-webkit-font-smoothing: antialiased;font-smoothing: antial
.tips_box i{padding: 0 6px;font-size: 15px;}
.tips_box .tips_close{font-size: 22px;padding-left: 10px;color: #fff;cursor: pointer;pointer-events:all;}
.tips_box .tips_close:hover{color: #f30;border-bottom: none;text-decoration: none;}
body div .aui_border{*border:1px solid #bbb;}
body div .aui_border{border:1px solid #bbb \0/IE9;}
:root body div .aui_border{border:0px solid \0/IE9;}
/*editor*/
/*.tabs .ace_editor{font-family:Consolas,Monaco,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Lucida Console,monospace,Courier New;}*/

View File

@ -10,7 +10,6 @@ div.topbar .content a.topbar_menu { border-color: #4499dd; border-color: rgba(25
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -38,6 +37,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #41bbec; position: fixed; background: url("../../../images/login.png") repeat-x 0px -44px; box-shadow: 0 0 10px rgba(0,0,0,0.2);}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -390,7 +390,7 @@ html { overflow-x: hidden; overflow-y: hidden;}
.context-menu-list.code_theme_list,.context-menu-list.code_mode_list { width: 180px !important;}
.context-menu-list span b { display: inline-block; font-size: 12px; position: absolute; right: 10px; font-weight: 400; color: #aaa; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.edit_tab .tabs { height: 29px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs { height: 29px; width: 100%; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs .tab { position: relative; height: 30px; line-height: 30px; color: #666; width: 120px; float: left; background: url("../../../images/buttons_40.png") 0 0px repeat-x; border-right: 1px solid #ddd;}
.edit_tab .tabs .tab .name { margin-left: 5px; display: block; width: 80%; overflow: hidden; position: absolute; z-index: 2; cursor: default; height: 28px;}
.edit_tab .tabs .tab .close { float: right; color: #ccc; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
@ -552,7 +552,7 @@ body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opac
.title_box .size .share_time { padding-left: 10px; font-style: normal; color: #aaa;}
.title_box .btn-group { float: right;}
.title_box .btn-group .btn_download { padding: 4px 20px;}
.title_box .btn-group .dropdown-toggle { height: 16px;}
.title_box .btn-group .dropdown-toggle { height: 16px; height: 30px \9;}
.content_box { width: 80%; margin: 30px auto; margin-bottom: 100px;}
.show_image { text-align: center;}
.show_image img { max-width: 100%;}

View File

@ -10,7 +10,6 @@ div.topbar .content a.topbar_menu { border-color: #4499dd; border-color: rgba(25
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -38,6 +37,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #41bbec; position: fixed; background: url("../../../images/login.png") repeat-x 0px -44px; box-shadow: 0 0 10px rgba(0,0,0,0.2);}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}

View File

@ -10,7 +10,6 @@ div.topbar .content a.topbar_menu { border-color: #4499dd; border-color: rgba(25
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -38,6 +37,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #41bbec; position: fixed; background: url("../../../images/login.png") repeat-x 0px -44px; box-shadow: 0 0 10px rgba(0,0,0,0.2);}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}

View File

@ -10,7 +10,6 @@ div.topbar .content a.topbar_menu { border-color: #4499dd; border-color: rgba(25
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -38,6 +37,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #41bbec; position: fixed; background: url("../../../images/login.png") repeat-x 0px -44px; box-shadow: 0 0 10px rgba(0,0,0,0.2);}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -574,11 +574,11 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-header .header-content .header-middle #yarnball_input input:focus { outline: none;}
.frame-header .header-content .header-right { position: absolute; right: 20px; top: 10px;}
.frame-header .header-content .header-right .btn { border-radius: 0;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; height: 27px \9; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input:focus { width: 160px; box-shadow: #ccc 0px 0px 20px inset;}
.frame-main { position: absolute; left: 0; right: 0; top: 90px; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; opacity: 0.9; filter: alpha(opacity=90); height: 90px; overflow: hidden; border-top: 1px solid #e6e6e6; background: #f6f6f6; width: 199px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 90px; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; height: 91px; width: 199px; opacity: 0.9; filter: alpha(opacity=90); overflow: hidden; border-right: 1px solid #ddd; border-top: 1px solid #e6e6e6; background: #f6f6f6;}
.frame-main .bottom_box .box_content { margin: 0 auto; width: 190px; padding-left: 10px;}
.frame-main .bottom_box a { background: #fff url("../../../images/bg.gif") 0px -5px repeat-x; display: block; border-radius: 3px; float: left; text-align: center; margin: 10px; color: #999; border: 1px solid #ddd; padding: 4px 10px 1px 10px; text-decoration: none;}
.frame-main .bottom_box a i { display: block; font-size: 25px; padding-bottom: 5px;}

View File

@ -10,7 +10,6 @@ div.topbar .content a.topbar_menu { border-color: #4499dd; border-color: rgba(25
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -38,6 +37,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #41bbec; position: fixed; background: url("../../../images/login.png") repeat-x 0px -44px; box-shadow: 0 0 10px rgba(0,0,0,0.2);}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -437,14 +437,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .section .box_line span.infotitle { width: 125px; display: block; float: left; overflow: hidden; margin-right: 10px; line-height: 32px; color: #333;}
#body .main .section .box_line input[type='text'] { display: block; float: left; width: 350px; font-weight: 200;}
#body .main .section .box_line label { float: left; padding-right: 20px; line-height: 28px; margin: 0;}
#body .main .section .box_line label input { width: 20px;}
#body .main .section .box_line label input:focus { box-shadow: none;}
#body .main .section .box_line i { padding-left: 5px; color: #777; line-height: 30px; font-size: 12px; font-style: normal;}
#body .main .section .box_line a.button { width: 80px;}
#body .main .section table .title { font-size: 14px;}
#body .main .section table .button { margin-left: 0px; color: #666;}
#body .main .section table .button { margin-left: 0px;}
#body .main .section table .title span { border: none;}
#body .main .section table a.button { padding: 5px 8px;}
#body .main .section table .menu_list .name input { width: 90%; font-weight: 400;}
#body .main .section table .menu_list .path input { width: 90%; font-weight: 400;}
#body .menu_list { color: #666;}
@ -458,24 +456,32 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .menu_system td span { display: inline !important;}
#body .menu_system a.move_del { display: none !important;}
#body .menu_hidden { opacity: 0.5;}
#body table tr td { line-height: 2.5em;}
#body .main .section table a.button { padding: 4px 8px;}
#body .setting_menu table tr td.url { line-height: 30px;}
#body a.path_ext_tips { padding: 3px 5px; margin: 0 0 0 10px; background: #888; border: none; color: #fff;}
#body table tr.title td { line-height: 2.5em; height: 2.5em;}
#body table tr td { line-height: 1em; height: 1em; border-right: 1px solid #ddd;}
#body a.button { width: auto; padding: 2px 1em; height: 26px; line-height: 26px; line-height: 22px \9;}
#body .save { width: auto;}
#body .main .select table a.button { padding: 0 8px;}
#body .main .group_editor .tag { height: 30px; line-height: 30px;}
#body input[type="radio"] { width: auto; border: none;}
#body .main .section .box_line label input[type="radio"] { width: auto; border: none; margin: 2px 1em;}
#body .main .section .box_line label input[type="checkbox"] { width: auto; border: none; margin: 2px 1em;}
#body table { font-size: 13px; color: #888; width: 100%; margin: 0px; border: 1px solid #ccc;}
#body table tr { border-bottom: 1px solid #ddd; background: #fcfcfc; height: 30px;}
#body table tr input { display: block; border: 1px solid #ddd; width: 80%; color: #888;}
#body table tr input[type='text'] { display: block; width: 80%; color: #888;}
#body table tr.title { background: #eee; color: #224;}
#body table tr.title td { border-bottom: 1px solid #ddd; font-weight: 800;}
#body table tr.title span { color: #999; font-size: 13px; padding-left: 4px; font-weight: 400;}
#body table tr td { border-bottom: 1px solid #eee; line-height: 2.5em; height: 2.5em; padding-left: 3%;}
#body table tr td.name { width: 30%;}
#body table tr td.name,#body table tr td.path { border-right: 1px solid #ddd;}
#body table tr td.action { line-height: 1.3em; width: 30%;}
#body table tr td.action { line-height: 1.3em;}
#body table tr td.action a { margin-right: 5px;}
#body a.add { display: block; text-align: center; text-decoration: none; background: #f6f6f6; line-height: 2em; height: 2em; border: 1px solid #ccc; color: #555;}
#body a.add:hover { background: #eee;}
#body a.button { text-decoration: none; cursor: pointer; margin: 5px 10px 5px 0; height: 16px; line-height: 18px; padding: 5px 1.5em; font-size: 13px; display: inline-block; border-radius: 2px; text-align: center; font-weight: 400; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; border: 1px solid #ddd; background: #f6f6f6; color: #222;}
#body a.button:hover { background: #C6EBFA; border-color: #bbb; box-shadow: none;}
#body a.button { text-decoration: none; cursor: pointer; font-size: 13px; margin: 5px 10px 5px 0; display: inline-block; border-radius: 2px; border: 1px solid #ddd; text-align: center; font-weight: 400; padding: 1px 8px; background: #f6f6f6; color: #666; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
#body a.button:hover { background: #666; color: #fff; border-color: #404040; box-shadow: none;}
#body a.button:active { background: #444; color: #fff; border-color: #eee; border-radius: 2px;}
#body a.create_app { margin: 0; display: block; position: absolute; right: 21px;}
#body .app_menu_left { min-width: 130px; width: 130px;}

View File

@ -1,4 +1,4 @@
.topback_this { background: #e169b9;}
.topback_this { background: #6b8ac3;}
::-webkit-scrollbar-track-piece { background-color: rgba(255,255,255,0.2);}
::-webkit-scrollbar { width: 10px; height: 10px;}
::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.2); border-radius: 12px; background-clip: padding-box; border: 1px solid rgba(0,0,0,0.3); min-height: 28px;}
@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,11 +35,12 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #DC4FAD; position: fixed;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #5579BA; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #e064b7; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #e169b9;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #6787c1; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #6b8ac3;}
.topbar .content .topbar_menu.title { font-size: 20px; width: 200px; width: 202px\0; padding: 0; text-align: center;}
.topbar .content .topbar_menu.title:hover { background: none;}
.topbar .content .menu-desktop:before { content: "\f108";}
@ -267,7 +267,7 @@ a.button:hover { background: #eee url("../../../images/buttons_40.png") 0 -12px
a.left:hover,a.middle:hover { margin-right: 1px; padding-right: 9px;}
a.button:active { color: #000; border-color: #444;}
a.button:focus { outline: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #DC4FAD; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #5579BA; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox .content { padding: 10px 30px; line-height: 20px; width: auto;}
.dialogMax { z-index: 99999 !important;}
.aui_outer { text-align: left; position: relative;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -291,17 +294,17 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_buttons button:active { background: #777777;}
.aui_buttons button[disabled] { cursor: default; color: #919191; background: #aaa; opacity: 0.5; filter: alpha(opacity=50);}
.aui_buttons button::-moz-focus-inner { border: 0; padding: 0; margin: 0;}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #DC4FAD;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #e47ac1;}
.aui_buttons button.aui_state_highlight:active { background: #a42178;}
.aui_outer { border: 0px solid #DC4FAD; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #5579BA;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #7996c9;}
.aui_buttons button.aui_state_highlight:active { background: #314a78;}
.aui_outer { border: 0px solid #5579BA; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_inner { background: #FFF;}
.aui_state_lock .aui_nw,.aui_state_lock .aui_n,.aui_state_lock .aui_ne,.aui_state_lock .aui_w,.aui_state_lock .aui_e,.aui_state_lock .aui_sw,.aui_state_lock .aui_s,.aui_state_lock .aui_se { background: rgba(0,0,0,0.5); background: #000 \9 !important; opacity: 0.5; filter: alpha(opacity=50);}
.aui_titleBar { position: relative; height: 100%;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #DC4FAD; border-bottom: 1px solid #cf2998;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #5579BA; border-bottom: 1px solid #40619c;}
.aui_state_focus .aui_mask { display: none;}
.aui_state_focus .aui_outer { -webkit-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); -moz-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); box-shadow: 0px 5px 60px rgba(0,0,0,0.8);}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #e371bd; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #7290c6; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min:hover,.aui_max:hover,.aui_close:hover { text-decoration: none; color: #fff; background: #cc0000;}
.aui_min:active,.aui_max:active,.aui_close:active { color: fff; background: #f00;}
.aui_min { right: 77px; content: "\f068";}
@ -361,7 +364,7 @@ body div.dialog-simple.aui_state_drag .aui_header { opacity: 1; filter: alpha(op
.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon { color: #EEE;}
.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover { color: #ccc; cursor: default; background-color: #fff;}
.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon { color: #EEE;}
.context-menu-list .context-menu-item.hover { cursor: pointer; color: #fff; background: #DC4FAD; background-color: none \9;}
.context-menu-list .context-menu-item.hover { cursor: pointer; color: #fff; background: #5579BA; background-color: none \9;}
.context-menu-list .context-menu-item.hover .font-icon { color: #fff;}
.context-menu-list .context-menu-item.context-menu-separator { height: 2px; line-height: 0; border-bottom: 1px solid #ddd; margin: 2px 0 2px;}
.context-menu-list .context-menu-item > .context-menu-list { display: none; right: -5px; top: 5px;}
@ -380,23 +383,23 @@ html { overflow-x: hidden; overflow-y: hidden;}
.context-menu-list.code_theme_list,.context-menu-list.code_mode_list { width: 180px !important;}
.context-menu-list span b { display: inline-block; font-size: 12px; position: absolute; right: 10px; font-weight: 400; color: #aaa; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.edit_tab .tabs { height: 29px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs { height: 29px; width: 100%; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs .tab { position: relative; height: 30px; line-height: 30px; color: #666; width: 120px; float: left; background: url("../../../images/buttons_40.png") 0 0px repeat-x; border-right: 1px solid #ddd;}
.edit_tab .tabs .tab .name { margin-left: 5px; display: block; width: 80%; overflow: hidden; position: absolute; z-index: 2; cursor: default; height: 28px;}
.edit_tab .tabs .tab .close { float: right; color: #ccc; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
.edit_tab .tabs .tab .close:hover { color: #af5250;}
.edit_tab .tabs .tab .close:active { color: #f00;}
.edit_tab .tabs .tab.hover { background: url("../../../images/buttons_40.png") 0 10px repeat-x;}
.edit_tab .tabs .tab.this { z-index: 20; color: #23B2EC; background: #DC4FAD; background-image: -webkit-linear-gradient(top,#e47ac1,#DC4FAD); background-image: -moz-linear-gradient(top,#e47ac1,#DC4FAD); background-image: -o-linear-gradient(top,#e47ac1,#DC4FAD); background-image: -ms-linear-gradient(top,#e47ac1,#DC4FAD); background-image: linear-gradient(top,#e47ac1,#DC4FAD); color: #fff;}
.edit_tab .tabs .tab.this .close { color: #cf2998;}
.edit_tab .tabs .tab.this { z-index: 20; color: #23B2EC; background: #5579BA; background-image: -webkit-linear-gradient(top,#7996c9,#5579BA); background-image: -moz-linear-gradient(top,#7996c9,#5579BA); background-image: -o-linear-gradient(top,#7996c9,#5579BA); background-image: -ms-linear-gradient(top,#7996c9,#5579BA); background-image: linear-gradient(top,#7996c9,#5579BA); color: #fff;}
.edit_tab .tabs .tab.this .close { color: #40619c;}
.edit_tab .tabs .tab.this .close:hover { color: #af5250;}
.edit_tab .tabs .tab.this .close:active { color: #f00;}
.edit_tab .tabs .add { float: left; color: #666; line-height: 25px; height: 30px; border: 1px solid #ddd; border-bottom: none; border-radius: 3px 3px 0 0; font-size: 8px; margin-top: 2px; padding: 0px 10px; background: #eee; margin-left: 3px;}
.edit_tab .tabs .add:hover { background: #ddd;}
.edit_tab .tabs .add:active { background: #888; color: #ccc;}
.draggable-dragging { position: absolute; z-index: 20; color: #fff; height: 29px; line-height: 30px; width: 120px; float: left; background: #DC4FAD; background-image: -webkit-linear-gradient(top,#e169b9,#DC4FAD); background-image: -moz-linear-gradient(top,#e169b9,#DC4FAD); background-image: -o-linear-gradient(top,#e169b9,#DC4FAD); background-image: -ms-linear-gradient(top,#e169b9,#DC4FAD); background-image: linear-gradient(top,#e169b9,#DC4FAD);}
.draggable-dragging { position: absolute; z-index: 20; color: #fff; height: 29px; line-height: 30px; width: 120px; float: left; background: #5579BA; background-image: -webkit-linear-gradient(top,#6b8ac3,#5579BA); background-image: -moz-linear-gradient(top,#6b8ac3,#5579BA); background-image: -o-linear-gradient(top,#6b8ac3,#5579BA); background-image: -ms-linear-gradient(top,#6b8ac3,#5579BA); background-image: linear-gradient(top,#6b8ac3,#5579BA);}
.draggable-dragging .name { margin-left: 5px; display: block; width: 80%; height: 28px; overflow: hidden; position: absolute; z-index: 2; cursor: default;}
.draggable-dragging .close { float: right; color: #cf2998; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
.draggable-dragging .close { float: right; color: #40619c; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
.edit_body { width: 100%; background: #fff; position: absolute; bottom: 0; top: 59px; z-index: 50;}
.edit_body .tabs { width: 100%; height: 100%;}
.edit_body .tabs .edit_content { padding: 0; margin: 0; height: 100%; width: 100%;}
@ -440,7 +443,7 @@ div.tools .right { float: right; margin: 0 5px 0 0;}
div.tools a { font-size: 13px; font-weight: 800; float: left; color: #555; font-weight: 400; text-decoration: none; padding: 0px 11px; line-height: 29px; height: 29px;}
div.tools a .font-icon { font-size: 17px; color: #bbb;}
div.tools a:hover { background: #eee;}
div.tools a.select,div.tools a.select:hover,div.tools a:active { background: #DC4FAD; color: #fff;}
div.tools a.select,div.tools a.select:hover,div.tools a:active { background: #5579BA; color: #fff;}
div.tools a.select i.font-icon,div.tools a.select:hover i.font-icon,div.tools a:active i.font-icon { color: #fff;}
div.tools a.font,div.tools a.codetheme { padding: 2px 6px; margin-right: 4px; border: solid 1px #ccc; background: url("../../../images/buttons_40.png") 0 0px repeat-x; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;}
div.tools a.font .font-icon,div.tools a.codetheme .font-icon { padding: 0 5px;}
@ -448,7 +451,7 @@ div.tools .right a { padding: 1px 7px; margin-right: -1px; height: 20px; margin-
div.tools .line { border-left: 1px solid #ccc; margin: 0 4px; padding-bottom: 3px;}
ul.dropbox { color: #666; font-size: 13px; position: absolute; top: 27px; z-index: 1000; margin: 0px;}
ul.dropbox li { list-style: none; padding: 2px 0 2px 10px; line-height: 20px; cursor: pointer;}
ul.dropbox .lihover,ul.dropbox li.this { background: #DC4FAD; color: #fff;}
ul.dropbox .lihover,ul.dropbox li.this { background: #5579BA; color: #fff;}
#fontsize { display: none; left: 166px; width: 100px; min-width: 100px;}
#codetheme { display: none; left: 173px;}
body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opacity: 0.75; filter: alpha(opacity=75); color: #FFF; box-shadow: -5px 4px 5px rgba(0,0,0,0.2);}
@ -542,7 +545,7 @@ body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opac
.title_box .size .share_time { padding-left: 10px; font-style: normal; color: #aaa;}
.title_box .btn-group { float: right;}
.title_box .btn-group .btn_download { padding: 4px 20px;}
.title_box .btn-group .dropdown-toggle { height: 16px;}
.title_box .btn-group .dropdown-toggle { height: 16px; height: 30px \9;}
.content_box { width: 80%; margin: 30px auto; margin-bottom: 100px;}
.show_image { text-align: center;}
.show_image img { max-width: 100%;}

View File

@ -1,4 +1,4 @@
.topback_this { background: #e169b9;}
.topback_this { background: #6b8ac3;}
::-webkit-scrollbar-track-piece { background-color: rgba(255,255,255,0.2);}
::-webkit-scrollbar { width: 10px; height: 10px;}
::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.2); border-radius: 12px; background-clip: padding-box; border: 1px solid rgba(0,0,0,0.3); min-height: 28px;}
@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,11 +35,12 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #DC4FAD; position: fixed;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #5579BA; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #e064b7; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #e169b9;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #6787c1; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #6b8ac3;}
.topbar .content .topbar_menu.title { font-size: 20px; width: 200px; width: 202px\0; padding: 0; text-align: center;}
.topbar .content .topbar_menu.title:hover { background: none;}
.topbar .content .menu-desktop:before { content: "\f108";}
@ -267,7 +267,7 @@ a.button:hover { background: #eee url("../../../images/buttons_40.png") 0 -12px
a.left:hover,a.middle:hover { margin-right: 1px; padding-right: 9px;}
a.button:active { color: #000; border-color: #444;}
a.button:focus { outline: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #DC4FAD; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #5579BA; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox .content { padding: 10px 30px; line-height: 20px; width: auto;}
.dialogMax { z-index: 99999 !important;}
.aui_outer { text-align: left; position: relative;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -291,17 +294,17 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_buttons button:active { background: #777777;}
.aui_buttons button[disabled] { cursor: default; color: #919191; background: #aaa; opacity: 0.5; filter: alpha(opacity=50);}
.aui_buttons button::-moz-focus-inner { border: 0; padding: 0; margin: 0;}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #DC4FAD;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #e47ac1;}
.aui_buttons button.aui_state_highlight:active { background: #a42178;}
.aui_outer { border: 0px solid #DC4FAD; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #5579BA;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #7996c9;}
.aui_buttons button.aui_state_highlight:active { background: #314a78;}
.aui_outer { border: 0px solid #5579BA; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_inner { background: #FFF;}
.aui_state_lock .aui_nw,.aui_state_lock .aui_n,.aui_state_lock .aui_ne,.aui_state_lock .aui_w,.aui_state_lock .aui_e,.aui_state_lock .aui_sw,.aui_state_lock .aui_s,.aui_state_lock .aui_se { background: rgba(0,0,0,0.5); background: #000 \9 !important; opacity: 0.5; filter: alpha(opacity=50);}
.aui_titleBar { position: relative; height: 100%;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #DC4FAD; border-bottom: 1px solid #cf2998;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #5579BA; border-bottom: 1px solid #40619c;}
.aui_state_focus .aui_mask { display: none;}
.aui_state_focus .aui_outer { -webkit-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); -moz-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); box-shadow: 0px 5px 60px rgba(0,0,0,0.8);}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #e371bd; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #7290c6; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min:hover,.aui_max:hover,.aui_close:hover { text-decoration: none; color: #fff; background: #cc0000;}
.aui_min:active,.aui_max:active,.aui_close:active { color: fff; background: #f00;}
.aui_min { right: 77px; content: "\f068";}
@ -347,16 +350,16 @@ div.dialog-simple .aui_header { opacity: 0.01; filter: alpha(opacity=1);}
div.dialog-simple .aui_nw,div.dialog-simple .aui_ne { height: 0px;}
div.dialog-simple .dialog_mouse_in .aui_header { opacity: 1; filter: alpha(opacity=100);}
body div.dialog-simple.aui_state_drag .aui_header { opacity: 1; filter: alpha(opacity=100);}
#selContainer { position: absolute; width: 0px; height: 0px; border: 1px solid #65144a; background-color: #DC4FAD; z-index: 1000; opacity: 0.6; filter: alpha(opacity=60);}
.draggable-dragging { z-index: 9999; clear: both !important; pointer-events: none; position: absolute !important; width: 100px; height: 100px; background: #DC4FAD; border: 1px solid #65144a; opacity: 0.6; filter: alpha(opacity=60); -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;}
.draggable-dragging .ico { border: 1px solid #cf2998; margin: -10px 15px 15px 15px !important; width: 64px; height: 64px; margin: 4px; margin-bottom: 0;}
.draggable-dragging .drag_number { margin: 5px 0 0 5px; width: 20px; height: 20px; text-align: center; border: 1px solid #7a1859; background: #ba2588; color: #fff; position: relative; left: -10px; top: -10px;}
#selContainer { position: absolute; width: 0px; height: 0px; border: 1px solid #1b2942; background-color: #5579BA; z-index: 1000; opacity: 0.6; filter: alpha(opacity=60);}
.draggable-dragging { z-index: 9999; clear: both !important; pointer-events: none; position: absolute !important; width: 100px; height: 100px; background: #5579BA; border: 1px solid #1b2942; opacity: 0.6; filter: alpha(opacity=60); -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;}
.draggable-dragging .ico { border: 1px solid #40619c; margin: -10px 15px 15px 15px !important; width: 64px; height: 64px; margin: 4px; margin-bottom: 0;}
.draggable-dragging .drag_number { margin: 5px 0 0 5px; width: 20px; height: 20px; text-align: center; border: 1px solid #223454; background: #38558a; color: #fff; position: relative; left: -10px; top: -10px;}
.fileList_icon { padding: 10px 10px 0px 10px;}
.fileList_icon .app_link { height: 30px; width: 30px; margin-left: 45px; margin-top: -35px; position: absolute; font-size: 25px; color: #666;}
.fileList_icon .app_link::before { font-family: FontAwesome; content: "\f064"; color: #fff; text-shadow: 0 0 5px #666;}
.fileList_icon .file { color: #225; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; width: 80px; overflow: hidden; height: 100px; text-decoration: none; float: left; margin-right: 10px; margin-bottom: 10px;}
.fileList_icon .file.hover { background: #ffd987;}
.fileList_icon .file.select,.fileList_icon .file.selectDragTemp { color: #fff; background: #DC4FAD;}
.fileList_icon .file.select,.fileList_icon .file.selectDragTemp { color: #fff; background: #5579BA;}
.fileList_icon .file .titleBox { width: 80px; text-align: center; word-break: break-all; font-size: 12px; margin: 0 auto; line-height: 1.4em;}
.fileList_icon .file .titleBox .textarea { position: absolute; height: auto; font-size: 12px; text-align: center;}
.fileList_icon .file .titleBox #pathRenameTextarea,.fileList_icon .file .titleBox .newfile { width: 74px; margin-top: -4px; overflow-y: hidden; border: 1px solid #888; font-size: 12px; text-align: center;}
@ -410,7 +413,7 @@ body div.dialog-simple.aui_state_drag .aui_header { opacity: 1; filter: alpha(op
.fileList_list .file { color: #225; margin-left: 10px; width: 660px; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
.fileList_list .file2 { background: #fff3d9;}
.fileList_list .hover { background: #ffd987;}
.fileList_list .select,.fileList_list .selectDragTemp { color: #fff; background: #DC4FAD; border-bottom: 1px solid #e47ac1 !important;}
.fileList_list .select,.fileList_list .selectDragTemp { color: #fff; background: #5579BA; border-bottom: 1px solid #7996c9 !important;}
.fileList_list .file { border-bottom: 1px solid #fff;}
.fileList_list .file .filetype { width: 90px;}
.fileList_list .file .filesize { width: 90px;}
@ -466,7 +469,7 @@ body div.dialog-simple.aui_state_drag .aui_header { opacity: 1; filter: alpha(op
.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon { color: #EEE;}
.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover { color: #ccc; cursor: default; background-color: #fff;}
.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon { color: #EEE;}
.context-menu-list .context-menu-item.hover { cursor: pointer; color: #fff; background: #DC4FAD; background-color: none \9;}
.context-menu-list .context-menu-item.hover { cursor: pointer; color: #fff; background: #5579BA; background-color: none \9;}
.context-menu-list .context-menu-item.hover .font-icon { color: #fff;}
.context-menu-list .context-menu-item.context-menu-separator { height: 2px; line-height: 0; border-bottom: 1px solid #ddd; margin: 2px 0 2px;}
.context-menu-list .context-menu-item > .context-menu-list { display: none; right: -5px; top: 5px;}

View File

@ -1,4 +1,4 @@
.topback_this { background: #e169b9;}
.topback_this { background: #6b8ac3;}
::-webkit-scrollbar-track-piece { background-color: rgba(255,255,255,0.2);}
::-webkit-scrollbar { width: 10px; height: 10px;}
::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.2); border-radius: 12px; background-clip: padding-box; border: 1px solid rgba(0,0,0,0.3); min-height: 28px;}
@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,11 +35,12 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #DC4FAD; position: fixed;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #5579BA; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #e064b7; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #e169b9;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #6787c1; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #6b8ac3;}
.topbar .content .topbar_menu.title { font-size: 20px; width: 200px; width: 202px\0; padding: 0; text-align: center;}
.topbar .content .topbar_menu.title:hover { background: none;}
.topbar .content .menu-desktop:before { content: "\f108";}
@ -267,7 +267,7 @@ a.button:hover { background: #eee url("../../../images/buttons_40.png") 0 -12px
a.left:hover,a.middle:hover { margin-right: 1px; padding-right: 9px;}
a.button:active { color: #000; border-color: #444;}
a.button:focus { outline: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #DC4FAD; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #5579BA; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox .content { padding: 10px 30px; line-height: 20px; width: auto;}
.dialogMax { z-index: 99999 !important;}
.aui_outer { text-align: left; position: relative;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -291,17 +294,17 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_buttons button:active { background: #777777;}
.aui_buttons button[disabled] { cursor: default; color: #919191; background: #aaa; opacity: 0.5; filter: alpha(opacity=50);}
.aui_buttons button::-moz-focus-inner { border: 0; padding: 0; margin: 0;}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #DC4FAD;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #e47ac1;}
.aui_buttons button.aui_state_highlight:active { background: #a42178;}
.aui_outer { border: 0px solid #DC4FAD; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #5579BA;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #7996c9;}
.aui_buttons button.aui_state_highlight:active { background: #314a78;}
.aui_outer { border: 0px solid #5579BA; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_inner { background: #FFF;}
.aui_state_lock .aui_nw,.aui_state_lock .aui_n,.aui_state_lock .aui_ne,.aui_state_lock .aui_w,.aui_state_lock .aui_e,.aui_state_lock .aui_sw,.aui_state_lock .aui_s,.aui_state_lock .aui_se { background: rgba(0,0,0,0.5); background: #000 \9 !important; opacity: 0.5; filter: alpha(opacity=50);}
.aui_titleBar { position: relative; height: 100%;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #DC4FAD; border-bottom: 1px solid #cf2998;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #5579BA; border-bottom: 1px solid #40619c;}
.aui_state_focus .aui_mask { display: none;}
.aui_state_focus .aui_outer { -webkit-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); -moz-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); box-shadow: 0px 5px 60px rgba(0,0,0,0.8);}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #e371bd; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #7290c6; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min:hover,.aui_max:hover,.aui_close:hover { text-decoration: none; color: #fff; background: #cc0000;}
.aui_min:active,.aui_max:active,.aui_close:active { color: fff; background: #f00;}
.aui_min { right: 77px; content: "\f068";}
@ -361,8 +364,8 @@ body div.dialog-simple.aui_state_drag .aui_header { opacity: 1; filter: alpha(op
.ztree li span.button.ico_loading { background: url("../../../images/loading_tree.gif") no-repeat scroll 0 2px transparent;}
.ztree li a { padding-top: 1px; cursor: pointer; text-decoration: none; display: block; margin: 0; color: #333; vertical-align: top; height: 22px; padding-left: 10px; border: 1px solid #f3f3f3;}
.ztree li a:hover { text-decoration: none; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; -ms-transition: all 0.3s; transition: all 0.3s; background: #ffd987; height: 22px; border: 1px solid #ffd987;}
.ztree li a.curSelectedNode { border: 1px solid #DC4FAD; background: #DC4FAD; line-height: 22px; height: 22px; color: #fff;}
.ztree li a.curSelectedNode_Edit { border: 1px solid #DC4FAD; background: #DC4FAD; color: black; height: 23px;}
.ztree li a.curSelectedNode { border: 1px solid #5579BA; background: #5579BA; line-height: 22px; height: 22px; color: #fff;}
.ztree li a.curSelectedNode_Edit { border: 1px solid #5579BA; background: #5579BA; color: black; height: 23px;}
.ztree li a input.rename { height: 20px; line-height: 22px; width: 100px; padding: 0; margin: 0; border: none; outline: none; padding-left: 5px; font-size: 12px;}
.ztree li a span.button.root_docu { background: none;}
.ztree li a span.button.noline_docu { background: none;}
@ -376,11 +379,11 @@ body div.dialog-simple.aui_state_drag .aui_header { opacity: 1; filter: alpha(op
.ztree li a span.button.music_ico_close,.ztree li a span.button.music_ico_docu,.ztree li a span.button.music_ico_open { background-position: 0 -70px;}
.ztree li a span.button.movie_ico_close,.ztree li a span.button.movie_ico_docu,.ztree li a span.button.movie_ico_open { background-position: 0 -220px;}
.ztree li a span.button.download_ico_close,.ztree li a span.button.download_ico_docu,.ztree li a span.button.download_ico_open { background-position: 0 -301px;}
ul.ztree.zTreeDragUL { margin: 0; padding: 0; position: absolute; width: auto; height: auto; background-color: #DC4FAD; border: 1px solid #DC4FAD; opacity: 0.5; filter: alpha(opacity=50);}
ul.ztree.zTreeDragUL { margin: 0; padding: 0; position: absolute; width: auto; height: auto; background-color: #5579BA; border: 1px solid #5579BA; opacity: 0.5; filter: alpha(opacity=50);}
ul.ztree.zTreeDragUL li a span.space { display: none !important;}
ul.ztree.zTreeDragUL li a { padding: 4px 10px 0 10px; color: #fff;}
ul.ztree.zTreeDragUL li span.button.switch { display: none;}
.ztree li a.tmpTargetNode_inner { background: #a42178; border: 1px solid #cf2998; color: #fff;}
.ztree li a.tmpTargetNode_inner { background: #314a78; border: 1px solid #40619c; color: #fff;}
.ztree li a.tmpTargetNode_prev { border-bottom: 1px solid #f96;}
.ztree li a.tmpTargetNode_next { border-bottom: 1px solid #f96;}
span.tmpzTreeMove_arrow { display: inline-block; margin: 4px 0 0 2px; position: absolute; border-color: transparent transparent transparent #fff; border-style: solid; border-width: 7px 0px 7px 7px; width: 0; height: 0; _border-top-color: white; _border-bottom-color: white; _filter: chroma(color=white);}
@ -428,7 +431,7 @@ span.tmpzTreeMove_arrow { display: inline-block; margin: 4px 0 0 2px; position:
.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon { color: #EEE;}
.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover { color: #ccc; cursor: default; background-color: #fff;}
.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon { color: #EEE;}
.context-menu-list .context-menu-item.hover { cursor: pointer; color: #fff; background: #DC4FAD; background-color: none \9;}
.context-menu-list .context-menu-item.hover { cursor: pointer; color: #fff; background: #5579BA; background-color: none \9;}
.context-menu-list .context-menu-item.hover .font-icon { color: #fff;}
.context-menu-list .context-menu-item.context-menu-separator { height: 2px; line-height: 0; border-bottom: 1px solid #ddd; margin: 2px 0 2px;}
.context-menu-list .context-menu-item > .context-menu-list { display: none; right: -5px; top: 5px;}

View File

@ -1,4 +1,4 @@
.topback_this { background: #e169b9;}
.topback_this { background: #6b8ac3;}
::-webkit-scrollbar-track-piece { background-color: rgba(255,255,255,0.2);}
::-webkit-scrollbar { width: 10px; height: 10px;}
::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.2); border-radius: 12px; background-clip: padding-box; border: 1px solid rgba(0,0,0,0.3); min-height: 28px;}
@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,11 +35,12 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #DC4FAD; position: fixed;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #5579BA; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #e064b7; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #e169b9;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #6787c1; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #6b8ac3;}
.topbar .content .topbar_menu.title { font-size: 20px; width: 200px; width: 202px\0; padding: 0; text-align: center;}
.topbar .content .topbar_menu.title:hover { background: none;}
.topbar .content .menu-desktop:before { content: "\f108";}
@ -267,7 +267,7 @@ a.button:hover { background: #eee url("../../../images/buttons_40.png") 0 -12px
a.left:hover,a.middle:hover { margin-right: 1px; padding-right: 9px;}
a.button:active { color: #000; border-color: #444;}
a.button:focus { outline: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #DC4FAD; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #5579BA; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox .content { padding: 10px 30px; line-height: 20px; width: auto;}
.dialogMax { z-index: 99999 !important;}
.aui_outer { text-align: left; position: relative;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -291,17 +294,17 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_buttons button:active { background: #777777;}
.aui_buttons button[disabled] { cursor: default; color: #919191; background: #aaa; opacity: 0.5; filter: alpha(opacity=50);}
.aui_buttons button::-moz-focus-inner { border: 0; padding: 0; margin: 0;}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #DC4FAD;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #e47ac1;}
.aui_buttons button.aui_state_highlight:active { background: #a42178;}
.aui_outer { border: 0px solid #DC4FAD; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #5579BA;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #7996c9;}
.aui_buttons button.aui_state_highlight:active { background: #314a78;}
.aui_outer { border: 0px solid #5579BA; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_inner { background: #FFF;}
.aui_state_lock .aui_nw,.aui_state_lock .aui_n,.aui_state_lock .aui_ne,.aui_state_lock .aui_w,.aui_state_lock .aui_e,.aui_state_lock .aui_sw,.aui_state_lock .aui_s,.aui_state_lock .aui_se { background: rgba(0,0,0,0.5); background: #000 \9 !important; opacity: 0.5; filter: alpha(opacity=50);}
.aui_titleBar { position: relative; height: 100%;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #DC4FAD; border-bottom: 1px solid #cf2998;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #5579BA; border-bottom: 1px solid #40619c;}
.aui_state_focus .aui_mask { display: none;}
.aui_state_focus .aui_outer { -webkit-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); -moz-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); box-shadow: 0px 5px 60px rgba(0,0,0,0.8);}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #e371bd; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #7290c6; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min:hover,.aui_max:hover,.aui_close:hover { text-decoration: none; color: #fff; background: #cc0000;}
.aui_min:active,.aui_max:active,.aui_close:active { color: fff; background: #f00;}
.aui_min { right: 77px; content: "\f068";}
@ -361,8 +364,8 @@ body div.dialog-simple.aui_state_drag .aui_header { opacity: 1; filter: alpha(op
.ztree li span.button.ico_loading { background: url("../../../images/loading_tree.gif") no-repeat scroll 0 2px transparent;}
.ztree li a { padding-top: 1px; cursor: pointer; text-decoration: none; display: block; margin: 0; color: #333; vertical-align: top; height: 22px; padding-left: 10px; border: 1px solid #f3f3f3;}
.ztree li a:hover { text-decoration: none; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; -ms-transition: all 0.3s; transition: all 0.3s; background: #ffd987; height: 22px; border: 1px solid #ffd987;}
.ztree li a.curSelectedNode { border: 1px solid #DC4FAD; background: #DC4FAD; line-height: 22px; height: 22px; color: #fff;}
.ztree li a.curSelectedNode_Edit { border: 1px solid #DC4FAD; background: #DC4FAD; color: black; height: 23px;}
.ztree li a.curSelectedNode { border: 1px solid #5579BA; background: #5579BA; line-height: 22px; height: 22px; color: #fff;}
.ztree li a.curSelectedNode_Edit { border: 1px solid #5579BA; background: #5579BA; color: black; height: 23px;}
.ztree li a input.rename { height: 20px; line-height: 22px; width: 100px; padding: 0; margin: 0; border: none; outline: none; padding-left: 5px; font-size: 12px;}
.ztree li a span.button.root_docu { background: none;}
.ztree li a span.button.noline_docu { background: none;}
@ -376,11 +379,11 @@ body div.dialog-simple.aui_state_drag .aui_header { opacity: 1; filter: alpha(op
.ztree li a span.button.music_ico_close,.ztree li a span.button.music_ico_docu,.ztree li a span.button.music_ico_open { background-position: 0 -70px;}
.ztree li a span.button.movie_ico_close,.ztree li a span.button.movie_ico_docu,.ztree li a span.button.movie_ico_open { background-position: 0 -220px;}
.ztree li a span.button.download_ico_close,.ztree li a span.button.download_ico_docu,.ztree li a span.button.download_ico_open { background-position: 0 -301px;}
ul.ztree.zTreeDragUL { margin: 0; padding: 0; position: absolute; width: auto; height: auto; background-color: #DC4FAD; border: 1px solid #DC4FAD; opacity: 0.5; filter: alpha(opacity=50);}
ul.ztree.zTreeDragUL { margin: 0; padding: 0; position: absolute; width: auto; height: auto; background-color: #5579BA; border: 1px solid #5579BA; opacity: 0.5; filter: alpha(opacity=50);}
ul.ztree.zTreeDragUL li a span.space { display: none !important;}
ul.ztree.zTreeDragUL li a { padding: 4px 10px 0 10px; color: #fff;}
ul.ztree.zTreeDragUL li span.button.switch { display: none;}
.ztree li a.tmpTargetNode_inner { background: #a42178; border: 1px solid #cf2998; color: #fff;}
.ztree li a.tmpTargetNode_inner { background: #314a78; border: 1px solid #40619c; color: #fff;}
.ztree li a.tmpTargetNode_prev { border-bottom: 1px solid #f96;}
.ztree li a.tmpTargetNode_next { border-bottom: 1px solid #f96;}
span.tmpzTreeMove_arrow { display: inline-block; margin: 4px 0 0 2px; position: absolute; border-color: transparent transparent transparent #fff; border-style: solid; border-width: 7px 0px 7px 7px; width: 0; height: 0; _border-top-color: white; _border-bottom-color: white; _filter: chroma(color=white);}
@ -414,16 +417,16 @@ span.tmpzTreeMove_arrow { display: inline-block; margin: 4px 0 0 2px; position:
.frame-left .ztree li .doc,.frame-left .ztree li .docx,.frame-left .ztree li .wps { background-image: url("./../../../images/file_16/doc.png");}
.frame-left .ztree li .xls,.frame-left .ztree li .xlsx { background-image: url("./../../../images/file_16/xls.png");}
.frame-left .ztree li .ppt,.frame-left .ztree li .pptx { background-image: url("./../../../images/file_16/ppt.png");}
#selContainer { position: absolute; width: 0px; height: 0px; border: 1px solid #65144a; background-color: #DC4FAD; z-index: 1000; opacity: 0.6; filter: alpha(opacity=60);}
.draggable-dragging { z-index: 9999; clear: both !important; pointer-events: none; position: absolute !important; width: 100px; height: 100px; background: #DC4FAD; border: 1px solid #65144a; opacity: 0.6; filter: alpha(opacity=60); -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;}
.draggable-dragging .ico { border: 1px solid #cf2998; margin: -10px 15px 15px 15px !important; width: 64px; height: 64px; margin: 4px; margin-bottom: 0;}
.draggable-dragging .drag_number { margin: 5px 0 0 5px; width: 20px; height: 20px; text-align: center; border: 1px solid #7a1859; background: #ba2588; color: #fff; position: relative; left: -10px; top: -10px;}
#selContainer { position: absolute; width: 0px; height: 0px; border: 1px solid #1b2942; background-color: #5579BA; z-index: 1000; opacity: 0.6; filter: alpha(opacity=60);}
.draggable-dragging { z-index: 9999; clear: both !important; pointer-events: none; position: absolute !important; width: 100px; height: 100px; background: #5579BA; border: 1px solid #1b2942; opacity: 0.6; filter: alpha(opacity=60); -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;}
.draggable-dragging .ico { border: 1px solid #40619c; margin: -10px 15px 15px 15px !important; width: 64px; height: 64px; margin: 4px; margin-bottom: 0;}
.draggable-dragging .drag_number { margin: 5px 0 0 5px; width: 20px; height: 20px; text-align: center; border: 1px solid #223454; background: #38558a; color: #fff; position: relative; left: -10px; top: -10px;}
.fileList_icon { padding: 10px 10px 0px 10px;}
.fileList_icon .app_link { height: 30px; width: 30px; margin-left: 45px; margin-top: -35px; position: absolute; font-size: 25px; color: #666;}
.fileList_icon .app_link::before { font-family: FontAwesome; content: "\f064"; color: #fff; text-shadow: 0 0 5px #666;}
.fileList_icon .file { color: #225; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; width: 80px; overflow: hidden; height: 100px; text-decoration: none; float: left; margin-right: 10px; margin-bottom: 10px;}
.fileList_icon .file.hover { background: #ffd987;}
.fileList_icon .file.select,.fileList_icon .file.selectDragTemp { color: #fff; background: #DC4FAD;}
.fileList_icon .file.select,.fileList_icon .file.selectDragTemp { color: #fff; background: #5579BA;}
.fileList_icon .file .titleBox { width: 80px; text-align: center; word-break: break-all; font-size: 12px; margin: 0 auto; line-height: 1.4em;}
.fileList_icon .file .titleBox .textarea { position: absolute; height: auto; font-size: 12px; text-align: center;}
.fileList_icon .file .titleBox #pathRenameTextarea,.fileList_icon .file .titleBox .newfile { width: 74px; margin-top: -4px; overflow-y: hidden; border: 1px solid #888; font-size: 12px; text-align: center;}
@ -477,7 +480,7 @@ span.tmpzTreeMove_arrow { display: inline-block; margin: 4px 0 0 2px; position:
.fileList_list .file { color: #225; margin-left: 10px; width: 660px; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
.fileList_list .file2 { background: #fff3d9;}
.fileList_list .hover { background: #ffd987;}
.fileList_list .select,.fileList_list .selectDragTemp { color: #fff; background: #DC4FAD; border-bottom: 1px solid #e47ac1 !important;}
.fileList_list .select,.fileList_list .selectDragTemp { color: #fff; background: #5579BA; border-bottom: 1px solid #7996c9 !important;}
.fileList_list .file { border-bottom: 1px solid #fff;}
.fileList_list .file .filetype { width: 90px;}
.fileList_list .file .filesize { width: 90px;}
@ -533,7 +536,7 @@ span.tmpzTreeMove_arrow { display: inline-block; margin: 4px 0 0 2px; position:
.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon { color: #EEE;}
.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover { color: #ccc; cursor: default; background-color: #fff;}
.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon { color: #EEE;}
.context-menu-list .context-menu-item.hover { cursor: pointer; color: #fff; background: #DC4FAD; background-color: none \9;}
.context-menu-list .context-menu-item.hover { cursor: pointer; color: #fff; background: #5579BA; background-color: none \9;}
.context-menu-list .context-menu-item.hover .font-icon { color: #fff;}
.context-menu-list .context-menu-item.context-menu-separator { height: 2px; line-height: 0; border-bottom: 1px solid #ddd; margin: 2px 0 2px;}
.context-menu-list .context-menu-item > .context-menu-list { display: none; right: -5px; top: 5px;}
@ -572,11 +575,11 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-header .header-content .header-middle #yarnball_input input:focus { outline: none;}
.frame-header .header-content .header-right { position: absolute; right: 20px; top: 10px;}
.frame-header .header-content .header-right .btn { border-radius: 0;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; height: 27px \9; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input:focus { width: 160px; box-shadow: #ccc 0px 0px 20px inset;}
.frame-main { position: absolute; left: 0; right: 0; top: 90px; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; opacity: 0.9; filter: alpha(opacity=90); height: 90px; overflow: hidden; border-top: 1px solid #e6e6e6; background: #f6f6f6; width: 199px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 90px; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; height: 91px; width: 199px; opacity: 0.9; filter: alpha(opacity=90); overflow: hidden; border-right: 1px solid #ddd; border-top: 1px solid #e6e6e6; background: #f6f6f6;}
.frame-main .bottom_box .box_content { margin: 0 auto; width: 190px; padding-left: 10px;}
.frame-main .bottom_box a { background: #fff url("../../../images/bg.gif") 0px -5px repeat-x; display: block; border-radius: 3px; float: left; text-align: center; margin: 10px; color: #999; border: 1px solid #ddd; padding: 4px 10px 1px 10px; text-decoration: none;}
.frame-main .bottom_box a i { display: block; font-size: 25px; padding-bottom: 5px;}
@ -604,5 +607,5 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-main .frame-right .frame-right-main .tools .tools-left span.msg { display: none; margin-left: 20px; padding-left: 30px; font-size: 14px; color: #888; background: url("../../../images/loading.gif") 0 3px no-repeat;}
.frame-main .frame-right .frame-right-main .tools .tools-right { float: right; margin: 4px 20px 0 0;}
.frame-main .frame-right .dropdown-menu { font-size: 13px;}
.frame-main .frame-right .dropdown-menu a:hover,.frame-main .frame-right .dropdown-menu .this a { background: #DC4FAD; color: #fff; filter: none;}
.frame-main .frame-right .dropdown-menu a:hover,.frame-main .frame-right .dropdown-menu .this a { background: #5579BA; color: #fff; filter: none;}
.frame-main .frame-right .bodymain { position: absolute; zoom: 1; z-index: 0; top: 35px; bottom: 0; left: 0; overflow: auto; width: 100%; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}

View File

@ -1,4 +1,4 @@
.topback_this { background: #e169b9;}
.topback_this { background: #6b8ac3;}
::-webkit-scrollbar-track-piece { background-color: rgba(255,255,255,0.2);}
::-webkit-scrollbar { width: 10px; height: 10px;}
::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.2); border-radius: 12px; background-clip: padding-box; border: 1px solid rgba(0,0,0,0.3); min-height: 28px;}
@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,11 +35,12 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #DC4FAD; position: fixed;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #5579BA; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #e064b7; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #e169b9;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #6787c1; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #6b8ac3;}
.topbar .content .topbar_menu.title { font-size: 20px; width: 200px; width: 202px\0; padding: 0; text-align: center;}
.topbar .content .topbar_menu.title:hover { background: none;}
.topbar .content .menu-desktop:before { content: "\f108";}
@ -267,7 +267,7 @@ a.button:hover { background: #eee url("../../../images/buttons_40.png") 0 -12px
a.left:hover,a.middle:hover { margin-right: 1px; padding-right: 9px;}
a.button:active { color: #000; border-color: #444;}
a.button:focus { outline: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #DC4FAD; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #5579BA; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox .content { padding: 10px 30px; line-height: 20px; width: auto;}
.dialogMax { z-index: 99999 !important;}
.aui_outer { text-align: left; position: relative;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -291,17 +294,17 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_buttons button:active { background: #777777;}
.aui_buttons button[disabled] { cursor: default; color: #919191; background: #aaa; opacity: 0.5; filter: alpha(opacity=50);}
.aui_buttons button::-moz-focus-inner { border: 0; padding: 0; margin: 0;}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #DC4FAD;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #e47ac1;}
.aui_buttons button.aui_state_highlight:active { background: #a42178;}
.aui_outer { border: 0px solid #DC4FAD; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #5579BA;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #7996c9;}
.aui_buttons button.aui_state_highlight:active { background: #314a78;}
.aui_outer { border: 0px solid #5579BA; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_inner { background: #FFF;}
.aui_state_lock .aui_nw,.aui_state_lock .aui_n,.aui_state_lock .aui_ne,.aui_state_lock .aui_w,.aui_state_lock .aui_e,.aui_state_lock .aui_sw,.aui_state_lock .aui_s,.aui_state_lock .aui_se { background: rgba(0,0,0,0.5); background: #000 \9 !important; opacity: 0.5; filter: alpha(opacity=50);}
.aui_titleBar { position: relative; height: 100%;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #DC4FAD; border-bottom: 1px solid #cf2998;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #5579BA; border-bottom: 1px solid #40619c;}
.aui_state_focus .aui_mask { display: none;}
.aui_state_focus .aui_outer { -webkit-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); -moz-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); box-shadow: 0px 5px 60px rgba(0,0,0,0.8);}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #e371bd; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #7290c6; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min:hover,.aui_max:hover,.aui_close:hover { text-decoration: none; color: #fff; background: #cc0000;}
.aui_min:active,.aui_max:active,.aui_close:active { color: fff; background: #f00;}
.aui_min { right: 77px; content: "\f068";}
@ -355,14 +358,14 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body input,#body input:focus { outline: none; box-shadow: none; border: 1px solid #bbb; padding: 8px;}
#body input:focus { border-color: #75A1F0 !important; outline: none; box-shadow: 0 0 12px #75A1F0; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
#body .font-icon { padding-right: 0.8em; display: inline-block;}
#body .menu_left { min-width: 170px; position: fixed; z-index: 999; left: 0; height: 100%; width: 20%; background: #d52d9d;}
#body .menu_left { min-width: 170px; position: fixed; z-index: 999; left: 0; height: 100%; width: 20%; background: #4265a4;}
#body .menu_left h1 { color: #fff; font-weight: 400; padding: 15px 20px 20px 40px; font-size: 30px; margin: 0; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif;}
#body .menu_left .setting li { line-height: 2.5em; color: #fff; font-size: 15px; box-sizing: border-box; text-indent: 10px; display: block; cursor: pointer; outline: none; -webkit-transition: padding 0.2s; -moz-transition: padding 0.2s; -o-transition: padding 0.2s; -ms-transition: padding 0.2s; transition: padding 0.2s; border-left: 4px solid #d52d9d;}
#body .menu_left .setting li.hover { background: #de58b1; border-left: 4px solid #de58b1;}
#body .menu_left .setting li.selected { background: #dc4fad; border-left: 4px solid #fff; padding-left: 20px;}
#body .menu_left .setting li { line-height: 2.5em; color: #fff; font-size: 15px; box-sizing: border-box; text-indent: 10px; display: block; cursor: pointer; outline: none; -webkit-transition: padding 0.2s; -moz-transition: padding 0.2s; -o-transition: padding 0.2s; -ms-transition: padding 0.2s; transition: padding 0.2s; border-left: 4px solid #4265a4;}
#body .menu_left .setting li.hover { background: #5c7fbd; border-left: 4px solid #5c7fbd;}
#body .menu_left .setting li.selected { background: #5579ba; border-left: 4px solid #fff; padding-left: 20px;}
#body .main { position: absolute; left: 20%; width: 80%; margin: 30px 0 0 20px; overflow-x: hidden;}
#body .main .h1 .font-icon { padding-right: 16px;}
#body .main div.h1 { font-weight: 400; color: #de58b1; padding: 0px 0 10px 10px; font-size: 26px;}
#body .main div.h1 { font-weight: 400; color: #5c7fbd; padding: 0px 0 10px 10px; font-size: 26px;}
#body .main .section { padding-bottom: 10px; border-top: 1px solid #ddd; padding-top: 10px; color: #666;}
#body .main .section .box .line { margin-top: 15px; margin-bottom: 15px;}
#body .main .section .box .login { border-bottom: 1px dashed #dde;}
@ -380,10 +383,10 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .list .theme { margin: 5px 10px;}
#body .main .list .info { text-align: center; margin-top: -3px;}
#body .main .list .ico img { width: 100px; height: 65px;}
#body .main .list.this { background-color: #ddd; color: #d52d9d; border-color: #888;}
#body .main .list.this { background-color: #ddd; color: #4265a4; border-color: #888;}
#body .main .list.listhover { border-color: #888;}
#body .main .content { word-break: break-all; color: #448;}
#body .main .content h2 { padding: 5px 0 5px 20px; margin: 10px 0; font-weight: 400; font-size: 16px; border-left: 5px solid #d52d9d;}
#body .main .content h2 { padding: 5px 0 5px 20px; margin: 10px 0; font-weight: 400; font-size: 16px; border-left: 5px solid #4265a4;}
#body .main .content p { margin-left: 5px; text-indent: 2em; margin-bottom: 8px; color: #666;}
#body .main .content .box { color: #555; clear: both; color: #666;}
#body .main .content .box .title { color: #444; border-bottom: 1px dashed #ddd; font-size: 21px; margin-bottom: 10px; margin-top: 10px;}
@ -392,19 +395,19 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .content .box p b { padding-right: 8px;}
#body .main .content .box p i { padding-right: 10px;}
#body .main fieldset { margin-top: 10px; border: solid 1px #ddd; padding: 10px; color: #666;}
#body .main fieldset legend { padding: 3px 20px; color: #FFF; background: #DC4FAD; font-size: 15px;}
#body .main fieldset span { display: block; background: #ffffff; width: 100px; color: #224; padding: 4px 15px; margin-top: 10px; font-size: 14px; border-left: 5px solid #e682c5;}
#body .main fieldset legend { padding: 3px 20px; color: #FFF; background: #5579BA; font-size: 15px;}
#body .main fieldset span { display: block; background: #edf1f8; width: 100px; color: #224; padding: 4px 15px; margin-top: 10px; font-size: 14px; border-left: 5px solid #819bcc;}
#body .main fieldset .line { margin: 0px; height: 1px; width: 100%; border-bottom: 1px solid #eee; margin-bottom: 10px; margin-top: -1px; _margin-top: -21px;}
#body .main .content li,#body .main fieldset li { line-height: 2em; list-style-type: none; margin-left: 10px; padding-left: 25px; color: #666; word-break: break-all;}
#body .main .content li:before,#body .main fieldset li:before { font-family: FontAwesome; content: "\f006"; padding-right: 10px; text-shadow: 0 0 1px;}
#body .main .nav a { display: block; float: left; padding: 4px 2em; background: #eee; border: 1px solid #ddd; margin-bottom: -1px; margin-left: -1px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
#body .main .nav a:hover,#body .main .nav a.this { background: #de58b1; color: #444; border: 1px solid #de58b1; border-left-color: #ddd; color: #fff;}
#body .main .nav a:hover,#body .main .nav a.this { background: #5c7fbd; color: #444; border: 1px solid #5c7fbd; border-left-color: #ddd; color: #fff;}
#body .main .member input { display: inline-block; width: 45px; margin-left: 2px;}
#body .main .member span { padding-left: 10px;}
#body .main .member select { padding: 3px 5px; font-family: "微软雅黑"; color: #666;}
#body .main .member .info { background: #efe; padding: 6px 10px; color: #8a8; border: #ccc 1px dotted; margin-top: 10px;}
#body .main .member .edit_role { color: #dc4fad;}
#body .main .member .edit_role:hover { border-bottom: 1px solid #dc4fad;}
#body .main .member .edit_role { color: #5579ba;}
#body .main .member .edit_role:hover { border-bottom: 1px solid #5579ba;}
#body .main .together { border: 1px solid #dde; margin-top: -1px; padding: 5px 0 0 10px;}
#body .main .together .title { float: left; width: 80px; height: 28px; margin: 5px; color: #333;}
#body .main .together .title i { padding-left: 5px; font-style: normal;}
@ -412,10 +415,10 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .together.input input { width: 40%; margin-left: 5px;}
#body .main .group_editor a.revert { float: right; margin: 10px; padding: 4px 2em; border: 1px solid #ddd; background: #eee;}
#body .main .group_editor a.revert:hover { background: #ddd; border-color: #bbb;}
#body .main .group_editor .tag { height: 25px; line-height: 27px; margin: 2px 4px; padding: 0px 8px; text-decoration: none; color: #666; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s; display: block; float: left; color: #668; border: 1px solid #fef9fc; background: #fff;}
#body .main .group_editor .tag { height: 25px; line-height: 27px; margin: 2px 4px; padding: 0px 8px; text-decoration: none; color: #666; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s; display: block; float: left; color: #668; border: 1px solid #e6ebf5; background: #fff;}
#body .main .group_editor .tag input { border: none; vertical-align: initial; display: inline-block; min-height: 12px; margin-right: 6px;}
#body .main .group_editor .tag:hover { color: #dc4fad; background: #ffffff;}
#body .main .group_editor .tag.this { border-color: #dc4fad; color: #dc4fad; background: #ffffff;}
#body .main .group_editor .tag:hover { color: #5579ba; background: #ffffff;}
#body .main .group_editor .tag.this { border-color: #5579ba; color: #5579ba; background: #ffffff;}
#body .main .group_editor .tag span { cursor: pointer;}
#body .alert { width: 95%; position: fixed; bottom: -30px; margin-left: -25px; opacity: 0.8; filter: alpha(opacity=80); padding-top: 0px;}
#body .section { width: 98% !important;}
@ -426,14 +429,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .section .box_line span.infotitle { width: 125px; display: block; float: left; overflow: hidden; margin-right: 10px; line-height: 32px; color: #333;}
#body .main .section .box_line input[type='text'] { display: block; float: left; width: 350px; font-weight: 200;}
#body .main .section .box_line label { float: left; padding-right: 20px; line-height: 28px; margin: 0;}
#body .main .section .box_line label input { width: 20px;}
#body .main .section .box_line label input:focus { box-shadow: none;}
#body .main .section .box_line i { padding-left: 5px; color: #777; line-height: 30px; font-size: 12px; font-style: normal;}
#body .main .section .box_line a.button { width: 80px;}
#body .main .section table .title { font-size: 14px;}
#body .main .section table .button { margin-left: 0px; color: #666;}
#body .main .section table .button { margin-left: 0px;}
#body .main .section table .title span { border: none;}
#body .main .section table a.button { padding: 5px 8px;}
#body .main .section table .menu_list .name input { width: 90%; font-weight: 400;}
#body .main .section table .menu_list .path input { width: 90%; font-weight: 400;}
#body .menu_list { color: #666;}
@ -447,27 +448,33 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .menu_system td span { display: inline !important;}
#body .menu_system a.move_del { display: none !important;}
#body .menu_hidden { opacity: 0.5;}
#body table tr td { line-height: 2.5em;}
#body .main .section table a.button { padding: 4px 8px;}
#body .setting_menu table tr td.url { line-height: 30px;}
#body a.path_ext_tips { padding: 3px 5px; margin: 0 0 0 10px; background: #888; border: none; color: #fff;}
#body table tr.title td { line-height: 2.5em; height: 2.5em;}
#body table tr td { line-height: 1em; height: 1em; border-right: 1px solid #ddd;}
#body a.button { width: auto; padding: 2px 1em; height: 26px; line-height: 26px; line-height: 22px \9;}
#body .save { width: auto;}
#body .main .select table a.button { padding: 0 8px;}
#body .main .group_editor .tag { height: 30px; line-height: 30px;}
#body input[type="radio"] { width: auto; border: none;}
#body .main .section .box_line label input[type="radio"] { width: auto; border: none; margin: 2px 1em;}
#body .main .section .box_line label input[type="checkbox"] { width: auto; border: none; margin: 2px 1em;}
#body table { font-size: 13px; color: #888; width: 100%; margin: 0px; border: 1px solid #ccc;}
#body table tr { border-bottom: 1px solid #ddd; height: 30px;}
#body table tr .title { border-bottom: 1px solid #ddd;}
#body table tr input { display: block; width: 250px; width: 90%; color: #888;}
#body table tr { border-bottom: 1px solid #ddd; background: #fcfcfc; height: 30px;}
#body table tr input[type='text'] { display: block; width: 80%; color: #888;}
#body table tr.title { background: #eee; color: #224;}
#body table tr.title td { border-bottom: 1px solid #ddd; font-weight: 800;}
#body table tr.title span { color: #999; font-size: 13px; padding-left: 4px; font-weight: 400;}
#body table tr td { border-bottom: 1px solid #eee; line-height: 2.5em; height: 2.5em; padding-left: 3%;}
#body table tr td.name { width: 30%;}
#body table tr td.name,#body table tr td.path { border-right: 1px solid #ddd;}
#body table tr td.action { line-height: 1.3em; width: 30%;}
#body table tr td.action { line-height: 1.3em;}
#body table tr td.action a { margin-right: 5px;}
#body a.add { display: block; text-align: center; text-decoration: none; background: #f6f6f6; line-height: 2em; height: 2em; border: 1px solid #ccc; color: #555;}
#body a.add:hover { background: #eee;}
#body a.button { text-decoration: none; cursor: pointer; text-shadow: none; border: none; box-shadow: none; border-radius: 0; margin: 5px 10px 5px 0; font-weight: 400; padding: 0.5em 1.5em; font-size: 13px; display: inline-block; height: 16px; line-height: 18px; text-align: center; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s; background: #d52d9d; color: #fff;}
#body a.button:hover { background: #ad227f; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body a.button:active { background: #581140; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body .main .section table .button { color: #fff;}
#body a.button { text-decoration: none; cursor: pointer; font-size: 13px; margin: 5px 10px 5px 0; border: none; display: inline-block; border: 1px solid #ddd; text-shadow: none; box-shadow: none; text-align: center; font-weight: 400; padding: 1px 8px; background: #5579ba; color: #fff; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
#body a.button:hover { background: #38558a;}
#body a.button:active { background: #223454; color: #fff;}
#body a.create_app { margin: 0; display: block; position: absolute; right: 21px;}
#body .app_menu_left { min-width: 130px; width: 130px;}
#body .app_menu_left .setting li.selected { padding-left: 12px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #5db2ff; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -380,7 +383,7 @@ html { overflow-x: hidden; overflow-y: hidden;}
.context-menu-list.code_theme_list,.context-menu-list.code_mode_list { width: 180px !important;}
.context-menu-list span b { display: inline-block; font-size: 12px; position: absolute; right: 10px; font-weight: 400; color: #aaa; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.edit_tab .tabs { height: 29px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs { height: 29px; width: 100%; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs .tab { position: relative; height: 30px; line-height: 30px; color: #666; width: 120px; float: left; background: url("../../../images/buttons_40.png") 0 0px repeat-x; border-right: 1px solid #ddd;}
.edit_tab .tabs .tab .name { margin-left: 5px; display: block; width: 80%; overflow: hidden; position: absolute; z-index: 2; cursor: default; height: 28px;}
.edit_tab .tabs .tab .close { float: right; color: #ccc; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
@ -542,7 +545,7 @@ body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opac
.title_box .size .share_time { padding-left: 10px; font-style: normal; color: #aaa;}
.title_box .btn-group { float: right;}
.title_box .btn-group .btn_download { padding: 4px 20px;}
.title_box .btn-group .dropdown-toggle { height: 16px;}
.title_box .btn-group .dropdown-toggle { height: 16px; height: 30px \9;}
.content_box { width: 80%; margin: 30px auto; margin-bottom: 100px;}
.show_image { text-align: center;}
.show_image img { max-width: 100%;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #5db2ff; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #5db2ff; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #5db2ff; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -572,11 +575,11 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-header .header-content .header-middle #yarnball_input input:focus { outline: none;}
.frame-header .header-content .header-right { position: absolute; right: 20px; top: 10px;}
.frame-header .header-content .header-right .btn { border-radius: 0;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; height: 27px \9; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input:focus { width: 160px; box-shadow: #ccc 0px 0px 20px inset;}
.frame-main { position: absolute; left: 0; right: 0; top: 90px; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; opacity: 0.9; filter: alpha(opacity=90); height: 90px; overflow: hidden; border-top: 1px solid #e6e6e6; background: #f6f6f6; width: 199px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 90px; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; height: 91px; width: 199px; opacity: 0.9; filter: alpha(opacity=90); overflow: hidden; border-right: 1px solid #ddd; border-top: 1px solid #e6e6e6; background: #f6f6f6;}
.frame-main .bottom_box .box_content { margin: 0 auto; width: 190px; padding-left: 10px;}
.frame-main .bottom_box a { background: #fff url("../../../images/bg.gif") 0px -5px repeat-x; display: block; border-radius: 3px; float: left; text-align: center; margin: 10px; color: #999; border: 1px solid #ddd; padding: 4px 10px 1px 10px; text-decoration: none;}
.frame-main .bottom_box a i { display: block; font-size: 25px; padding-bottom: 5px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #5db2ff; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -426,14 +429,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .section .box_line span.infotitle { width: 125px; display: block; float: left; overflow: hidden; margin-right: 10px; line-height: 32px; color: #333;}
#body .main .section .box_line input[type='text'] { display: block; float: left; width: 350px; font-weight: 200;}
#body .main .section .box_line label { float: left; padding-right: 20px; line-height: 28px; margin: 0;}
#body .main .section .box_line label input { width: 20px;}
#body .main .section .box_line label input:focus { box-shadow: none;}
#body .main .section .box_line i { padding-left: 5px; color: #777; line-height: 30px; font-size: 12px; font-style: normal;}
#body .main .section .box_line a.button { width: 80px;}
#body .main .section table .title { font-size: 14px;}
#body .main .section table .button { margin-left: 0px; color: #666;}
#body .main .section table .button { margin-left: 0px;}
#body .main .section table .title span { border: none;}
#body .main .section table a.button { padding: 5px 8px;}
#body .main .section table .menu_list .name input { width: 90%; font-weight: 400;}
#body .main .section table .menu_list .path input { width: 90%; font-weight: 400;}
#body .menu_list { color: #666;}
@ -447,27 +448,33 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .menu_system td span { display: inline !important;}
#body .menu_system a.move_del { display: none !important;}
#body .menu_hidden { opacity: 0.5;}
#body table tr td { line-height: 2.5em;}
#body .main .section table a.button { padding: 4px 8px;}
#body .setting_menu table tr td.url { line-height: 30px;}
#body a.path_ext_tips { padding: 3px 5px; margin: 0 0 0 10px; background: #888; border: none; color: #fff;}
#body table tr.title td { line-height: 2.5em; height: 2.5em;}
#body table tr td { line-height: 1em; height: 1em; border-right: 1px solid #ddd;}
#body a.button { width: auto; padding: 2px 1em; height: 26px; line-height: 26px; line-height: 22px \9;}
#body .save { width: auto;}
#body .main .select table a.button { padding: 0 8px;}
#body .main .group_editor .tag { height: 30px; line-height: 30px;}
#body input[type="radio"] { width: auto; border: none;}
#body .main .section .box_line label input[type="radio"] { width: auto; border: none; margin: 2px 1em;}
#body .main .section .box_line label input[type="checkbox"] { width: auto; border: none; margin: 2px 1em;}
#body table { font-size: 13px; color: #888; width: 100%; margin: 0px; border: 1px solid #ccc;}
#body table tr { border-bottom: 1px solid #ddd; height: 30px;}
#body table tr .title { border-bottom: 1px solid #ddd;}
#body table tr input { display: block; width: 250px; width: 90%; color: #888;}
#body table tr { border-bottom: 1px solid #ddd; background: #fcfcfc; height: 30px;}
#body table tr input[type='text'] { display: block; width: 80%; color: #888;}
#body table tr.title { background: #eee; color: #224;}
#body table tr.title td { border-bottom: 1px solid #ddd; font-weight: 800;}
#body table tr.title span { color: #999; font-size: 13px; padding-left: 4px; font-weight: 400;}
#body table tr td { border-bottom: 1px solid #eee; line-height: 2.5em; height: 2.5em; padding-left: 3%;}
#body table tr td.name { width: 30%;}
#body table tr td.name,#body table tr td.path { border-right: 1px solid #ddd;}
#body table tr td.action { line-height: 1.3em; width: 30%;}
#body table tr td.action { line-height: 1.3em;}
#body table tr td.action a { margin-right: 5px;}
#body a.add { display: block; text-align: center; text-decoration: none; background: #f6f6f6; line-height: 2em; height: 2em; border: 1px solid #ccc; color: #555;}
#body a.add:hover { background: #eee;}
#body a.button { text-decoration: none; cursor: pointer; text-shadow: none; border: none; box-shadow: none; border-radius: 0; margin: 5px 10px 5px 0; font-weight: 400; padding: 0.5em 1.5em; font-size: 13px; display: inline-block; height: 16px; line-height: 18px; text-align: center; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s; background: #349fff; color: #fff;}
#body a.button:hover { background: #0186ff; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body a.button:active { background: #00519a; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body .main .section table .button { color: #fff;}
#body a.button { text-decoration: none; cursor: pointer; font-size: 13px; margin: 5px 10px 5px 0; border: none; display: inline-block; border: 1px solid #ddd; text-shadow: none; box-shadow: none; text-align: center; font-weight: 400; padding: 1px 8px; background: #5db2ff; color: #fff; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
#body a.button:hover { background: #108eff;}
#body a.button:active { background: #0066c3; color: #fff;}
#body a.create_app { margin: 0; display: block; position: absolute; right: 21px;}
#body .app_menu_left { min-width: 130px; width: 130px;}
#body .app_menu_left .setting li.selected { padding-left: 12px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #008a17; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -380,7 +383,7 @@ html { overflow-x: hidden; overflow-y: hidden;}
.context-menu-list.code_theme_list,.context-menu-list.code_mode_list { width: 180px !important;}
.context-menu-list span b { display: inline-block; font-size: 12px; position: absolute; right: 10px; font-weight: 400; color: #aaa; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.edit_tab .tabs { height: 29px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs { height: 29px; width: 100%; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs .tab { position: relative; height: 30px; line-height: 30px; color: #666; width: 120px; float: left; background: url("../../../images/buttons_40.png") 0 0px repeat-x; border-right: 1px solid #ddd;}
.edit_tab .tabs .tab .name { margin-left: 5px; display: block; width: 80%; overflow: hidden; position: absolute; z-index: 2; cursor: default; height: 28px;}
.edit_tab .tabs .tab .close { float: right; color: #ccc; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
@ -542,7 +545,7 @@ body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opac
.title_box .size .share_time { padding-left: 10px; font-style: normal; color: #aaa;}
.title_box .btn-group { float: right;}
.title_box .btn-group .btn_download { padding: 4px 20px;}
.title_box .btn-group .dropdown-toggle { height: 16px;}
.title_box .btn-group .dropdown-toggle { height: 16px; height: 30px \9;}
.content_box { width: 80%; margin: 30px auto; margin-bottom: 100px;}
.show_image { text-align: center;}
.show_image img { max-width: 100%;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #008a17; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #008a17; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #008a17; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -572,11 +575,11 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-header .header-content .header-middle #yarnball_input input:focus { outline: none;}
.frame-header .header-content .header-right { position: absolute; right: 20px; top: 10px;}
.frame-header .header-content .header-right .btn { border-radius: 0;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; height: 27px \9; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input:focus { width: 160px; box-shadow: #ccc 0px 0px 20px inset;}
.frame-main { position: absolute; left: 0; right: 0; top: 90px; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; opacity: 0.9; filter: alpha(opacity=90); height: 90px; overflow: hidden; border-top: 1px solid #e6e6e6; background: #f6f6f6; width: 199px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 90px; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; height: 91px; width: 199px; opacity: 0.9; filter: alpha(opacity=90); overflow: hidden; border-right: 1px solid #ddd; border-top: 1px solid #e6e6e6; background: #f6f6f6;}
.frame-main .bottom_box .box_content { margin: 0 auto; width: 190px; padding-left: 10px;}
.frame-main .bottom_box a { background: #fff url("../../../images/bg.gif") 0px -5px repeat-x; display: block; border-radius: 3px; float: left; text-align: center; margin: 10px; color: #999; border: 1px solid #ddd; padding: 4px 10px 1px 10px; text-decoration: none;}
.frame-main .bottom_box a i { display: block; font-size: 25px; padding-bottom: 5px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #008a17; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -426,14 +429,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .section .box_line span.infotitle { width: 125px; display: block; float: left; overflow: hidden; margin-right: 10px; line-height: 32px; color: #333;}
#body .main .section .box_line input[type='text'] { display: block; float: left; width: 350px; font-weight: 200;}
#body .main .section .box_line label { float: left; padding-right: 20px; line-height: 28px; margin: 0;}
#body .main .section .box_line label input { width: 20px;}
#body .main .section .box_line label input:focus { box-shadow: none;}
#body .main .section .box_line i { padding-left: 5px; color: #777; line-height: 30px; font-size: 12px; font-style: normal;}
#body .main .section .box_line a.button { width: 80px;}
#body .main .section table .title { font-size: 14px;}
#body .main .section table .button { margin-left: 0px; color: #666;}
#body .main .section table .button { margin-left: 0px;}
#body .main .section table .title span { border: none;}
#body .main .section table a.button { padding: 5px 8px;}
#body .main .section table .menu_list .name input { width: 90%; font-weight: 400;}
#body .main .section table .menu_list .path input { width: 90%; font-weight: 400;}
#body .menu_list { color: #666;}
@ -447,27 +448,33 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .menu_system td span { display: inline !important;}
#body .menu_system a.move_del { display: none !important;}
#body .menu_hidden { opacity: 0.5;}
#body table tr td { line-height: 2.5em;}
#body .main .section table a.button { padding: 4px 8px;}
#body .setting_menu table tr td.url { line-height: 30px;}
#body a.path_ext_tips { padding: 3px 5px; margin: 0 0 0 10px; background: #888; border: none; color: #fff;}
#body table tr.title td { line-height: 2.5em; height: 2.5em;}
#body table tr td { line-height: 1em; height: 1em; border-right: 1px solid #ddd;}
#body a.button { width: auto; padding: 2px 1em; height: 26px; line-height: 26px; line-height: 22px \9;}
#body .save { width: auto;}
#body .main .select table a.button { padding: 0 8px;}
#body .main .group_editor .tag { height: 30px; line-height: 30px;}
#body input[type="radio"] { width: auto; border: none;}
#body .main .section .box_line label input[type="radio"] { width: auto; border: none; margin: 2px 1em;}
#body .main .section .box_line label input[type="checkbox"] { width: auto; border: none; margin: 2px 1em;}
#body table { font-size: 13px; color: #888; width: 100%; margin: 0px; border: 1px solid #ccc;}
#body table tr { border-bottom: 1px solid #ddd; height: 30px;}
#body table tr .title { border-bottom: 1px solid #ddd;}
#body table tr input { display: block; width: 250px; width: 90%; color: #888;}
#body table tr { border-bottom: 1px solid #ddd; background: #fcfcfc; height: 30px;}
#body table tr input[type='text'] { display: block; width: 80%; color: #888;}
#body table tr.title { background: #eee; color: #224;}
#body table tr.title td { border-bottom: 1px solid #ddd; font-weight: 800;}
#body table tr.title span { color: #999; font-size: 13px; padding-left: 4px; font-weight: 400;}
#body table tr td { border-bottom: 1px solid #eee; line-height: 2.5em; height: 2.5em; padding-left: 3%;}
#body table tr td.name { width: 30%;}
#body table tr td.name,#body table tr td.path { border-right: 1px solid #ddd;}
#body table tr td.action { line-height: 1.3em; width: 30%;}
#body table tr td.action { line-height: 1.3em;}
#body table tr td.action a { margin-right: 5px;}
#body a.add { display: block; text-align: center; text-decoration: none; background: #f6f6f6; line-height: 2em; height: 2em; border: 1px solid #ccc; color: #555;}
#body a.add:hover { background: #eee;}
#body a.button { text-decoration: none; cursor: pointer; text-shadow: none; border: none; box-shadow: none; border-radius: 0; margin: 5px 10px 5px 0; font-weight: 400; padding: 0.5em 1.5em; font-size: 13px; display: inline-block; height: 16px; line-height: 18px; text-align: center; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s; background: #006110; color: #fff;}
#body a.button:hover { background: #002e08; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body a.button:active { background: #000000; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body .main .section table .button { color: #fff;}
#body a.button { text-decoration: none; cursor: pointer; font-size: 13px; margin: 5px 10px 5px 0; border: none; display: inline-block; border: 1px solid #ddd; text-shadow: none; box-shadow: none; text-align: center; font-weight: 400; padding: 1px 8px; background: #008a17; color: #fff; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
#body a.button:hover { background: #003e0a;}
#body a.button:active { background: #000000; color: #fff;}
#body a.create_app { margin: 0; display: block; position: absolute; right: 21px;}
#body .app_menu_left { min-width: 130px; width: 130px;}
#body .app_menu_left .setting li.selected { padding-left: 12px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #444; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -380,7 +383,7 @@ html { overflow-x: hidden; overflow-y: hidden;}
.context-menu-list.code_theme_list,.context-menu-list.code_mode_list { width: 180px !important;}
.context-menu-list span b { display: inline-block; font-size: 12px; position: absolute; right: 10px; font-weight: 400; color: #aaa; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.edit_tab .tabs { height: 29px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs { height: 29px; width: 100%; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs .tab { position: relative; height: 30px; line-height: 30px; color: #666; width: 120px; float: left; background: url("../../../images/buttons_40.png") 0 0px repeat-x; border-right: 1px solid #ddd;}
.edit_tab .tabs .tab .name { margin-left: 5px; display: block; width: 80%; overflow: hidden; position: absolute; z-index: 2; cursor: default; height: 28px;}
.edit_tab .tabs .tab .close { float: right; color: #ccc; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
@ -542,7 +545,7 @@ body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opac
.title_box .size .share_time { padding-left: 10px; font-style: normal; color: #aaa;}
.title_box .btn-group { float: right;}
.title_box .btn-group .btn_download { padding: 4px 20px;}
.title_box .btn-group .dropdown-toggle { height: 16px;}
.title_box .btn-group .dropdown-toggle { height: 16px; height: 30px \9;}
.content_box { width: 80%; margin: 30px auto; margin-bottom: 100px;}
.show_image { text-align: center;}
.show_image img { max-width: 100%;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #444; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #444; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #444; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -572,11 +575,11 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-header .header-content .header-middle #yarnball_input input:focus { outline: none;}
.frame-header .header-content .header-right { position: absolute; right: 20px; top: 10px;}
.frame-header .header-content .header-right .btn { border-radius: 0;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; height: 27px \9; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input:focus { width: 160px; box-shadow: #ccc 0px 0px 20px inset;}
.frame-main { position: absolute; left: 0; right: 0; top: 90px; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; opacity: 0.9; filter: alpha(opacity=90); height: 90px; overflow: hidden; border-top: 1px solid #e6e6e6; background: #f6f6f6; width: 199px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 90px; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; height: 91px; width: 199px; opacity: 0.9; filter: alpha(opacity=90); overflow: hidden; border-right: 1px solid #ddd; border-top: 1px solid #e6e6e6; background: #f6f6f6;}
.frame-main .bottom_box .box_content { margin: 0 auto; width: 190px; padding-left: 10px;}
.frame-main .bottom_box a { background: #fff url("../../../images/bg.gif") 0px -5px repeat-x; display: block; border-radius: 3px; float: left; text-align: center; margin: 10px; color: #999; border: 1px solid #ddd; padding: 4px 10px 1px 10px; text-decoration: none;}
.frame-main .bottom_box a i { display: block; font-size: 25px; padding-bottom: 5px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #444; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -426,14 +429,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .section .box_line span.infotitle { width: 125px; display: block; float: left; overflow: hidden; margin-right: 10px; line-height: 32px; color: #333;}
#body .main .section .box_line input[type='text'] { display: block; float: left; width: 350px; font-weight: 200;}
#body .main .section .box_line label { float: left; padding-right: 20px; line-height: 28px; margin: 0;}
#body .main .section .box_line label input { width: 20px;}
#body .main .section .box_line label input:focus { box-shadow: none;}
#body .main .section .box_line i { padding-left: 5px; color: #777; line-height: 30px; font-size: 12px; font-style: normal;}
#body .main .section .box_line a.button { width: 80px;}
#body .main .section table .title { font-size: 14px;}
#body .main .section table .button { margin-left: 0px; color: #666;}
#body .main .section table .button { margin-left: 0px;}
#body .main .section table .title span { border: none;}
#body .main .section table a.button { padding: 5px 8px;}
#body .main .section table .menu_list .name input { width: 90%; font-weight: 400;}
#body .main .section table .menu_list .path input { width: 90%; font-weight: 400;}
#body .menu_list { color: #666;}
@ -447,27 +448,33 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .menu_system td span { display: inline !important;}
#body .menu_system a.move_del { display: none !important;}
#body .menu_hidden { opacity: 0.5;}
#body table tr td { line-height: 2.5em;}
#body .main .section table a.button { padding: 4px 8px;}
#body .setting_menu table tr td.url { line-height: 30px;}
#body a.path_ext_tips { padding: 3px 5px; margin: 0 0 0 10px; background: #888; border: none; color: #fff;}
#body table tr.title td { line-height: 2.5em; height: 2.5em;}
#body table tr td { line-height: 1em; height: 1em; border-right: 1px solid #ddd;}
#body a.button { width: auto; padding: 2px 1em; height: 26px; line-height: 26px; line-height: 22px \9;}
#body .save { width: auto;}
#body .main .select table a.button { padding: 0 8px;}
#body .main .group_editor .tag { height: 30px; line-height: 30px;}
#body input[type="radio"] { width: auto; border: none;}
#body .main .section .box_line label input[type="radio"] { width: auto; border: none; margin: 2px 1em;}
#body .main .section .box_line label input[type="checkbox"] { width: auto; border: none; margin: 2px 1em;}
#body table { font-size: 13px; color: #888; width: 100%; margin: 0px; border: 1px solid #ccc;}
#body table tr { border-bottom: 1px solid #ddd; height: 30px;}
#body table tr .title { border-bottom: 1px solid #ddd;}
#body table tr input { display: block; width: 250px; width: 90%; color: #888;}
#body table tr { border-bottom: 1px solid #ddd; background: #fcfcfc; height: 30px;}
#body table tr input[type='text'] { display: block; width: 80%; color: #888;}
#body table tr.title { background: #eee; color: #224;}
#body table tr.title td { border-bottom: 1px solid #ddd; font-weight: 800;}
#body table tr.title span { color: #999; font-size: 13px; padding-left: 4px; font-weight: 400;}
#body table tr td { border-bottom: 1px solid #eee; line-height: 2.5em; height: 2.5em; padding-left: 3%;}
#body table tr td.name { width: 30%;}
#body table tr td.name,#body table tr td.path { border-right: 1px solid #ddd;}
#body table tr td.action { line-height: 1.3em; width: 30%;}
#body table tr td.action { line-height: 1.3em;}
#body table tr td.action a { margin-right: 5px;}
#body a.add { display: block; text-align: center; text-decoration: none; background: #f6f6f6; line-height: 2em; height: 2em; border: 1px solid #ccc; color: #555;}
#body a.add:hover { background: #eee;}
#body a.button { text-decoration: none; cursor: pointer; text-shadow: none; border: none; box-shadow: none; border-radius: 0; margin: 5px 10px 5px 0; font-weight: 400; padding: 0.5em 1.5em; font-size: 13px; display: inline-block; height: 16px; line-height: 18px; text-align: center; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s; background: #303030; color: #fff;}
#body a.button:hover { background: #161616; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body a.button:active { background: #000000; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body .main .section table .button { color: #fff;}
#body a.button { text-decoration: none; cursor: pointer; font-size: 13px; margin: 5px 10px 5px 0; border: none; display: inline-block; border: 1px solid #ddd; text-shadow: none; box-shadow: none; text-align: center; font-weight: 400; padding: 1px 8px; background: #444444; color: #fff; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
#body a.button:hover { background: #1e1e1e;}
#body a.button:active { background: #000000; color: #fff;}
#body a.create_app { margin: 0; display: block; position: absolute; right: 21px;}
#body .app_menu_left { min-width: 130px; width: 130px;}
#body .app_menu_left .setting li.selected { padding-left: 12px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #03B3B2; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -380,7 +383,7 @@ html { overflow-x: hidden; overflow-y: hidden;}
.context-menu-list.code_theme_list,.context-menu-list.code_mode_list { width: 180px !important;}
.context-menu-list span b { display: inline-block; font-size: 12px; position: absolute; right: 10px; font-weight: 400; color: #aaa; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.edit_tab .tabs { height: 29px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs { height: 29px; width: 100%; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs .tab { position: relative; height: 30px; line-height: 30px; color: #666; width: 120px; float: left; background: url("../../../images/buttons_40.png") 0 0px repeat-x; border-right: 1px solid #ddd;}
.edit_tab .tabs .tab .name { margin-left: 5px; display: block; width: 80%; overflow: hidden; position: absolute; z-index: 2; cursor: default; height: 28px;}
.edit_tab .tabs .tab .close { float: right; color: #ccc; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
@ -542,7 +545,7 @@ body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opac
.title_box .size .share_time { padding-left: 10px; font-style: normal; color: #aaa;}
.title_box .btn-group { float: right;}
.title_box .btn-group .btn_download { padding: 4px 20px;}
.title_box .btn-group .dropdown-toggle { height: 16px;}
.title_box .btn-group .dropdown-toggle { height: 16px; height: 30px \9;}
.content_box { width: 80%; margin: 30px auto; margin-bottom: 100px;}
.show_image { text-align: center;}
.show_image img { max-width: 100%;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #03B3B2; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #03B3B2; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #03B3B2; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -572,11 +575,11 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-header .header-content .header-middle #yarnball_input input:focus { outline: none;}
.frame-header .header-content .header-right { position: absolute; right: 20px; top: 10px;}
.frame-header .header-content .header-right .btn { border-radius: 0;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; height: 27px \9; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input:focus { width: 160px; box-shadow: #ccc 0px 0px 20px inset;}
.frame-main { position: absolute; left: 0; right: 0; top: 90px; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; opacity: 0.9; filter: alpha(opacity=90); height: 90px; overflow: hidden; border-top: 1px solid #e6e6e6; background: #f6f6f6; width: 199px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 90px; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; height: 91px; width: 199px; opacity: 0.9; filter: alpha(opacity=90); overflow: hidden; border-right: 1px solid #ddd; border-top: 1px solid #e6e6e6; background: #f6f6f6;}
.frame-main .bottom_box .box_content { margin: 0 auto; width: 190px; padding-left: 10px;}
.frame-main .bottom_box a { background: #fff url("../../../images/bg.gif") 0px -5px repeat-x; display: block; border-radius: 3px; float: left; text-align: center; margin: 10px; color: #999; border: 1px solid #ddd; padding: 4px 10px 1px 10px; text-decoration: none;}
.frame-main .bottom_box a i { display: block; font-size: 25px; padding-bottom: 5px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #03B3B2; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -426,14 +429,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .section .box_line span.infotitle { width: 125px; display: block; float: left; overflow: hidden; margin-right: 10px; line-height: 32px; color: #333;}
#body .main .section .box_line input[type='text'] { display: block; float: left; width: 350px; font-weight: 200;}
#body .main .section .box_line label { float: left; padding-right: 20px; line-height: 28px; margin: 0;}
#body .main .section .box_line label input { width: 20px;}
#body .main .section .box_line label input:focus { box-shadow: none;}
#body .main .section .box_line i { padding-left: 5px; color: #777; line-height: 30px; font-size: 12px; font-style: normal;}
#body .main .section .box_line a.button { width: 80px;}
#body .main .section table .title { font-size: 14px;}
#body .main .section table .button { margin-left: 0px; color: #666;}
#body .main .section table .button { margin-left: 0px;}
#body .main .section table .title span { border: none;}
#body .main .section table a.button { padding: 5px 8px;}
#body .main .section table .menu_list .name input { width: 90%; font-weight: 400;}
#body .main .section table .menu_list .path input { width: 90%; font-weight: 400;}
#body .menu_list { color: #666;}
@ -447,27 +448,33 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .menu_system td span { display: inline !important;}
#body .menu_system a.move_del { display: none !important;}
#body .menu_hidden { opacity: 0.5;}
#body table tr td { line-height: 2.5em;}
#body .main .section table a.button { padding: 4px 8px;}
#body .setting_menu table tr td.url { line-height: 30px;}
#body a.path_ext_tips { padding: 3px 5px; margin: 0 0 0 10px; background: #888; border: none; color: #fff;}
#body table tr.title td { line-height: 2.5em; height: 2.5em;}
#body table tr td { line-height: 1em; height: 1em; border-right: 1px solid #ddd;}
#body a.button { width: auto; padding: 2px 1em; height: 26px; line-height: 26px; line-height: 22px \9;}
#body .save { width: auto;}
#body .main .select table a.button { padding: 0 8px;}
#body .main .group_editor .tag { height: 30px; line-height: 30px;}
#body input[type="radio"] { width: auto; border: none;}
#body .main .section .box_line label input[type="radio"] { width: auto; border: none; margin: 2px 1em;}
#body .main .section .box_line label input[type="checkbox"] { width: auto; border: none; margin: 2px 1em;}
#body table { font-size: 13px; color: #888; width: 100%; margin: 0px; border: 1px solid #ccc;}
#body table tr { border-bottom: 1px solid #ddd; height: 30px;}
#body table tr .title { border-bottom: 1px solid #ddd;}
#body table tr input { display: block; width: 250px; width: 90%; color: #888;}
#body table tr { border-bottom: 1px solid #ddd; background: #fcfcfc; height: 30px;}
#body table tr input[type='text'] { display: block; width: 80%; color: #888;}
#body table tr.title { background: #eee; color: #224;}
#body table tr.title td { border-bottom: 1px solid #ddd; font-weight: 800;}
#body table tr.title span { color: #999; font-size: 13px; padding-left: 4px; font-weight: 400;}
#body table tr td { border-bottom: 1px solid #eee; line-height: 2.5em; height: 2.5em; padding-left: 3%;}
#body table tr td.name { width: 30%;}
#body table tr td.name,#body table tr td.path { border-right: 1px solid #ddd;}
#body table tr td.action { line-height: 1.3em; width: 30%;}
#body table tr td.action { line-height: 1.3em;}
#body table tr td.action a { margin-right: 5px;}
#body a.add { display: block; text-align: center; text-decoration: none; background: #f6f6f6; line-height: 2em; height: 2em; border: 1px solid #ccc; color: #555;}
#body a.add:hover { background: #eee;}
#body a.button { text-decoration: none; cursor: pointer; text-shadow: none; border: none; box-shadow: none; border-radius: 0; margin: 5px 10px 5px 0; font-weight: 400; padding: 0.5em 1.5em; font-size: 13px; display: inline-block; height: 16px; line-height: 18px; text-align: center; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s; background: #028b8a; color: #fff;}
#body a.button:hover { background: #015958; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body a.button:active { background: #000000; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body .main .section table .button { color: #fff;}
#body a.button { text-decoration: none; cursor: pointer; font-size: 13px; margin: 5px 10px 5px 0; border: none; display: inline-block; border: 1px solid #ddd; text-shadow: none; box-shadow: none; text-align: center; font-weight: 400; padding: 1px 8px; background: #03b3b2; color: #fff; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
#body a.button:hover { background: #026867;}
#body a.button:active { background: #001d1c; color: #fff;}
#body a.create_app { margin: 0; display: block; position: absolute; right: 21px;}
#body .app_menu_left { min-width: 130px; width: 130px;}
#body .app_menu_left .setting li.selected { padding-left: 12px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #FF8F32; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -380,7 +383,7 @@ html { overflow-x: hidden; overflow-y: hidden;}
.context-menu-list.code_theme_list,.context-menu-list.code_mode_list { width: 180px !important;}
.context-menu-list span b { display: inline-block; font-size: 12px; position: absolute; right: 10px; font-weight: 400; color: #aaa; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.edit_tab .tabs { height: 29px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs { height: 29px; width: 100%; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs .tab { position: relative; height: 30px; line-height: 30px; color: #666; width: 120px; float: left; background: url("../../../images/buttons_40.png") 0 0px repeat-x; border-right: 1px solid #ddd;}
.edit_tab .tabs .tab .name { margin-left: 5px; display: block; width: 80%; overflow: hidden; position: absolute; z-index: 2; cursor: default; height: 28px;}
.edit_tab .tabs .tab .close { float: right; color: #ccc; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
@ -542,7 +545,7 @@ body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opac
.title_box .size .share_time { padding-left: 10px; font-style: normal; color: #aaa;}
.title_box .btn-group { float: right;}
.title_box .btn-group .btn_download { padding: 4px 20px;}
.title_box .btn-group .dropdown-toggle { height: 16px;}
.title_box .btn-group .dropdown-toggle { height: 16px; height: 30px \9;}
.content_box { width: 80%; margin: 30px auto; margin-bottom: 100px;}
.show_image { text-align: center;}
.show_image img { max-width: 100%;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #FF8F32; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #FF8F32; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #FF8F32; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -572,11 +575,11 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-header .header-content .header-middle #yarnball_input input:focus { outline: none;}
.frame-header .header-content .header-right { position: absolute; right: 20px; top: 10px;}
.frame-header .header-content .header-right .btn { border-radius: 0;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; height: 27px \9; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input:focus { width: 160px; box-shadow: #ccc 0px 0px 20px inset;}
.frame-main { position: absolute; left: 0; right: 0; top: 90px; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; opacity: 0.9; filter: alpha(opacity=90); height: 90px; overflow: hidden; border-top: 1px solid #e6e6e6; background: #f6f6f6; width: 199px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 90px; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; height: 91px; width: 199px; opacity: 0.9; filter: alpha(opacity=90); overflow: hidden; border-right: 1px solid #ddd; border-top: 1px solid #e6e6e6; background: #f6f6f6;}
.frame-main .bottom_box .box_content { margin: 0 auto; width: 190px; padding-left: 10px;}
.frame-main .bottom_box a { background: #fff url("../../../images/bg.gif") 0px -5px repeat-x; display: block; border-radius: 3px; float: left; text-align: center; margin: 10px; color: #999; border: 1px solid #ddd; padding: 4px 10px 1px 10px; text-decoration: none;}
.frame-main .bottom_box a i { display: block; font-size: 25px; padding-bottom: 5px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #FF8F32; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -426,14 +429,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .section .box_line span.infotitle { width: 125px; display: block; float: left; overflow: hidden; margin-right: 10px; line-height: 32px; color: #333;}
#body .main .section .box_line input[type='text'] { display: block; float: left; width: 350px; font-weight: 200;}
#body .main .section .box_line label { float: left; padding-right: 20px; line-height: 28px; margin: 0;}
#body .main .section .box_line label input { width: 20px;}
#body .main .section .box_line label input:focus { box-shadow: none;}
#body .main .section .box_line i { padding-left: 5px; color: #777; line-height: 30px; font-size: 12px; font-style: normal;}
#body .main .section .box_line a.button { width: 80px;}
#body .main .section table .title { font-size: 14px;}
#body .main .section table .button { margin-left: 0px; color: #666;}
#body .main .section table .button { margin-left: 0px;}
#body .main .section table .title span { border: none;}
#body .main .section table a.button { padding: 5px 8px;}
#body .main .section table .menu_list .name input { width: 90%; font-weight: 400;}
#body .main .section table .menu_list .path input { width: 90%; font-weight: 400;}
#body .menu_list { color: #666;}
@ -447,27 +448,33 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .menu_system td span { display: inline !important;}
#body .menu_system a.move_del { display: none !important;}
#body .menu_hidden { opacity: 0.5;}
#body table tr td { line-height: 2.5em;}
#body .main .section table a.button { padding: 4px 8px;}
#body .setting_menu table tr td.url { line-height: 30px;}
#body a.path_ext_tips { padding: 3px 5px; margin: 0 0 0 10px; background: #888; border: none; color: #fff;}
#body table tr.title td { line-height: 2.5em; height: 2.5em;}
#body table tr td { line-height: 1em; height: 1em; border-right: 1px solid #ddd;}
#body a.button { width: auto; padding: 2px 1em; height: 26px; line-height: 26px; line-height: 22px \9;}
#body .save { width: auto;}
#body .main .select table a.button { padding: 0 8px;}
#body .main .group_editor .tag { height: 30px; line-height: 30px;}
#body input[type="radio"] { width: auto; border: none;}
#body .main .section .box_line label input[type="radio"] { width: auto; border: none; margin: 2px 1em;}
#body .main .section .box_line label input[type="checkbox"] { width: auto; border: none; margin: 2px 1em;}
#body table { font-size: 13px; color: #888; width: 100%; margin: 0px; border: 1px solid #ccc;}
#body table tr { border-bottom: 1px solid #ddd; height: 30px;}
#body table tr .title { border-bottom: 1px solid #ddd;}
#body table tr input { display: block; width: 250px; width: 90%; color: #888;}
#body table tr { border-bottom: 1px solid #ddd; background: #fcfcfc; height: 30px;}
#body table tr input[type='text'] { display: block; width: 80%; color: #888;}
#body table tr.title { background: #eee; color: #224;}
#body table tr.title td { border-bottom: 1px solid #ddd; font-weight: 800;}
#body table tr.title span { color: #999; font-size: 13px; padding-left: 4px; font-weight: 400;}
#body table tr td { border-bottom: 1px solid #eee; line-height: 2.5em; height: 2.5em; padding-left: 3%;}
#body table tr td.name { width: 30%;}
#body table tr td.name,#body table tr td.path { border-right: 1px solid #ddd;}
#body table tr td.action { line-height: 1.3em; width: 30%;}
#body table tr td.action { line-height: 1.3em;}
#body table tr td.action a { margin-right: 5px;}
#body a.add { display: block; text-align: center; text-decoration: none; background: #f6f6f6; line-height: 2em; height: 2em; border: 1px solid #ccc; color: #555;}
#body a.add:hover { background: #eee;}
#body a.button { text-decoration: none; cursor: pointer; text-shadow: none; border: none; box-shadow: none; border-radius: 0; margin: 5px 10px 5px 0; font-weight: 400; padding: 0.5em 1.5em; font-size: 13px; display: inline-block; height: 16px; line-height: 18px; text-align: center; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s; background: #ff7909; color: #fff;}
#body a.button:hover { background: #d56100; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body a.button:active { background: #6f3200; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body .main .section table .button { color: #fff;}
#body a.button { text-decoration: none; cursor: pointer; font-size: 13px; margin: 5px 10px 5px 0; border: none; display: inline-block; border: 1px solid #ddd; text-shadow: none; box-shadow: none; text-align: center; font-weight: 400; padding: 1px 8px; background: #ff8f32; color: #fff; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
#body a.button:hover { background: #e56800;}
#body a.button:active { background: #984500; color: #fff;}
#body a.create_app { margin: 0; display: block; position: absolute; right: 21px;}
#body .app_menu_left { min-width: 130px; width: 130px;}
#body .app_menu_left .setting li.selected { padding-left: 12px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #DC4FAD; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -380,7 +383,7 @@ html { overflow-x: hidden; overflow-y: hidden;}
.context-menu-list.code_theme_list,.context-menu-list.code_mode_list { width: 180px !important;}
.context-menu-list span b { display: inline-block; font-size: 12px; position: absolute; right: 10px; font-weight: 400; color: #aaa; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.edit_tab .tabs { height: 29px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs { height: 29px; width: 100%; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs .tab { position: relative; height: 30px; line-height: 30px; color: #666; width: 120px; float: left; background: url("../../../images/buttons_40.png") 0 0px repeat-x; border-right: 1px solid #ddd;}
.edit_tab .tabs .tab .name { margin-left: 5px; display: block; width: 80%; overflow: hidden; position: absolute; z-index: 2; cursor: default; height: 28px;}
.edit_tab .tabs .tab .close { float: right; color: #ccc; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
@ -542,7 +545,7 @@ body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opac
.title_box .size .share_time { padding-left: 10px; font-style: normal; color: #aaa;}
.title_box .btn-group { float: right;}
.title_box .btn-group .btn_download { padding: 4px 20px;}
.title_box .btn-group .dropdown-toggle { height: 16px;}
.title_box .btn-group .dropdown-toggle { height: 16px; height: 30px \9;}
.content_box { width: 80%; margin: 30px auto; margin-bottom: 100px;}
.show_image { text-align: center;}
.show_image img { max-width: 100%;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #DC4FAD; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #DC4FAD; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #DC4FAD; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -572,11 +575,11 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-header .header-content .header-middle #yarnball_input input:focus { outline: none;}
.frame-header .header-content .header-right { position: absolute; right: 20px; top: 10px;}
.frame-header .header-content .header-right .btn { border-radius: 0;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; height: 27px \9; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input:focus { width: 160px; box-shadow: #ccc 0px 0px 20px inset;}
.frame-main { position: absolute; left: 0; right: 0; top: 90px; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; opacity: 0.9; filter: alpha(opacity=90); height: 90px; overflow: hidden; border-top: 1px solid #e6e6e6; background: #f6f6f6; width: 199px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 90px; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; height: 91px; width: 199px; opacity: 0.9; filter: alpha(opacity=90); overflow: hidden; border-right: 1px solid #ddd; border-top: 1px solid #e6e6e6; background: #f6f6f6;}
.frame-main .bottom_box .box_content { margin: 0 auto; width: 190px; padding-left: 10px;}
.frame-main .bottom_box a { background: #fff url("../../../images/bg.gif") 0px -5px repeat-x; display: block; border-radius: 3px; float: left; text-align: center; margin: 10px; color: #999; border: 1px solid #ddd; padding: 4px 10px 1px 10px; text-decoration: none;}
.frame-main .bottom_box a i { display: block; font-size: 25px; padding-bottom: 5px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #DC4FAD; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -426,14 +429,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .section .box_line span.infotitle { width: 125px; display: block; float: left; overflow: hidden; margin-right: 10px; line-height: 32px; color: #333;}
#body .main .section .box_line input[type='text'] { display: block; float: left; width: 350px; font-weight: 200;}
#body .main .section .box_line label { float: left; padding-right: 20px; line-height: 28px; margin: 0;}
#body .main .section .box_line label input { width: 20px;}
#body .main .section .box_line label input:focus { box-shadow: none;}
#body .main .section .box_line i { padding-left: 5px; color: #777; line-height: 30px; font-size: 12px; font-style: normal;}
#body .main .section .box_line a.button { width: 80px;}
#body .main .section table .title { font-size: 14px;}
#body .main .section table .button { margin-left: 0px; color: #666;}
#body .main .section table .button { margin-left: 0px;}
#body .main .section table .title span { border: none;}
#body .main .section table a.button { padding: 5px 8px;}
#body .main .section table .menu_list .name input { width: 90%; font-weight: 400;}
#body .main .section table .menu_list .path input { width: 90%; font-weight: 400;}
#body .menu_list { color: #666;}
@ -447,27 +448,33 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .menu_system td span { display: inline !important;}
#body .menu_system a.move_del { display: none !important;}
#body .menu_hidden { opacity: 0.5;}
#body table tr td { line-height: 2.5em;}
#body .main .section table a.button { padding: 4px 8px;}
#body .setting_menu table tr td.url { line-height: 30px;}
#body a.path_ext_tips { padding: 3px 5px; margin: 0 0 0 10px; background: #888; border: none; color: #fff;}
#body table tr.title td { line-height: 2.5em; height: 2.5em;}
#body table tr td { line-height: 1em; height: 1em; border-right: 1px solid #ddd;}
#body a.button { width: auto; padding: 2px 1em; height: 26px; line-height: 26px; line-height: 22px \9;}
#body .save { width: auto;}
#body .main .select table a.button { padding: 0 8px;}
#body .main .group_editor .tag { height: 30px; line-height: 30px;}
#body input[type="radio"] { width: auto; border: none;}
#body .main .section .box_line label input[type="radio"] { width: auto; border: none; margin: 2px 1em;}
#body .main .section .box_line label input[type="checkbox"] { width: auto; border: none; margin: 2px 1em;}
#body table { font-size: 13px; color: #888; width: 100%; margin: 0px; border: 1px solid #ccc;}
#body table tr { border-bottom: 1px solid #ddd; height: 30px;}
#body table tr .title { border-bottom: 1px solid #ddd;}
#body table tr input { display: block; width: 250px; width: 90%; color: #888;}
#body table tr { border-bottom: 1px solid #ddd; background: #fcfcfc; height: 30px;}
#body table tr input[type='text'] { display: block; width: 80%; color: #888;}
#body table tr.title { background: #eee; color: #224;}
#body table tr.title td { border-bottom: 1px solid #ddd; font-weight: 800;}
#body table tr.title span { color: #999; font-size: 13px; padding-left: 4px; font-weight: 400;}
#body table tr td { border-bottom: 1px solid #eee; line-height: 2.5em; height: 2.5em; padding-left: 3%;}
#body table tr td.name { width: 30%;}
#body table tr td.name,#body table tr td.path { border-right: 1px solid #ddd;}
#body table tr td.action { line-height: 1.3em; width: 30%;}
#body table tr td.action { line-height: 1.3em;}
#body table tr td.action a { margin-right: 5px;}
#body a.add { display: block; text-align: center; text-decoration: none; background: #f6f6f6; line-height: 2em; height: 2em; border: 1px solid #ccc; color: #555;}
#body a.add:hover { background: #eee;}
#body a.button { text-decoration: none; cursor: pointer; text-shadow: none; border: none; box-shadow: none; border-radius: 0; margin: 5px 10px 5px 0; font-weight: 400; padding: 0.5em 1.5em; font-size: 13px; display: inline-block; height: 16px; line-height: 18px; text-align: center; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s; background: #d52d9d; color: #fff;}
#body a.button:hover { background: #ad227f; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body a.button:active { background: #581140; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body .main .section table .button { color: #fff;}
#body a.button { text-decoration: none; cursor: pointer; font-size: 13px; margin: 5px 10px 5px 0; border: none; display: inline-block; border: 1px solid #ddd; text-shadow: none; box-shadow: none; text-align: center; font-weight: 400; padding: 1px 8px; background: #dc4fad; color: #fff; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
#body a.button:hover { background: #ba2588;}
#body a.button:active { background: #7a1859; color: #fff;}
#body a.create_app { margin: 0; display: block; position: absolute; right: 21px;}
#body .app_menu_left { min-width: 130px; width: 130px;}
#body .app_menu_left .setting li.selected { padding-left: 12px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #8D3CC4; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -380,7 +383,7 @@ html { overflow-x: hidden; overflow-y: hidden;}
.context-menu-list.code_theme_list,.context-menu-list.code_mode_list { width: 180px !important;}
.context-menu-list span b { display: inline-block; font-size: 12px; position: absolute; right: 10px; font-weight: 400; color: #aaa; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.edit_tab .tabs { height: 29px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs { height: 29px; width: 100%; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs .tab { position: relative; height: 30px; line-height: 30px; color: #666; width: 120px; float: left; background: url("../../../images/buttons_40.png") 0 0px repeat-x; border-right: 1px solid #ddd;}
.edit_tab .tabs .tab .name { margin-left: 5px; display: block; width: 80%; overflow: hidden; position: absolute; z-index: 2; cursor: default; height: 28px;}
.edit_tab .tabs .tab .close { float: right; color: #ccc; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
@ -542,7 +545,7 @@ body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opac
.title_box .size .share_time { padding-left: 10px; font-style: normal; color: #aaa;}
.title_box .btn-group { float: right;}
.title_box .btn-group .btn_download { padding: 4px 20px;}
.title_box .btn-group .dropdown-toggle { height: 16px;}
.title_box .btn-group .dropdown-toggle { height: 16px; height: 30px \9;}
.content_box { width: 80%; margin: 30px auto; margin-bottom: 100px;}
.show_image { text-align: center;}
.show_image img { max-width: 100%;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #8D3CC4; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #8D3CC4; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #8D3CC4; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -572,11 +575,11 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-header .header-content .header-middle #yarnball_input input:focus { outline: none;}
.frame-header .header-content .header-right { position: absolute; right: 20px; top: 10px;}
.frame-header .header-content .header-right .btn { border-radius: 0;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; height: 27px \9; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input:focus { width: 160px; box-shadow: #ccc 0px 0px 20px inset;}
.frame-main { position: absolute; left: 0; right: 0; top: 90px; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; opacity: 0.9; filter: alpha(opacity=90); height: 90px; overflow: hidden; border-top: 1px solid #e6e6e6; background: #f6f6f6; width: 199px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 90px; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; height: 91px; width: 199px; opacity: 0.9; filter: alpha(opacity=90); overflow: hidden; border-right: 1px solid #ddd; border-top: 1px solid #e6e6e6; background: #f6f6f6;}
.frame-main .bottom_box .box_content { margin: 0 auto; width: 190px; padding-left: 10px;}
.frame-main .bottom_box a { background: #fff url("../../../images/bg.gif") 0px -5px repeat-x; display: block; border-radius: 3px; float: left; text-align: center; margin: 10px; color: #999; border: 1px solid #ddd; padding: 4px 10px 1px 10px; text-decoration: none;}
.frame-main .bottom_box a i { display: block; font-size: 25px; padding-bottom: 5px;}

View File

@ -8,7 +8,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -36,6 +35,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #8D3CC4; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -284,6 +284,9 @@ table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-co
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
@ -426,14 +429,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .section .box_line span.infotitle { width: 125px; display: block; float: left; overflow: hidden; margin-right: 10px; line-height: 32px; color: #333;}
#body .main .section .box_line input[type='text'] { display: block; float: left; width: 350px; font-weight: 200;}
#body .main .section .box_line label { float: left; padding-right: 20px; line-height: 28px; margin: 0;}
#body .main .section .box_line label input { width: 20px;}
#body .main .section .box_line label input:focus { box-shadow: none;}
#body .main .section .box_line i { padding-left: 5px; color: #777; line-height: 30px; font-size: 12px; font-style: normal;}
#body .main .section .box_line a.button { width: 80px;}
#body .main .section table .title { font-size: 14px;}
#body .main .section table .button { margin-left: 0px; color: #666;}
#body .main .section table .button { margin-left: 0px;}
#body .main .section table .title span { border: none;}
#body .main .section table a.button { padding: 5px 8px;}
#body .main .section table .menu_list .name input { width: 90%; font-weight: 400;}
#body .main .section table .menu_list .path input { width: 90%; font-weight: 400;}
#body .menu_list { color: #666;}
@ -447,27 +448,33 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .menu_system td span { display: inline !important;}
#body .menu_system a.move_del { display: none !important;}
#body .menu_hidden { opacity: 0.5;}
#body table tr td { line-height: 2.5em;}
#body .main .section table a.button { padding: 4px 8px;}
#body .setting_menu table tr td.url { line-height: 30px;}
#body a.path_ext_tips { padding: 3px 5px; margin: 0 0 0 10px; background: #888; border: none; color: #fff;}
#body table tr.title td { line-height: 2.5em; height: 2.5em;}
#body table tr td { line-height: 1em; height: 1em; border-right: 1px solid #ddd;}
#body a.button { width: auto; padding: 2px 1em; height: 26px; line-height: 26px; line-height: 22px \9;}
#body .save { width: auto;}
#body .main .select table a.button { padding: 0 8px;}
#body .main .group_editor .tag { height: 30px; line-height: 30px;}
#body input[type="radio"] { width: auto; border: none;}
#body .main .section .box_line label input[type="radio"] { width: auto; border: none; margin: 2px 1em;}
#body .main .section .box_line label input[type="checkbox"] { width: auto; border: none; margin: 2px 1em;}
#body table { font-size: 13px; color: #888; width: 100%; margin: 0px; border: 1px solid #ccc;}
#body table tr { border-bottom: 1px solid #ddd; height: 30px;}
#body table tr .title { border-bottom: 1px solid #ddd;}
#body table tr input { display: block; width: 250px; width: 90%; color: #888;}
#body table tr { border-bottom: 1px solid #ddd; background: #fcfcfc; height: 30px;}
#body table tr input[type='text'] { display: block; width: 80%; color: #888;}
#body table tr.title { background: #eee; color: #224;}
#body table tr.title td { border-bottom: 1px solid #ddd; font-weight: 800;}
#body table tr.title span { color: #999; font-size: 13px; padding-left: 4px; font-weight: 400;}
#body table tr td { border-bottom: 1px solid #eee; line-height: 2.5em; height: 2.5em; padding-left: 3%;}
#body table tr td.name { width: 30%;}
#body table tr td.name,#body table tr td.path { border-right: 1px solid #ddd;}
#body table tr td.action { line-height: 1.3em; width: 30%;}
#body table tr td.action { line-height: 1.3em;}
#body table tr td.action a { margin-right: 5px;}
#body a.add { display: block; text-align: center; text-decoration: none; background: #f6f6f6; line-height: 2em; height: 2em; border: 1px solid #ccc; color: #555;}
#body a.add:hover { background: #eee;}
#body a.button { text-decoration: none; cursor: pointer; text-shadow: none; border: none; box-shadow: none; border-radius: 0; margin: 5px 10px 5px 0; font-weight: 400; padding: 0.5em 1.5em; font-size: 13px; display: inline-block; height: 16px; line-height: 18px; text-align: center; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s; background: #7732a5; color: #fff;}
#body a.button:hover { background: #5b267e; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body a.button:active { background: #220e30; text-shadow: none; border: none; box-shadow: none; border-radius: 0;}
#body .main .section table .button { color: #fff;}
#body a.button { text-decoration: none; cursor: pointer; font-size: 13px; margin: 5px 10px 5px 0; border: none; display: inline-block; border: 1px solid #ddd; text-shadow: none; box-shadow: none; text-align: center; font-weight: 400; padding: 1px 8px; background: #8d3cc4; color: #fff; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
#body a.button:hover { background: #632a8a;}
#body a.button:active { background: #39184f; color: #fff;}
#body a.create_app { margin: 0; display: block; position: absolute; right: 21px;}
#body .app_menu_left { min-width: 130px; width: 130px;}
#body .app_menu_left .setting li.selected { padding-left: 12px;}

View File

@ -7,7 +7,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -35,6 +34,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #63acff; position: fixed; background: #f1f1f1;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -402,7 +402,7 @@ html { overflow-x: hidden; overflow-y: hidden;}
.context-menu-list.code_theme_list,.context-menu-list.code_mode_list { width: 180px !important;}
.context-menu-list span b { display: inline-block; font-size: 12px; position: absolute; right: 10px; font-weight: 400; color: #aaa; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.edit_tab .tabs { height: 29px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs { height: 29px; width: 100%; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd;}
.edit_tab .tabs .tab { position: relative; height: 30px; line-height: 30px; color: #666; width: 120px; float: left; background: url("../../../images/buttons_40.png") 0 0px repeat-x; border-right: 1px solid #ddd;}
.edit_tab .tabs .tab .name { margin-left: 5px; display: block; width: 80%; overflow: hidden; position: absolute; z-index: 2; cursor: default; height: 28px;}
.edit_tab .tabs .tab .close { float: right; color: #ccc; position: relative; font-size: 15px; margin-right: 5px; z-index: 3; margin-top: 7px;}
@ -564,7 +564,7 @@ body div#ace_settingsmenu,body div#kbshortcutmenu { background-color: #000; opac
.title_box .size .share_time { padding-left: 10px; font-style: normal; color: #aaa;}
.title_box .btn-group { float: right;}
.title_box .btn-group .btn_download { padding: 4px 20px;}
.title_box .btn-group .dropdown-toggle { height: 16px;}
.title_box .btn-group .dropdown-toggle { height: 16px; height: 30px \9;}
.content_box { width: 80%; margin: 30px auto; margin-bottom: 100px;}
.show_image { text-align: center;}
.show_image img { max-width: 100%;}

View File

@ -7,7 +7,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -35,6 +34,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #63acff; position: fixed; background: #f1f1f1;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}

View File

@ -7,7 +7,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -35,6 +34,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #63acff; position: fixed; background: #f1f1f1;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}

View File

@ -7,7 +7,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -35,6 +34,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #63acff; position: fixed; background: #f1f1f1;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -587,11 +587,11 @@ html { overflow-x: hidden; overflow-y: hidden;}
.frame-header .header-content .header-middle #yarnball_input input:focus { outline: none;}
.frame-header .header-content .header-right { position: absolute; right: 20px; top: 10px;}
.frame-header .header-content .header-right .btn { border-radius: 0;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input { display: block; float: left; border: 1px solid #ddd; height: 25px; height: 27px \9; padding-left: 10px; padding-right: 10px; text-shadow: 1px 1px 3px #cce; color: #888; background: #f8f8f8 url("../../../images/bg.gif") 0px -2px repeat-x; box-shadow: #e6e6e6 0px 0px 20px inset; outline: none; width: 120px; -webkit-transition: all 0.218s; -moz-transition: all 0.218s; -o-transition: all 0.218s; -ms-transition: all 0.218s; transition: all 0.218s;}
.frame-header .header-content .header-right input:focus { width: 160px; box-shadow: #ccc 0px 0px 20px inset;}
.frame-main { position: absolute; left: 0; right: 0; top: 90px; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; opacity: 0.9; filter: alpha(opacity=90); height: 90px; overflow: hidden; border-top: 1px solid #e6e6e6; background: #f6f6f6; width: 199px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 90px; width: 199px; border-right: 1px solid #ddd; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .bottom_box { position: fixed; bottom: 30px; height: 91px; width: 199px; opacity: 0.9; filter: alpha(opacity=90); overflow: hidden; border-right: 1px solid #ddd; border-top: 1px solid #e6e6e6; background: #f6f6f6;}
.frame-main .bottom_box .box_content { margin: 0 auto; width: 190px; padding-left: 10px;}
.frame-main .bottom_box a { background: #fff url("../../../images/bg.gif") 0px -5px repeat-x; display: block; border-radius: 3px; float: left; text-align: center; margin: 10px; color: #999; border: 1px solid #ddd; padding: 4px 10px 1px 10px; text-decoration: none;}
.frame-main .bottom_box a i { display: block; font-size: 25px; padding-bottom: 5px;}

View File

@ -7,7 +7,6 @@
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: Helvetica, arial, freesans, "Hiragino Sans GB", "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;}
@ -35,6 +34,7 @@ ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #63acff; position: fixed; background: #f1f1f1;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
@ -447,14 +447,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .main .section .box_line span.infotitle { width: 125px; display: block; float: left; overflow: hidden; margin-right: 10px; line-height: 32px; color: #333;}
#body .main .section .box_line input[type='text'] { display: block; float: left; width: 350px; font-weight: 200;}
#body .main .section .box_line label { float: left; padding-right: 20px; line-height: 28px; margin: 0;}
#body .main .section .box_line label input { width: 20px;}
#body .main .section .box_line label input:focus { box-shadow: none;}
#body .main .section .box_line i { padding-left: 5px; color: #777; line-height: 30px; font-size: 12px; font-style: normal;}
#body .main .section .box_line a.button { width: 80px;}
#body .main .section table .title { font-size: 14px;}
#body .main .section table .button { margin-left: 0px; color: #666;}
#body .main .section table .button { margin-left: 0px;}
#body .main .section table .title span { border: none;}
#body .main .section table a.button { padding: 5px 8px;}
#body .main .section table .menu_list .name input { width: 90%; font-weight: 400;}
#body .main .section table .menu_list .path input { width: 90%; font-weight: 400;}
#body .menu_list { color: #666;}
@ -468,9 +466,17 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body .menu_system td span { display: inline !important;}
#body .menu_system a.move_del { display: none !important;}
#body .menu_hidden { opacity: 0.5;}
#body table tr td { line-height: 2.5em;}
#body .main .section table a.button { padding: 4px 8px;}
#body .setting_menu table tr td.url { line-height: 30px;}
#body a.path_ext_tips { padding: 3px 5px; margin: 0 0 0 10px; background: #888; border: none; color: #fff;}
#body table tr.title td { line-height: 2.5em; height: 2.5em;}
#body table tr td { line-height: 1em; height: 1em; border-right: 1px solid #ddd;}
#body a.button { width: auto; padding: 2px 1em; height: 26px; line-height: 26px; line-height: 22px \9;}
#body .save { width: auto;}
#body .main .select table a.button { padding: 0 8px;}
#body .main .group_editor .tag { height: 30px; line-height: 30px;}
#body input[type="radio"] { width: auto; border: none;}
#body .main .section .box_line label input[type="radio"] { width: auto; border: none; margin: 2px 1em;}
#body .main .section .box_line label input[type="checkbox"] { width: auto; border: none; margin: 2px 1em;}
#body table { font-size: 13px; color: #888; width: 100%; margin: 0px; border: 1px solid #ccc;}
#body table tr { border-bottom: 1px solid #ddd; background: #fcfcfc; height: 30px;}
#body table tr input[type='text'] { display: block; width: 80%; color: #888;}
@ -480,12 +486,12 @@ body { -khtml-user-select: auto; -webkit-user-select: auto; -moz-user-select: au
#body table tr td { border-bottom: 1px solid #eee; line-height: 2.5em; height: 2.5em; padding-left: 3%;}
#body table tr td.name { width: 30%;}
#body table tr td.name,#body table tr td.path { border-right: 1px solid #ddd;}
#body table tr td.action { line-height: 1.3em; width: 30%;}
#body table tr td.action { line-height: 1.3em;}
#body table tr td.action a { margin-right: 5px;}
#body a.add { display: block; text-align: center; text-decoration: none; background: #f6f6f6; line-height: 2em; height: 2em; border: 1px solid #ccc; color: #555;}
#body a.add:hover { background: #eee;}
#body a.button { text-decoration: none; cursor: pointer; margin: 5px 10px 5px 0; height: 16px; line-height: 18px; padding: 5px 1.5em; font-size: 13px; display: inline-block; border-radius: 2px; text-align: center; font-weight: 400; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; border: 1px solid #ddd; background: #f6f6f6; color: #222;}
#body a.button:hover { background: #DC5546; color: #fff; border-color: #DC5546; box-shadow: none;}
#body a.button { text-decoration: none; cursor: pointer; font-size: 13px; margin: 5px 10px 5px 0; display: inline-block; border-radius: 2px; border: 1px solid #ddd; text-align: center; font-weight: 400; padding: 1px 8px; background: #f6f6f6; color: #666; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s;}
#body a.button:hover { background: #EA533F; color: #fff; border-color: #c72a16; box-shadow: none;}
#body a.button:active { background: #444; color: #fff; border-color: #eee; border-radius: 2px;}
#body a.create_app { margin: 0; display: block; position: absolute; right: 21px;}
#body .app_menu_left { min-width: 130px; width: 130px;}

View File

@ -13,10 +13,6 @@ http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<link href="<?php echo STATIC_PATH;?>style/skin/<?php echo $config['user']['theme'];?>app_setting.css?ver=<?php echo KOD_VERSION;?>" rel="stylesheet" id='link_css_list'/>
</head>
<style>
#body table tr.title td{line-height: 2.5em;height: 2.5em;}
#body table tr td{line-height: 1em;height: 1em;border-right: 1px solid #ddd;}
</style>
<body>
<div id="body">
<div class="menu_left">

View File

@ -16,10 +16,13 @@
<link href="<?php echo STATIC_PATH;?>style/skin/<?php echo $config_theme;?>app_explorer.css?ver=<?php echo KOD_VERSION;?>" rel="stylesheet" id='link_css_list'/>
</head>
<style>
.frame-main .frame-left {bottom: 0px;}
<?php if(isset($_GET['type'])){
echo '.topbar{display: none;}.frame-header{top:0;}.frame-main{top:50px;}';
} ?>
</style>
<?php if(isset($_GET['type'])){?>
<style>.topbar{display: none;}.frame-header{top:0;}.frame-main{top:50px;}</style>
<?php } ?>
<body style="overflow:hidden;" oncontextmenu="return core.contextmenu();">
<?php include(TEMPLATE.'common/navbar_share.html');?>