diff options
author | Olivier Lamy <olamy@apache.org> | 2012-02-25 22:45:24 +0000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2012-02-25 22:45:24 +0000 |
commit | 0519a2f99a41e70d713b3b610eb952fa47038102 (patch) | |
tree | 9431f82de97b987f0bc7909b8f8cf3b1057393f5 /archiva-modules/archiva-web/archiva-webapp-js | |
parent | 691a0ab3e96fbe15a640522633e1251ae4d6f28a (diff) | |
download | archiva-0519a2f99a41e70d713b3b610eb952fa47038102.tar.gz archiva-0519a2f99a41e70d713b3b610eb952fa47038102.zip |
use class well for forms
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1293714 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-web/archiva-webapp-js')
6 files changed, 9 insertions, 9 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/network-proxies.html b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/network-proxies.html index 66ade3647..7521aaef0 100644 --- a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/network-proxies.html +++ b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/network-proxies.html @@ -95,7 +95,7 @@ </script> <script id="network-proxy-edit-tmpl" type='text/x-jquery-tmpl'> - <form id="network-proxy-edit-form" class="form-horizontal"> + <form id="network-proxy-edit-form" class="well form-horizontal"> <fieldset id="network-proxy-edit-fieldset"> <div class="control-group"> <label class="control-label" for="id">${$.i18n.prop('id')}</label> diff --git a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/proxy-connectors.html b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/proxy-connectors.html index f61e55d34..1802cd341 100644 --- a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/proxy-connectors.html +++ b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/proxy-connectors.html @@ -135,7 +135,7 @@ <script id="proxy-connector-edit-form-tmpl" type='text/x-jquery-tmpl'> - <form id="proxy-connector-edit-form" class="form-horizontal"> + <form id="proxy-connector-edit-form" class="well form-horizontal"> <fieldset id="remote-repository-edit-fieldset"> <div class="control-group"> <label class="control-label" for="proxyId">${$.i18n.prop('proxy-connector.network-proxy.id')}</label> diff --git a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/repositories.html b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/repositories.html index 20ba29df0..9341a8bc7 100644 --- a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/repositories.html +++ b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/repositories.html @@ -150,7 +150,7 @@ </script> <script id="managed-repository-edit-tmpl" type='text/x-jquery-tmpl'> - <form id="managed-repository-edit-form" class="form-horizontal"> + <form id="managed-repository-edit-form" class="well form-horizontal"> <fieldset id="managed-repository-edit-fieldset"> <div class="control-group"> <label class="control-label" for="id">${$.i18n.prop('id')}</label> @@ -355,7 +355,7 @@ <script id="remote-repository-edit-tmpl" type='text/x-jquery-tmpl'> - <form id="remote-repository-edit-form" class="form-horizontal"> + <form id="remote-repository-edit-form" class="well form-horizontal"> <fieldset id="remote-repository-edit-fieldset"> <div class="control-group"> <label class="control-label" for="id">${$.i18n.prop('id')}</label> diff --git a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/repository-groups.html b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/repository-groups.html index 72167a77a..922b0b712 100644 --- a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/repository-groups.html +++ b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/repository-groups.html @@ -107,7 +107,7 @@ <script id="repository-group-edit-tmpl" type="text/html"> <div class="row-fluid"> {{if update}} - <div class="dotted span7"> + <div class="dotted span8"> <blockquote> ${repositoryGroup.id} <br/> @@ -117,8 +117,8 @@ </blockquote> </div> {{else}} - <div class="dotted span7"> - <form id="repository-group-edit-form" class=""> + <div class="dotted span8"> + <form id="repository-group-edit-form" class="well"> <fieldset id="repository-group-edit-fieldset"> <div class="control-group"> <label class="control-label" for="id">${$.i18n.prop('id')}</label> diff --git a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/topbar.html b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/topbar.html index f577e0947..ec1c024b9 100644 --- a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/topbar.html +++ b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/templates/topbar.html @@ -49,7 +49,7 @@ </li> <li class="pull-right"> <form class="form-search pull-right" action=""> - <input type="text" placeholder="Search" /> + <input type="text" class="search-query" placeholder="Search" /> </form> </li> </ul> diff --git a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/user-edit.html b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/user-edit.html index 362d2874f..303298f67 100644 --- a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/user-edit.html +++ b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/user-edit.html @@ -30,7 +30,7 @@ <div id="user-create-div" class="active pill-pane"> <div class="row-fluid"> <div class="span8 columns"> - <form id="user-create" class="form-horizontal" data-bind="submit: save"> + <form id="user-create" class="well form-horizontal" data-bind="submit: save"> <fieldset id="user-create-fieldset"> <div class="control-group"> <label class="control-label" for="username">${$.i18n.prop('username')}</label> |