This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository bow. See http://git.chorem.org/bow.git commit 7fc8eafa1860e240b293ae39664c3ce1032b0676 Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Sat Jul 18 02:04:31 2015 +0200 better form presentation for bookmark edition --- .../src/main/webapp/WEB-INF/jsp/editBookmark.jsp | 7 ++--- bow-ui/src/main/webapp/css/global.css | 31 +++++++++++++++++++--- 2 files changed, 32 insertions(+), 6 deletions(-) diff --git a/bow-ui/src/main/webapp/WEB-INF/jsp/editBookmark.jsp b/bow-ui/src/main/webapp/WEB-INF/jsp/editBookmark.jsp index 15e34f0..dab5b08 100644 --- a/bow-ui/src/main/webapp/WEB-INF/jsp/editBookmark.jsp +++ b/bow-ui/src/main/webapp/WEB-INF/jsp/editBookmark.jsp @@ -40,17 +40,18 @@ <s:hidden name="tagLine" value="%{tagLine}" /> <s:hidden name="fullTextLine" value="%{fullTextLine}" /> <s:hidden name="bookmarkId" value="%{bookmark.wikittyId}"/> + <s:textfield name="link" labelSeparator=" " key="popup.addurl.link" value="%{bookmark.link}" /> <s:textarea name="name" labelSeparator=" " key="popup.addurl.name" value="%{bookmark.description}" /> + <s:textfield name="tags" labelSeparator=" " key="popup.addurl.tags" + value="%{@org.chorem.bow.BookmarkUtils@getBookmarkTagsString(bookmark)}" /> <s:textfield name="privateAlias" labelSeparator=" " key="popup.addurl.alias.private" value="%{bookmark.privateAlias}" /> <s:textfield name="publicAlias" labelSeparator=" " key="popup.addurl.alias.public" value="%{bookmark.publicAlias}" /> - <s:textfield name="tags" labelSeparator=" " key="popup.addurl.tags" - value="%{@org.chorem.bow.BookmarkUtils@getBookmarkTagsString(bookmark)}" /> - <s:submit key="popup.commons.submit" name="submit" /> + <s:submit cssClass="submit-button" key="popup.commons.submit" name="submit" /> </s:form> </div> </div> diff --git a/bow-ui/src/main/webapp/css/global.css b/bow-ui/src/main/webapp/css/global.css index a32c92d..3e6bdb3 100644 --- a/bow-ui/src/main/webapp/css/global.css +++ b/bow-ui/src/main/webapp/css/global.css @@ -141,9 +141,9 @@ textarea{ } .errorMessage{ - font-weight:normal; - font-size:12px; - color:red; + font-weight:normal; + font-size:12px; + color:red; } #actionmessageHeader{ @@ -180,3 +180,28 @@ form, .wwFormTable{ font-size:11px; font-weight:bold; } + + +form#popupAddUrlForm input, form#popupAddUrlForm textarea { + width: 100%; + font-family: Helvetica, sans-serif; + font-size: 1.4em; + margin: 0px 0px 10px 0px; +} + +form#popupAddUrlForm textarea:focus, form#popupAddUrlForm input:focus { + border:1px solid #666; + background:#e3f1f1; +} + +form#popupAddUrlForm input.submit-button { + width: 100px; + float: right; +} + +form#popupAddUrlForm label { + float: left; + text-align: left; + margin-right: 15px; + width: 100px; +} -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.