##// END OF EJS Templates
Extract code to render nested listed of projects in an helper (#11539)....
Extract code to render nested listed of projects in an helper (#11539). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10188 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9949:42570c442616
r10005:0a6c1d9c136b
Show More
scm.css
100 lines | 3.3 KiB | text/css | LassoCssLexer
Jean-Philippe Lang
Added svn:eol-style native property for various files...
r416
Toshi MARUYAMA
scm: view: add parents and children on the revision page (#5501)...
r7601 table.revision-info td {
margin: 0px;
padding: 0px;
}
Etienne Massip
Added a min-width to revision graph holder style to fix its rendering in Chrome (#11061)....
r9649 div.revision-graph { position: absolute; min-width: 1px; }
Etienne Massip
Integrated revision graph into scmid column....
r8730
Jean-Philippe Lang
Render the commit changes list as a tree (#1896)....
r1868 div.changeset-changes ul { margin: 0; padding: 0; }
div.changeset-changes ul > ul { margin-left: 18px; padding: 0; }
Toshi MARUYAMA
remove trailing white-spaces from scm.css...
r7671 li.change {
Jean-Philippe Lang
Render the commit changes list as a tree (#1896)....
r1868 list-style-type:none;
Toshi MARUYAMA
remove trailing white-spaces from scm.css...
r7671 background-image: url(../images/bullet_black.png);
Jean-Philippe Lang
Render the commit changes list as a tree (#1896)....
r1868 background-position: 1px 1px;
background-repeat: no-repeat;
padding-top: 1px;
padding-bottom: 1px;
padding-left: 20px;
margin: 0;
}
li.change.folder { background-image: url(../images/folder_open.png); }
li.change.folder.change-A { background-image: url(../images/folder_open_add.png); }
li.change.folder.change-M { background-image: url(../images/folder_open_orange.png); }
li.change.change-A { background-image: url(../images/bullet_add.png); }
li.change.change-M { background-image: url(../images/bullet_orange.png); }
li.change.change-C { background-image: url(../images/bullet_blue.png); }
li.change.change-R { background-image: url(../images/bullet_purple.png); }
li.change.change-D { background-image: url(../images/bullet_delete.png); }
li.change .copied-from { font-style: italic; color: #999; font-size: 0.9em; }
li.change .copied-from:before { content: " - "}
#changes-legend { float: right; font-size: 0.8em; margin: 0; }
#changes-legend li { float: left; background-position: 5px 0; }
Jean-Philippe Lang
Slight changes to syntax highlightment styles....
r9949 table.filecontent { border: 1px solid #e2e2e2; border-collapse: collapse; width:98%; background-color: #fafafa; }
table.filecontent th { border: 1px solid #e2e2e2; background-color: #eee; }
Toshi MARUYAMA
replace tabs to spaces at public/stylesheets/scm.css...
r7511 table.filecontent th.filename { background-color: #e4e4d4; text-align: left; padding: 0.2em;}
Jean-Philippe Lang
Slight changes to diff view and style....
r1509 table.filecontent tr.spacing th { text-align:center; }
table.filecontent tr.spacing td { height: 0.4em; background: #EAF2F5;}
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 table.filecontent th.line-num {
Jean-Philippe Lang
Slight changes to syntax highlightment styles....
r9949 border: 1px solid #e2e2e2;
Toshi MARUYAMA
replace tabs to spaces at public/stylesheets/scm.css...
r7511 font-size: 0.8em;
text-align: right;
width: 2%;
padding-right: 3px;
color: #999;
Toshi MARUYAMA
replace tabs to spaces at public/stylesheets/scm.css...
r8423 user-select: none;
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
Jean-Philippe Lang
Added svn:eol-style native property for various files...
r416 }
Jean-Philippe Lang
Change to line #'s links in file/repo viewer (#2835)....
r2487 table.filecontent th.line-num a {
Toshi MARUYAMA
replace tabs to spaces at public/stylesheets/scm.css...
r7511 text-decoration: none;
color: inherit;
Jean-Philippe Lang
Change to line #'s links in file/repo viewer (#2835)....
r2487 }
Jean-Philippe Lang
Added wiki annotate view. It's accessible for each version from the page history view. ...
r1007 table.filecontent td.line-code pre {
Jean-Philippe Lang
Replace the hardcoded "CodeRay" css class name for highlighted elements....
r3471 margin: 0px;
Jean-Philippe Lang
Removed non standard values for "white-space" CSS property....
r7810 white-space: pre-wrap;
Jean-Philippe Lang
Added wiki annotate view. It's accessible for each version from the page history view. ...
r1007 }
Jean-Philippe Lang
Added svn:eol-style native property for various files...
r416
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 /* 12 different colors for the annonate view */
table.annotate tr.bloc-0 {background: #FFFFBF;}
table.annotate tr.bloc-1 {background: #EABFFF;}
table.annotate tr.bloc-2 {background: #BFFFFF;}
table.annotate tr.bloc-3 {background: #FFD9BF;}
table.annotate tr.bloc-4 {background: #E6FFBF;}
table.annotate tr.bloc-5 {background: #BFCFFF;}
table.annotate tr.bloc-6 {background: #FFBFEF;}
table.annotate tr.bloc-7 {background: #FFE6BF;}
table.annotate tr.bloc-8 {background: #FFE680;}
table.annotate tr.bloc-9 {background: #AA80FF;}
table.annotate tr.bloc-10 {background: #FFBFDC;}
table.annotate tr.bloc-11 {background: #BFE4FF;}
table.annotate td.revision {
text-align: center;
width: 2%;
padding-left: 1em;
background: inherit;
}
Toshi MARUYAMA
remove trailing white-spaces from scm.css...
r7671
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 table.annotate td.author {
text-align: center;
border-right: 1px solid #d7d7d7;
white-space: nowrap;
padding-left: 1em;
padding-right: 1em;
width: 3%;
background: inherit;
Jean-Philippe Lang
Added wiki annotate view. It's accessible for each version from the page history view. ...
r1007 font-size: 90%;
Jean-Philippe Lang
Added Annotate/Blame view for Subversion, CVS and Mercurial repositories....
r934 }
table.annotate td.line-code { background-color: #fafafa; }
div.action_M { background: #fd8 }
div.action_D { background: #f88 }
div.action_A { background: #bfb }