Fix branch selector. Few css fixed also
This commit is contained in:
parent
93401ef988
commit
3f9749dd86
6 changed files with 9 additions and 7 deletions
|
@ -27,6 +27,7 @@ body.login-page{
|
||||||
-moz-border-radius-topright: 5px;
|
-moz-border-radius-topright: 5px;
|
||||||
border-top-left-radius: 5px;
|
border-top-left-radius: 5px;
|
||||||
border-top-right-radius: 5px;
|
border-top-right-radius: 5px;
|
||||||
|
margin-bottom:0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-box input.text.bottom{
|
.login-box input.text.bottom{
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
p { color:$style_color; }
|
p { color:$style_color; }
|
||||||
.note-author { color: $style_color;}
|
.note-author { color: $style_color;}
|
||||||
|
|
||||||
.note-title { margin-left:50px; padding-top: 5px;}
|
.note-title { padding-top: 5px;}
|
||||||
.avatar {
|
.avatar {
|
||||||
margin-top:3px;
|
margin-top:3px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,6 +37,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
.app_logo {
|
.app_logo {
|
||||||
|
width:160px;
|
||||||
a {
|
a {
|
||||||
h1 {
|
h1 {
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
|
@ -56,7 +57,7 @@
|
||||||
.separator {
|
.separator {
|
||||||
width: 1px;
|
width: 1px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
margin: 0 9px;
|
margin: 0 10px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: #222;
|
background: #222;
|
||||||
border-left: 1px solid #333;
|
border-left: 1px solid #333;
|
||||||
|
@ -73,6 +74,7 @@
|
||||||
background:none;
|
background:none;
|
||||||
margin-left:8px;
|
margin-left:8px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
|
font-weight:bold;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
color:#ccc;
|
color:#ccc;
|
||||||
&:hover {
|
&:hover {
|
||||||
|
@ -81,6 +83,7 @@
|
||||||
border: none;
|
border: none;
|
||||||
box-shadow:none;
|
box-shadow:none;
|
||||||
text-shadow: 0 -1px 0 #000000;
|
text-shadow: 0 -1px 0 #000000;
|
||||||
|
border-left: 1px solid #333;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -115,7 +118,7 @@
|
||||||
.project_name {
|
.project_name {
|
||||||
line-height:34px;
|
line-height:34px;
|
||||||
font-size:22px;
|
font-size:22px;
|
||||||
color:#fff;
|
color:#ccc;
|
||||||
text-shadow: 0 1px 1px #111;
|
text-shadow: 0 1px 1px #111;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
%li{id: dom_id(note), class: "note"}
|
%li{id: dom_id(note), class: "note"}
|
||||||
= image_tag gravatar_icon(note.author.email), class: "avatar"
|
= image_tag gravatar_icon(note.author.email), class: "avatar s32"
|
||||||
%div.note-author
|
%div.note-author
|
||||||
%strong= note.author_name
|
%strong= note.author_name
|
||||||
= link_to "##{dom_id(note)}", name: dom_id(note) do
|
= link_to "##{dom_id(note)}", name: dom_id(note) do
|
||||||
|
|
|
@ -51,8 +51,6 @@
|
||||||
|
|
||||||
:javascript
|
:javascript
|
||||||
$(function(){
|
$(function(){
|
||||||
$('select#branch').selectmenu({style:'popup', width:200});
|
|
||||||
$('select#tag').selectmenu({style:'popup', width:200});
|
|
||||||
$('.project-refs-select').chosen();
|
$('.project-refs-select').chosen();
|
||||||
|
|
||||||
history.pushState({ path: this.path }, '', "#{@history_path}");
|
history.pushState({ path: this.path }, '', "#{@history_path}");
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
- if tm
|
- if tm
|
||||||
%strong= link_to "[#{tm.user_name}]", project_team_member_path(@project, tm)
|
= link_to "[#{tm.user_name}]", project_team_member_path(@project, tm)
|
||||||
= link_to_gfm truncate(content_commit.title, length: tm ? 30 : 50), project_commit_path(@project, content_commit.id), class: "tree-commit-link"
|
= link_to_gfm truncate(content_commit.title, length: tm ? 30 : 50), project_commit_path(@project, content_commit.id), class: "tree-commit-link"
|
||||||
|
|
Loading…
Add table
Reference in a new issue