summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-24 13:38:45 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-24 13:38:45 +0000
commitbc4415850105225b101cdea075b04d44b8700108 (patch)
treeff4711655b34aa5aca5528665d7c18db2583c879 /public
parent918123cd0663803a6e392c6c9ce209d10c8e5603 (diff)
downloadredmine-bc4415850105225b101cdea075b04d44b8700108.tar.gz
redmine-bc4415850105225b101cdea075b04d44b8700108.zip
svn browser merged in trunk
git-svn-id: http://redmine.rubyforge.org/svn/trunk@106 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r--public/images/file.pngbin0 -> 278 bytes
-rw-r--r--public/images/folder.pngbin0 -> 1021 bytes
-rw-r--r--public/stylesheets/application.css2
-rw-r--r--public/stylesheets/scm.css66
4 files changed, 67 insertions, 1 deletions
diff --git a/public/images/file.png b/public/images/file.png
new file mode 100644
index 000000000..7a0871941
--- /dev/null
+++ b/public/images/file.png
Binary files differ
diff --git a/public/images/folder.png b/public/images/folder.png
new file mode 100644
index 000000000..32175ebd4
--- /dev/null
+++ b/public/images/folder.png
Binary files differ
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index d85b025fe..25b46c85a 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -473,7 +473,7 @@ float: right;
font-size: 0.8em;
}
-.contextual select {
+.contextual select, .contextual input {
font-size: 1em;
}
diff --git a/public/stylesheets/scm.css b/public/stylesheets/scm.css
new file mode 100644
index 000000000..658fb9050
--- /dev/null
+++ b/public/stylesheets/scm.css
@@ -0,0 +1,66 @@
+
+
+div.square {
+ border: 1px solid #999;
+ float: left;
+ margin: .4em .5em 0 0;
+ overflow: hidden;
+ width: .6em; height: .6em;
+}
+
+div.action_M { background: #fd8 }
+div.action_D { background: #f88 }
+div.action_A { background: #bfb }
+
+table.list {
+ width:100%;
+ border-collapse: collapse;
+ border: 1px dotted #d0d0d0;
+ margin-bottom: 6px;
+}
+
+table.list thead th {
+ text-align: center;
+ background: #eee;
+ border: 1px solid #d7d7d7;
+}
+
+table.list tbody th {
+ font-weight: normal;
+ text-align: center;
+ background: #eed;
+ border: 1px solid #d7d7d7;
+}
+
+.icon {
+ background-position: 0% 40%;
+ background-repeat: no-repeat;
+ padding-left: 20px;
+}
+
+.folder { background-image: url(../images/folder.png); }
+.file { background-image: url(../images/file.png); }
+
+
+
+tr.spacing {
+ border: 1px solid #d7d7d7;
+}
+
+.line-num {
+ border: 1px solid #d7d7d7;
+ font-size: 0.8em;
+ text-align: right;
+ width: 3em;
+ padding-right: 3px;
+}
+
+.line-code {
+ font-family: "Courier New", monospace;
+ font-size: 1em;
+}
+
+table p {
+ margin:0;
+ padding:0;
+} \ No newline at end of file