remove unnecessary %br/%hr and styles
This commit is contained in:
parent
36fd4de825
commit
bea14d6c28
10 changed files with 3 additions and 37 deletions
|
@ -17,9 +17,6 @@
|
||||||
&.s24 { width: 24px; height: 24px; margin-right: 8px; }
|
&.s24 { width: 24px; height: 24px; margin-right: 8px; }
|
||||||
&.s26 { width: 26px; height: 26px; margin-right: 8px; }
|
&.s26 { width: 26px; height: 26px; margin-right: 8px; }
|
||||||
&.s32 { width: 32px; height: 32px; margin-right: 10px; }
|
&.s32 { width: 32px; height: 32px; margin-right: 10px; }
|
||||||
|
&.s60 { width: 60px; height: 60px; margin-right: 12px; }
|
||||||
&.s90 { width: 90px; height: 90px; margin-right: 15px; }
|
&.s90 { width: 90px; height: 90px; margin-right: 15px; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
img.lil_av { padding-left: 4px; padding-right: 3px; }
|
|
||||||
img.small { width: 80px; }
|
|
||||||
|
|
|
@ -1,26 +1,3 @@
|
||||||
.profile_history {
|
|
||||||
.event_feed {
|
|
||||||
min-height: 20px;
|
|
||||||
.avatar {
|
|
||||||
width: 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.profile_avatar_holder {
|
|
||||||
float: left;
|
|
||||||
width: 60px;
|
|
||||||
height: 60px;
|
|
||||||
margin-right: 20px;
|
|
||||||
img {
|
|
||||||
width: 60px;
|
|
||||||
height: 60px;
|
|
||||||
background: #fff;
|
|
||||||
padding: 1px;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.save-status-fixed {
|
.save-status-fixed {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
left: 20px;
|
left: 20px;
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
%h3.page-title Setup your notification level
|
%h3.page-title Setup your notification level
|
||||||
|
|
||||||
%br
|
|
||||||
|
|
||||||
%p.light
|
%p.light
|
||||||
%strong Disabled
|
%strong Disabled
|
||||||
– You will not get any notifications via email
|
– You will not get any notifications via email
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
.profile_avatar_holder
|
= image_tag gravatar_icon(@user.email, 60), alt: '', class: 'avatar s60'
|
||||||
= image_tag gravatar_icon(@user.email, 90), alt: ''
|
|
||||||
%h3.page-title
|
%h3.page-title
|
||||||
= @user.name
|
= @user.name
|
||||||
%br
|
%br
|
||||||
|
|
|
@ -2,6 +2,5 @@
|
||||||
|
|
||||||
%h3.page-title
|
%h3.page-title
|
||||||
Compare View
|
Compare View
|
||||||
%hr
|
|
||||||
|
|
||||||
= render "form"
|
= render "form"
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
%h3.page-title
|
%h3.page-title
|
||||||
Compare View
|
Compare View
|
||||||
%hr
|
|
||||||
|
|
||||||
= render "form"
|
= render "form"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
%h3.page-title Services
|
%h3.page-title Services
|
||||||
%br
|
|
||||||
|
|
||||||
%ul.bordered-list
|
%ul.bordered-list
|
||||||
- @services.each do |service|
|
- @services.each do |service|
|
||||||
|
|
|
@ -8,6 +8,5 @@
|
||||||
by
|
by
|
||||||
= image_tag gravatar_icon(@snippet.author_email), class: "avatar avatar-inline s16"
|
= image_tag gravatar_icon(@snippet.author_email), class: "avatar avatar-inline s16"
|
||||||
= @snippet.author_name
|
= @snippet.author_name
|
||||||
%br
|
|
||||||
%div= render 'projects/snippets/blob'
|
%div= render 'projects/snippets/blob'
|
||||||
%div#notes= render "projects/notes/notes_with_form"
|
%div#notes= render "projects/notes/notes_with_form"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
%h3.page-title
|
%h3.page-title
|
||||||
= "New Team member(s)"
|
= "New Team member(s)"
|
||||||
%hr
|
|
||||||
= form_for @user_project_relation, as: :team_member, url: project_team_members_path(@project) do |f|
|
= form_for @user_project_relation, as: :team_member, url: project_team_members_path(@project) do |f|
|
||||||
-if @user_project_relation.errors.any?
|
-if @user_project_relation.errors.any?
|
||||||
.alert.alert-error
|
.alert.alert-error
|
||||||
|
|
|
@ -12,5 +12,4 @@
|
||||||
by
|
by
|
||||||
= image_tag gravatar_icon(@snippet.author_email), class: "avatar avatar-inline s16"
|
= image_tag gravatar_icon(@snippet.author_email), class: "avatar avatar-inline s16"
|
||||||
= @snippet.author_name
|
= @snippet.author_name
|
||||||
%br
|
|
||||||
%div= render 'blob'
|
%div= render 'blob'
|
||||||
|
|
Loading…
Reference in a new issue