diff options
author | Go MAEDA <maeda@farend.jp> | 2019-01-12 02:51:41 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-01-12 02:51:41 +0000 |
commit | ca043789fd746311574e293783099dc16930dcb2 (patch) | |
tree | a9a5f023b216e78e92f035b7480aa8e70390007a /app/views/users | |
parent | 4139b36011a5c9c54376dee0839f6f50a747a0d8 (diff) | |
download | redmine-ca043789fd746311574e293783099dc16930dcb2.tar.gz redmine-ca043789fd746311574e293783099dc16930dcb2.zip |
Wrap "splitcontentright" and "splitcontentleft" containers with a flexbox (#30168).
Patch by Max Johansson.
git-svn-id: http://svn.redmine.org/redmine/trunk@17790 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/users')
-rw-r--r-- | app/views/users/_form.html.erb | 2 | ||||
-rw-r--r-- | app/views/users/show.html.erb | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/app/views/users/_form.html.erb b/app/views/users/_form.html.erb index 413e3550b..ce5b1f6c7 100644 --- a/app/views/users/_form.html.erb +++ b/app/views/users/_form.html.erb @@ -2,6 +2,7 @@ <div id="user_form"> <!--[form:user]--> +<div class="splitcontent"> <div class="splitcontentleft"> <fieldset class="box tabular"> <legend><%=l(:label_information_plural)%></legend> @@ -52,6 +53,7 @@ </fieldset> </div> </div> +</div> <div style="clear:left;"></div> <!--[eoform:user]--> diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb index 9dee5a886..b7ceba01a 100644 --- a/app/views/users/show.html.erb +++ b/app/views/users/show.html.erb @@ -4,6 +4,7 @@ <h2><%= avatar @user, :size => "50" %> <%= @user.name %></h2> +<div class="splitcontent"> <div class="splitcontentleft"> <ul> <li><%=l(:field_login)%>: <%= @user.login %></li> @@ -61,5 +62,5 @@ <% end %> <%= call_hook :view_account_right_bottom, :user => @user %> </div> - +</div> <% html_title @user.name %> |