修复按钮间距
This commit is contained in:
+1
-1
@@ -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; }
|
||||
|
||||
/* 预览 */
|
||||
|
||||
@@ -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";
|
||||
/*
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
margin-bottom: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
input[type="button"] { margin-right: 10px; }
|
||||
button { margin-right: 10px; }
|
||||
}
|
||||
|
||||
/* 预览 */
|
||||
|
||||
Reference in New Issue
Block a user