CSS improvements for diff & file view
This commit is contained in:
parent
a27ee18428
commit
be79c9def9
2
Gemfile
2
Gemfile
|
@ -32,7 +32,7 @@ gem "httparty"
|
||||||
gem "charlock_holmes"
|
gem "charlock_holmes"
|
||||||
gem "foreman"
|
gem "foreman"
|
||||||
gem "omniauth-ldap"
|
gem "omniauth-ldap"
|
||||||
gem 'bootstrap-sass', "2.0.2"
|
gem 'bootstrap-sass', "2.0.3"
|
||||||
gem "colored"
|
gem "colored"
|
||||||
gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git"
|
gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git"
|
||||||
gem 'modularity'
|
gem 'modularity'
|
||||||
|
|
|
@ -81,7 +81,7 @@ GEM
|
||||||
awesome_print (1.0.2)
|
awesome_print (1.0.2)
|
||||||
bcrypt-ruby (3.0.1)
|
bcrypt-ruby (3.0.1)
|
||||||
blankslate (2.1.2.4)
|
blankslate (2.1.2.4)
|
||||||
bootstrap-sass (2.0.2)
|
bootstrap-sass (2.0.3)
|
||||||
builder (3.0.0)
|
builder (3.0.0)
|
||||||
capybara (1.1.2)
|
capybara (1.1.2)
|
||||||
mime-types (>= 1.16)
|
mime-types (>= 1.16)
|
||||||
|
@ -321,7 +321,7 @@ DEPENDENCIES
|
||||||
autotest
|
autotest
|
||||||
autotest-rails
|
autotest-rails
|
||||||
awesome_print
|
awesome_print
|
||||||
bootstrap-sass (= 2.0.2)
|
bootstrap-sass (= 2.0.3)
|
||||||
capybara
|
capybara
|
||||||
carrierwave
|
carrierwave
|
||||||
charlock_holmes
|
charlock_holmes
|
||||||
|
|
|
@ -458,9 +458,17 @@ input.git_clone_url {
|
||||||
margin-bottom:1em;
|
margin-bottom:1em;
|
||||||
|
|
||||||
.diff_file_header {
|
.diff_file_header {
|
||||||
padding:5px 5px;
|
padding:7px 5px;
|
||||||
border-bottom:1px solid #CCC;
|
border-bottom:1px solid #CCC;
|
||||||
background: #eee;
|
background: #eee;
|
||||||
|
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
||||||
|
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
|
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
|
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size:14px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.diff_file_content {
|
.diff_file_content {
|
||||||
overflow:auto;
|
overflow:auto;
|
||||||
|
@ -495,8 +503,8 @@ input.git_clone_url {
|
||||||
margin:0px;
|
margin:0px;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
border:none;
|
border:none;
|
||||||
background:#F7F7F7;
|
background:#EEE;
|
||||||
color:#aaa;
|
color:#666;
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
border-right: 1px solid #ccc;
|
border-right: 1px solid #ccc;
|
||||||
text-align:right;
|
text-align:right;
|
||||||
|
@ -510,7 +518,7 @@ input.git_clone_url {
|
||||||
float:left;
|
float:left;
|
||||||
width:35px;
|
width:35px;
|
||||||
font-weight:normal;
|
font-weight:normal;
|
||||||
color:#aaa;
|
color:#666;
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration:underline;
|
text-decoration:underline;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
.black .highlighttable {
|
.black .highlighttable {
|
||||||
background: #333;
|
|
||||||
td.linenos { border:none; }
|
td.linenos { border:none; }
|
||||||
pre { color: #eee }
|
pre { color: #eee }
|
||||||
.highlight { background: #333; border-left:1px solid #555; }
|
.highlight { background: #333; border-left:1px solid #555; }
|
||||||
|
|
|
@ -11,7 +11,7 @@ table.highlighttable
|
||||||
padding:0px;
|
padding:0px;
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
table-layout:fixed;
|
table-layout:fixed;
|
||||||
background: #F7F7F7;
|
background: #EEE;
|
||||||
}
|
}
|
||||||
|
|
||||||
td.code,
|
td.code,
|
||||||
|
@ -44,7 +44,7 @@ td.linenos{
|
||||||
|
|
||||||
td.linenos {
|
td.linenos {
|
||||||
/*background:#F7F7F7;*/
|
/*background:#F7F7F7;*/
|
||||||
color:#777;
|
color:#666;
|
||||||
padding:10px 0px 0px 10px;
|
padding:10px 0px 0px 10px;
|
||||||
float:left;
|
float:left;
|
||||||
width:45px;
|
width:45px;
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
@extend .right;
|
@extend .right;
|
||||||
|
|
||||||
.projects_box {
|
.projects_box {
|
||||||
|
h5 {
|
||||||
|
color:$style_color;
|
||||||
|
font-size:16px;
|
||||||
|
text-shadow: 0 1px 1px #fff;
|
||||||
|
}
|
||||||
@extend .leftbar;
|
@extend .leftbar;
|
||||||
@extend .ui-box;
|
@extend .ui-box;
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,14 +53,14 @@
|
||||||
padding: 9px 10px;
|
padding: 9px 10px;
|
||||||
height:18px;
|
height:18px;
|
||||||
|
|
||||||
.mode_text,
|
|
||||||
.file_icon {
|
|
||||||
color:#777;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file_name {
|
.file_name {
|
||||||
color:#474D57;
|
color:$style_color;
|
||||||
|
font-size:14px;
|
||||||
text-shadow: 0 1px 1px #fff;
|
text-shadow: 0 1px 1px #fff;
|
||||||
|
small {
|
||||||
|
color:#999;
|
||||||
|
font-size:13px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@
|
||||||
table.highlighttable .linenodiv pre {
|
table.highlighttable .linenodiv pre {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
padding-right: 4px;
|
padding-right: 4px;
|
||||||
color:#888;
|
color:#666;
|
||||||
}
|
}
|
||||||
|
|
||||||
#tree-slider {
|
#tree-slider {
|
||||||
|
|
|
@ -23,10 +23,12 @@
|
||||||
.diff_file
|
.diff_file
|
||||||
.diff_file_header
|
.diff_file_header
|
||||||
- if diff.deleted_file
|
- if diff.deleted_file
|
||||||
%strong{:id => "#{diff.old_path}"}= diff.old_path
|
%i.icon-file
|
||||||
|
%span{:id => "#{diff.old_path}"}= diff.old_path
|
||||||
- else
|
- else
|
||||||
= link_to tree_file_project_ref_path(@project, @commit.id, diff.new_path) do
|
= link_to tree_file_project_ref_path(@project, @commit.id, diff.new_path) do
|
||||||
%strong{:id => "#{diff.new_path}"}= diff.new_path
|
%i.icon-file
|
||||||
|
%span{:id => "#{diff.new_path}"}= diff.new_path
|
||||||
%br/
|
%br/
|
||||||
.diff_file_content
|
.diff_file_content
|
||||||
- if file.text?
|
- if file.text?
|
||||||
|
|
|
@ -6,5 +6,6 @@
|
||||||
= link_to dashboard_merge_requests_path, :class => "#{"current" if current_page?(dashboard_merge_requests_path)}", :id => "merge_requests_slide" do
|
= link_to dashboard_merge_requests_path, :class => "#{"current" if current_page?(dashboard_merge_requests_path)}", :id => "merge_requests_slide" do
|
||||||
Requests
|
Requests
|
||||||
%span.count= current_user.cared_merge_requests.count
|
%span.count= current_user.cared_merge_requests.count
|
||||||
= link_to "Search", search_path, :class => "#{"current" if current_page?(search_path)}"
|
= link_to search_path, :class => "#{"current" if current_page?(search_path)}" do
|
||||||
|
Search
|
||||||
= link_to "Help", help_path, :class => "#{"current" if controller.controller_name == "help"}"
|
= link_to "Help", help_path, :class => "#{"current" if controller.controller_name == "help"}"
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
= link_to @project.code, project_path(@project), :class => "home #{project_tab_class}", :title => "Project"
|
= link_to @project.code, project_path(@project), :class => "home #{project_tab_class}", :title => "Project"
|
||||||
- if @project.repo_exists?
|
- if @project.repo_exists?
|
||||||
- if can? current_user, :download_code, @project
|
- if can? current_user, :download_code, @project
|
||||||
= link_to "Files", tree_project_ref_path(@project, @project.root_ref), :class => tree_tab_class
|
= link_to tree_project_ref_path(@project, @project.root_ref), :class => tree_tab_class do
|
||||||
|
Files
|
||||||
= link_to "Commits", project_commits_path(@project), :class => commit_tab_class
|
= link_to "Commits", project_commits_path(@project), :class => commit_tab_class
|
||||||
|
|
||||||
= link_to "Network", graph_project_path(@project), :class => current_page?(:controller => "projects", :action => "graph", :id => @project) ? "current" : nil
|
= link_to "Network", graph_project_path(@project), :class => current_page?(:controller => "projects", :action => "graph", :id => @project) ? "current" : nil
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
:css
|
:css
|
||||||
.view_file
|
.view_file
|
||||||
.view_file_header
|
.view_file_header
|
||||||
.row
|
%i.icon-file
|
||||||
.span1.file_icon= image_tag(file.image? ? "file_img.png" : "file_txt.png")
|
%span.file_name
|
||||||
.span2.mode_text= file.mode
|
= name
|
||||||
.span5.file_name= name
|
%small #{file.mode}
|
||||||
.span3.right
|
%span.right
|
||||||
= link_to "raw", blob_project_ref_path(@project, @ref, :path => params[:path]), :class => "right", :target => "_blank"
|
= link_to "raw", blob_project_ref_path(@project, @ref, :path => params[:path]), :class => "right", :target => "_blank"
|
||||||
= link_to "history", project_commits_path(@project, :path => params[:path], :ref => @ref), :class => "right", :style => "margin-right:10px;"
|
= link_to "history", project_commits_path(@project, :path => params[:path], :ref => @ref), :class => "right", :style => "margin-right:10px;"
|
||||||
- if file.text?
|
- if file.text?
|
||||||
- if name =~ /\.(md|markdown)$/i
|
- if name =~ /\.(md|markdown)$/i
|
||||||
#tree-readme-holder
|
#tree-readme-holder
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
#tree-content-holder
|
#tree-content-holder
|
||||||
.view_file
|
.view_file
|
||||||
.view_file_header
|
.view_file_header
|
||||||
|
%i.icon-file
|
||||||
%strong= @snippet.file_name
|
%strong= @snippet.file_name
|
||||||
.view_file_content
|
.view_file_content
|
||||||
%div{:class => current_user.dark_scheme ? "black" : ""}
|
%div{:class => current_user.dark_scheme ? "black" : ""}
|
||||||
|
|
Loading…
Reference in a new issue