Nucleus CMS日本語版SVNをgit-svnしたもの。リポジトリの変換作業用
Revision | 312c47e2d8bdeacbf016608fbf93ff82d67bdfcb (tree) |
---|---|
Zeit | 2009-03-14 00:40:05 |
Autor | shizuki17xx <shizuki17xx"@1ca2...> |
Commiter | shizuki17xx |
bookmarklet調整 by きゃしゃ
git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/nucleus-jp/trunk/utf8@972 1ca29b6e-896d-4ea0-84a5-967f57386b96
@@ -17,7 +17,7 @@ | ||
17 | 17 | $Id$ |
18 | 18 | --> |
19 | 19 | <title><%text(_ADD_ADDTO)%> '<%blogname%>'</title> |
20 | - <link rel="stylesheet" type="text/css" href="styles/bookmarklet.css" /> | |
20 | + <link rel="stylesheet" type="text/css" href="styles/bookmarklet.css" /> | |
21 | 21 | <link rel="stylesheet" type="text/css" href="styles/addedit.css" /> |
22 | 22 | <link rel="stylesheet" type="text/css" href="styles/jquery-ui/ui.all.css" /> |
23 | 23 | <meta http-equiv="Content-Script-Type" content="text/javascript" /> |
@@ -34,14 +34,27 @@ | ||
34 | 34 | google.load("jqueryui", "1"); |
35 | 35 | google.setOnLoadCallback(function() { |
36 | 36 | $(function(){ |
37 | +// var IE = '\v'=='v'; | |
37 | 38 | updAllPreviews(); |
38 | - $("table tr td:first-child").css("width", "14%"); | |
39 | - $("textarea").resizable({ containment: 'parent' }); | |
39 | +// $("table tr td:first-child").css("width", "14%"); | |
40 | +// if (!IE) | |
41 | + $("#body textarea, #more textarea").resizable({ containment: 'parent' }); | |
40 | 42 | $("#tabs").tabs(); |
41 | - $("input[name=autosavenow]").click(function() { | |
43 | + $(".addFuture").change(function() { | |
44 | + $("#act_future").attr('checked', 'checked'); | |
45 | + }); | |
46 | + $("#showPreview").click(function() {updAllPreviews();}); | |
47 | + $("#goSubmit").click(function() {checkSubmit();}); | |
48 | + $("#canselButton").click(function() {window.close();}); | |
49 | + $("#saveDraft").click(function() { | |
42 | 50 | $(".autosavestatus").text('(' + lastsavedtext + ' ' + formattedDate() + ')'); |
43 | 51 | autoSaveDraft(); |
44 | 52 | }); |
53 | +// $("#options tr td:nth-child(2)").css("width", "80% !important"); | |
54 | + $("#options tr th").css({ | |
55 | + width: "25%", | |
56 | + whiteSpace: "normal" | |
57 | + }); | |
45 | 58 | }); |
46 | 59 | }); |
47 | 60 | //]]> |
@@ -52,10 +65,10 @@ | ||
52 | 65 | <form id="addform" method="post" action="bookmarklet.php" > |
53 | 66 | <div id="tabs"> |
54 | 67 | <ul> |
55 | - <li><a href="#body"><%text(_BMLET_BODY)%> >></a></li> | |
56 | - <li><a href="#more"><%text(_BMLET_MORE)%> >></a></li> | |
57 | - <li><a href="#options"><%text(_BMLET_OPTIONS)%> >></a></li> | |
58 | - <li><a href="#preview" onclick="updAllPreviews();"><%text(_BMLET_PREVIEW)%> >></a></li> | |
68 | + <li><a href="#body" tabindex="300"><%text(_BMLET_BODY)%> >></a></li> | |
69 | + <li><a href="#more" tabindex="310"><%text(_BMLET_MORE)%> >></a></li> | |
70 | + <li><a href="#options" tabindex="320"><%text(_BMLET_OPTIONS)%> >></a></li> | |
71 | + <li><a href="#preview" id="showPreview" tabindex="330"><%text(_BMLET_PREVIEW)%> >></a></li> | |
59 | 72 | </ul> |
60 | 73 | <input name="action" type="hidden" value="additem" /> |
61 | 74 | <input name="blogid" type="hidden" value="<%blogid%>" /> |
@@ -64,29 +77,29 @@ | ||
64 | 77 | <div id="body" class="contentblock"> |
65 | 78 | <table summary="item body"> |
66 | 79 | <tr> |
67 | - <td><%text(_ADD_TITLE)%></td> | |
68 | - <td><input <%jsinput(title)%> type="text" size="60" maxlength="160" value="<%contents(title)%>" /></td> | |
80 | + <th><%text(_ADD_TITLE)%></th> | |
81 | + <td><input <%jsinput(title)%> type="text" size="60" maxlength="160" value="<%contents(title)%>" tabindex="10" /></td> | |
69 | 82 | </tr> |
70 | 83 | <tr> |
71 | - <td><%text(_ADD_BODY)%> <%helplink(additem)%></td> | |
84 | + <th><%text(_ADD_BODY)%> <%helplink(additem)%></th> | |
72 | 85 | <td> |
73 | 86 | <%jsbuttonbar(media)%> |
74 | - <textarea <%jsinput(body)%> cols="58" rows="12"><%contents(body)%></textarea> | |
87 | + <textarea <%jsinput(body)%> cols="58" rows="12" tabindex="20"><%contents(body)%></textarea> | |
75 | 88 | </td> |
76 | 89 | </tr> |
77 | 90 | <tr> |
78 | - <td><%text(_ADD_CATEGORY)%></td> | |
79 | - <td><%categories%></td> | |
91 | + <th><%text(_ADD_CATEGORY)%></th> | |
92 | + <td><%categories(30)%></td> | |
80 | 93 | </tr> |
81 | 94 | </table> |
82 | 95 | </div> |
83 | 96 | <div id="more" class="contentblock"> |
84 | 97 | <table summary="item more"> |
85 | 98 | <tr> |
86 | - <td><%text(_ADD_MORE)%> <%helplink(extended)%></td> | |
99 | + <th><%text(_ADD_MORE)%> <%helplink(extended)%></th> | |
87 | 100 | <td> |
88 | 101 | <%jsbuttonbar(media)%> |
89 | - <textarea <%jsinput(more)%> cols="58" rows="17"><%contents(more)%></textarea> | |
102 | + <textarea <%jsinput(more)%> cols="58" rows="17" tabindex="40"><%contents(more)%></textarea> | |
90 | 103 | </td> |
91 | 104 | </tr> |
92 | 105 | </table> |
@@ -94,39 +107,39 @@ | ||
94 | 107 | <div id="options" class="contentblock"> |
95 | 108 | <table summary="item options"> |
96 | 109 | <%ifblogsetting(bcomments)%><tr> |
97 | - <td><%text(_ADD_DISABLE_COMMENTS)%></td> | |
110 | + <th><%text(_ADD_DISABLE_COMMENTS)%></th> | |
98 | 111 | <td> |
99 | - <input type='radio' name='closed' value='1' id="closed_yes" /><label for="closed_yes"><%text(_YES)%></label> | |
100 | - <input type='radio' name='closed' value='0' checked='checked' id="closed_no" /><label for="closed_no"><%text(_NO)%></label> | |
112 | + <input type='radio' name='closed' value='1' id="closed_yes" tabindex="50" /><label for="closed_yes"><%text(_YES)%></label> | |
113 | + <input type='radio' name='closed' value='0' checked='checked' id="closed_no" tabindex="50" /><label for="closed_no"><%text(_NO)%></label> | |
101 | 114 | </td> |
102 | 115 | </tr><%endif%> |
103 | 116 | <tr> |
104 | - <td><%text(_ADD_DRAFTNFUTURE)%></td> | |
117 | + <th><%text(_ADD_DRAFTNFUTURE)%></th> | |
105 | 118 | <td> |
106 | 119 | <ul class="nobullets"> |
107 | - <li><input name="actiontype" value="addnow" type="radio" checked='checked' id="act_now" /><label for="act_now"><%text(_ADD_ADDNOW)%></label></li> | |
108 | - <li><input name="actiontype" value="addfuture" type="radio" id="act_future" /><label for="act_future"><%text(_ADD_ADDLATER)%></label> <%helplink(future)%></li> | |
120 | + <li><input name="actiontype" value="addnow" type="radio" checked='checked' id="act_now" tabindex="60" /><label for="act_now"><%text(_ADD_ADDNOW)%></label></li> | |
121 | + <li><input name="actiontype" value="addfuture" type="radio" id="act_future" tabindex="60" /><label for="act_future"><%text(_ADD_ADDLATER)%></label> <%helplink(future)%></li> | |
109 | 122 | <li> |
110 | 123 | <div class="indent"> |
111 | 124 | <%text(_ADD_PLACE_ON)%> |
112 | - <input id="inputyear" name="year" size="4" value="<%currenttime(year)%>" onchange="document.forms[0].act_future.checked=true;" /><%text(_ITEM_ADDEDITTEMPLATE_YEAR)%> | |
113 | - <input id="inputmonth" name="month" size="2" value="<%currenttime(mon)%>" onchange="document.forms[0].act_future.checked=true;" /><%text(_ITEM_ADDEDITTEMPLATE_MONTH)%> | |
114 | - <input id="inputday" name="day" size="2" value="<%currenttime(mday)%>" onchange="document.forms[0].act_future.checked=true;" /><%text(_ITEM_ADDEDITTEMPLATE_DAY)%> | |
115 | - <input id="inputhour" name="hour" size="2" value="<%currenttime(hours)%>" onchange="document.forms[0].act_future.checked=true;" /><%text(_ITEM_ADDEDITTEMPLATE_HOUR)%> | |
116 | - <input id="inputminutes" name="minutes" size="2" value="<%currenttime(minutes)%>" onchange="document.forms[0].act_future.checked=true;" /><%text(_ITEM_ADDEDITTEMPLATE_MINUTE)%> | |
125 | + <input class="addFuture" id="inputyear" name="year" size="4" value="<%currenttime(year)%>" tabindex="70" /><%text(_ITEM_ADDEDITTEMPLATE_YEAR)%> | |
126 | + <input class="addFuture" id="inputmonth" name="month" size="2" value="<%currenttime(mon)%>" tabindex="80" /><%text(_ITEM_ADDEDITTEMPLATE_MONTH)%> | |
127 | + <input class="addFuture" id="inputday" name="day" size="2" value="<%currenttime(mday)%>" tabindex="90" /><%text(_ITEM_ADDEDITTEMPLATE_DAY)%> | |
128 | + <input class="addFuture" id="inputhour" name="hour" size="2" value="<%currenttime(hours)%>" tabindex="100" /><%text(_ITEM_ADDEDITTEMPLATE_HOUR)%> | |
129 | + <input class="addFuture" id="inputminutes" name="minutes" size="2" value="<%currenttime(minutes)%>" tabindex="110" /><%text(_ITEM_ADDEDITTEMPLATE_MINUTE)%> | |
117 | 130 | <br /><%text(_ITEM_ADDEDITTEMPLATE_FORMAT)%>(yyyy)<%text(_ITEM_ADDEDITTEMPLATE_YEAR)%>(mm)<%text(_ITEM_ADDEDITTEMPLATE_MONTH)%>(dd)<%text(_ITEM_ADDEDITTEMPLATE_DAY)%> (hh)<%text(_ITEM_ADDEDITTEMPLATE_HOUR)%>(mm)<%text(_ITEM_ADDEDITTEMPLATE_MINUTE)%> |
118 | 131 | <%ifblogsetting(ballowpast,0)%><br /><%text(_ADD_NOPASTDATES)%><%endif%> |
119 | 132 | </div> |
120 | 133 | </li> |
121 | 134 | <li> |
122 | - <input name="actiontype" value="adddraft" type="radio" id="act_draft" /><label for="act_draft"><%text(_ADD_ADDDRAFT)%></label> <%helplink(draft)%> | |
135 | + <input name="actiontype" value="adddraft" type="radio" id="act_draft" tabindex="60" /><label for="act_draft"><%text(_ADD_ADDDRAFT)%></label> <%helplink(draft)%> | |
123 | 136 | </li> |
124 | - <li><input id="dosendping" name="dosendping" value="1" type="checkbox" checked="checked" /><label for="dosendping"><%text(_UPDATEDPING_GOSENDPING)%></label></li> | |
137 | + <li><input id="dosendping" name="dosendping" value="1" type="checkbox" checked="checked" tabindex="120" /><label for="dosendping"><%text(_UPDATEDPING_GOSENDPING)%></label></li> | |
125 | 138 | </ul> |
126 | 139 | </td> |
127 | 140 | </tr> |
128 | 141 | <tr> |
129 | - <td><%text(_ADD_PLUGIN_EXTRAS)%></td> | |
142 | + <th><%text(_ADD_PLUGIN_EXTRAS)%></th> | |
130 | 143 | <td><%pluginextras%></td> |
131 | 144 | </tr> |
132 | 145 | <%itemoptions%> |
@@ -142,9 +155,9 @@ | ||
142 | 155 | </div> |
143 | 156 | </div> |
144 | 157 | <div class="submitbuttons"> |
145 | - <input type="submit" value="<%text(_BMLET_EDIT)%>" onclick="return checkSubmit();" /> | |
146 | - <%ifautosave()%><input tabindex="80" type="button" name="autosavenow" value="<%text(_AUTOSAVEDRAFT_NOW)%>" /><%endif%> | |
147 | - <input type="button" value="<%text(_BMLET_CANCEL)%>" onclick="window.close();" /> | |
158 | + <input id="goSubmit" type="submit" value="<%text(_BMLET_EDIT)%>" tabindex="200" /> | |
159 | + <%ifautosave()%><input id="saveDraft" type="button" name="autosavenow" value="<%text(_AUTOSAVEDRAFT_NOW)%>" tabindex="400" /><%endif%> | |
160 | + <input id="canselButton" type="button" value="<%text(_BMLET_CANCEL)%>" tabindex="410" /> | |
148 | 161 | <%ifautosave()%><span class="autosavestatus">(<%text(_AUTOSAVEDRAFT)%> : <span class="lastsavedtime"><%text(_AUTOSAVEDRAFT_NOTYETSAVED)%>)</span></span><%endif%> |
149 | 162 | </div> |
150 | 163 | </form> |
@@ -34,14 +34,27 @@ | ||
34 | 34 | google.load("jqueryui", "1"); |
35 | 35 | google.setOnLoadCallback(function() { |
36 | 36 | $(function(){ |
37 | +// var IE = '\v'=='v'; | |
37 | 38 | updAllPreviews(); |
38 | - $("table tr td:first-child").css("width", "14%"); | |
39 | - $("textarea").resizable({ containment: 'parent' }); | |
39 | +// $("table tr td:first-child").css("width", "14%"); | |
40 | +// if (!IE) | |
41 | + $("#body textarea, #more textarea").resizable({ containment: 'parent' }); | |
40 | 42 | $("#tabs").tabs(); |
41 | - $("input[name=autosavenow]").click(function() { | |
43 | + $(".chgDate").change(function() { | |
44 | + $("#act_changedate").attr('checked', 'checked'); | |
45 | + }); | |
46 | + $("#showPreview").click(function() {updAllPreviews();}); | |
47 | + $("#goSubmit").click(function() {checkSubmit();}); | |
48 | + $("#canselButton").click(function() {window.close();}); | |
49 | + $("#saveDraft").click(function() { | |
42 | 50 | $(".autosavestatus").text('(' + lastsavedtext + ' ' + formattedDate() + ')'); |
43 | 51 | autoSaveDraft(); |
44 | 52 | }); |
53 | +// $("#options tr td:nth-child(2)").css("width", "80% !important"); | |
54 | + $("#options tr th").css({ | |
55 | + width: "25%", | |
56 | + whiteSpace: "normal" | |
57 | + }); | |
45 | 58 | }); |
46 | 59 | }); |
47 | 60 | //]]> |
@@ -52,41 +65,41 @@ | ||
52 | 65 | <form id="editform" method="post" action="bookmarklet.php" > |
53 | 66 | <div id="tabs"> |
54 | 67 | <ul> |
55 | - <li><a href="#body"><%text(_BMLET_BODY)%> >></a></li> | |
56 | - <li><a href="#more"><%text(_BMLET_MORE)%> >></a></li> | |
57 | - <li><a href="#options"><%text(_BMLET_OPTIONS)%> >></a></li> | |
58 | - <li><a href="#preview" onclick="updAllPreviews();"><%text(_BMLET_PREVIEW)%> >></a></li> | |
68 | + <li><a href="#body" tabindex="300"><%text(_BMLET_BODY)%> >></a></li> | |
69 | + <li><a href="#more" tabindex="310"><%text(_BMLET_MORE)%> >></a></li> | |
70 | + <li><a href="#options" tabindex="320"><%text(_BMLET_OPTIONS)%> >></a></li> | |
71 | + <li><a href="#preview" id="showPreview" tabindex="330"><%text(_BMLET_PREVIEW)%> >></a></li> | |
59 | 72 | </ul> |
60 | 73 | <input name="action" type="hidden" value="edititem" /> |
61 | 74 | <input name="itemid" type="hidden" value="<%contents(itemid)%>" /> |
62 | 75 | <input type="hidden" name="draftid" value="0" /> |
63 | 76 | <%ticket%> |
64 | - <div id="body" class="contentblock ui-tabs-panel ui-widget-content ui-corner-bottom"> | |
77 | + <div id="body" class="contentblock"> | |
65 | 78 | <table summary="item body"> |
66 | 79 | <tr> |
67 | - <td><%text(_ADD_TITLE)%></td> | |
68 | - <td><input <%jsinput(title)%> type="text" size="60" maxlength="160" value="<%contents(title)%>" /></td> | |
80 | + <th><%text(_ADD_TITLE)%></th> | |
81 | + <td><input <%jsinput(title)%> type="text" size="60" maxlength="160" value="<%contents(title)%>" tabindex="10" /></td> | |
69 | 82 | </tr> |
70 | 83 | <tr> |
71 | - <td><%text(_ADD_BODY)%> <%helplink(additem)%></td> | |
84 | + <th><%text(_ADD_BODY)%> <%helplink(additem)%></th> | |
72 | 85 | <td> |
73 | 86 | <%jsbuttonbar(media)%> |
74 | - <textarea <%jsinput(body)%> cols="58" rows="12"><%contents(body)%></textarea> | |
87 | + <textarea <%jsinput(body)%> cols="58" rows="12" tabindex="20"><%contents(body)%></textarea> | |
75 | 88 | </td> |
76 | 89 | </tr> |
77 | 90 | <tr> |
78 | - <td><%text(_ADD_CATEGORY)%></td> | |
79 | - <td><%categories%></td> | |
91 | + <th><%text(_ADD_CATEGORY)%></th> | |
92 | + <td><%categories(30)%></td> | |
80 | 93 | </tr> |
81 | 94 | </table> |
82 | 95 | </div> |
83 | 96 | <div id="more" class="contentblock"> |
84 | 97 | <table summary="item more"> |
85 | 98 | <tr> |
86 | - <td><%text(_ADD_MORE)%> <%helplink(extended)%></td> | |
99 | + <th><%text(_ADD_MORE)%> <%helplink(extended)%></th> | |
87 | 100 | <td> |
88 | 101 | <%jsbuttonbar(media)%> |
89 | - <textarea <%jsinput(more)%> cols="58" rows="17"><%contents(more)%></textarea> | |
102 | + <textarea <%jsinput(more)%> cols="58" rows="17" tabindex="40"><%contents(more)%></textarea> | |
90 | 103 | </td> |
91 | 104 | </tr> |
92 | 105 | </table> |
@@ -94,39 +107,39 @@ | ||
94 | 107 | <div id="options" class="contentblock"> |
95 | 108 | <table summary="item options"> |
96 | 109 | <%ifblogsetting(bcomments)%><tr> |
97 | - <td><%text(_ADD_DISABLE_COMMENTS)%></td> | |
110 | + <th><%text(_ADD_DISABLE_COMMENTS)%></th> | |
98 | 111 | <td> |
99 | - <input type="radio" name="closed" value="1" id="closed_yes" <%checkedonval(1,closed)%> /><label for="closed_yes"><%text(_YES)%></label> | |
100 | - <input type="radio" name="closed" value="0" id="closed_no" <%checkedonval(0,closed)%> /><label for="closed_no"><%text(_NO)%></label> | |
112 | + <input type="radio" name="closed" value="1" id="closed_yes" <%checkedonval(1,closed)%> tabindex="50" /><label for="closed_yes"><%text(_YES)%></label> | |
113 | + <input type="radio" name="closed" value="0" id="closed_no" <%checkedonval(0,closed)%> tabindex="50" /><label for="closed_no"><%text(_NO)%></label> | |
101 | 114 | </td> |
102 | 115 | </tr><%endif%> |
103 | 116 | <!-- The only actiontypes are 'edit', 'changedate' (no draft items can be edited) and 'delete' --> |
104 | 117 | <tr> |
105 | - <td><%text(_EDIT_SUBMIT)%></td> | |
118 | + <th><%text(_EDIT_SUBMIT)%></th> | |
106 | 119 | <td> |
107 | 120 | <ul class="nobullets"> |
108 | - <li><input name="actiontype" value="edit" type="radio" checked="checked" id="act_edit" /><label for="act_edit"><%text(_BMLET_EDIT)%></label></li> | |
109 | - <li><input name="actiontype" value="delete" type="radio" id="act_delete" /><label for="act_delete"><%text(_BMLET_DELETE)%></label></li> | |
121 | + <li><input name="actiontype" value="edit" type="radio" checked="checked" id="act_edit" tabindex="60" /><label for="act_edit"><%text(_BMLET_EDIT)%></label></li> | |
122 | + <li><input name="actiontype" value="delete" type="radio" id="act_delete" tabindex="60" /><label for="act_delete"><%text(_BMLET_DELETE)%></label></li> | |
110 | 123 | <%ifblogsetting(ballowpast)%><li> |
111 | - <input name="actiontype" value="changedate" type="radio" id="act_changedate" tabindex="70" /><label for="act_changedate"><%text(_BMLET_CHANGEDATE)%></label> <%helplink(changedate)%> | |
124 | + <input name="actiontype" value="changedate" type="radio" id="act_changedate" tabindex="60" /><label for="act_changedate"><%text(_BMLET_CHANGEDATE)%></label> <%helplink(changedate)%> | |
112 | 125 | <div class="indent"> |
113 | - <input id="inputyear" name="year" tabindex="71" size="4" value="<%itemtime(year)%>" onchange="document.forms[0].act_changedate.checked=true;" /><%text(_ITEM_ADDEDITTEMPLATE_YEAR)%> | |
114 | - <input id="inputmonth" name="month" tabindex="72" size="2" value="<%itemtime(mon)%>" onchange="document.forms[0].act_changedate.checked=true;" /><%text(_ITEM_ADDEDITTEMPLATE_MONTH)%> | |
115 | - <input id="inputday" name="day" tabindex="73" size="2" value="<%itemtime(mday)%>" onchange="document.forms[0].act_changedate.checked=true;" /><%text(_ITEM_ADDEDITTEMPLATE_DAY)%> | |
116 | - <input id="inputhour" name="hour" tabindex="74" size="2" value="<%itemtime(hours)%>" onchange="document.forms[0].act_changedate.checked=true;" /><%text(_ITEM_ADDEDITTEMPLATE_HOUR)%> | |
117 | - <input id="inputminutes" name="minutes" tabindex="75" size="2" value="<%itemtime(minutes)%>" onchange="document.forms[0].act_changedate.checked=true;" /><%text(_ITEM_ADDEDITTEMPLATE_MINUTE)%> | |
126 | + <input class="chgDate" id="inputyear" name="year" size="4" value="<%itemtime(year)%>" tabindex="70" /><%text(_ITEM_ADDEDITTEMPLATE_YEAR)%> | |
127 | + <input class="chgDate" id="inputmonth" name="month" size="2" value="<%itemtime(mon)%>" tabindex="80" /><%text(_ITEM_ADDEDITTEMPLATE_MONTH)%> | |
128 | + <input class="chgDate" id="inputday" name="day" size="2" value="<%itemtime(mday)%>" tabindex="90" /><%text(_ITEM_ADDEDITTEMPLATE_DAY)%> | |
129 | + <input class="chgDate" id="inputhour" name="hour" size="2" value="<%itemtime(hours)%>" tabindex="100" /><%text(_ITEM_ADDEDITTEMPLATE_HOUR)%> | |
130 | + <input class="chgDate" id="inputminutes" name="minutes" size="2" value="<%itemtime(minutes)%>" tabindex="110" /><%text(_ITEM_ADDEDITTEMPLATE_MINUTE)%> | |
118 | 131 | <br /><%text(_ITEM_ADDEDITTEMPLATE_FORMAT)%>(yyyy)<%text(_ITEM_ADDEDITTEMPLATE_YEAR)%>(mm)<%text(_ITEM_ADDEDITTEMPLATE_MONTH)%>(dd)<%text(_ITEM_ADDEDITTEMPLATE_DAY)%> (hh)<%text(_ITEM_ADDEDITTEMPLATE_HOUR)%>(mm)<%text(_ITEM_ADDEDITTEMPLATE_MINUTE)%> |
119 | 132 | </div> |
120 | 133 | </li> |
121 | 134 | <li> |
122 | - <input name="actiontype" value="backtodrafts" type="radio" id="act_backtodrafts" tabindex="71" /><label for="act_backtodrafts"><%text(_BMLET_BACKTODRAFTS)%></label> <%helplink(draft)%> | |
135 | + <input name="actiontype" value="backtodrafts" type="radio" id="act_backtodrafts" tabindex="60" /><label for="act_backtodrafts"><%text(_BMLET_BACKTODRAFTS)%></label> <%helplink(draft)%> | |
123 | 136 | </li><%endif%> |
124 | - <li><input id="dosendping" name="dosendping" value="1" type="checkbox" /><label for="dosendping"><%text(_UPDATEDPING_GOSENDPING)%></label></li> | |
137 | + <li><input id="dosendping" name="dosendping" value="1" type="checkbox" tabindex="120" /><label for="dosendping"><%text(_UPDATEDPING_GOSENDPING)%></label></li> | |
125 | 138 | </ul> |
126 | 139 | </td> |
127 | 140 | </tr> |
128 | 141 | <tr> |
129 | - <td><%text(_ADD_PLUGIN_EXTRAS)%></td> | |
142 | + <th><%text(_ADD_PLUGIN_EXTRAS)%></th> | |
130 | 143 | <td><%pluginextras%></td> |
131 | 144 | </tr> |
132 | 145 | <%itemoptions%> |
@@ -142,9 +155,9 @@ | ||
142 | 155 | </div> |
143 | 156 | </div> |
144 | 157 | <div class="submitbuttons"> |
145 | - <input type="submit" value="<%text(_BMLET_EDIT)%>" onclick="return checkSubmit();" /> | |
146 | - <%ifautosave()%><input tabindex="80" type="button" name="autosavenow" value="<%text(_AUTOSAVEDRAFT_NOW)%>" /><%endif%> | |
147 | - <input type="button" value="<%text(_BMLET_CANCEL)%>" onclick="window.close();" /> | |
158 | + <input id="goSubmit" type="submit" value="<%text(_BMLET_EDIT)%>" tabindex="200" /> | |
159 | + <%ifautosave()%><input id="saveDraft" type="button" name="autosavenow" value="<%text(_AUTOSAVEDRAFT_NOW)%>" tabindex="400" /><%endif%> | |
160 | + <input id="canselButton" type="button" value="<%text(_BMLET_CANCEL)%>" tabindex="410" /> | |
148 | 161 | <%ifautosave()%><span class="autosavestatus">(<%text(_AUTOSAVEDRAFT)%> : <span class="lastsavedtime"><%text(_AUTOSAVEDRAFT_NOTYETSAVED)%>)</span></span><%endif%> |
149 | 162 | </div> |
150 | 163 | </form> |
@@ -1,7 +1,7 @@ | ||
1 | 1 | @charset 'UTF-8'; |
2 | 2 | /* |
3 | 3 | style definitions for the bookmarklet |
4 | - | |
4 | + | |
5 | 5 | $Id$ |
6 | 6 | $NucleusJP: bookmarklet.css,v 1.6 2007/01/30 07:35:20 kimitake Exp $ |
7 | 7 | */ |
@@ -10,9 +10,11 @@ body { | ||
10 | 10 | font-size: small; |
11 | 11 | background: #fff; |
12 | 12 | color: #000; |
13 | -/* font-family: "Trebuchet MS",Trebuchet,"Bitstream Vera Sans",verdana,lucida,arial,helvetica,sans-serif;*/ | |
13 | +/* font-family: "Trebuchet MS",Trebuchet,"Bitstream Vera Sans",verdana,lucida,arial,helvetica,sans-serif;*/ | |
14 | 14 | font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS Pゴシック", "MS PGothic", "IPA UIGothic", "IPA mona UIGothic", "VL PGothic", "Sazanami Gothic", "DynaLab-dfghsgothic w5-jisx0208.1990-0", "DynaLab-dfggothic w5-iso8859-1", "Trebuchet MS", "Bitstream Vera Sans", verdana, lucida, arial, helvetica, sans-serif !important; |
15 | -} | |
15 | + margin:0;/* add 090313 */ | |
16 | + padding:5px;/* add 090313 */ | |
17 | +} | |
16 | 18 | |
17 | 19 | /*textarea { |
18 | 20 | font-family: "Hiragino Kaku Gothic Pro W3", "MS P Gothic", "Osaka", sans-serif; |
@@ -22,6 +24,8 @@ h1 { | ||
22 | 24 | border-bottom: 1px dotted gray; |
23 | 25 | font-size: medium; |
24 | 26 | color: #596d9d; |
27 | + margin:0;/* add 090313 */ | |
28 | + padding:5px;/* add 090313 */ | |
25 | 29 | } |
26 | 30 | |
27 | 31 | /* |
@@ -66,17 +70,6 @@ h1 { | ||
66 | 70 | vertical-align: top; |
67 | 71 | } |
68 | 72 | |
69 | -*:first-child+html .contentblock { | |
70 | -/* height: 330px;*/ | |
71 | - height: 380px; /*mod 090309*/ | |
72 | -} | |
73 | -*html body .contentblock { /*add 090309*/ | |
74 | - height: 380px; | |
75 | -} | |
76 | -body:last-child .contentblock { /*add 090309*/ | |
77 | - height: 390px; | |
78 | -} | |
79 | - | |
80 | 73 | .shortcuts { |
81 | 74 | float: right; |
82 | 75 | text-align: right; |
@@ -124,42 +117,37 @@ table { | ||
124 | 117 | /* width: 95%;*/ |
125 | 118 | width: 98%; |
126 | 119 | border-collapse: collapse; |
127 | - margin: 10px auto; | |
120 | +/* margin: 10px auto; */ | |
121 | + margin: auto;/* mod 090313 */ | |
128 | 122 | /* margin-bottom: 10px; |
129 | - margin-top: 10px;*/ | |
123 | + margin-top: 10px;*/ | |
130 | 124 | height: 95%; /* add 090309*/ |
131 | -} | |
132 | - | |
133 | -*:first-child+html table { | |
134 | - width: 93%; | |
135 | - height: 90%; /* add 090309*/ | |
136 | -} | |
137 | -*html body table { /* add 090309*/ | |
138 | - width: 93%; | |
139 | - height: 90%; | |
140 | -} | |
141 | -body:last-child table { /* add 090309*/ | |
142 | - width: 93%; | |
143 | - height: 93%; | |
125 | + table-layout:fixed;/* add 090313 */ | |
144 | 126 | } |
145 | 127 | |
146 | 128 | th { |
147 | - background: #bbc; | |
129 | +/* background: #bbc; | |
148 | 130 | color: #000; |
149 | - font-size: small; | |
131 | + font-size: small;*//* mod 090313 */ | |
132 | + width:130px;/* add 090313 */ | |
133 | + font-weight:normal;/* add 090313 */ | |
150 | 134 | } |
151 | 135 | |
152 | 136 | th, td { |
153 | 137 | padding: 4px; |
154 | - empty-cells: show; | |
155 | -} | |
138 | + empty-cells: show; | |
139 | +/*} | |
156 | 140 | |
157 | -td { | |
141 | +td {*//* mod 090313 */ | |
158 | 142 | background: #fff; |
159 | 143 | border: 1px solid #ddd; |
160 | 144 | font-size: small; |
161 | 145 | vertical-align: top; |
162 | 146 | text-align: left; |
147 | +/*} | |
148 | + | |
149 | +#body td, | |
150 | +#more td {*//* mod 090313 */ | |
163 | 151 | white-space: nowrap; /*add 090309*/ |
164 | 152 | } |
165 | 153 |
@@ -187,49 +175,37 @@ ul.nobullets { | ||
187 | 175 | margin: 0; |
188 | 176 | } |
189 | 177 | |
178 | +form {/* add 090313 */ | |
179 | + margin:0; | |
180 | + padding:0; | |
181 | +} | |
182 | + | |
190 | 183 | .jsbuttonbar, |
191 | -#body input[type=text], | |
184 | +/*#body input[type=text],*//* mod 090313 */ | |
185 | +#inputtitle,/* add 090313 */ | |
192 | 186 | #body textarea, |
193 | 187 | #body select, |
194 | -#more input[type=text], | |
188 | +/*#more input[type=text],*//* mod 090313 */ | |
195 | 189 | #more textarea, |
196 | 190 | #more select { |
197 | 191 | margin: auto; |
192 | + padding:0;/* add 090313 */ | |
198 | 193 | display: block; |
199 | 194 | /* width: 90%;*/ |
200 | 195 | width: 98% /*mod 090309*/ |
201 | 196 | } |
202 | 197 | |
203 | -*:first-child+html #body input[type=text], | |
204 | -*:first-child+html #body textarea, | |
205 | -*:first-child+html #body select, | |
206 | -*:first-child+html #more input[type=text], | |
207 | -*:first-child+html #more select, | |
208 | -*html body #body input[type=text], /*add 090309*/ | |
209 | -*html body #body textarea, | |
210 | -*html body #body select, | |
211 | -*html body #more input[type=text], | |
212 | -*html body #more select { | |
213 | - display: inline; | |
214 | - width: 98%; /*add 090309*/ | |
198 | +#body textarea {/* add 090313 */ | |
199 | + margin-top: 4px; | |
215 | 200 | } |
216 | - | |
217 | -*:first-child+html #more textarea { /*add 090309*/ | |
218 | - display: block; | |
219 | - width: 95%; | |
220 | -} | |
221 | -*html body #more textarea { /*add 090309*/ | |
222 | - display: block; | |
223 | - width: 95%; | |
224 | -} | |
225 | -body:last-child #more textarea { /*add 090309*/ | |
226 | - display: block; | |
227 | - width: 95%; | |
201 | +#more textarea {/* add 090313 */ | |
202 | + height: 300px; | |
203 | + margin-top: 4px; | |
228 | 204 | } |
229 | 205 | |
230 | -textarea { | |
206 | +/*textarea {/*mod 090313 / | |
231 | 207 | margin-top: 1px; |
232 | -} | |
208 | +}*/ | |
233 | 209 | |
234 | 210 | .submitbuttons { |
235 | 211 | line-height: 2em; |