aboutsummaryrefslogtreecommitdiff
path: root/rhodecode
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2010-10-11 10:46:05 +0200
committerMarcin Kuzminski <marcin@python-works.com>2010-10-11 10:46:05 +0200
commit5f251cf45a250a8c2403cec5a3d7d86fff9583c6 (patch)
treea040ece35f2df9c0d1cf6690862576b46a3b5511 /rhodecode
parent5be57fb48aaf3ddaf4bbc8fcf1822f0361706b67 (diff)
fixed nasty bug when browsing on renames.
Turned off dirsize until new vcs release. some templating updates
Diffstat (limited to 'rhodecode')
-rw-r--r--rhodecode/public/css/style.css5
-rw-r--r--rhodecode/public/images/background.pngbin4828 -> 5630 bytes
-rw-r--r--rhodecode/public/images/header_background.pngbin5630 -> 0 bytes
-rw-r--r--rhodecode/public/images/menu_arrow.pngbin133 -> 0 bytes
-rw-r--r--rhodecode/templates/files/files_browser.html2
5 files changed, 3 insertions, 4 deletions
diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css
index 3e484c10..bc5c2ea1 100644
--- a/rhodecode/public/css/style.css
+++ b/rhodecode/public/css/style.css
@@ -55,7 +55,7 @@ body {
margin: 0;
padding: 0;
height: 100%;
- background: #d1d1d1 url("../images/background.png") repeat;
+ background: url("../images/background.png") repeat scroll 0 0 #B0B0B0;
font-family: Lucida Grande, Verdana, Lucida Sans Regular,
Lucida Sans Unicode, Arial, sans-serif;
font-size: 12px;
@@ -230,7 +230,6 @@ div.options a:hover {
#header {
margin: 0;
padding: 0 30px 0 30px;
- background: #b0b0b0 url("../images/header_background.png") repeat;
}
/*
@@ -2193,7 +2192,6 @@ div.form div.fields div.buttons input {
padding: 0px 30px;
clear: both;
overflow: hidden;
- background: url("../images/header_background.png") repeat scroll 0 0 #B0B0B0;
text-align: right;
}
@@ -3414,7 +3412,6 @@ div.gravatar {
min-height: 100%;
clear: both;
overflow: hidden;
- background: url("../images/header_background.png") repeat scroll 0 0 #B0B0B0
}
/*
diff --git a/rhodecode/public/images/background.png b/rhodecode/public/images/background.png
index 1ece980b..afb1380b 100644
--- a/rhodecode/public/images/background.png
+++ b/rhodecode/public/images/background.png
Binary files differ
diff --git a/rhodecode/public/images/header_background.png b/rhodecode/public/images/header_background.png
deleted file mode 100644
index afb1380b..00000000
--- a/rhodecode/public/images/header_background.png
+++ /dev/null
Binary files differ
diff --git a/rhodecode/public/images/menu_arrow.png b/rhodecode/public/images/menu_arrow.png
deleted file mode 100644
index 1c762247..00000000
--- a/rhodecode/public/images/menu_arrow.png
+++ /dev/null
Binary files differ
diff --git a/rhodecode/templates/files/files_browser.html b/rhodecode/templates/files/files_browser.html
index 2402e38c..858d35d3 100644
--- a/rhodecode/templates/files/files_browser.html
+++ b/rhodecode/templates/files/files_browser.html
@@ -49,7 +49,9 @@
${h.link_to(node.name,h.url('files_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=node.path),class_=file_class(node))}
</td>
<td>
+ %if node.is_file():
${h.format_byte_size(node.size,binary=True)}
+ %endif
</td>
<td>
%if node.is_file():