annotate .svn/pristine/f3/f3fd8058a767a397493953facb511cb1c0a563f6.svn-base @ 1524:82fac3dcf466 redmine-2.5-integration

Fix failure to interpret Javascript when autocompleting members for project
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 11 Sep 2014 10:24:38 +0100
parents 261b3d9a4903
children
rev   line source
Chris@1464 1
Chris@1464 2 table.revision-info td {
Chris@1464 3 margin: 0px;
Chris@1464 4 padding: 0px;
Chris@1464 5 }
Chris@1464 6
Chris@1464 7 div.revision-graph { position: absolute; min-width: 1px; }
Chris@1464 8
Chris@1464 9 div.changeset-changes ul { margin: 0; padding: 0; }
Chris@1464 10 div.changeset-changes ul > ul { margin-left: 18px; padding: 0; }
Chris@1464 11
Chris@1464 12 li.change {
Chris@1464 13 list-style-type:none;
Chris@1464 14 background-image: url(../images/bullet_black.png);
Chris@1464 15 background-position: 1px 1px;
Chris@1464 16 background-repeat: no-repeat;
Chris@1464 17 padding-top: 1px;
Chris@1464 18 padding-bottom: 1px;
Chris@1464 19 padding-left: 20px;
Chris@1464 20 margin: 0;
Chris@1464 21 }
Chris@1464 22 li.change.folder { background-image: url(../images/folder_open.png); }
Chris@1464 23 li.change.folder.change-A { background-image: url(../images/folder_open_add.png); }
Chris@1464 24 li.change.folder.change-M { background-image: url(../images/folder_open_orange.png); }
Chris@1464 25 li.change.change-A { background-image: url(../images/bullet_add.png); }
Chris@1464 26 li.change.change-M { background-image: url(../images/bullet_orange.png); }
Chris@1464 27 li.change.change-C { background-image: url(../images/bullet_blue.png); }
Chris@1464 28 li.change.change-R { background-image: url(../images/bullet_purple.png); }
Chris@1464 29 li.change.change-D { background-image: url(../images/bullet_delete.png); }
Chris@1464 30
Chris@1464 31 li.change .copied-from { font-style: italic; color: #999; font-size: 0.9em; }
Chris@1464 32 li.change .copied-from:before { content: " - "}
Chris@1464 33
Chris@1464 34 #changes-legend { float: right; font-size: 0.8em; margin: 0; }
Chris@1464 35 #changes-legend li { float: left; background-position: 5px 0; }
Chris@1464 36
Chris@1464 37 table.filecontent { border: 1px solid #e2e2e2; border-collapse: collapse; width:98%; background-color: #fafafa; }
Chris@1464 38 table.filecontent tbody {font-family:"Liberation Mono", Courier, monospace; font-size:12px;}
Chris@1464 39 table.filecontent th { border: 1px solid #e2e2e2; background-color: #eee; }
Chris@1464 40 table.filecontent th.filename { background-color: #e4e4d4; text-align: left; padding:5px;}
Chris@1464 41 table.filecontent tr.spacing th { text-align:center; }
Chris@1464 42 table.filecontent tr.spacing td { height: 0.4em; background: #EAF2F5;}
Chris@1464 43 table.filecontent th.line-num {
Chris@1464 44 border: 1px solid #e2e2e2;
Chris@1464 45 text-align: right;
Chris@1464 46 width: 2%;
Chris@1464 47 padding: 0 3px 0 0;
Chris@1464 48 color: #999;
Chris@1464 49 user-select: none;
Chris@1464 50 -moz-user-select: none;
Chris@1464 51 -o-user-select: none;
Chris@1464 52 -ms-user-select: none;
Chris@1464 53 -webkit-user-select: none;
Chris@1464 54 font-weight:normal;
Chris@1464 55 }
Chris@1464 56 table.filecontent th.line-num a {
Chris@1464 57 text-decoration: none;
Chris@1464 58 color: inherit;
Chris@1464 59 }
Chris@1464 60 table.filecontent td.line-code {padding: 0 0 0 4px;}
Chris@1464 61 table.filecontent td.line-code pre {
Chris@1464 62 margin: 0px;
Chris@1464 63 white-space: pre-wrap;
Chris@1464 64 font-family:"Liberation Mono", Courier, monospace; font-size:12px;
Chris@1464 65 }
Chris@1464 66
Chris@1464 67 table.filecontent tr:target th.line-num { background-color:#E0E0E0; color: #777; }
Chris@1464 68 table.filecontent tr:target td.line-code { background-color:#DDEEFF; }
Chris@1464 69
Chris@1464 70 /* 12 different colors for the annonate view */
Chris@1464 71 table.annotate tr.bloc-0 {background: #FFFFBF;}
Chris@1464 72 table.annotate tr.bloc-1 {background: #EABFFF;}
Chris@1464 73 table.annotate tr.bloc-2 {background: #BFFFFF;}
Chris@1464 74 table.annotate tr.bloc-3 {background: #FFD9BF;}
Chris@1464 75 table.annotate tr.bloc-4 {background: #E6FFBF;}
Chris@1464 76 table.annotate tr.bloc-5 {background: #BFCFFF;}
Chris@1464 77 table.annotate tr.bloc-6 {background: #FFBFEF;}
Chris@1464 78 table.annotate tr.bloc-7 {background: #FFE6BF;}
Chris@1464 79 table.annotate tr.bloc-8 {background: #FFE680;}
Chris@1464 80 table.annotate tr.bloc-9 {background: #AA80FF;}
Chris@1464 81 table.annotate tr.bloc-10 {background: #FFBFDC;}
Chris@1464 82 table.annotate tr.bloc-11 {background: #BFE4FF;}
Chris@1464 83
Chris@1464 84 table.annotate td.revision {
Chris@1464 85 padding:0;
Chris@1464 86 text-align: center;
Chris@1464 87 width: 2%;
Chris@1464 88 padding-left: 1em;
Chris@1464 89 background: inherit;
Chris@1464 90 }
Chris@1464 91
Chris@1464 92 table.annotate td.author {
Chris@1464 93 padding:0;
Chris@1464 94 text-align: center;
Chris@1464 95 border-right: 1px solid #d7d7d7;
Chris@1464 96 white-space: nowrap;
Chris@1464 97 padding-left: 1em;
Chris@1464 98 padding-right: 1em;
Chris@1464 99 width: 3%;
Chris@1464 100 background: inherit;
Chris@1464 101 }
Chris@1464 102
Chris@1464 103 table.annotate td.line-code { background-color: #fafafa; }
Chris@1464 104
Chris@1464 105 div.action_M { background: #fd8 }
Chris@1464 106 div.action_D { background: #f88 }
Chris@1464 107 div.action_A { background: #bfb }