OSDN Git Service

FIX: <%editcomment%>タグがパースされる度にPrepareCommentForEditイベントが発生するバグ
[nucleus-jp/nucleus-next.git] / nucleus / javascript / edit.js
index 56f8470..c1cc3c0 100644 (file)
@@ -1,6 +1,6 @@
 /**
   * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
-  * Copyright (C) 2002-2009 The Nucleus Group
+  * Copyright (C) 2002-2012 The Nucleus Group
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License
@@ -329,16 +329,15 @@ function isCaretEmpty() {
 
 function BtnHighlight(el) {
        with(el.style){
-               borderLeft="1px solid gray";
-               borderRight="1px solid #e9e9e9";
-               borderTop="1px solid gray";
-               borderBottom="1px solid #e9e9e9";
+               borderLeft="1px solid #e9e9e9";
+               borderRight="1px solid gray";
+               borderTop="1px solid #e9e9e9";
+               borderBottom="1px solid gray";
        }
 }
 
 function BtnNormal(el) {
        with(el.style){
-               padding="3px";
                border="1px solid #dddddd";
        }
 }