1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-21 20:58:21 +00:00
seahub/media/css/seahub.css

2140 lines
37 KiB
CSS
Raw Normal View History

2012-07-28 07:25:08 +00:00
html {
background:#fff;
}
2012-08-21 08:01:18 +00:00
body,
h1,h2,h3,h4,h5,h6,
ul,ol,li,dl,dt,dd,
p,pre,blockquote,
form,input,textarea,button,img {
padding:0;
margin:0;
}
body,
input, textarea, button, select {
2013-02-21 11:59:58 +00:00
font: 13px/1.5 Arial, Helvetica, sans-serif;
color: #333;
2012-12-03 03:34:32 +00:00
word-wrap:break-word; /* for en */
2012-07-28 07:25:08 +00:00
}
2013-02-21 11:59:58 +00:00
input, button, select {
line-height:19px;/*for ff*/
}
2012-07-28 07:25:08 +00:00
h1 {
font-size:1.9em;
margin:1.1em 0 0.5em;
}
h2 { font-size:1.5em; color:#222;}
2012-09-25 03:31:41 +00:00
h3 { font-size:1.2em; color:#322; font-weight:normal; margin:0.95em 0 0.4em; }
h4 { font-size:1.1em; color:#222; font-weight:normal; margin:0.5em 0 0.2em; }
2012-07-28 07:25:08 +00:00
h5, h6 {
font-size:1em;
margin:0.4em 0 0.15em;
}
ul { list-style:none; }
2012-07-28 07:25:08 +00:00
ol { padding-left:2em; }
2011-03-19 05:15:02 +00:00
a { color:#ee8833; text-decoration:none; font-weight:bold; }
a:hover { color: #ff9933; text-decoration: underline; }
2012-05-05 12:35:08 +00:00
img { border:none; }
textarea {
border: 1px solid #ddd;
overflow: auto; /* rm default vertical scrollbar in ie */
resize: vertical; /* for drag */
2013-03-12 13:48:47 +00:00
outline:0;
}
input {
2012-11-12 06:12:49 +00:00
height:22px;
border: 1px solid #ddd;
2012-08-21 08:01:18 +00:00
margin:3px 0;
2013-03-12 13:48:47 +00:00
outline:0;
}
2012-06-11 05:22:22 +00:00
input,
button {
display:inline-block;/*for ie*/
}
2012-11-12 06:12:49 +00:00
input[type=submit],
input[type=button],
2012-11-12 06:12:49 +00:00
input.submit {
2012-11-12 09:06:45 +00:00
height:27px;/*for ff*/
2012-11-12 06:12:49 +00:00
line-height:1.5;
}
button,
input[type=submit],
input[type=button],
2012-11-12 06:12:49 +00:00
input.submit {
padding:3px;
background: #efefef;
border: 1px solid #ddd;
border-radius: 3px;
2012-11-12 09:06:45 +00:00
}
button {
2012-10-16 09:00:01 +00:00
overflow:visible;/*for ie 7*/
2012-11-12 09:06:45 +00:00
padding-bottom:0 \9;/*for ie; to make height right*/
2012-10-16 09:00:01 +00:00
}
input[type=radio] {
height:auto;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {/*for input type="number" in chrome: to hide up/download arrow*/
-webkit-appearance: none;
margin: 0;
}
input::-moz-focus-inner,
button::-moz-focus-inner {/*Remove button padding in FF*/
border: 0;
padding: 0;
}
input[type=submit],
2012-08-21 08:01:18 +00:00
input.submit {
margin-top:8px;
}
input[type=submit]:hover,
input[type=button]:hover,
button:hover {
cursor:pointer;
background-color:#fff;
}
input[type="file"] {
border:none;
height:24px;
line-height:24px;
}
2012-08-21 08:01:18 +00:00
label {
display: inline-block;
2012-10-22 08:22:55 +00:00
margin:4px 0px;
2012-08-21 08:01:18 +00:00
}
iframe {
display:block;
width:100%;
}
2012-07-28 07:25:08 +00:00
pre, code {
font-family: Consolas,"Liberation Mono",Courier,monospace;
2012-07-28 07:25:08 +00:00
}
pre {
white-space:pre-wrap;
word-wrap: break-word;
}
2012-05-12 12:42:27 +00:00
table {
border-spacing: 0;
border-collapse: collapse;
width:100%;
table-layout:fixed;
2012-07-20 05:02:14 +00:00
margin:8px 0 40px;
2012-05-12 12:42:27 +00:00
}
2012-08-21 02:34:40 +00:00
th {
text-align:left;
font-weight:bold;
}
2012-06-12 02:56:05 +00:00
td, th {
2012-07-19 04:24:07 +00:00
padding:5px 3px;
2012-06-12 02:56:05 +00:00
word-wrap:break-word;
2012-07-28 07:25:08 +00:00
border-bottom:1px solid #eee;
2012-06-12 02:56:05 +00:00
}
td { color: #333; }
2012-05-23 05:49:51 +00:00
table img {
vertical-align:middle;
}
2012-07-28 07:25:08 +00:00
p {
margin:0.5em 0;
}
/*common class*/
.hl { background-color: #f8f8f8; }/*highlight*/
.fleft { float:left }
.fright { float:right }
.clear { clear:both; }
.show { display:block }
.hide { display:none }
2012-07-28 07:25:08 +00:00
.error { color:red; }
.errorlist { color: red; }
.ovhd { overflow:hidden; }
2012-10-18 11:54:00 +00:00
.inbl { display: inline-block; }
.bold { font-weight:bold; }
.label { color:#333; font-size:12px; font-style:normal; }
.w100 { width: 100%; }
.vh { visibility:hidden; }
.vam { vertical-align:middle; }
.italic { font-style:italic; }
.notification {
padding:5px;
background:#FDF;
margin:10px 0;
}
.tip {
color:#808080;
font-size:12px;
}
.al-rt {
text-align:right;
}
.op,
.more {
font-weight:normal;
font-size:12px;
color:#080;
}
.op {
font-size:13px;
}
.op-target {
2012-11-09 11:16:31 +00:00
color:#803;
word-wrap:break-word;
}
2013-03-12 13:48:47 +00:00
.big-more-btn {
padding:.5em 0;
color:#777;
}
.big-more-btn:hover {
color:#000;
background:#dfdfdf;
}
2012-08-21 08:01:18 +00:00
.no-deco,
.no-deco:hover {
text-decoration:none;
}
.input-disabled {/* for type="password/text" etc*/
2012-07-28 07:25:08 +00:00
background:#ebebe4;
}
.btn-disabled { /*for <input type="submit" />, <button>*/
color:#999;
}
.btn-disabled:hover,
input.btn-disabled:hover {/*for input*/
cursor:default;
background: #efefef;
}
.no-bold {
font-weight:normal;
}
.op-list li,
.modalCloseImg,
.add,
.repo-op .op-btn,
.repo-top-op-btn,
#star {
background:transparent url('../img/bg.png') no-repeat scroll 0 0;
}
.op-list li {
2012-08-21 08:01:18 +00:00
padding-left:10px;
line-height:20px;
background-position:0 -102px;
}
.add {
padding-left:21px;
background-color:#f5f5f5;
background-position:3px -206px;
2012-08-21 08:01:18 +00:00
}
2013-03-12 13:48:47 +00:00
#paginator {
text-align:center;
margin:10px 0;
font-size:14px;
}
#paginator .pg {
font-weight:normal;
margin:0 3px;
}
#paginator .prev {
margin-right:30px;
}
#paginator .prev,
#paginator .next {
text-decoration:underline;
}
#paginator .next {
margin-left:30px;
}
.tri-bg { /*triangle bg, <span>*/
display:inline-block;
font-size:0;
line-height: 0;
width:0;
height:0;
border-color: transparent;
}
.tri-down-bg {
padding-top: 1px;
border-width: 3px 3px 0;
border-style: solid dashed dashed;
border-top-color: #bbb;
}
.tri-right-bg {
padding-right: 1px;
border-width: 3px 0 3px 3px;
border-style: dashed dashed dashed solid;
border-left-color: #bbb;
}
.tri-down-order-bg {
padding-top: 1px;
border-width: 4px 4px 0;
border-style: solid dashed dashed;
border-top-color: #000;
cursor:pointer;
}
.tri-up-order-bg {
padding-bottom: 1px;
border-width: 0 4px 4px;
border-style: dashed dashed solid;
border-bottom-color: #000;
cursor:pointer;
}
.outer-caret,
.inner-caret {
height:0;
width:1px;
border:14px solid;
border-color:#CBCBCB transparent;
border-bottom-width:0;
z-index:100;
margin:0 auto;
}
.inner-caret {
border-top-color:#fff;
position:relative;
top:-15px;
left:-14px;
}
.placeholder { /*for ie */
color: #aaa;
line-height:1.5;
}
2012-10-23 09:46:15 +00:00
input:-moz-placeholder,
textarea:-moz-placeholder {/* for FF */
color: #aaa;
line-height:1.5;
}
::-webkit-input-placeholder {/*for chrome, safari */
line-height:1.5;
2012-10-23 09:46:15 +00:00
}
2012-10-10 10:11:13 +00:00
.avatar {
border-radius:3px;
}
2012-10-09 06:59:42 +00:00
.info-item {
border: 1px solid #eee;
border-radius: 2px;
2012-10-09 06:59:42 +00:00
margin-bottom: 12px;
}
.info-item h3,
.info-item p {
margin:0;
}
2012-10-10 10:11:13 +00:00
.info-item h3 {
font-size:1.15em;
}
2012-10-09 06:59:42 +00:00
.info-item-top {
padding: 4px 10px;
2012-10-09 14:16:38 +00:00
background: #f8f8f8;
border-bottom: 1px solid #eee;
border-top-left-radius: 1px;
border-top-right-radius: 1px;
2012-10-09 06:59:42 +00:00
}
.info-item-bottom {
padding: 8px 10px;
}
2012-10-10 03:09:15 +00:00
.info-item p.not-last {
margin-bottom:0.4em;
}
2012-11-02 11:45:51 +00:00
.center-contents {
text-align: center;
}
2013-02-21 11:59:58 +00:00
.tabnav {
height:37px;
border-bottom:1px solid #ddd;
margin-bottom:16px;
2013-02-21 11:59:58 +00:00
}
2013-03-02 07:51:16 +00:00
.tabnav-tabs,
.tabnav-tab {
2013-02-21 11:59:58 +00:00
display:inline-block;
}
.tabnav-tab {
font-size:14px;
padding:8px 10px;
border:1px solid transparent;
border-bottom:0;
}
2013-03-02 07:51:16 +00:00
.tabnav-tabs,
.tabnav-tab {
*display:inline;
}
2013-02-21 11:59:58 +00:00
.tabnav-tab a {
color:#666;
font-weight:normal;
}
.tabnav-tab-cur {
border-color:#ddd;
border-radius:3px 3px 0 0;
background:#fff;
margin-bottom:-1px;
2013-03-04 12:23:59 +00:00
color:#000;
2013-02-21 11:59:58 +00:00
}
.checkbox-orig {
font-size:0;
opacity:0;
filter: alpha(opacity=0);
cursor:pointer;
position:absolute;
margin:0;
}
.checkbox {
display:inline-block;
border:1px solid #ddd;
margin-right:4px;
position:relative;
}
.checkbox-orig,
.checkbox {
width:13px;
height:13px;
}
.checkbox-checked {
background:transparent url('../img/tick.png') no-repeat scroll 1px 3px;
}
.checkbox-label .avatar,
.checkbox,
.checkbox-option {
vertical-align:middle;
}
#simplemodal-container .checkbox-option {
font-weight:normal;
}
#simplemodal-container .checkbox-label {
margin:4px 0;
}
.checkbox-label {
display:block;
}
2011-03-19 05:15:02 +00:00
/* container */
2012-11-03 10:05:50 +00:00
#main, #footer { width:950px; }
#main { margin:0 auto; }
#header {
2012-11-03 13:37:41 +00:00
padding-top:12px;
2012-11-03 10:05:50 +00:00
background:#f4f4f4;
width:100%;
font-size: 14px;
font-weight: bold;
2012-07-12 08:05:43 +00:00
border-bottom:1px solid #ddd;
2012-09-25 12:47:59 +00:00
margin-bottom:25px;
}
2012-11-03 10:05:50 +00:00
#header-inner {
width:950px;
margin:0 auto;
2013-03-08 08:45:04 +00:00
overflow:hidden;
2012-11-03 10:05:50 +00:00
}
2012-05-12 12:42:27 +00:00
#main {
min-height: 400px;
2012-06-06 03:52:37 +00:00
_height: 400px;
2012-09-25 12:47:59 +00:00
}
#title-panel h2 {
margin-bottom:0.45em;
2012-05-12 12:42:27 +00:00
}
2012-09-24 09:01:15 +00:00
#left-panel {
float:right;
width:230px;
padding-left:10px;
2012-09-25 12:47:59 +00:00
}
#right-panel {
float:left;
2012-09-26 08:52:29 +00:00
width:670px;
2012-09-24 09:01:15 +00:00
}
#right-panel h3:first-child,
#left-panel h3:first-child {
margin-top: 0px;
}
/* info-bar */
2012-08-18 09:00:44 +00:00
#info-bar,
#sharelink-infobar {
color: #fff;
2012-10-10 03:54:49 +00:00
padding:1px 25px 1px 10px;
2012-10-10 07:58:58 +00:00
background: #080;
2012-08-18 09:00:44 +00:00
}
#info-bar {
position:relative;
}
#info-bar .close {
cursor:pointer;
position:absolute;
right:5px;
top:5px;
}
2012-10-10 03:54:49 +00:00
#info-bar-info {
margin:0.3em 0;
}
2011-10-12 16:17:48 +00:00
/* top-bar */
2012-09-11 05:50:17 +00:00
#top-bar {
}
.top-bar-inner {
background:#2d2d2d;
}
2012-08-21 08:01:18 +00:00
.top-bar-con {
color:#fff;
font-weight:bold;
2012-09-11 05:50:17 +00:00
height:24px;
2012-08-21 08:01:18 +00:00
width:950px;
margin:0 auto;
}
.top-bar-con a {
color:#ddd;
font-weight:normal;
2012-08-03 09:09:51 +00:00
padding:0 2px;
}
2012-08-21 08:01:18 +00:00
.top-bar-con a,
.top-bar-con span {
display:inline-block;
2012-09-11 05:50:17 +00:00
height:24px;
2012-09-11 05:28:43 +00:00
line-height:24px;
}
2012-11-12 02:56:45 +00:00
.top-bar-con .avatar-link {
2012-09-11 05:50:17 +00:00
height:16px;
2012-11-12 02:56:45 +00:00
vertical-align:middle;
margin-bottom:3px;
2012-11-12 09:48:26 +00:00
*margin-bottom:0;/*for ie 7*/
}
2012-08-21 08:01:18 +00:00
.top-bar-con .avatar {
2012-09-11 05:28:43 +00:00
border-radius: 2px;
-moz-border-radius: 2px;
}
2012-08-21 08:01:18 +00:00
.top-bar-con a.cur {
background:#000;
border-top:2px solid #B00;
height:20px;
line-height:20px;
padding-bottom:2px;
}
2012-08-21 08:01:18 +00:00
.top-bar-con span {
margin-right:3px;
}
2012-08-21 08:01:18 +00:00
.top-bar-con a:hover {
text-decoration:none;
2012-09-11 05:50:17 +00:00
background:#a0a;
}
2012-08-21 08:01:18 +00:00
.top-bar-con a.avatar-link:hover {
background:none;
}
2012-11-02 03:39:34 +00:00
#account-context .tri-bg,
#lang-context .tri-bg {
2012-08-21 08:01:18 +00:00
height:0;
2012-11-12 09:48:26 +00:00
*margin-bottom:5px;/* for ie 7*/
2012-08-21 08:01:18 +00:00
}
2012-11-02 03:39:34 +00:00
#account-context-selector,
#lang-context-selector {
position:absolute;
2012-11-02 03:39:34 +00:00
top:24px;
border:1px solid #bbb;
background:#fff;
min-width:65px;
padding:5px 0;
box-shadow: 0 2px 4px rgba(0,0,0,.2);
z-index: 1000;
-moz-box-shadow: -1px 1px 1px rgba(0,0,0,.2);
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
2012-11-02 03:39:34 +00:00
#account-context-selector {
left:0;
}
#lang-context-selector {
right:0;
}
2012-10-22 05:19:12 +00:00
#account-context-selector a,
2012-11-02 03:39:34 +00:00
#lang-context-selector a,
2012-10-22 05:19:12 +00:00
#to-group a {
color:#000;
display:block;
padding:0 5px;
}
2012-10-22 05:19:12 +00:00
#account-context-selector a:hover,
2012-11-02 03:39:34 +00:00
#lang-context-selector a:hover,
2012-10-22 05:19:12 +00:00
#to-group a:hover {
background:#eee;
}
2012-08-21 08:01:18 +00:00
2012-05-12 12:42:27 +00:00
/* header */
2013-03-01 03:27:58 +00:00
#notice {
text-align:center;
}
#notice-con {
color:red;
padding:3px 5px;
background:#ffc;
box-shadow:0 0 6px gray;
border-radius:1px;
}
2012-07-12 08:05:43 +00:00
#logo {
width:95px;
height:40px;
2012-07-12 08:05:43 +00:00
margin-right:30px;
}
#header .nav {
float:left;
2012-11-03 13:37:41 +00:00
padding-top:9px;
2012-07-12 08:05:43 +00:00
}
#header .nav li {
float: left;
height:21px;
2012-11-05 05:56:47 +00:00
margin:0 14px;
2012-07-12 08:05:43 +00:00
}
2013-03-08 08:45:04 +00:00
.ru #header .nav li {
margin:0 11px;
}
2012-08-21 08:01:18 +00:00
#header .nav a,
#header .nav a:visited {
color:#8A948F;
font-weight:bold;
text-decoration:none;
}
#header .nav a.cur {
color:#000;
}
#header .nav a:hover {
color: #ff9933;
text-decoration: underline;
}
2011-03-19 05:15:02 +00:00
/* footer */
#footer {
color:#636363;
font-size:12px;
padding:20px 0 10px;
2012-07-04 11:17:04 +00:00
margin:80px auto 25px;
border-top:1px solid #DDD;
}
#footer .items {
width:65%;
}
#footer .other-info {
width:30%;
}
#footer .item {
float:left;
width:28%;
padding:0 3% 0 2%;
}
#footer .item h4 {
font-size:12px;
color:#636363;
2012-07-04 09:57:16 +00:00
padding-bottom:3px;
}
#footer a {
2012-07-20 04:58:12 +00:00
color:#888;
font-weight:normal;
}
2012-08-21 08:01:18 +00:00
/* for messages like 'contact added successfully' */
2012-08-13 09:40:27 +00:00
.messages {
position:fixed;
2012-08-13 09:40:27 +00:00
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
-moz-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
2012-09-24 02:54:44 +00:00
.messages .info,
.messages .success {
2012-09-24 02:54:44 +00:00
padding:5px;
background:#C4ECA9;
margin:0;
}
.messages .error {
2012-08-17 07:22:09 +00:00
padding:5px;
background:#FDF;
2012-08-13 09:40:27 +00:00
margin:0;
2012-09-24 02:54:44 +00:00
color:#000;
2012-08-13 09:40:27 +00:00
}
2012-08-21 08:01:18 +00:00
/* narrow-panel: for pages like 'login' */
.narrow-panel {
width:320px;
min-height:15em;
padding:30px;
border: 1px solid #ddd;
border-radius:4px;
-moz-border-radius:4px;
margin:5em auto 0;
}
.narrow-panel h2,
.narrow-panel h3 {
2012-07-28 07:25:08 +00:00
margin:0 0 0.9em;
border-bottom:1px solid #ddd;
}
2012-07-28 07:25:08 +00:00
.narrow-panel h2 {
font-size:1.3em;
}
2012-06-06 03:52:37 +00:00
.narrow-panel input {
width:318px;
margin:0 0 0.6em;
2012-04-09 06:43:10 +00:00
}
2012-06-06 03:52:37 +00:00
.narrow-panel input.submit {
width:4em;
margin:8px 0 0;
2012-06-06 03:52:37 +00:00
}
2012-08-03 03:32:11 +00:00
.narrow-panel .note {
color: #666666;
font-size: 11px;
margin: 2px 0 5px;
}
2012-06-06 03:52:37 +00:00
.login-form a {
font-size:12px;
2012-06-06 03:52:37 +00:00
vertical-align:middle;
}
/*text-panel: for pages with few text*/
.text-panel {
font-size:16px;
text-align:center;
2012-05-23 09:36:26 +00:00
padding-top:7em;
}
2012-08-21 08:01:18 +00:00
/* simplemodal popup */
2011-10-18 07:41:48 +00:00
#basic-modal-content {display:none;}
2012-05-12 12:42:27 +00:00
#simplemodal-overlay { background-color:#000; }
#simplemodal-container {
padding: 20px;
background-color:#fff;
border-radius:4px;
-moz-border-radius:4px;
}
#simplemodal-container a {font-weight:normal;}
.modalCloseImg {
position:absolute;
width:25px;
height:29px;
background-position:0 0;
cursor:pointer;
top:-15px;
right:-16px;
z-index:3200;
}
#simplemodal-container .jstree a {
color:#000;
}
2012-05-31 02:32:48 +00:00
#simplemodal-container h3 {
font-size:1.5em;
word-wrap:break-word;
margin:0 0 4px;
2012-05-31 02:32:48 +00:00
}
#simplemodal-container h3,
#simplemodal-container h4,
#simplemodal-container label {
font-weight:bold;
}
#simplemodal-container label {
margin:8px 0 4px;
}
2012-05-12 12:42:27 +00:00
.simplemodal-close {
margin-left:5px;
}
2012-11-10 03:31:05 +00:00
#confirm-popup,
.simple-input-popup {
2012-11-09 11:16:31 +00:00
min-width:255px;
2012-05-12 12:42:27 +00:00
}
2012-11-09 11:16:31 +00:00
#confirm-popup button {
margin-top:.8em;
2012-05-29 09:26:00 +00:00
}
2012-11-10 03:31:05 +00:00
.simple-input-popup .long-input {
width:99%;
2013-01-08 09:43:29 +00:00
*width:252px;
2012-11-10 03:31:05 +00:00
}
2012-08-21 08:01:18 +00:00
/*ui-autocomplete*/
.ui-autocomplete {
background:#fff;
overflow:auto;
}
.ui-menu-item {
background-image:none;
}
2012-08-21 08:01:18 +00:00
/* for article */
.article {
padding:40px 200px 40px 60px;
font-size:14px;
2012-08-21 08:01:18 +00:00
line-height:1.6;
color:#333;
}
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
margin: 1.2em 0 0.4em;
color:#333;
font-weight:bold;
}
.article h1 + p, .article h2 + p, .article h3 + p, .article h4 + p, .article h5 + p, .article h6 + p,
.article h1 + pre, .article h2 + pre, .article h3 + pre, .article h4 + pre, .article h5 + pre, .article h6 + pre,
.article h1 + ul, .article h2 + ul, .article h3 + ul, .article h4 + ul, .article h5 + ul, .article h6 + ul,
.article h1 + ol, .article h2 + ol, .article h3 + ol, .article h4 + ol, .article h5 + ol, .article h6 + ol {
margin-top: 0;
}
.article p {
margin:0.8em 0;
}
#md-edit-help ul,
2012-08-21 08:01:18 +00:00
.article ul {
list-style-type:disc;
padding-left:2em;
}
.article ul,
.article ol {
margin:0.5em 0;
}
.article code {
font-size:12px;
white-space: nowrap;
padding: 1px 5px 0;
background-color: #F8F8F8;
border: 1px solid #dadada;
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
margin: 0 2px;
}
.article pre {
font-size:13px;
padding:5px 10px;
background:#f8f8f8;
border:1px solid #ddd;
border-radius:3px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
margin:1em 0;
}
.article pre code {
white-space:pre-wrap;
padding:0;
margin:0;
border:none;
}
.article a {
font-weight:normal;
}
.article blockquote {
color: #777;
padding: 0 15px;
border-left: 4px solid #DDD;
2012-10-29 06:15:30 +00:00
margin: 1.2em 0;
2012-08-21 08:01:18 +00:00
}
.article table {
margin:0.8em 0;
width:auto;
}
.article tr:nth-child(2n) {
background-color: #F8F8F8;
}
.article th,
.article td {
padding:6px 13px;
border:1px solid #ccc;
}
/* for separate pages */
2012-05-12 12:42:27 +00:00
/*myhome*/
.home-profile .pic {
margin-left:9px;
}
.home-profile .txt {
width:135px;
}
.home-profile .edit {
font-weight:normal;
color:#999;
font-size:12px;
display:inline-block;
margin-top:5px;
}
.home-profile .edit:hover {
color:#333;
}
#quota-bar {
display:block;
height:1em;
border:1px solid #ddd;
margin:5px 0;
border-radius:2px;
overflow:hidden;/* for usage > 100% */
}
#quota-bar span {
display:inline-block;
height:100%;
vertical-align:top;
}
#my-usage,
#quota-usage {
background:#ddd;
}
#share-usage {
background:#eee;
}
#usage-details {
font-size:12px;
color:#888;
}
2013-03-26 02:59:13 +00:00
.info-item .traffic-stat {
margin-top: 5px;
}
2013-03-27 14:02:32 +00:00
.info-item .traffic-stat a {
color: #333;
font-weight: normal;
}
.mygroup {
2012-12-22 11:12:51 +00:00
display:inline-block; /*to handle different height of items*/
vertical-align:top;
width:64px;
2012-06-25 13:40:18 +00:00
text-align:center;
margin:8px 1px 5px 1px;
2012-06-25 13:40:18 +00:00
}
2013-01-08 09:43:29 +00:00
.mygroup {
*display:inline; /* for ie 6,7 */
}
2012-12-03 05:47:45 +00:00
.mygroup .name {
2012-10-09 06:59:42 +00:00
display:inline-block;
width:100%;
2012-06-27 11:56:11 +00:00
}
2012-07-19 06:05:33 +00:00
#repo-create-form {
padding:0 20px;
}
2012-11-02 11:45:51 +00:00
.empty-tips {
2012-10-09 13:47:54 +00:00
width: 60%;
2012-11-02 11:45:51 +00:00
margin: 40px auto;
padding-top: 20px;
2012-10-22 06:45:36 +00:00
}
2012-07-16 08:36:46 +00:00
#repo-name,
#repo-desc,
2012-07-31 11:44:13 +00:00
.repo-create-encryption .passwd,
#id_contact_email,
#id_contact_name,
#id_note {
2012-07-19 03:41:41 +00:00
width:260px;
2012-07-17 06:54:00 +00:00
margin-bottom:5px;
2012-07-16 08:36:46 +00:00
}
#repo-desc {
height:70px;
}
#repo-create-form select[name="permission"] {
display:block;
width:262px;
margin-bottom:10px;
}
#tabs,
#repo-share-tabs {
2012-10-09 12:12:53 +00:00
font-size:1em;
padding:0;
border:0;
2012-10-09 13:03:31 +00:00
min-height:150px;
margin-bottom:75px;
}
#repo-share-tabs {
margin-bottom:0;
}
#tabs-nav,
#repo-share-tabs-nav {
padding:0;
}
#repo-share-tabs-nav {
height:30px;
border-bottom:1px solid #ddd;
border-radius:0;
margin-bottom:10px;
}
#tabs-nav li {
float:left;
border:0;
background:none;
}
#repo-share-tabs-nav li {
display:inline-block;
border:1px solid transparent;
border-bottom:0;
background:none;
}
#repo-share-tabs-nav li a {
color:#666;
line-height:16px;
padding:6px 13px;
}
#tabs-nav .long-item {
margin-left:.4em;
}
#tabs-nav li a {
color:#8A948F;
2012-10-09 12:12:53 +00:00
font-weight:normal;
padding:.3em 0;
margin-right:0.6em;
}
#tabs-nav .ui-state-active a {
color:#DD4B39;
border-bottom:2px solid #DD4B39;
}
#repo-share-tabs-nav .ui-state-active {
border-color:#ddd;
border-radius:3px 3px 0 0;
background:#fff;
margin-bottom:-1px;
}
#repo-share-tabs-nav .ui-state-active a {
font-weight:bold;
}
#tabs-nav li a:hover {
color:#DD4B39;
}
#repo-share-tabs-nav li a:hover {
color:#333;
}
#tabs .ui-tabs-panel,
#repo-share-tabs .ui-tabs-panel {
padding:0;
}
#repo-share-tabs .option-list {
max-height:200px;
overflow:auto;
margin-bottom:5px;
position:relative;/* to fix ie7 'scroll position' problem */
}
2012-09-28 13:51:04 +00:00
.event-item {
2012-09-29 09:17:00 +00:00
margin:10px 0 15px;
}
.event-item .txt {
width:610px;
padding-bottom:8px;
2012-09-28 13:51:04 +00:00
border-bottom:1px solid #eee;
}
2012-09-29 09:17:00 +00:00
.event-hd .time {
2012-09-28 13:51:04 +00:00
color:#888;
}
.event-item .avatar {
2012-09-29 09:17:00 +00:00
border-radius:3px;
2012-09-28 13:51:04 +00:00
}
2012-12-19 11:06:38 +00:00
#events-loading,
#events-more {
text-align:center;
width:610px;
margin-left:60px;
}
#events-more {
color:#777;
padding:.5em 0;
}
#events-more:hover {
color:#000;
background:#dfdfdf;
}
/* avatar */
.avatar-op .avatar,
.home-profile .avatar,
.mygroup .avatar,
.group .avatar {
border-radius: 4px;
-moz-border-radius: 4px;
}
.avatar-op h3 {
border:none;
margin-bottom:2px;
}
.avatar-op .upload-new-avatar-hd {
margin-top:15px;
}
/*user-basic-info*/
#user-basic-info h2 {
margin:12px 0 15px;
}
#user-basic-info label {
text-align:right;
width:5.5em;
margin-right:1em;
}
#user-basic-info .avatar,
#user-basic-info textarea {
vertical-align:text-top;
}
#user-basic-info .avatar,
#user-basic-info .text-input,
#user-basic-info textarea {
margin-bottom:8px;
}
#user-basic-info .text-input,
#user-basic-info textarea {
width:260px;
}
#user-basic-info textarea {
height:70px;
}
#user-basic-info .submit {
margin-left:6.5em;
}
#user-avatar-change {
position:relative;
}
#user-avatar-form {
position:absolute;
left:150px;
top:5px;
}
#grp-avatar-form {
position:relative;
margin-left:10px;
}
#user-avatar-form,
#grp-avatar-form {
overflow:hidden;
}
2012-03-28 02:38:12 +00:00
/*repo page*/
2012-09-15 13:01:06 +00:00
#repo-basic-info {
color:#333;
background:#fafafa;
border:1px solid #ddd;
border-radius:3px;
margin: 10px 0;
}
#repo-basic-info .desc,
#repo-basic-info .size {
padding:5px 10px;
margin:0;
}
#repo-basic-info .desc {
border-bottom:1px solid #ddd;
}
2012-09-18 03:52:51 +00:00
.path { margin: 1.4em 0 0; }
.access-notice { margin: 0.8em 0 0.4em; }
2012-09-15 13:01:06 +00:00
.repo-op {
text-align:right;
}
.repo-top-op-btn,
2012-11-12 09:48:26 +00:00
.file-op button,
#file-op button,
.repo-op .op-btn {
*margin-left:5px;/* for ie 7*/
}
.repo-top-op-btn,
.repo-op .op-btn {
background-color:#f5f5f5;
}
#upload-file {
2013-01-03 11:28:57 +00:00
padding-left:19px;
background-position:3px -118px;
2013-01-03 11:28:57 +00:00
}
#add-new-dir {
padding-left:23px;
background-position:4px -159px;
}
#add-new-file {
padding-left:23px;
background-position:3px -184px;
}
#download-dir {
padding-left:19px;
background-position:2px -139px;
}
#featured-filetype {
margin:5px 0;
}
#featured-filetype button {
padding: 2px;
line-height: 1.2;
border: 1px solid #BBB;
margin: 2px 0 5px;
}
2012-09-15 13:01:06 +00:00
.repo-file-list-outer-container,
.commit-list-outer-container {
padding:3px;
background:#eee;
border-radius:3px;
2012-09-18 03:52:51 +00:00
margin:10px 0 25px;
2012-09-15 13:01:06 +00:00
}
.repo-file-list-inner-container,
.commit-list-inner-container {
min-height:250px;
background:#fff;
border:1px solid #ddd;
border-radius:3px;
}
.repo-file-list-not-show {
padding-left:10px;
}
.repo-file-list-topbar {
padding:8px 10px;
border-bottom:1px solid #ddd;
}
.repo-file-list-topbar .path {
line-height:25px;
margin:0;
}
.repo-file-list {
margin:15px 0 0;
}
#name-up,
#time-up {
display:none;
}
.zh-cn .dirent-name {
2013-01-09 13:30:02 +00:00
width:49%;
}
.zh-cn .dirent-op {
2013-01-09 13:30:02 +00:00
width:21%;
}
2012-12-21 11:53:09 +00:00
.file-star {
cursor:pointer;
}
2012-12-10 07:58:37 +00:00
.repo-file-list .repo-file-op {
position:relative;
}
2012-09-15 13:01:06 +00:00
.displayed-op {
display:inline;
margin-right:8px;
}
.repo-file-list .more-op-icon {
cursor:pointer;
}
2012-09-15 13:01:06 +00:00
.repo-file-list .hidden-op {
position:absolute;
background:#fff;
padding:6px 1px;
border:1px solid #eee;
border-radius:5px;
z-index:10;
}
2012-09-15 13:01:06 +00:00
.hidden-op li a {
display:block;
padding:0 12px;
}
#mv-form {
width:500px;
padding:10px 20px;
}
#mv-dir-list {
padding:5px;
height:280px;
overflow:auto;
border:1px solid #eee;
margin:5px 0 10px;
}
#mv-dir-list .tri-bg {
margin-right:20px;
margin-bottom:3px;
}
#mv-dir-list .tri-right-bg {
border-left-color:#333;
}
#mv-dir-list .tri-down-bg {
border-top-color:#333;
}
#rename-form .new-name {
2012-09-15 13:01:06 +00:00
min-width:180px;
margin-top:6px;
2012-05-29 07:38:44 +00:00
}
2012-05-31 11:53:33 +00:00
.icon-container {
2012-05-23 05:49:51 +00:00
text-align:center;
}
.repo-top-op-btn {
2012-09-15 13:01:06 +00:00
font-size:14px;
padding-left:21px;
2012-09-30 11:40:35 +00:00
}
#repo-download-btn {
background-position:3px -79px;
}
2012-09-30 11:40:35 +00:00
#recycle-btn {
background-position:3px -29px;
2012-09-30 11:40:35 +00:00
}
#repo-setting-btn {
background-position:3px -53px;
}
#repo-latest-commit {
2012-05-05 12:35:08 +00:00
word-wrap:break-word;
2012-09-15 13:01:06 +00:00
border: 1px solid #C5D5DD;
border-radius: 4px;
margin-top:10px;
}
2012-09-17 04:57:29 +00:00
#repo-latest-commit .commit-msg,
#repo-latest-commit .meta-info {
2012-09-15 13:01:06 +00:00
padding:4px 10px;
margin:0;
}
#repo-latest-commit .commit-msg {
2012-09-15 13:01:06 +00:00
width:928px;
padding:8px 10px;
background: #E6F1F6;
border-bottom: 1px solid #D8E6EC;
border-top-left-radius:3px;
border-top-right-radius:3px;
2012-05-04 13:36:36 +00:00
}
2012-09-17 04:57:29 +00:00
#repo-latest-commit .commit-msg .more {
2012-09-15 13:01:06 +00:00
margin-left:10px;
}
#repo-latest-commit .author .avatar {
2012-09-15 13:01:06 +00:00
border-radius:3px;
2012-05-04 13:36:36 +00:00
}
2012-09-17 04:57:29 +00:00
#repo-latest-commit .author .avatar,
#repo-latest-commit .author .name,
#repo-latest-commit .time {
2012-09-15 13:01:06 +00:00
vertical-align:middle;
2012-03-28 02:38:12 +00:00
}
2012-09-17 04:57:29 +00:00
#repo-latest-commit .time {
2012-09-15 13:01:06 +00:00
color:#666;
margin-left:5px;
2012-05-05 05:57:42 +00:00
}
2012-10-20 03:48:19 +00:00
.lsch,
.lsch-encrypted,
.file-diff {
font-size:12px;
font-weight:normal;
2012-05-30 06:11:33 +00:00
color:#666;
text-decoration:underline;
}
#ls-ch {/*repo commit details container*/
min-width:300px;
min-height:300px;
max-width:850px;
max-height:550px;
overflow:auto;
2012-10-17 03:55:15 +00:00
line-height:1.6;
}
#ls-ch h2,
#ls-ch h3 {
margin: 0 0 0.2em;
color:#333;
font-weight:bold;
2012-05-30 06:11:33 +00:00
}
2012-09-17 06:30:36 +00:00
#ls-ch .commit-time,
.commit-time {
2012-09-15 13:01:06 +00:00
color:#333;
font-size:13px;
font-weight:normal;
2012-10-17 03:55:15 +00:00
margin-top: 0em;
2012-09-15 13:01:06 +00:00
}
2012-05-30 06:11:33 +00:00
#ls-ch ul {
padding:0 0 6px 0;
}
#ls-ch a {
color:#e83;
font-weight:normal;
}
2012-08-21 08:01:18 +00:00
#dirs { /* file mv */
margin-top:8px;
}
2012-09-15 13:01:06 +00:00
/* repo-history */
2012-09-21 07:32:52 +00:00
#back {
margin-top:3px;
2012-09-15 13:01:06 +00:00
}
.commit-list {
margin:0 0 20px;
}
.commit-list .time {
padding-left:10px;
}
.commit-list .avatar {
border-radius:2px;
}
2012-05-07 08:33:36 +00:00
/*repo-share-form*/
#link-send-input,
2012-06-12 02:13:14 +00:00
#email_or_group,
#share-link,
2012-10-18 11:54:00 +00:00
#added-member-name,
#added-admin-name {
2012-05-07 08:33:36 +00:00
width:260px;
height:80px;
padding:2px;
}
#member-add-form {
width:266px;
}
#repo-share-form {
width:320px;
}
#email_or_group {
width:314px;
}
#repo-share-form .share-permission-select {
width:100%;
}
2012-09-26 09:05:32 +00:00
/* group-join-form */
#id_group_join_msg {
width:260px;
height:80px;
}
2012-06-20 11:14:18 +00:00
/* group, org */
2013-02-21 11:59:58 +00:00
.group-list,
.user-list {
margin-top:30px;
2012-07-03 09:21:51 +00:00
}
2013-02-21 11:59:58 +00:00
.group-list .group,
.user-list .user {
2012-12-22 11:12:51 +00:00
display:inline-block; /*to handle different height of items*/
vertical-align:top;
2012-07-03 09:21:51 +00:00
width:315px;
2012-12-22 11:12:51 +00:00
margin:0 17px 25px 0;
2012-07-03 09:21:51 +00:00
}
2013-02-21 11:59:58 +00:00
.group-list .group,
.user-list .user {
2013-01-08 09:43:29 +00:00
*display:inline; /* for ie 6,7 */
}
2013-02-21 11:59:58 +00:00
.group .txt,
.user-list .user .txt {
2012-07-03 09:21:51 +00:00
color:#333;
width:250px;
}
.group h4 {
margin:0 0 4px;
}
2012-07-28 07:25:08 +00:00
.group p {
margin:0;
}
2012-07-03 09:21:51 +00:00
.group .item-name {
display:inline-block;
width:5em;
color:#666;
}
2013-03-02 07:24:33 +00:00
.ru .group .item-name,
.de .group .item-name,
.it .group .item-name {
width:6em;
}
.member {
2012-08-02 10:55:51 +00:00
_height:21px;
2012-10-19 02:35:56 +00:00
padding-bottom:4px;
2012-08-02 10:55:51 +00:00
}
.member .avatar {
2012-10-19 02:35:56 +00:00
border-radius: 2px;
-moz-border-radius: 2px;
margin-right: 5px;
}
.member .avatar,
.member .name {
2012-10-19 02:35:56 +00:00
vertical-align:middle;
}
2012-06-23 08:12:33 +00:00
#user-profile {
width:318px;
position:absolute;
left:365px;
top:50px;
z-index:10;
padding:15px;;
min-height:130px;
border:1px solid #ddd;
background:#fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
-moz-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
2013-03-12 13:48:47 +00:00
.grp-profile {
margin-top:2px;
}
.grp-profile .name {
font-size:16px;
font-weight:bold;
margin:0 6px;
}
.grp-profile .avatar,
.grp-profile .name {
vertical-align:middle;
}
2012-10-10 10:11:13 +00:00
.group-basic-info .txt {
width:145px;
word-wrap:break-word;
}
#grp-member-add {
margin-top:2px;
}
/* notification admin */
.cur-note { color: red; font-size: 75%; }
2012-06-20 11:39:21 +00:00
2012-06-20 11:14:18 +00:00
/*user-profile*/
.user-profile .pic {
width:80px;
text-align:center;
2012-06-20 11:39:21 +00:00
}
2012-06-20 11:14:18 +00:00
.user-profile .avatar {
border-radius:4px;
-moz-border-radius:4px;
margin-bottom:5px;
}
.user-profile .txt {
width:225px;
word-wrap:break-word;
}
.user-profile .txt p {
margin-bottom:4px;
}
.user-profile .intro {
color:#444;
font-size:12px;
margin-top:10px;
2012-06-20 11:39:21 +00:00
}
2012-06-25 06:57:14 +00:00
/* group message and replies */
#grp-repos-commits td {
padding:6px 3px;
}
2012-10-23 08:46:09 +00:00
#group-reply,
.new-reply-msg-list {
2013-03-12 13:48:47 +00:00
width:640px;
2013-03-04 12:23:59 +00:00
margin-top:10px;
2012-06-25 06:57:14 +00:00
}
2012-06-26 08:44:39 +00:00
.msg-num {
font-size:12px;
color:#333;
}
2013-03-12 13:48:47 +00:00
#group-message-form {
padding:6px;
width:562px;
background:#f9f9f9;
2013-03-12 13:48:47 +00:00
border:1px solid #c4c4c4;
border-radius:5px;
margin-left:64px;
2013-03-12 13:48:47 +00:00
position:relative;
2012-06-26 08:44:39 +00:00
}
#group-message-form .avatar {
position:absolute;
left:-64px;
top:-1px;
}
2012-10-10 09:08:38 +00:00
#message {
2013-03-12 13:48:47 +00:00
width:550px;
padding:3px 5px;
height:25px;
vertical-align:top;
2012-06-25 06:57:14 +00:00
}
2013-03-12 13:48:47 +00:00
.say {
position:absolute;
width:10px;
height:21px;
background:transparent url('../img/say.png') no-repeat scroll left top;
left:-10px;
top:13px;
}
2012-06-26 08:44:39 +00:00
.msg {
word-wrap: break-word;
2013-03-12 13:48:47 +00:00
margin:15px 0 20px;
2012-06-25 06:57:14 +00:00
}
2012-06-26 08:44:39 +00:00
.msg .txt {
2013-03-12 13:48:47 +00:00
width:576px;
2012-06-25 06:57:14 +00:00
}
2013-03-12 13:48:47 +00:00
.msg a {
font-weight: normal;
}
.msg-main {
position:relative;
padding:16px;
background:#fff;
border:1px solid #ccc;
border-top-left-radius:3px;
border-top-right-radius:3px;
}
.msg-main .say {
background-image:url('../img/say_white.png');
}
.msg-attachment {
padding-top:10px;
border-top:1px solid #e9e9e9;
margin-top:12px;
}
2013-03-12 13:48:47 +00:00
.msg-hd .author {
font-weight:bold;
}
.msg .time {
font-size:11px;
color:#999;
margin-left:5px;
}
.msg .op {
font-size:11px;
color:#999;
cursor:pointer;
margin-left:5px;
2012-06-26 08:44:39 +00:00
}
.msg-hd .group,
.comment-hd .time {
2012-06-25 06:57:14 +00:00
color: #808080;
}
.msg-hd .group {
margin-left:30px;
}
2013-03-12 13:48:47 +00:00
.msg-con {
margin-bottom:0;
2012-07-03 09:13:35 +00:00
}
2013-03-12 13:48:47 +00:00
.msg-op {
color:#444;
2013-03-12 13:48:47 +00:00
padding:10px 16px;
background:#f8f8f8;
border:1px solid #d5d5d5;
border-top:0;
border-bottom-left-radius:3px;
border-bottom-right-radius:3px;
}
.replies-op {
2013-03-12 13:48:47 +00:00
font-weight:bold;
cursor:pointer;
margin-bottom:10px;
position:relative;
}
.unfold-replies,
.fold-replies {
padding-right:14px;
background:transparent scroll no-repeat right center;
}
.unfold-replies {
background-image:url('../img/unfold.png');
}
.fold-replies {
background-image:url('../img/fold.png');
}
.unfold-replies-nobg {
background-image:none;
}
.replies-loading-icon {
position:absolute;
top:0;
2012-08-10 13:16:55 +00:00
}
2013-03-12 13:48:47 +00:00
.msg .at {
2012-08-10 06:32:03 +00:00
color:#808;
}
2013-03-12 13:48:47 +00:00
.reply {
line-height:1.2;
margin-bottom:15px;
2012-08-10 06:32:03 +00:00
}
2013-03-12 13:48:47 +00:00
.reply .txt {
2012-08-10 06:32:03 +00:00
width: 93%;
2012-06-26 08:44:39 +00:00
}
2013-03-12 13:48:47 +00:00
.reply-con {
font-size:12px;
line-height:1.3;
margin:4px 0 0;
2012-08-14 08:33:16 +00:00
}
2013-03-12 13:48:47 +00:00
.reply-input {
width:530px;
padding:5px;
height:20px;
vertical-align:top;
2012-06-26 08:44:39 +00:00
}
2013-03-12 13:48:47 +00:00
#group-message-form .submit,
#group-message-form .cancel,
.reply-submit,
.reply-cancel {
margin-top:6px;
margin-right:2px;
2012-06-25 06:57:14 +00:00
}
2012-10-25 08:48:08 +00:00
.msg-del-confirm {
position:absolute;
padding:0 15px 6px;
background:#fff;
border:1px solid #ddd;
box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.msg-del-confirm button {
margin-right:8px;
}
2013-01-25 09:56:02 +00:00
#msg-upward {
position:fixed;
font-weight:normal;
}
#msg-upward:hover {
text-decoration:none;
2013-01-25 09:56:02 +00:00
}
2013-03-12 13:48:47 +00:00
#msgs-more {
width:576px;
margin-left:64px;
}
/*file upload*/
#upload-file-form {
margin-top:10px;
}
.files-add {
position: relative;
overflow: hidden;
margin-bottom:7px;
}
.files-add .op {
font-size:1.15em;
font-weight:bold;
display:inline-block;
padding-left:18px;
background-color:#fff;
background-position:0 -207px;
}
#user-avatar-input,
#grp-avatar-input,
#upload-file-form .files-add input {
2012-12-07 03:22:41 +00:00
cursor:pointer;
position: absolute;
top: 0;
margin: 0;
opacity: 0;
2013-03-04 09:41:43 +00:00
filter: alpha(opacity=0);
}
#user-avatar-input,
#grp-avatar-input {
right:0;
}
#upload-file-form .MultiFile-label {
padding:4px 0;
border-bottom:1px solid #ebebeb;
}
#upload-file-form .MultiFile-remove {
padding:0 4px;
color:#000;
font-weight:bold;
border:1px solid #eee;
}
#upload-file-form .MultiFile-remove:hover {
text-decoration:none;
}
.upload-progress-con,
.upload-cancel {
margin-top:.8em;
}
.upload-progress-bar {/*for progress container*/
height:1em;
margin-top:-3px;
}
.upload-progress-bar .ui-progressbar-value {/*for progress*/
background:#e83;
margin:0;
}
2012-07-02 14:45:21 +00:00
2012-08-21 08:01:18 +00:00
/* file view online, file edit */
2012-07-13 09:26:33 +00:00
.file-op {
color:#444;
text-align:right;
}
2013-01-03 11:28:57 +00:00
#shared-link,
#shared-link-text {
border:0;
2013-01-08 09:43:29 +00:00
}
#shared-link-text {
vertical-align:middle; /*for ie 7*/
}
.file-op {
2012-07-28 07:25:08 +00:00
margin-top:0.8em;
2012-07-14 07:19:09 +00:00
}
2012-07-13 09:26:33 +00:00
.file-op a {
font-weight:normal;
2012-08-06 12:29:14 +00:00
margin-left:2px;
2012-07-13 09:26:33 +00:00
}
.file-op button {
color:#444;
}
2012-10-24 07:40:25 +00:00
#file,
#text-diff-output {
padding:3px;
2012-07-13 09:26:33 +00:00
background:#dedede;
border-radius:3px;
-moz-border-radius:3px;
2012-09-17 04:57:29 +00:00
margin-top:12px;
2012-08-10 13:35:58 +00:00
}
#file-op {
padding:8px 10px;
background:#fff;
text-align:right;
border:1px solid #ccc;
}
#file-op button {
2012-11-12 06:12:49 +00:00
padding:2px 8px;
2012-08-10 13:35:58 +00:00
}
#file-enc-cont {
width:950px;
margin:-20px auto 6px;
text-align:right;
}
#file-enc {
border:1px solid #ddd;
border-radius:2px;
background:#efefef;
}
#file-view-tip {
2012-08-10 13:35:58 +00:00
height: 150px;
padding:10px;
width:930px;
2012-08-10 13:35:58 +00:00
background:#fff;
2012-07-13 09:26:33 +00:00
}
#docu-view {
2012-08-23 07:37:36 +00:00
font-size:14px;/*override .ace_editor*/
2012-08-24 03:50:28 +00:00
line-height:1.6em;
font-family: Consolas,"Liberation Mono",Courier,monospace;/*override .ace_editor*/
2012-07-02 14:45:21 +00:00
min-height: 200px;
2012-07-13 09:26:33 +00:00
}
#img-prev-next {
font-size:1.1em;
margin-bottom:5px;
2012-08-24 03:50:28 +00:00
}
2012-07-13 09:26:33 +00:00
#image-view {
padding:1px;
background:#fff;
border:1px solid #eee;
}
#docu-view,
2012-07-23 06:58:54 +00:00
#svg-view,
#pdf,
#md-view,
#md-edit {
2012-07-13 09:26:33 +00:00
background:#fff;
}
#md-view,
#md-edit {
2012-12-06 09:28:37 +00:00
width:756px;
2012-08-25 02:55:01 +00:00
}
2013-03-15 08:57:33 +00:00
#md-view h2,
#wmd-preview h2,
2013-03-15 08:57:33 +00:00
#wiki-content h2 {
border-bottom: 1px solid #ccc;
}
2012-07-13 09:26:33 +00:00
#svg-view {
min-height:500px;/*for ff*/
2012-07-02 16:30:15 +00:00
}
#svg-view,
#flash,
#pdf {
width:950px;
margin:0 auto;
}
#flash {
height:500px;
}
#doc-view {
2012-08-02 10:55:51 +00:00
min-height:700px;
_height:700px;
}
2012-07-24 05:12:18 +00:00
#pdf-op-bar {
padding:10px 0 7px;
margin-bottom:3px;
border-bottom:1px solid #ddd;
}
#pdf-op-bar button {
color:#000;
border-color:#aaa;
margin:0 5px;
}
2012-07-24 05:12:18 +00:00
#pdf-page {
margin:0 10px;
2012-07-24 05:12:18 +00:00
}
#page-number {
padding:0 3px;
min-width:16px;
width:30px;
text-align:right;
border-radius:3px;
-moz-border-radius:3px;
}
2013-02-27 13:37:38 +00:00
#pdf-view {
max-width:950px;
}
#op-after-edit {
margin-top:.9em;
2012-08-20 09:15:24 +00:00
}
#op-after-edit button {
margin-left:5px;
}
2012-08-20 09:15:24 +00:00
#file-edit-cancel {
color:#900;
font-weight: normal;
margin-left: 3px;
2012-08-20 09:15:24 +00:00
}
2012-12-03 03:34:32 +00:00
#op-after-edit button,
#file-edit-cancel {
vertical-align:middle; /* for ie 7 */
}
2012-10-26 11:50:36 +00:00
#star {
padding-left:18px;
background-color:#efefef;
background-position:3px -227px;
2012-10-26 11:50:36 +00:00
}
#sf {
2012-12-06 09:28:37 +00:00
width:624px;
font-size:15px;
background:#fff;
}
2012-12-06 09:28:37 +00:00
#sf, #md-view {
padding:40px 96px;
}
#md-edit-help {
width:550px;
}
/*overwrite aloha.css*/
#file-edit .aloha-editable-active, .aloha-editable-active[contenteditable="true"]:focus {
outline: none!important;
}
#aloha-attribute-field-imageSource, /* img src input*/
#aloha-attribute-field-imageTitle {
width:300px;
}
.aloha-color-picker-overlay {
border:1px solid #ddd;
width:400px;
margin:0;
background:#fff;
z-index:10111;
}
.aloha-color-picker-overlay td {
padding:2px;
border:0;
}
.aloha-color-picker-overlay div {
width:22px;
height:22px;
cursor:pointer;
}
/* shareadmin */
.view-link-alert p {
display: inline-block;
}
.share-permission-edit-icon {
cursor:pointer;
}
.share-permission-select {
2013-03-02 07:24:33 +00:00
position:relative;/*for long text in other lang in 'share admin'*/
2012-10-18 13:28:15 +00:00
background:#fff;
border:1px solid #ddd;
2012-10-18 13:28:15 +00:00
border-radius:2px;
}
2012-08-08 10:19:38 +00:00
/*bottom bar*/
#bottom-bar {
position:fixed;
bottom:0;
right:10px;
}
2012-08-08 10:19:38 +00:00
#bottom-bar button {
color:#fff;
2012-08-23 07:37:36 +00:00
font-size:15px;
background:#646464;
margin-left:5px;
2012-08-08 10:19:38 +00:00
}
2012-08-27 03:06:32 +00:00
/* File comment */
#file-comment,
#to-group,
#discuss-to-group-form {
width:400px;
padding:0 15px;
position:fixed;
right:10px;
background:#fff;
border:1px solid #cbcbcb;
box-shadow: 0 2px 4px rgba(0,0,0,.2);
-moz-box-shadow: -1px 1px 1px rgba(0,0,0,.2);
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
#comment-input {
width:315px;
padding-left:1px;
height:3em;
}
.comment {
width:380px;
padding:15px 0;
border-top:1px solid #e8e8e8;
}
.comment .txt {
width:318px;
}
#file-comment-form {
width:380px;
margin:15px 0;
}
.comment-bd {
word-wrap:break-word;
}
#comment-caret,
#to-group-caret,
#discuss-to-group-caret {
width:28px;
position:fixed;
}
/*to-group*/
#to-group {
2012-10-22 05:19:12 +00:00
min-width:100px;
width:auto;
padding:6px 0;
}
#to-group a {
font-weight:normal;
padding:1px 5px;
}
#to-group a:hover {
text-decoration:none;
}
/*discuss to group*/
#discuss-to-group-form {
padding-bottom:10px;
}
#discuss-to-group-form .input {
padding:5px;
width:388px;
height:5em;
}
2012-10-16 06:47:36 +00:00
/* text file diff */
2012-10-24 07:40:25 +00:00
.file-modification-hd .modifier,
.file-modification-hd .time {
font-weight:normal;
font-size:13px;
color:#666;
2012-10-20 03:48:19 +00:00
}
2012-10-24 07:40:25 +00:00
.file-modification-hd a {
margin:0 3px 0 5px;
}
.file-modification-hd .avatar,
.file-modification-meta-info .span {
vertical-align:middle;
}
.file-modification-hd .time {
margin-left:5px;
}
#text-diff-output {
font-size:14px;
font-family:monospace;
}
#text-diff-output .blank-file,
#text-diff-output .diff-con {
background:#fff;
border:1px solid #ccc;
margin:0;
}
#text-diff-output .blank-file {
padding:2em 1em;
}
#text-diff-output th {
2012-10-20 03:48:19 +00:00
text-align: center;
}
#text-diff-output td {
2012-10-24 07:40:25 +00:00
font-size:12px;
word-wrap:break-word;
padding:2px 3px;
border-bottom:none;
}
#text-diff-output .diff-header {
text-align:right;
vertical-align:top; /* make the line number stay there even its right td gets multi lines of content */
background-color:#ebebeb;
border-right:1px solid #eee;
2012-10-20 03:48:19 +00:00
}
2012-10-24 07:40:25 +00:00
.diff-add {
color: #080;
2012-10-20 03:48:19 +00:00
}
2012-10-24 07:40:25 +00:00
.diff-sub {
color: #c00;
}
.diff-chg {
color: #c3f;
2012-10-20 03:48:19 +00:00
}
2013-02-21 11:59:58 +00:00
.pubinfo-item {
display:inline-block;
min-width:66px;
}
2013-03-02 07:51:16 +00:00
.pubinfo-item {
*display:inline;
}
2013-03-02 07:24:33 +00:00
.ru .pubinfo-item {
min-width:64px;
}
.de .pubinfo-item {
min-width:63px;
}
2013-02-21 11:59:58 +00:00
.pubinfo-item .amount {
font-size:28px;
line-height:1;
font-weight:bold;
color:#222;
}
.pubinfo-item .obj {
font-size:11px;
color:#999;
}
.video-container {
margin: auto;
width: 800px;
height: 400px;
}
.audio-container {
margin: auto;
width: 500px;
height: 30px;
2013-02-27 10:43:18 +00:00
}
2013-03-07 04:05:30 +00:00
/* wiki page */
2013-03-15 08:57:33 +00:00
.wiki-top {
text-align:right;
padding-bottom:8px;
border-bottom:1px solid #eee;
}
2013-03-15 08:57:33 +00:00
.wiki-top .op-btn {
margin-left:3px;
2013-03-07 04:05:30 +00:00
}
2013-03-15 08:57:33 +00:00
.wiki-nav .item {
float:left;
font-size:15px;
margin:4px 5px 0 10px;
}
2013-03-15 08:57:33 +00:00
.wiki-nav .link {
font-weight:normal;
}
2013-03-15 08:57:33 +00:00
#wiki-area {
padding: 0 0;
}
2013-03-15 12:47:26 +00:00
#wiki-last-modified {
margin-top: 10px;
font-size:12px;
color: #666;
}
2013-03-15 08:57:33 +00:00
#wiki-pages {
list-style-type:disc;
padding-left:2em;
margin-top:1.6em;
2013-03-08 11:34:53 +00:00
}
.wiki-page-missing {
color:red;
}
2013-03-04 09:25:47 +00:00
2013-03-15 08:57:33 +00:00
/* search */
2013-03-08 08:45:04 +00:00
.search-form {
padding-left:5px;
2013-03-09 12:44:28 +00:00
height:24px;
2013-03-08 08:45:04 +00:00
border:1px solid #ddd;
border-radius:3px;
background:#fff;
overflow:hidden;/*for some chromium*/
2013-03-04 09:25:47 +00:00
}
2013-03-08 08:45:04 +00:00
#top-search-form {
width:214px;
*width:218px;
2013-03-09 12:44:28 +00:00
margin-top:4px;
2013-03-08 08:45:04 +00:00
}
.search-input,
.search-form .search-submit {
2013-03-09 12:44:28 +00:00
height:24px;
2013-03-08 08:45:04 +00:00
border:0;
margin:0;
vertical-align:middle;
2013-03-04 09:25:47 +00:00
}
2013-03-08 08:45:04 +00:00
.search-input {
width:180px;
outline:0;
2013-03-04 09:25:47 +00:00
}
2013-03-08 08:45:04 +00:00
.search-form .search-submit {
width:30px;
padding:0;
background:#fff url('../img/search.png') no-repeat scroll 50% 50%;
2013-03-04 09:25:47 +00:00
}
2013-03-08 08:45:04 +00:00
#search-form {
width:426px;
*width:430px;
2013-03-04 09:25:47 +00:00
}
2013-03-08 08:45:04 +00:00
#search-form .search-input {
width:392px;
2013-03-04 09:25:47 +00:00
}
2013-03-08 08:45:04 +00:00
#search-form-container {
padding:7px 5px;
background:#f7f7f8;
border-radius:2px;
}
#search-results {
padding-top:15px;
2013-03-09 06:15:53 +00:00
}
#search-results a {
font-weight: normal;
}
.search-results-item {
margin-top:15px;
2013-03-09 06:15:53 +00:00
}
.search-results-item .main-con {
margin-left:40px;
2013-03-09 06:15:53 +00:00
}
.search-results-item .avatar {
vertical-align:middle;
2013-03-09 06:15:53 +00:00
}
.search-results-item .time {
color:#666;
2013-03-12 13:48:47 +00:00
}