1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 18:29:23 +00:00
Files
seahub/media/css/seahub.css

857 lines
16 KiB
CSS
Raw Normal View History

2012-07-28 15:25:08 +08:00
html {
background:#fff;
}
2012-07-13 17:26:33 +08:00
body,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,pre,blockquote,form,input,textarea,button,img { margin:0; padding:0; }
2012-07-28 15:25:08 +08: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;
}
ul { list-style:none; }
2012-07-28 15:25:08 +08:00
ol { padding-left:2em; }
2011-03-19 13:15:02 +08:00
a { color:#ee8833; text-decoration:none; font-weight:bold; }
a:hover { color: #ff9933; text-decoration: underline; }
2012-05-05 20:35:08 +08:00
img { border:none; }
textarea { border: 1px solid #ddd; }
input {
height:20px;
line-height:20px;
margin:3px 0;
border: 1px solid #ddd;
}
2012-06-11 13:22:22 +08:00
input,
button {
font-size:13px;/*for ff*/
display:inline-block;/*for ie*/
}
input[type=checkbox] {
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-06-06 11:52:37 +08:00
input.submit,
button {
2012-07-13 17:26:33 +08:00
color: #333;
height:23px;
2012-05-29 17:26:00 +08:00
line-height:21px;
padding:0 3px;
2012-07-13 17:26:33 +08:00
background: #efefef;
border: 1px solid #ddd;
border-radius: 3px;
-moz-border-radius:3px;
margin-top:8px;
}
button {
margin:0;
}
input[type=submit]:hover,
button:hover {
cursor:pointer;
background: #FFF;
}
input[type="file"] {
border:none;
height:24px;
line-height:24px;
}
label { display: inline-block; margin:2px 0px; }
iframe {
display:block;
width:100%;
}
2012-07-28 15:25:08 +08:00
pre, code {
font-family: Consolas,"Liberation Mono",Courier,monospace;
2012-07-28 15:25:08 +08:00
}
pre {
white-space:pre-wrap;
word-wrap: break-word;
}
2012-05-12 20:42:27 +08:00
table {
border-spacing: 0;
border-collapse: collapse;
width:100%;
table-layout:fixed;
2012-07-20 13:02:14 +08:00
margin:8px 0 40px;
2012-05-12 20:42:27 +08:00
}
2012-07-28 15:25:08 +08:00
th { text-align:left; }
2012-06-12 10:56:05 +08:00
td, th {
2012-07-19 12:24:07 +08:00
padding:5px 3px;
2012-06-12 10:56:05 +08:00
word-wrap:break-word;
2012-07-28 15:25:08 +08:00
border-bottom:1px solid #eee;
2012-06-12 10:56:05 +08:00
}
tr.hl { background-color: #f8f8f8; }/*highlight*/
2012-05-23 13:49:51 +08:00
table img {
vertical-align:middle;
}
2012-07-28 15:25:08 +08:00
p {
margin:0.5em 0;
}
/*common class*/
.fleft { float:left }
.fright { float:right }
.clear { clear:both; }
.show { display:block }
.hide { display:none }
2012-07-28 15:25:08 +08:00
.error { color:red; }
.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;
}
.no-deco, .no-deco:hover {
text-decoration:none;
}
2012-07-28 15:25:08 +08:00
.input-disabled {
background:#ebebe4;
}
.no-bold {
font-weight:normal;
}
2012-07-04 19:17:04 +08:00
#paginator { margin-top:10px; }
2011-03-19 13:15:02 +08:00
/* container */
2012-06-06 11:52:37 +08:00
#header, #main, #footer, .top-bar-in { width:950px; }
#header, #main, .top-bar-in { margin:0 auto; }
#header {
font-size: 14px;
font-weight: bold;
2012-07-12 16:05:43 +08:00
overflow:hidden;
padding-bottom:8px;
border-bottom:1px solid #ddd;
margin-bottom:15px;
}
2012-05-12 20:42:27 +08:00
#main {
min-height: 400px;
2012-06-06 11:52:37 +08:00
_height: 400px;
padding-top: 10px;
2012-05-12 20:42:27 +08:00
}
2012-05-17 14:11:22 +08:00
#left-panel { float:right; width:220px; }
#right-panel { float:left; width:680px; }
2012-05-31 19:53:33 +08:00
.side {
color:#333;
width:220px;
2012-07-12 16:14:21 +08:00
word-wrap: break-word;
2012-05-31 19:53:33 +08:00
}
.main {
width:680px;
}
/* info-bar */
#info-bar { height: 30px; color: #fff; background: #000; }
#info-bar .info { margin: 5px 0 auto 1em; float: left; }
#info-bar .close { margin: 7px 5px auto 0; float: right; background: url(../img/close-16.png); height: 16px; width:16px; }
2011-10-13 00:17:48 +08:00
/* top-bar */
2012-07-28 20:36:26 +08:00
#top-bar { height:21px; padding-bottom:21px; background:#fff url('../img/dropshadow.png') repeat-x center bottom; }
.top-bar { height:21px; color:#fff; font-weight:bold; background:#606; }
.top-bar a {
color:#ddd;
font-weight:normal;
display:inline-block;
2012-07-28 20:36:26 +08:00
height:21px;
padding:0 2px;
}
.top-bar a.avatar-link {
height:16px;
}
.top-bar .avatar {
border-radius: 2px;
-moz-border-radius: 2px;
}
.top-bar a.cur {
background:#000;
}
.top-bar a,
.top-bar span {
vertical-align:middle;
}
.top-bar span {
margin-right:3px;
}
.top-bar a:hover {
text-decoration:none;
background:#A0A;
}
.top-bar a.avatar-link:hover {
background:none;
}
#team-list {
position:absolute;
left:2px;
2012-08-02 14:27:09 +08:00
top:21px;
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);
}
#team-list a {
color:#000;
display:block;
padding:0 5px;
}
#team-list a:hover {
background:#eee;
}
#team-account .bg {
display:inline-block;
font-size:0;
2012-08-02 14:27:09 +08:00
line-height: 0;
width:0;
height:0;
padding-top: 1px;
2012-08-02 14:27:09 +08:00
border-width: 3px 3px 0;
border-style: solid dashed dashed;
border-color: transparent;
border-top-color: #bbb;
2012-08-02 14:27:09 +08:00
margin-left:1px;
}
2012-05-12 20:42:27 +08:00
/* header */
2012-07-12 16:05:43 +08:00
#logo {
margin-right:30px;
}
#header .nav {
float:left;
padding-top:16px;
}
#header .nav li {
float: left;
height:21px;
margin:0 10px;
}
2011-03-19 13:15:02 +08:00
#header .nav a, #header .nav a:visited { color:#8A948F; font-weight:bold; text-decoration:none; }
2012-06-06 11:52:37 +08:00
#header .nav a.cur { color:#000; }
2011-03-19 13:15:02 +08:00
#header .nav a:hover { color: #ff9933; text-decoration: underline; }
/* footer */
#footer {
color:#636363;
font-size:12px;
padding:20px 0 10px;
2012-07-04 19:17:04 +08: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 17:57:16 +08:00
padding-bottom:3px;
}
#footer a {
2012-07-20 12:58:12 +08:00
color:#888;
font-weight:normal;
}
2011-03-19 13:15:02 +08:00
/* main */
2012-07-28 15:25:08 +08:00
.path, .access-notice { margin: 0.8em 0 0.4em; }
.with-bg li {
2012-05-12 20:42:27 +08:00
padding-left:10px;
line-height:20px;
background: #fff url('../img/li.gif') no-repeat scroll left 6px;
}
/*narrow-panel: for form pages*/
.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 15:25:08 +08:00
margin:0 0 0.9em;
border-bottom:1px solid #ddd;
}
2012-07-28 15:25:08 +08:00
.narrow-panel h2 {
font-size:1.3em;
}
2012-06-06 11:52:37 +08:00
.narrow-panel input {
width:318px;
height:1.8em;
margin:0 0 0.6em;
2012-04-09 14:43:10 +08:00
}
2012-06-06 11:52:37 +08:00
.narrow-panel input.submit {
2012-07-17 14:54:00 +08:00
width:3em;
margin:8px 0 0;
2012-06-06 11:52:37 +08:00
}
2012-08-03 11:32:11 +08:00
.narrow-panel .note {
color: #666666;
font-size: 11px;
margin: 2px 0 5px;
}
2012-06-06 11:52:37 +08:00
.login-form a {
font-size:12px;
2012-06-06 11:52:37 +08:00
vertical-align:middle;
}
/*text-panel: for pages with few text*/
.text-panel {
font-size:16px;
text-align:center;
2012-05-23 17:36:26 +08:00
padding-top:7em;
}
2011-10-18 15:41:48 +08:00
/* popup dialog */
#basic-modal-content {display:none;}
2012-05-12 20:42:27 +08:00
#simplemodal-overlay { background-color:#000; }
#simplemodal-container {
padding: 20px;
background-color:#fff;
border-radius:4px;
-moz-border-radius:4px;
}
2011-10-18 15:41:48 +08: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;}
#simplemodal-container .ui-menu-item a {/*for tip item of autocomplete*/
color:#e83;
font-weight:normal;
}
#simplemodal-container .jstree a {
color:#000;
font-weight:normal;
}
2012-05-31 10:32:48 +08:00
#simplemodal-container h3 {
margin:0 0 4px;
2012-05-31 10:32:48 +08:00
}
2012-05-12 20:42:27 +08:00
.simplemodal-close {
margin-left:5px;
}
2012-05-12 20:42:27 +08:00
#dialog-delete-confirm {
text-align:center;
}
2012-05-29 17:26:00 +08:00
#confirm-con {
margin-bottom:6px;
}
/*ui-autocomplete*/
.ui-autocomplete {
background:#fff;
}
.ui-menu-item {
background-image:none;
}
2012-05-12 20:42:27 +08:00
/*myhome*/
.home-profile .avatar {
float:left;
2012-06-21 15:26:03 +08:00
margin:0 15px 0 11px;
}
.mygroup {
2012-05-21 15:08:34 +08:00
display:inline-block;
2012-06-25 21:40:18 +08:00
width:70px;
text-align:center;
2012-05-21 15:08:34 +08:00
word-wrap:break-word;
vertical-align:top;
2012-06-25 21:40:18 +08:00
margin:0 0px 5px 0;
}
.mygroup .tip {
2012-06-25 21:40:18 +08:00
font-size: 0.9em;
color: #333;
2012-06-27 19:56:11 +08:00
}
2012-07-31 19:44:13 +08:00
#repo-create,
#contact-add{
padding-left:21px;
height:27px;
background:#f5f5f5 url('../img/add.png') scroll no-repeat 3px 48%;
}
2012-07-19 14:05:33 +08:00
#repo-create-form {
padding:0 20px;
}
2012-07-16 16:36:46 +08:00
#repo-name,
#repo-desc,
2012-07-31 19:44:13 +08:00
.repo-create-encryption .passwd,
#id_contact_email,
#id_contact_name,
#id_note {
2012-07-19 11:41:41 +08:00
width:260px;
2012-07-17 14:54:00 +08:00
margin-bottom:5px;
2012-07-16 16:36:46 +08:00
}
#repo-desc {
height:70px;
}
/* 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;
}
2012-06-27 19:56:11 +08:00
2012-03-28 10:38:12 +08:00
/*repo page*/
.repo-op button {
height:25px;
background:#f5f5f5 scroll no-repeat 3px 48%;
}
#upload-file {
padding-left:19px;
2012-07-02 16:42:24 +08:00
background-image:url('../img/upload.png');
margin-right:5px;
}
#add-new-dir {
padding-left:23px;
2012-07-02 16:42:24 +08:00
background-image:url('../img/folder-add.png');
}
.more-op {
cursor:pointer;
}
.op-list {
position:absolute;
left:18px;
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 19:53:33 +08:00
.latest-commit .more:hover {
2012-05-29 15:38:44 +08:00
text-decoration:none;
}
2012-05-31 19:53:33 +08:00
.icon-container {
2012-05-23 13:49:51 +08:00
text-align:center;
}
.latest-commit-time-author {
color:#333;
font-size:13px;
font-weight:normal;
}
2012-05-05 20:35:08 +08:00
.latest-commit {
word-wrap:break-word;
2012-05-04 21:36:36 +08:00
}
2012-05-05 20:35:08 +08:00
.latest-commit .author {
2012-05-04 21:36:36 +08:00
font-style:italic;
}
2012-05-05 20:35:08 +08:00
.latest-commit .time {
2012-05-04 21:36:36 +08:00
color:#666;
margin-left:2px;
2012-03-28 10:38:12 +08:00
}
.repo-history {
2012-05-05 13:57:42 +08:00
font-weight:normal;
font-size:16px;
2012-06-01 02:10:31 +08:00
margin: 4px 0 12px 0;
2012-05-05 13:57:42 +08:00
}
2012-05-30 14:11:33 +08:00
.lsch {
font-size:12px;
font-weight:normal;
2012-05-30 14:11:33 +08: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;
}
/*file mv*/
#dirs {
margin-top:8px;
}
2012-05-07 16:33:36 +08:00
/*repo-share-form*/
#email,
2012-06-12 10:13:14 +08:00
#email_or_group,
#share-link,
#added-member-name {
2012-05-07 16:33:36 +08:00
width:260px;
height:80px;
}
2012-06-20 19:14:18 +08:00
/* group, org */
2012-07-03 17:21:51 +08: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 15:25:08 +08:00
.group p {
margin:0;
}
2012-07-03 17:21:51 +08:00
.group .item-name {
display:inline-block;
width:5em;
color:#666;
}
2012-06-20 19:14:18 +08:00
.group-member .avatar,
.org-member .avatar {
border-radius: 2px;
-moz-border-radius: 2px;
2012-05-18 11:47:59 +08:00
margin-right: 5px;
}
.group-member .avatar,
2012-06-20 19:14:18 +08:00
.group-member-name,
.org-member .avatar,
.org-member-name {
vertical-align:middle;
}
2012-06-23 16:12:33 +08: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);
}
#member-add {
2012-05-19 15:30:58 +08:00
font-size:13px;
2012-07-19 11:23:21 +08:00
font-weight:normal;
2012-05-19 15:30:58 +08:00
padding-left:18px;
background:transparent url('../img/add.png') scroll no-repeat left 40%;
margin-top:16px;
2012-07-16 16:36:46 +08:00
}
/* notification admin */
.cur-note { color: red; font-size: 75%; }
2012-06-20 19:39:21 +08:00
2012-06-20 19:14:18 +08:00
/*user-profile*/
.user-profile .pic {
width:80px;
text-align:center;
2012-06-20 19:39:21 +08:00
}
2012-06-20 19:14:18 +08: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 19:39:21 +08:00
}
2012-06-25 14:57:14 +08:00
/* group message and replies */
2012-06-26 16:44:39 +08:00
#group-reply {
margin-top:50px;
2012-06-25 14:57:14 +08:00
}
2012-06-26 16:44:39 +08: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 14:57:14 +08:00
}
2012-06-26 16:44:39 +08:00
.msg-list {
width:602px;
margin-top: 10px;
2012-06-25 14:57:14 +08:00
}
2012-06-26 16:44:39 +08:00
.msg {
word-wrap: break-word;
padding: 10px 0 5px;
min-height: 48px;
_min-height: 48px;
2012-06-25 14:57:14 +08:00
}
2012-06-26 16:44:39 +08:00
.msg .txt {
width:540px;
2012-06-25 14:57:14 +08:00
}
2012-06-26 16:44:39 +08:00
.msg-hd {
padding:2px 3px;
background:#fafafa;
margin-bottom:2px;
}
.msg-hd .time,
.msg-hd .group {
2012-06-25 14:57:14 +08:00
color: #808080;
}
.msg-hd .group {
margin-left:30px;
}
2012-06-26 16:44:39 +08:00
.msg-bd .op:hover {
text-decoration:none;
}
2012-07-03 17:13:35 +08:00
.msg-bd p a {
color: #666666;
2012-07-03 18:43:32 +08:00
font-weight: normal;
2012-07-03 17:13:35 +08:00
}
2012-06-26 16:44:39 +08:00
.reply-list {
color:#444;
width:90%;
padding:2px 0 2px 0;
}
.reply-list a {
color:#666;
font-weight:normal;
font-size:12px;
}
.reply-form .text-input {
width:82%;
2012-06-25 14:57:14 +08:00
}
2012-07-24 13:59:18 +08:00
.at-in-msg {
color:#e83;
}
/*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 22:45:21 +08:00
/* file preview */
2012-07-13 17:26:33 +08:00
.file-op {
color:#444;
text-align:right;
}
2012-07-14 15:19:09 +08:00
.file-op,
.file-share-from {
2012-07-28 15:25:08 +08:00
margin-top:0.8em;
2012-07-14 15:19:09 +08:00
}
2012-07-13 17:26:33 +08:00
.file-op a {
font-weight:normal;
margin-right:2px;
}
.file-op button {
color:#444;
margin-top:3px;
}
#file-view {
padding:3px;
2012-07-13 17:26:33 +08:00
background:#dedede;
border-radius:3px;
-moz-border-radius:3px;
2012-07-28 15:25:08 +08:00
margin-top:13px;
2012-07-13 17:26:33 +08:00
}
#docu-view {
font-size:13px;/*override .ace_editor*/
font-family: Consolas,"Liberation Mono",Courier,monospace;/*override .ace_editor*/
2012-07-02 22:45:21 +08:00
min-height: 200px;
2012-07-13 17:26:33 +08:00
border: 1px solid #ccc;
}
#image-view {
padding:1px;
background:#fff;
border:1px solid #eee;
}
#docu-view,
2012-07-23 14:58:54 +08:00
#svg-view,
#pdf,
#md-view {
2012-07-13 17:26:33 +08:00
background:#fff;
}
#svg-view {
min-height:500px;/*for ff*/
2012-07-03 00:30:15 +08:00
}
#doc-view {
min-height:800px;
}
2012-07-24 13:12:18 +08:00
#pdf {
border:1px solid #cbcbcb;
}
#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 13:12:18 +08:00
#pdf-page {
margin:0 25px 0 15px;
}
#page-number {
padding:0 3px;
min-width:16px;
width:30px;
text-align:right;
border-radius:3px;
-moz-border-radius:3px;
}
#md-view {
2012-07-28 20:33:39 +08:00
padding:40px;
border:1px solid #ccc;
2012-07-28 20:33:39 +08:00
font-size:14px;
line-height:1.6;
color:#333;
}
#md-view h3 {
color:#000;
font-weight:bold;
2012-07-28 15:25:08 +08:00
margin:0.82em 0 0.4em;
}
#md-view p {
2012-07-28 15:25:08 +08:00
margin:0.8em 0;
}
#md-view ul {
list-style-type:disc;
padding-left:2em;
margin:4px 0;
}
#md-view 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;
}
#md-view 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:5px 0;
}
#md-view pre code {
white-space:pre-wrap;
padding:0;
margin:0;
border:none;
}
#md-view a {
font-weight:normal;
}
/* shareadmin */
.view-link-alert p {
display: inline-block;
}
2012-08-03 11:32:11 +08:00