Quicktags update to position them more with how the items are usually positioned. Still need tooltips with the access key for each button.
git-svn-id: http://svn.automattic.com/wordpress/trunk@1270 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a2551a08ad
commit
587f37157f
|
@ -37,6 +37,23 @@ new edButton('ed_em'
|
||||||
,'i'
|
,'i'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
edButtons[edButtons.length] =
|
||||||
|
new edButton('ed_link'
|
||||||
|
,'link'
|
||||||
|
,''
|
||||||
|
,'</a>'
|
||||||
|
,'a'
|
||||||
|
); // special case
|
||||||
|
|
||||||
|
edButtons[edButtons.length] =
|
||||||
|
new edButton('ed_block'
|
||||||
|
,'b-quote'
|
||||||
|
,'<blockquote>'
|
||||||
|
,'</blockquote>'
|
||||||
|
,'q'
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
edButtons[edButtons.length] =
|
edButtons[edButtons.length] =
|
||||||
new edButton('ed_del'
|
new edButton('ed_del'
|
||||||
,'del'
|
,'del'
|
||||||
|
@ -53,14 +70,6 @@ new edButton('ed_ins'
|
||||||
,'d'
|
,'d'
|
||||||
);
|
);
|
||||||
|
|
||||||
edButtons[edButtons.length] =
|
|
||||||
new edButton('ed_link'
|
|
||||||
,'link'
|
|
||||||
,''
|
|
||||||
,'</a>'
|
|
||||||
,'a'
|
|
||||||
); // special case
|
|
||||||
|
|
||||||
edButtons[edButtons.length] =
|
edButtons[edButtons.length] =
|
||||||
new edButton('ed_img'
|
new edButton('ed_img'
|
||||||
,'img'
|
,'img'
|
||||||
|
@ -94,14 +103,6 @@ new edButton('ed_li'
|
||||||
,'l'
|
,'l'
|
||||||
);
|
);
|
||||||
|
|
||||||
edButtons[edButtons.length] =
|
|
||||||
new edButton('ed_block'
|
|
||||||
,'b-quote'
|
|
||||||
,'<blockquote>'
|
|
||||||
,'</blockquote>'
|
|
||||||
,'q'
|
|
||||||
);
|
|
||||||
|
|
||||||
edButtons[edButtons.length] =
|
edButtons[edButtons.length] =
|
||||||
new edButton('ed_pre'
|
new edButton('ed_pre'
|
||||||
,'code'
|
,'code'
|
||||||
|
|
|
@ -198,7 +198,7 @@ textarea, input, select {
|
||||||
.updated {
|
.updated {
|
||||||
background: #f0f8ff;
|
background: #f0f8ff;
|
||||||
border: 1px solid #69c;
|
border: 1px solid #69c;
|
||||||
margin: 5px 5% 10px;
|
margin: 1em 5% 10px;
|
||||||
padding: 0 1em 0 1em;
|
padding: 0 1em 0 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -309,16 +309,15 @@ textarea, input, select {
|
||||||
|
|
||||||
#ed_em {
|
#ed_em {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
width: 25px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ed_strong {
|
#ed_strong {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
width: 1.9em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#excerpt {
|
#excerpt {
|
||||||
height: 1.5em;
|
height: 1.8em;
|
||||||
|
width: 98%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
|
|
Loading…
Reference in New Issue