修复按钮间距

This commit is contained in:
fen
2013-10-18 23:47:19 +08:00
parent ba92540288
commit 738c056cd7
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -1091,7 +1091,7 @@ a.operate-reply {
.wmd-prompt-dialog input[type="text"] {
margin-bottom: 10px;
width: 100%; }
.wmd-prompt-dialog input[type="button"] {
.wmd-prompt-dialog button {
margin-right: 10px; }
/* 预览 */
+2 -1
View File
@@ -4170,7 +4170,7 @@ else
// The ok button
var okButton = doc.createElement("button");
okButton.type = "button";
okButton.className = "primary";
okButton.className = "btn-s primary";
okButton.onclick = function () { return close(false); };
okButton.innerHTML = "OK";
/*
@@ -4183,6 +4183,7 @@ else
// The cancel button
var cancelButton = doc.createElement("button");
cancelButton.type = "button";
cancelButton.className = "btn-s";
cancelButton.onclick = function () { return close(true); };
cancelButton.innerHTML = "Cancel";
/*
+1 -1
View File
@@ -58,7 +58,7 @@
margin-bottom: 10px;
width: 100%;
}
input[type="button"] { margin-right: 10px; }
button { margin-right: 10px; }
}
/* 预览 */