Branches pages polished. few css improvements
This commit is contained in:
parent
2b319d0496
commit
02dc256514
10 changed files with 51 additions and 20 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
body {
|
||||||
|
margin-bottom:20px;
|
||||||
|
}
|
||||||
a {
|
a {
|
||||||
outline: none;
|
outline: none;
|
||||||
color: $link_color;
|
color: $link_color;
|
||||||
|
@ -67,6 +70,10 @@ h3, h4, h5, h6 {
|
||||||
line-height: 36px;
|
line-height: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size:14px;
|
||||||
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
background:#FCEEC1;
|
background:#FCEEC1;
|
||||||
color:$style_color;
|
color:$style_color;
|
||||||
|
|
|
@ -31,6 +31,11 @@ $hover: #FDF5D9;
|
||||||
box-shadow: 0 0 3px #ddd;
|
box-shadow: 0 0 3px #ddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@mixin border-radius($radius) {
|
||||||
|
-moz-border-radius: $radius;
|
||||||
|
-webkit-border-radius: $radius;
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
||||||
|
|
||||||
@mixin round-borders-bottom($radius) {
|
@mixin round-borders-bottom($radius) {
|
||||||
border-top: 1px solid #eaeaea;
|
border-top: 1px solid #eaeaea;
|
||||||
|
|
|
@ -87,6 +87,12 @@
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin-right:10px;
|
margin-right:10px;
|
||||||
float:right;
|
float:right;
|
||||||
|
background: #EEE;
|
||||||
|
@include border-radius(5px);
|
||||||
|
border: 1px solid #DDD;
|
||||||
|
img {
|
||||||
|
vertical-align:top;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.project_name {
|
.project_name {
|
||||||
|
|
|
@ -8,10 +8,24 @@
|
||||||
%li forced code review before merge to protected branches
|
%li forced code review before merge to protected branches
|
||||||
%p Read more about project permissions #{link_to "here", help_permissions_path, :class => "vlink"}
|
%p Read more about project permissions #{link_to "here", help_permissions_path, :class => "vlink"}
|
||||||
|
|
||||||
|
- if can? current_user, :admin_project, @project
|
||||||
|
= form_for [@project, @protected_branch] do |f|
|
||||||
|
-if @protected_branch.errors.any?
|
||||||
|
.alert-message.block-message.error
|
||||||
|
%ul
|
||||||
|
- @protected_branch.errors.full_messages.each do |msg|
|
||||||
|
%li= msg
|
||||||
|
|
||||||
|
.entry.clearfix
|
||||||
|
= f.label :name, "Branch"
|
||||||
|
.span3
|
||||||
|
= f.select(:name, @project.open_branches.map { |br| [br.name, br.name] } , { :include_blank => "-- Select branch" }, { :class => "span3" })
|
||||||
|
|
||||||
|
= f.submit 'Protect', :class => "primary btn"
|
||||||
|
|
||||||
|
|
||||||
- unless @branches.empty?
|
- unless @branches.empty?
|
||||||
%table.table-striped
|
%table.admin-table
|
||||||
%thead
|
%thead
|
||||||
%tr
|
%tr
|
||||||
%th Name
|
%th Name
|
||||||
|
@ -36,19 +50,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- if can? current_user, :admin_project, @project
|
|
||||||
= form_for [@project, @protected_branch] do |f|
|
|
||||||
-if @protected_branch.errors.any?
|
|
||||||
.alert-message.block-message.error
|
|
||||||
%ul
|
|
||||||
- @protected_branch.errors.full_messages.each do |msg|
|
|
||||||
%li= msg
|
|
||||||
|
|
||||||
.clearfix
|
|
||||||
= f.label :name
|
|
||||||
.input= f.select(:name, @project.open_branches.map { |br| [br.name, br.name] } , { :include_blank => "Select branch" }, { :style => "width:300px" })
|
|
||||||
.actions
|
|
||||||
= f.submit 'Add', :class => "primary btn"
|
|
||||||
|
|
||||||
|
|
||||||
:javascript
|
:javascript
|
||||||
|
|
|
@ -6,5 +6,5 @@
|
||||||
= hidden_field_tag :path, params[:path]
|
= hidden_field_tag :path, params[:path]
|
||||||
%li{:class => "#{'active' if (controller.controller_name == "refs") }"}
|
%li{:class => "#{'active' if (controller.controller_name == "refs") }"}
|
||||||
= link_to tree_project_ref_path(@project, @ref) do
|
= link_to tree_project_ref_path(@project, @ref) do
|
||||||
Code
|
Source
|
||||||
|
|
||||||
|
|
|
@ -9,4 +9,3 @@
|
||||||
%li{:class => ("active" if current_page?(branches_project_repository_path(@project)))}
|
%li{:class => ("active" if current_page?(branches_project_repository_path(@project)))}
|
||||||
= link_to branches_project_repository_path(@project) do
|
= link_to branches_project_repository_path(@project) do
|
||||||
All
|
All
|
||||||
%hr
|
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
= render "repositories/branches_head"
|
= render "repositories/branches_head"
|
||||||
- unless @branches.empty?
|
- unless @branches.empty?
|
||||||
%table.table-striped.borders
|
%table.admin-table
|
||||||
|
%thead
|
||||||
|
%tr
|
||||||
|
%th Name
|
||||||
|
%th Last commit
|
||||||
|
%th Updated at
|
||||||
|
%th
|
||||||
|
|
||||||
%tbody
|
%tbody
|
||||||
- @branches.each do |branch|
|
- @branches.each do |branch|
|
||||||
= render "repositories/branch", :branch => branch
|
= render "repositories/branch", :branch => branch
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
= render "branches_head"
|
= render "branches_head"
|
||||||
|
|
||||||
%table.zebra-striped.borders
|
%table.admin-table
|
||||||
|
%thead
|
||||||
|
%tr
|
||||||
|
%th Name
|
||||||
|
%th Last commit
|
||||||
|
%th Updated at
|
||||||
|
%th
|
||||||
- @activities.each do |update|
|
- @activities.each do |update|
|
||||||
= render "repositories/branch", :branch => update.head
|
= render "repositories/branch", :branch => update.head
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
.input= f.select :expires_at, lifetime_select_options, {}, :style => "width:200px;"
|
.input= f.select :expires_at, lifetime_select_options, {}, :style => "width:200px;"
|
||||||
.clearfix
|
.clearfix
|
||||||
= f.label :content, "Code"
|
= f.label :content, "Code"
|
||||||
= f.text_area :content, :class => "xxlarge"
|
.input= f.text_area :content, :class => "span8"
|
||||||
|
|
||||||
.actions
|
.actions
|
||||||
= f.submit 'Save', :class => "primary btn"
|
= f.submit 'Save', :class => "primary btn"
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
= 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"
|
||||||
%strong= truncate(user.name, :lenght => 40)
|
%strong= truncate(user.name, :lenght => 40)
|
||||||
.prepend-top-10= user.email
|
%div.cgray= user.email
|
||||||
|
|
||||||
.span3
|
.span3
|
||||||
= form_for(member, :as => :team_member, :url => project_team_member_path(@project, member)) do |f|
|
= form_for(member, :as => :team_member, :url => project_team_member_path(@project, member)) do |f|
|
||||||
|
|
Loading…
Reference in a new issue