Make sure text in Markdown help is aligned correctly

This commit is contained in:
Tom Hughes 2012-03-23 00:19:06 +00:00
parent eaad3611b8
commit 365163929d
3 changed files with 50 additions and 4 deletions

View file

@ -1087,7 +1087,6 @@ abbr.geo {
display: inline-block;
vertical-align: top;
background-color: #ddd;
margin-left: 15px;
padding: 5px 10px 10px 10px;
font-size: 12px;
@ -1097,7 +1096,6 @@ abbr.geo {
th {
vertical-align: top;
padding: 0px 15px 0px 0px !important;
}
td {
@ -1108,12 +1106,10 @@ abbr.geo {
input.richtext_doedit {
margin-top: 5px !important;
margin-right: 10px !important;
}
input.richtext_dopreview {
margin-top: 5px !important;
margin-left: 10px !important;
}
}
}

View file

@ -215,3 +215,28 @@ input.openid_url {
background: image-url('openid_input.png') repeat-y left white;
padding-left: 16px;
}
/* Rules for rich text editors */
.richtext_container {
.richtext_help {
margin-left: 15px;
th {
text-align: left;
padding: 0px 15px 0px 0px !important;
}
td {
text-align: left;
}
input.richtext_doedit {
margin-right: 10px !important;
}
input.richtext_dopreview {
margin-left: 10px !important;
}
}
}

View file

@ -215,3 +215,28 @@ input.openid_url {
background: image-url('openid_input.png') repeat-y right white;
padding-right: 16px;
}
/* Rules for rich text editors */
.richtext_container {
.richtext_help {
margin-right: 15px;
th {
text-align: right;
padding: 0px 0px 0px 15px !important;
}
td {
text-align: right;
}
input.richtext_doedit {
margin-left: 10px !important;
}
input.richtext_dopreview {
margin-right: 10px !important;
}
}
}