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;
|
|
|
|
}
|
2012-07-28 07:25:08 +00:00
|
|
|
body {
|
|
|
|
font: 13px/1.5 Arial, Helvetica, sans-serif;
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size:1.9em;
|
|
|
|
margin:1.1em 0 0.5em;
|
|
|
|
}
|
|
|
|
h2 { font-size:1.5em; color:#808;}
|
|
|
|
h3 { font-size:1.2em; color:#808; font-weight:normal; margin:0.95em 0 0.4em; }
|
|
|
|
h4 { font-size:1.1em; color:#000; font-weight:normal; margin:0.5em 0 0.2em; }
|
|
|
|
h5, h6 {
|
|
|
|
font-size:1em;
|
|
|
|
margin:0.4em 0 0.15em;
|
|
|
|
}
|
2012-07-27 11:53:49 +00:00
|
|
|
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; }
|
2012-07-19 06:47:31 +00:00
|
|
|
textarea { border: 1px solid #ddd; }
|
2012-05-22 08:21:16 +00:00
|
|
|
input {
|
|
|
|
height:20px;
|
|
|
|
line-height:20px;
|
2012-07-19 06:47:31 +00:00
|
|
|
border: 1px solid #ddd;
|
2012-08-21 08:01:18 +00:00
|
|
|
margin:3px 0;
|
2012-05-22 08:21:16 +00:00
|
|
|
}
|
2012-06-11 05:22:22 +00:00
|
|
|
input,
|
|
|
|
button {
|
|
|
|
font-size:13px;/*for ff*/
|
|
|
|
display:inline-block;/*for ie*/
|
|
|
|
}
|
2012-05-22 08:21:16 +00:00
|
|
|
input[type=checkbox] {
|
|
|
|
height:auto;
|
|
|
|
}
|
2012-07-21 14:12:23 +00:00
|
|
|
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;
|
|
|
|
}
|
2012-07-24 08:22:45 +00:00
|
|
|
input::-moz-focus-inner,
|
|
|
|
button::-moz-focus-inner {/*Remove button padding in FF*/
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2012-05-22 08:21:16 +00:00
|
|
|
input[type=submit],
|
2012-06-06 03:52:37 +00:00
|
|
|
input.submit,
|
2012-05-22 08:21:16 +00:00
|
|
|
button {
|
2012-07-13 09:26:33 +00:00
|
|
|
color: #333;
|
2012-05-22 08:21:16 +00:00
|
|
|
height:23px;
|
2012-05-29 09:26:00 +00:00
|
|
|
line-height:21px;
|
2012-05-22 09:45:26 +00:00
|
|
|
padding:0 3px;
|
2012-07-13 09:26:33 +00:00
|
|
|
background: #efefef;
|
|
|
|
border: 1px solid #ddd;
|
2012-05-22 08:21:16 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
-moz-border-radius:3px;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
input[type=submit],
|
|
|
|
input.submit {
|
|
|
|
margin-top:8px;
|
2012-05-22 08:21:16 +00:00
|
|
|
}
|
|
|
|
input[type=submit]:hover,
|
|
|
|
button:hover {
|
|
|
|
cursor:pointer;
|
|
|
|
background: #FFF;
|
|
|
|
}
|
2012-05-25 09:15:15 +00:00
|
|
|
input[type="file"] {
|
|
|
|
border:none;
|
|
|
|
height:24px;
|
|
|
|
line-height:24px;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
label {
|
|
|
|
display: inline-block;
|
|
|
|
margin:2px 0px;
|
|
|
|
}
|
2012-07-27 11:53:49 +00:00
|
|
|
iframe {
|
|
|
|
display:block;
|
|
|
|
width:100%;
|
|
|
|
}
|
2012-07-28 07:25:08 +00:00
|
|
|
pre, code {
|
2012-07-31 09:29:25 +00:00
|
|
|
font-family: Consolas,"Liberation Mono",Courier,monospace;
|
2012-07-28 07:25:08 +00:00
|
|
|
}
|
2012-07-27 11:53:49 +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
|
|
|
}
|
2012-08-18 07:57:09 +00:00
|
|
|
td { color: #333; }
|
2012-07-17 03:39:13 +00:00
|
|
|
tr.hl { background-color: #f8f8f8; }/*highlight*/
|
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;
|
|
|
|
}
|
2012-05-30 06:12:48 +00:00
|
|
|
/*common class*/
|
|
|
|
.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; }
|
2012-05-30 06:12:48 +00:00
|
|
|
.errorlist { color: red; }
|
|
|
|
.ovhd { overflow:hidden; }
|
|
|
|
.bold { font-weight:bold; }
|
|
|
|
.label { color:#333; font-size:12px; font-style:normal; }
|
|
|
|
.w100 {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.notification {
|
|
|
|
padding:5px;
|
|
|
|
background:#FDF;
|
|
|
|
margin:10px 0;
|
|
|
|
}
|
|
|
|
.tip {
|
|
|
|
color:#808080;
|
|
|
|
font-size:12px;
|
|
|
|
}
|
|
|
|
.vh {
|
|
|
|
visibility:hidden;
|
|
|
|
}
|
|
|
|
.al-rt {
|
|
|
|
text-align:right;
|
|
|
|
}
|
|
|
|
.op,
|
|
|
|
.more {
|
|
|
|
font-weight:normal;
|
|
|
|
font-size:12px;
|
|
|
|
color:#080;
|
|
|
|
}
|
|
|
|
.op {
|
|
|
|
font-size:13px;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
.no-deco,
|
|
|
|
.no-deco:hover {
|
2012-07-23 09:36:07 +00:00
|
|
|
text-decoration:none;
|
|
|
|
}
|
2012-07-28 07:25:08 +00:00
|
|
|
.input-disabled {
|
|
|
|
background:#ebebe4;
|
|
|
|
}
|
2012-08-01 09:35:33 +00:00
|
|
|
.no-bold {
|
|
|
|
font-weight:normal;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
ul.with-bg li {
|
|
|
|
padding-left:10px;
|
|
|
|
line-height:20px;
|
|
|
|
background: #fff url('../img/li.gif') no-repeat scroll left 6px;
|
|
|
|
}
|
2012-07-04 11:17:04 +00:00
|
|
|
#paginator { margin-top:10px; }
|
2012-05-30 06:12:48 +00:00
|
|
|
|
2011-03-19 05:15:02 +00:00
|
|
|
/* container */
|
2012-08-21 08:01:18 +00:00
|
|
|
#header, #main, #footer { width:950px; }
|
|
|
|
#header, #main { margin:0 auto; }
|
2012-05-12 07:52:07 +00:00
|
|
|
#header {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
2012-07-12 08:05:43 +00:00
|
|
|
overflow:hidden;
|
|
|
|
padding-bottom:8px;
|
|
|
|
border-bottom:1px solid #ddd;
|
|
|
|
margin-bottom:15px;
|
2012-05-12 07:52:07 +00:00
|
|
|
}
|
2012-05-12 12:42:27 +00:00
|
|
|
#main {
|
2012-05-16 13:33:35 +00:00
|
|
|
min-height: 400px;
|
2012-06-06 03:52:37 +00:00
|
|
|
_height: 400px;
|
2012-05-16 13:33:35 +00:00
|
|
|
padding-top: 10px;
|
2012-05-12 12:42:27 +00:00
|
|
|
}
|
2012-05-17 06:11:22 +00:00
|
|
|
#left-panel { float:right; width:220px; }
|
|
|
|
#right-panel { float:left; width:680px; }
|
2012-08-21 08:01:18 +00:00
|
|
|
#main-panel .side { /*side panel in main-panel*/
|
2012-05-31 11:53:33 +00:00
|
|
|
color:#333;
|
|
|
|
width:220px;
|
2012-07-12 08:14:21 +00:00
|
|
|
word-wrap: break-word;
|
2012-05-31 11:53:33 +00:00
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
#main-panel .main { /*main panel in main-panel*/
|
2012-05-31 11:53:33 +00:00
|
|
|
width:680px;
|
|
|
|
}
|
2012-06-04 13:27:32 +00:00
|
|
|
|
|
|
|
/* info-bar */
|
2012-08-18 09:00:44 +00:00
|
|
|
#info-bar,
|
|
|
|
#sharelink-infobar {
|
|
|
|
color: #fff;
|
2012-08-18 13:30:13 +00:00
|
|
|
padding:1px 25px 2px 10px;
|
2012-08-18 09:00:44 +00:00
|
|
|
background: #000;
|
|
|
|
}
|
|
|
|
#info-bar {
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
#info-bar .close {
|
|
|
|
cursor:pointer;
|
|
|
|
position:absolute;
|
|
|
|
right:5px;
|
|
|
|
top:5px;
|
|
|
|
}
|
2012-06-04 13:27:32 +00:00
|
|
|
|
2011-10-12 16:17:48 +00:00
|
|
|
/* top-bar */
|
2012-07-28 12:36:26 +00:00
|
|
|
#top-bar { height:21px; padding-bottom:21px; background:#fff url('../img/dropshadow.png') repeat-x center bottom; }
|
2012-08-21 08:01:18 +00:00
|
|
|
.top-bar-inner { height:21px; background:#606; }
|
|
|
|
.top-bar-con {
|
|
|
|
color:#fff;
|
|
|
|
font-weight:bold;
|
|
|
|
width:950px;
|
|
|
|
margin:0 auto;
|
|
|
|
}
|
|
|
|
.top-bar-con a {
|
2012-07-26 12:57:51 +00:00
|
|
|
color:#ddd;
|
|
|
|
font-weight:normal;
|
2012-08-03 13:23:57 +00:00
|
|
|
line-height:21px;
|
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 {
|
2012-08-03 09:09:51 +00:00
|
|
|
vertical-align:middle;
|
2012-05-25 09:15:15 +00:00
|
|
|
display:inline-block;
|
2012-07-28 12:36:26 +00:00
|
|
|
height:21px;
|
2012-07-26 12:57:51 +00:00
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
.top-bar-con a.avatar-link {
|
2012-05-25 09:15:15 +00:00
|
|
|
height:16px;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
.top-bar-con .avatar {
|
2012-05-28 14:05:14 +00:00
|
|
|
border-radius: 2px;
|
|
|
|
-moz-border-radius: 2px;
|
2012-05-26 08:34:11 +00:00
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
.top-bar-con a.cur {
|
2012-07-26 12:57:51 +00:00
|
|
|
background:#000;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
.top-bar-con span {
|
2012-05-25 09:15:15 +00:00
|
|
|
margin-right:3px;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
.top-bar-con a:hover {
|
2012-07-26 12:57:51 +00:00
|
|
|
text-decoration:none;
|
|
|
|
background:#A0A;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
.top-bar-con a.avatar-link:hover {
|
2012-05-26 08:34:11 +00:00
|
|
|
background:none;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
#account-context .bg {
|
|
|
|
display:inline-block;
|
|
|
|
font-size:0;
|
|
|
|
line-height: 0;
|
|
|
|
width:0;
|
|
|
|
height:0;
|
|
|
|
padding-top: 1px;
|
|
|
|
border-width: 3px 3px 0;
|
|
|
|
border-style: solid dashed dashed;
|
|
|
|
border-color: transparent;
|
|
|
|
border-top-color: #bbb;
|
|
|
|
margin-left:1px;
|
|
|
|
}
|
|
|
|
#account-context-selector {
|
2012-07-26 12:57:51 +00:00
|
|
|
position:absolute;
|
|
|
|
left:2px;
|
2012-08-02 06:27:09 +00:00
|
|
|
top:21px;
|
2012-07-26 12:57:51 +00:00
|
|
|
border:1px solid #bbb;
|
|
|
|
background:#fff;
|
|
|
|
min-width:65px;
|
|
|
|
padding:5px 0;
|
|
|
|
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);
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
#account-context-selector a {
|
2012-07-26 12:57:51 +00:00
|
|
|
color:#000;
|
|
|
|
display:block;
|
2012-08-01 05:47:56 +00:00
|
|
|
padding:0 5px;
|
2012-07-26 12:57:51 +00:00
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
#account-context-selector a:hover {
|
2012-07-26 12:57:51 +00:00
|
|
|
background:#eee;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
|
2012-05-12 12:42:27 +00:00
|
|
|
/* header */
|
2012-07-12 08:05:43 +00:00
|
|
|
#logo {
|
|
|
|
margin-right:30px;
|
|
|
|
}
|
|
|
|
#header .nav {
|
|
|
|
float:left;
|
|
|
|
padding-top:16px;
|
|
|
|
}
|
|
|
|
#header .nav li {
|
|
|
|
float: left;
|
|
|
|
height:21px;
|
|
|
|
margin:0 10px;
|
|
|
|
}
|
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 */
|
2012-07-04 09:06:25 +00:00
|
|
|
#footer {
|
|
|
|
color:#636363;
|
|
|
|
font-size:12px;
|
|
|
|
padding:20px 0 10px;
|
2012-07-04 11:17:04 +00:00
|
|
|
margin:80px auto 25px;
|
2012-07-04 09:06:25 +00:00
|
|
|
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;
|
2012-07-04 09:06:25 +00:00
|
|
|
}
|
|
|
|
#footer a {
|
2012-07-20 04:58:12 +00:00
|
|
|
color:#888;
|
2012-07-04 09:06:25 +00:00
|
|
|
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:absolute;
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
.messages .info {
|
2012-08-17 07:22:09 +00:00
|
|
|
padding:5px;
|
|
|
|
background:#FDF;
|
2012-08-13 09:40:27 +00:00
|
|
|
margin:0;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
/* narrow-panel: for pages like 'login' */
|
2012-05-22 08:21:16 +00:00
|
|
|
.narrow-panel {
|
2012-07-19 06:47:31 +00:00
|
|
|
width:320px;
|
2012-05-22 08:21:16 +00:00
|
|
|
min-height:15em;
|
2012-07-19 06:47:31 +00:00
|
|
|
padding:30px;
|
|
|
|
border: 1px solid #ddd;
|
2012-05-22 08:21:16 +00:00
|
|
|
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;
|
2012-07-19 06:47:31 +00:00
|
|
|
border-bottom:1px solid #ddd;
|
2012-05-22 08:21:16 +00:00
|
|
|
}
|
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 {
|
2012-07-19 06:47:31 +00:00
|
|
|
width:318px;
|
2012-05-22 08:21:16 +00:00
|
|
|
height:1.8em;
|
|
|
|
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 {
|
2012-07-17 06:54:00 +00:00
|
|
|
width:3em;
|
2012-07-19 06:47:31 +00:00
|
|
|
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 {
|
2012-07-19 06:47:31 +00:00
|
|
|
font-size:12px;
|
2012-06-06 03:52:37 +00:00
|
|
|
vertical-align:middle;
|
|
|
|
}
|
|
|
|
|
2012-05-22 09:45:26 +00:00
|
|
|
/*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-05-22 09:45:26 +00:00
|
|
|
}
|
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; }
|
2012-07-19 06:47:31 +00:00
|
|
|
#simplemodal-container {
|
|
|
|
padding: 20px;
|
|
|
|
background-color:#fff;
|
|
|
|
border-radius:4px;
|
|
|
|
-moz-border-radius:4px;
|
|
|
|
}
|
2011-10-18 07:41:48 +00:00
|
|
|
#simplemodal-container code {background:#141414; border-left:3px solid #65B43D; color:#bbb; display:block; font-size:12px; margin-bottom:12px; padding:4px 6px 6px;}
|
|
|
|
#simplemodal-container a {color:#ddd;}
|
|
|
|
#simplemodal-container a.modalCloseImg {background:url(../img/x.png) no-repeat; width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-15px; right:-16px; cursor:pointer;}
|
2012-05-18 13:32:16 +00:00
|
|
|
#simplemodal-container .ui-menu-item a {/*for tip item of autocomplete*/
|
|
|
|
color:#e83;
|
|
|
|
font-weight:normal;
|
|
|
|
}
|
2012-07-02 02:21:17 +00:00
|
|
|
#simplemodal-container .jstree a {
|
|
|
|
color:#000;
|
|
|
|
font-weight:normal;
|
|
|
|
}
|
2012-05-31 02:32:48 +00:00
|
|
|
#simplemodal-container h3 {
|
2012-05-31 09:50:46 +00:00
|
|
|
margin:0 0 4px;
|
2012-05-31 02:32:48 +00:00
|
|
|
}
|
2012-05-12 12:42:27 +00:00
|
|
|
.simplemodal-close {
|
|
|
|
margin-left:5px;
|
2012-03-26 08:52:10 +00:00
|
|
|
}
|
2012-05-12 12:42:27 +00:00
|
|
|
#dialog-delete-confirm {
|
|
|
|
text-align:center;
|
|
|
|
}
|
2012-05-29 09:26:00 +00:00
|
|
|
#confirm-con {
|
|
|
|
margin-bottom:6px;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
|
2012-05-18 13:32:16 +00:00
|
|
|
/*ui-autocomplete*/
|
|
|
|
.ui-autocomplete {
|
|
|
|
background:#fff;
|
|
|
|
}
|
|
|
|
.ui-menu-item {
|
|
|
|
background-image:none;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
/* for article */
|
|
|
|
.article {
|
2012-08-23 07:41:53 +00:00
|
|
|
padding:40px 200px 40px 60px;
|
2012-08-23 07:47:11 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
.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;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
.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*/
|
2012-06-20 06:18:23 +00:00
|
|
|
.home-profile .avatar {
|
|
|
|
float:left;
|
2012-06-21 07:26:03 +00:00
|
|
|
margin:0 15px 0 11px;
|
2012-06-20 06:18:23 +00:00
|
|
|
}
|
2012-05-16 13:33:35 +00:00
|
|
|
.mygroup {
|
2012-05-21 07:08:34 +00:00
|
|
|
display:inline-block;
|
2012-06-25 13:40:18 +00:00
|
|
|
width:70px;
|
|
|
|
text-align:center;
|
2012-05-21 07:08:34 +00:00
|
|
|
word-wrap:break-word;
|
|
|
|
vertical-align:top;
|
2012-06-25 13:40:18 +00:00
|
|
|
margin:0 0px 5px 0;
|
|
|
|
}
|
2012-08-01 09:35:33 +00:00
|
|
|
.mygroup .tip {
|
2012-06-25 13:40:18 +00:00
|
|
|
font-size: 0.9em;
|
2012-08-01 09:35:33 +00:00
|
|
|
color: #333;
|
2012-06-27 11:56:11 +00:00
|
|
|
}
|
2012-07-31 11:44:13 +00:00
|
|
|
#repo-create,
|
|
|
|
#contact-add{
|
2012-07-20 02:53:00 +00:00
|
|
|
padding-left:21px;
|
|
|
|
height:27px;
|
|
|
|
background:#f5f5f5 url('../img/add.png') scroll no-repeat 3px 48%;
|
|
|
|
}
|
2012-07-19 06:05:33 +00:00
|
|
|
#repo-create-form {
|
|
|
|
padding:0 20px;
|
|
|
|
}
|
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;
|
|
|
|
}
|
2012-07-19 07:18:12 +00:00
|
|
|
/* avatar */
|
|
|
|
.avatar-op .avatar,
|
2012-07-23 09:36:07 +00:00
|
|
|
.home-profile .avatar,
|
|
|
|
.mygroup .avatar,
|
|
|
|
.group .avatar {
|
2012-07-19 07:18:12 +00:00
|
|
|
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;
|
|
|
|
}
|
2012-06-27 11:56:11 +00:00
|
|
|
|
2012-03-28 02:38:12 +00:00
|
|
|
/*repo page*/
|
2012-08-21 08:01:18 +00:00
|
|
|
.path, .access-notice { margin: 0.8em 0 0.4em; }
|
2012-07-24 08:22:45 +00:00
|
|
|
.repo-op button {
|
|
|
|
height:25px;
|
|
|
|
background:#f5f5f5 scroll no-repeat 3px 48%;
|
2012-07-02 02:21:17 +00:00
|
|
|
}
|
2012-07-24 08:22:45 +00:00
|
|
|
#upload-file {
|
|
|
|
padding-left:19px;
|
2012-07-02 08:42:24 +00:00
|
|
|
background-image:url('../img/upload.png');
|
2012-07-24 08:22:45 +00:00
|
|
|
margin-right:5px;
|
2012-07-02 02:21:17 +00:00
|
|
|
}
|
|
|
|
#add-new-dir {
|
2012-07-24 08:22:45 +00:00
|
|
|
padding-left:23px;
|
2012-07-02 08:42:24 +00:00
|
|
|
background-image:url('../img/folder-add.png');
|
2012-07-02 02:21:17 +00:00
|
|
|
}
|
2012-08-13 05:02:32 +00:00
|
|
|
#add-new-file {
|
|
|
|
padding-left:23px;
|
2012-08-13 05:31:57 +00:00
|
|
|
background-image:url('../img/new-file-icon.png');
|
2012-08-13 05:02:32 +00:00
|
|
|
}
|
2012-07-02 02:21:17 +00:00
|
|
|
.more-op {
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
|
|
|
.op-list {
|
|
|
|
position:absolute;
|
2012-07-04 09:06:25 +00:00
|
|
|
left:18px;
|
2012-07-02 02:21:17 +00:00
|
|
|
background:#fff;
|
|
|
|
padding:6px 1px;
|
|
|
|
border:1px solid #eee;
|
|
|
|
border-radius:5px;
|
|
|
|
-moz-border-radius:5px;
|
|
|
|
z-index:10;
|
|
|
|
}
|
|
|
|
.op-list li {
|
|
|
|
padding:0 12px;
|
|
|
|
}
|
|
|
|
.op-target {
|
|
|
|
color:#c39;
|
|
|
|
}
|
|
|
|
#rename-form .new-name {
|
|
|
|
margin-top:8px;
|
|
|
|
}
|
2012-05-31 11:53:33 +00:00
|
|
|
.latest-commit .more:hover {
|
2012-05-29 07:38:44 +00:00
|
|
|
text-decoration:none;
|
|
|
|
}
|
2012-05-31 11:53:33 +00:00
|
|
|
.icon-container {
|
2012-05-23 05:49:51 +00:00
|
|
|
text-align:center;
|
|
|
|
}
|
2012-05-31 04:00:32 +00:00
|
|
|
.latest-commit-time-author {
|
|
|
|
color:#333;
|
2012-05-31 09:50:46 +00:00
|
|
|
font-size:13px;
|
|
|
|
font-weight:normal;
|
2012-05-31 04:00:32 +00:00
|
|
|
}
|
2012-05-05 12:35:08 +00:00
|
|
|
.latest-commit {
|
|
|
|
word-wrap:break-word;
|
2012-05-04 13:36:36 +00:00
|
|
|
}
|
2012-05-05 12:35:08 +00:00
|
|
|
.latest-commit .author {
|
2012-05-04 13:36:36 +00:00
|
|
|
font-style:italic;
|
|
|
|
}
|
2012-05-05 12:35:08 +00:00
|
|
|
.latest-commit .time {
|
2012-05-04 13:36:36 +00:00
|
|
|
color:#666;
|
|
|
|
margin-left:2px;
|
2012-03-28 02:38:12 +00:00
|
|
|
}
|
2012-07-02 02:21:17 +00:00
|
|
|
.repo-history {
|
2012-05-05 05:57:42 +00:00
|
|
|
font-weight:normal;
|
|
|
|
font-size:16px;
|
2012-05-31 18:10:31 +00:00
|
|
|
margin: 4px 0 12px 0;
|
2012-05-05 05:57:42 +00:00
|
|
|
}
|
2012-05-30 06:11:33 +00:00
|
|
|
.lsch {
|
2012-05-31 04:00:32 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
#ls-ch ul {
|
|
|
|
padding:0 0 6px 0;
|
|
|
|
}
|
2012-08-21 08:01:18 +00:00
|
|
|
#dirs { /* file mv */
|
2012-07-02 02:21:17 +00:00
|
|
|
margin-top:8px;
|
|
|
|
}
|
2012-05-07 08:33:36 +00:00
|
|
|
/*repo-share-form*/
|
2012-07-11 14:39:36 +00:00
|
|
|
#email,
|
2012-06-12 02:13:14 +00:00
|
|
|
#email_or_group,
|
|
|
|
#share-link,
|
2012-08-15 06:16:15 +00:00
|
|
|
#added-member-name {
|
2012-05-07 08:33:36 +00:00
|
|
|
width:260px;
|
|
|
|
height:80px;
|
2012-08-10 13:16:55 +00:00
|
|
|
}
|
2012-08-15 06:16:15 +00:00
|
|
|
#recommend-msg,
|
|
|
|
#recommend-groups {
|
|
|
|
width:450px;
|
|
|
|
}
|
|
|
|
#recommend-groups {
|
|
|
|
margin-bottom:5px;
|
|
|
|
}
|
|
|
|
#recommend-msg {
|
|
|
|
height:55px;
|
2012-05-07 08:33:36 +00:00
|
|
|
}
|
2012-06-20 11:14:18 +00:00
|
|
|
/* group, org */
|
2012-07-03 09:21:51 +00:00
|
|
|
.group-list {
|
|
|
|
margin-top:20px;
|
|
|
|
}
|
|
|
|
.group {
|
|
|
|
width:315px;
|
|
|
|
margin:0 25px 15px 0;
|
|
|
|
}
|
|
|
|
.group .txt {
|
|
|
|
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;
|
|
|
|
}
|
2012-08-02 10:55:51 +00:00
|
|
|
.group-member {
|
|
|
|
_height:21px;
|
|
|
|
}
|
2012-06-20 11:14:18 +00:00
|
|
|
.group-member .avatar,
|
|
|
|
.org-member .avatar {
|
2012-05-28 14:05:14 +00:00
|
|
|
border-radius: 2px;
|
|
|
|
-moz-border-radius: 2px;
|
2012-05-18 03:47:59 +00:00
|
|
|
margin-right: 5px;
|
2012-05-17 12:39:37 +00:00
|
|
|
}
|
2012-05-25 09:15:15 +00:00
|
|
|
.group-member .avatar,
|
2012-06-20 11:14:18 +00:00
|
|
|
.group-member-name,
|
|
|
|
.org-member .avatar,
|
|
|
|
.org-member-name {
|
2012-05-17 12:39:37 +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);
|
|
|
|
}
|
2012-05-18 09:48:20 +00:00
|
|
|
#member-add {
|
2012-05-19 07:30:58 +00:00
|
|
|
font-size:13px;
|
2012-07-19 03:23:21 +00:00
|
|
|
font-weight:normal;
|
2012-05-19 07:30:58 +00:00
|
|
|
padding-left:18px;
|
2012-07-17 03:39:13 +00:00
|
|
|
background:transparent url('../img/add.png') scroll no-repeat left 40%;
|
|
|
|
margin-top:16px;
|
2012-07-16 08:36:46 +00:00
|
|
|
}
|
2012-06-04 13:27:32 +00:00
|
|
|
|
|
|
|
/* 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 */
|
2012-06-26 08:44:39 +00:00
|
|
|
#group-reply {
|
|
|
|
margin-top:50px;
|
2012-06-25 06:57:14 +00:00
|
|
|
}
|
2012-06-26 08:44:39 +00:00
|
|
|
.msg-num {
|
|
|
|
font-size:12px;
|
|
|
|
color:#333;
|
|
|
|
}
|
|
|
|
#message {
|
|
|
|
width: 600px;
|
|
|
|
height: 80px;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
#group-reply .submit {
|
|
|
|
margin-top:3px;
|
2012-06-25 06:57:14 +00:00
|
|
|
}
|
2012-06-26 08:44:39 +00:00
|
|
|
.msg-list {
|
|
|
|
width:602px;
|
|
|
|
margin-top: 10px;
|
2012-06-25 06:57:14 +00:00
|
|
|
}
|
2012-06-26 08:44:39 +00:00
|
|
|
.msg {
|
|
|
|
word-wrap: break-word;
|
|
|
|
padding: 10px 0 5px;
|
|
|
|
min-height: 48px;
|
|
|
|
_min-height: 48px;
|
2012-06-25 06:57:14 +00:00
|
|
|
}
|
2012-06-26 08:44:39 +00:00
|
|
|
.msg .txt {
|
|
|
|
width:540px;
|
2012-06-25 06:57:14 +00:00
|
|
|
}
|
2012-06-26 08:44:39 +00:00
|
|
|
.msg-hd {
|
|
|
|
padding:2px 3px;
|
|
|
|
background:#fafafa;
|
|
|
|
margin-bottom:2px;
|
|
|
|
}
|
2012-08-01 09:35:33 +00:00
|
|
|
.msg-hd .time,
|
|
|
|
.msg-hd .group {
|
2012-06-25 06:57:14 +00:00
|
|
|
color: #808080;
|
|
|
|
}
|
2012-08-01 09:35:33 +00:00
|
|
|
.msg-hd .group {
|
|
|
|
margin-left:30px;
|
|
|
|
}
|
2012-08-10 06:32:03 +00:00
|
|
|
.msg-bd a {
|
2012-07-03 10:43:32 +00:00
|
|
|
font-weight: normal;
|
2012-07-03 09:13:35 +00:00
|
|
|
}
|
2012-08-14 08:33:16 +00:00
|
|
|
.msg-bd .op {
|
|
|
|
padding:0;
|
|
|
|
background:none;
|
|
|
|
border:none;
|
2012-08-10 13:16:55 +00:00
|
|
|
}
|
2012-08-14 08:33:16 +00:00
|
|
|
.msg-bd .recommend,
|
2012-08-10 06:32:03 +00:00
|
|
|
.msg-bd .at {
|
|
|
|
color:#808;
|
|
|
|
}
|
2012-06-26 08:44:39 +00:00
|
|
|
.reply-list {
|
|
|
|
color:#444;
|
2012-08-14 08:33:16 +00:00
|
|
|
font-size:12px;
|
2012-06-26 08:44:39 +00:00
|
|
|
width:90%;
|
2012-08-10 06:32:03 +00:00
|
|
|
}
|
|
|
|
.reply-list li {
|
|
|
|
margin:5px 0;
|
|
|
|
}
|
|
|
|
.reply-list .txt {
|
|
|
|
width: 93%;
|
2012-06-26 08:44:39 +00:00
|
|
|
}
|
2012-08-14 08:33:16 +00:00
|
|
|
.reply-input {
|
|
|
|
width:82%;
|
2012-08-17 06:54:58 +00:00
|
|
|
padding:0 1px;
|
|
|
|
height:20px;
|
|
|
|
line-height:20px;
|
|
|
|
vertical-align:bottom;
|
2012-08-14 08:33:16 +00:00
|
|
|
}
|
|
|
|
.reply-at {
|
2012-06-26 08:44:39 +00:00
|
|
|
font-size:12px;
|
|
|
|
}
|
2012-08-14 08:33:16 +00:00
|
|
|
.reply-at:hover {
|
|
|
|
color:#f93;
|
2012-06-25 06:57:14 +00:00
|
|
|
}
|
2012-07-02 02:21:17 +00:00
|
|
|
/*file upload*/
|
|
|
|
.upload-file-panel {
|
|
|
|
width:400px;
|
|
|
|
margin:70px auto 0;
|
|
|
|
}
|
|
|
|
#upload-file-form {
|
|
|
|
margin-top:10px;
|
|
|
|
}
|
|
|
|
#task-progress-bar {/*for progress container*/
|
|
|
|
width:95%;
|
|
|
|
height:1em;
|
|
|
|
}
|
|
|
|
#task-progress-bar .ui-progressbar-value {/*for progress*/
|
|
|
|
background:#e83;
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
#task-progress-bar,
|
|
|
|
#upload-cancel {
|
|
|
|
margin-top:8px;
|
|
|
|
}
|
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;
|
|
|
|
}
|
2012-07-14 07:19:09 +00:00
|
|
|
.file-op,
|
|
|
|
.file-share-from {
|
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;
|
|
|
|
margin-top:3px;
|
|
|
|
}
|
2012-08-10 13:35:58 +00:00
|
|
|
#file {
|
2012-07-27 11:53:49 +00:00
|
|
|
padding:3px;
|
2012-07-13 09:26:33 +00:00
|
|
|
background:#dedede;
|
|
|
|
border-radius:3px;
|
|
|
|
-moz-border-radius:3px;
|
2012-08-10 13:35:58 +00:00
|
|
|
margin-top:23px;
|
|
|
|
}
|
|
|
|
#file-op {
|
|
|
|
padding:8px 10px;
|
|
|
|
background:#fff;
|
|
|
|
text-align:right;
|
|
|
|
border:1px solid #ccc;
|
|
|
|
}
|
|
|
|
#file-op button {
|
|
|
|
padding:0 8px;
|
|
|
|
}
|
|
|
|
#file-view {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-top:none;
|
|
|
|
}
|
|
|
|
.file-view-tip {
|
|
|
|
height: 150px;
|
|
|
|
padding:10px;
|
|
|
|
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*/
|
|
|
|
line-height:1.6em;/*using 'px' as unit, for ie8 to get the right line-height*/
|
2012-07-31 09:29:25 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
#image-view {
|
|
|
|
padding:1px;
|
|
|
|
background:#fff;
|
|
|
|
border:1px solid #eee;
|
|
|
|
}
|
|
|
|
#docu-view,
|
2012-07-23 06:58:54 +00:00
|
|
|
#svg-view,
|
2012-07-27 11:53:49 +00:00
|
|
|
#pdf,
|
|
|
|
#md-view {
|
2012-07-13 09:26:33 +00:00
|
|
|
background:#fff;
|
|
|
|
}
|
|
|
|
#svg-view {
|
|
|
|
min-height:500px;/*for ff*/
|
2012-07-02 16:30:15 +00:00
|
|
|
}
|
2012-07-24 09:44:44 +00:00
|
|
|
#doc-view {
|
2012-08-02 10:55:51 +00:00
|
|
|
min-height:700px;
|
|
|
|
_height:700px;
|
2012-07-24 09:44:44 +00:00
|
|
|
}
|
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;
|
2012-07-21 14:12:23 +00:00
|
|
|
margin:0 5px;
|
|
|
|
}
|
2012-07-24 05:12:18 +00:00
|
|
|
#pdf-page {
|
|
|
|
margin:0 25px 0 15px;
|
|
|
|
}
|
2012-07-21 14:12:23 +00:00
|
|
|
#page-number {
|
|
|
|
padding:0 3px;
|
|
|
|
min-width:16px;
|
|
|
|
width:30px;
|
|
|
|
text-align:right;
|
|
|
|
border-radius:3px;
|
|
|
|
-moz-border-radius:3px;
|
|
|
|
}
|
2012-08-18 07:34:38 +00:00
|
|
|
#op-after-edit {
|
2012-08-08 10:35:48 +00:00
|
|
|
margin-top:18px;
|
2012-08-06 12:29:14 +00:00
|
|
|
}
|
2012-08-20 09:15:24 +00:00
|
|
|
#op-after-edit button {
|
|
|
|
padding:3px 10px;
|
|
|
|
height:auto;
|
|
|
|
}
|
|
|
|
#file-edit-cancel {
|
|
|
|
color:#900;
|
|
|
|
}
|
2012-07-19 03:30:12 +00:00
|
|
|
/* shareadmin */
|
|
|
|
.view-link-alert p {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2012-08-08 10:19:38 +00:00
|
|
|
/*bottom bar*/
|
|
|
|
#bottom-bar button {
|
|
|
|
color:#fff;
|
|
|
|
background:#646464;
|
2012-08-23 07:37:36 +00:00
|
|
|
font-size:15px;
|
2012-08-08 10:19:38 +00:00
|
|
|
}
|
2012-08-19 05:36:32 +00:00
|
|
|
|
|
|
|
/* scroll result for autocomplete */
|
|
|
|
.ui-autocomplete {
|
|
|
|
max-height: 200px;
|
2012-08-21 08:01:18 +00:00
|
|
|
_height: 100px; /* for ie 6 */
|
2012-08-19 05:36:32 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
/* prevent horizontal scrollbar */
|
|
|
|
overflow-x: hidden;
|
|
|
|
/* add padding to account for vertical scrollbar */
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|