correct padding in issue form and in profile form
This commit is contained in:
parent
06e916743e
commit
eb5fa8344e
|
@ -87,6 +87,17 @@ h2{margin: 1.5em 0}
|
||||||
/* Forms */
|
/* Forms */
|
||||||
input[type="text"]:focus, input[type="password"]:focus { outline: none; }
|
input[type="text"]:focus, input[type="password"]:focus { outline: none; }
|
||||||
input.text{border: 1px solid #ccc; border-radius: 4px; display: block; padding: 10px}
|
input.text{border: 1px solid #ccc; border-radius: 4px; display: block; padding: 10px}
|
||||||
|
|
||||||
|
.form-row{
|
||||||
|
padding: 0px 0px 10px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-row label{
|
||||||
|
font-weight:bold;
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0px 0px 5px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
/* eo Forms */
|
/* eo Forms */
|
||||||
|
|
||||||
/* Tables */
|
/* Tables */
|
||||||
|
|
|
@ -5,21 +5,21 @@
|
||||||
- @issue.errors.full_messages.each do |msg|
|
- @issue.errors.full_messages.each do |msg|
|
||||||
%li= msg
|
%li= msg
|
||||||
|
|
||||||
.span-8
|
.form-row
|
||||||
= f.label :title
|
= f.label :title
|
||||||
= f.text_area :title, :style => "width:450px; height:100px", :maxlength => 255
|
= f.text_area :title, :style => "width:450px; height:100px", :maxlength => 255
|
||||||
.span-8
|
.form-row
|
||||||
= f.label :assignee_id
|
= f.label :assignee_id
|
||||||
= f.select(:assignee_id, @project.users.all.collect {|p| [ p.name, p.id ] }, { :include_blank => "Select user" })
|
= f.select(:assignee_id, @project.users.all.collect {|p| [ p.name, p.id ] }, { :include_blank => "Select user" })
|
||||||
.span-1
|
.form-row
|
||||||
= f.label :critical, "Critical"
|
= f.label :critical, "Critical"
|
||||||
%br
|
%br
|
||||||
= f.check_box :critical
|
= f.check_box :critical
|
||||||
- unless @issue.new_record?
|
- unless @issue.new_record?
|
||||||
.span-2.right
|
.form-row
|
||||||
= f.label :closed
|
= f.label :closed
|
||||||
%br
|
%br
|
||||||
= f.check_box :closed
|
= f.check_box :closed
|
||||||
%hr
|
%hr
|
||||||
.span-6
|
.form-row
|
||||||
= f.submit 'Save', :class => "lbutton vm"
|
= f.submit 'Save', :class => "lbutton vm"
|
||||||
|
|
|
@ -16,15 +16,15 @@
|
||||||
- @user.errors.full_messages.each do |msg|
|
- @user.errors.full_messages.each do |msg|
|
||||||
%li= msg
|
%li= msg
|
||||||
|
|
||||||
.div
|
.form-row
|
||||||
= f.label :skype
|
= f.label :skype
|
||||||
%br
|
%br
|
||||||
= f.text_field :skype
|
= f.text_field :skype
|
||||||
.div
|
.form-row
|
||||||
= f.label :linkedin
|
= f.label :linkedin
|
||||||
%br
|
%br
|
||||||
= f.text_field :linkedin
|
= f.text_field :linkedin
|
||||||
.div
|
.form-row
|
||||||
= f.label :twitter
|
= f.label :twitter
|
||||||
%br
|
%br
|
||||||
= f.text_field :twitter
|
= f.text_field :twitter
|
||||||
|
|
Loading…
Reference in a new issue