Refactoring & minor css changes
This commit is contained in:
parent
7fa6a23416
commit
f088eaa972
6 changed files with 21 additions and 4 deletions
|
@ -3,6 +3,11 @@ v 2.8.0
|
||||||
- Bulk issues update
|
- Bulk issues update
|
||||||
- Issues API
|
- Issues API
|
||||||
- Cucumber coverage increased
|
- Cucumber coverage increased
|
||||||
|
- Post-receive files fixed
|
||||||
|
- UI improved
|
||||||
|
- Application cleanup
|
||||||
|
- more cucumber
|
||||||
|
- capybara-webkit + headless
|
||||||
|
|
||||||
v 2.7.0
|
v 2.7.0
|
||||||
- Issue Labels
|
- Issue Labels
|
||||||
|
|
|
@ -330,16 +330,20 @@ img.avatar {
|
||||||
float:left;
|
float:left;
|
||||||
margin-right:15px;
|
margin-right:15px;
|
||||||
width:40px;
|
width:40px;
|
||||||
border:2px solid #ddd;
|
border:1px solid #ddd;
|
||||||
|
padding:1px;
|
||||||
|
|
||||||
&.s16 {
|
&.s16 {
|
||||||
width:16px;
|
width:16px;
|
||||||
|
height:16px;
|
||||||
}
|
}
|
||||||
&.s24 {
|
&.s24 {
|
||||||
width:24px;
|
width:24px;
|
||||||
|
height:24px;
|
||||||
}
|
}
|
||||||
&.s32 {
|
&.s32 {
|
||||||
width:32px;
|
width:32px;
|
||||||
|
height:32px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,10 @@
|
||||||
|
|
||||||
.fbtn {
|
.fbtn {
|
||||||
.btn {
|
.btn {
|
||||||
|
i {
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
}
|
||||||
margin-left:8px;
|
margin-left:8px;
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #595D63), to(#31363E));
|
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #595D63), to(#31363E));
|
||||||
background-image: -webkit-linear-gradient(#595D63 6.6%, #31363E);
|
background-image: -webkit-linear-gradient(#595D63 6.6%, #31363E);
|
||||||
|
@ -32,6 +36,10 @@
|
||||||
background-image: -moz-linear-gradient(#595D63 6.6%, #202227);
|
background-image: -moz-linear-gradient(#595D63 6.6%, #202227);
|
||||||
background-image: -o-linear-gradient(#595D63 6.6%, #202227);
|
background-image: -o-linear-gradient(#595D63 6.6%, #202227);
|
||||||
background-position:0 0;
|
background-position:0 0;
|
||||||
|
color:#fff;
|
||||||
|
i {
|
||||||
|
@extend .icon-white;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
border: 1px solid #31363E;
|
border: 1px solid #31363E;
|
||||||
|
|
|
@ -2,7 +2,7 @@ require "grit"
|
||||||
|
|
||||||
class Project < ActiveRecord::Base
|
class Project < ActiveRecord::Base
|
||||||
include Repository
|
include Repository
|
||||||
include ProjectPush
|
include PushObserver
|
||||||
include Authority
|
include Authority
|
||||||
include Team
|
include Team
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module ProjectPush
|
module PushObserver
|
||||||
def observe_push(oldrev, newrev, ref, user)
|
def observe_push(oldrev, newrev, ref, user)
|
||||||
data = post_receive_data(oldrev, newrev, ref, user)
|
data = post_receive_data(oldrev, newrev, ref, user)
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
%span.label Blocked
|
%span.label Blocked
|
||||||
|
|
||||||
= link_to project_team_member_path(@project, member), title: user.name, class: "dark" do
|
= link_to project_team_member_path(@project, member), title: user.name, class: "dark" do
|
||||||
= image_tag gravatar_icon(user.email, 40), class: "avatar"
|
= image_tag gravatar_icon(user.email, 40), class: "avatar s32"
|
||||||
= link_to project_team_member_path(@project, member), title: user.name, class: "dark" do
|
= link_to project_team_member_path(@project, member), title: user.name, class: "dark" do
|
||||||
%strong= truncate(user.name, lenght: 40)
|
%strong= truncate(user.name, lenght: 40)
|
||||||
%br
|
%br
|
||||||
|
|
Loading…
Reference in a new issue