##// END OF EJS Templates
html updates,mostly tables
html updates,mostly tables

File last commit:

r261:576e85ca default
r280:373ddb86 default
Show More
monoblue_custom.css
811 lines | 12.9 KiB | text/css | CssLexer
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 /*** Initial Settings ***/
Update css +file browsing and diffs
r144 #mainhtml{
margin: 15px 50px;
background: #DBD4C6;
font-family: sans-serif;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
a {
html + css changes, added icons and etc.
r219 color: #556CB5;
Update css +file browsing and diffs
r144 text-decoration: none;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144 a:HOVER{
text-decoration: underline;
}
html + css changes, added icons and etc.
r219
implemented rawdiff and diff download into diff view....
r160 /*** end of Initial Settings ***/
html + css changes, added icons and etc.
r219 /*** ***/
.table_disp {
border-left: 0px solid #666666;
border-bottom: 1px solid #666666;
border-right: 1px solid #666666;
padding: 0px;
margin: 0px;
border-spacing: 0px;
}
.table_disp .header {
border-top: 1px solid #666666;
background-color: #556CB5;
font-weight: bold;
color: white;
vertical-align: middle;
padding: 3px 5px;
text-align: left;
font-size: 0.9em;
}
.table_disp .header td {
padding: 4px;
vertical-align: middle;
border-top: 1px solid #AAAAAA;
border-bottom: 2px solid #666666;
}
.table_disp td {
border-left: 1px solid #AAAAAA;
Added flash messages support
r237 padding-left: 4px;
padding-right: 4px;
html + css changes, added icons and etc.
r219 }
table tr.parity0:hover,table tr.parity1:hover {
background: #D5E1E6;
}
table tr.parity0 {
background: #EAEAE9;
}
table tr.parity1 {
background: #FFFFFF;
}
/*** ***/
implemented rawdiff and diff download into diff view....
r160 /** common settings **/
html + css changes, added icons and etc.
r219 .add_icon{
background: url("/images/icons/add.png") no-repeat scroll 3px;
height: 16px;
padding-left: 20px;
padding-top: 0px;
text-align: left;
}
.edit_icon{
background: url("/images/icons/folder_edit.png") no-repeat scroll 3px;
height: 16px;
padding-left: 20px;
padding-top: 0px;
text-align: left;
}
.delete_icon{
background: url("/images/icons/delete.png") no-repeat scroll 3px;
height: 16px;
padding-left: 20px;
padding-top: 0px;
text-align: left;
}
.action_button{
border:0px;
display: block;
}
.action_button:hover{
border:0px;
font-style:italic;
cursor: pointer;
}
Added flash messages support
r237 .flash_msg ul{
margin:0;
padding:25px 0px 0px 0px;
}
.error_msg {
background-color:#FFCFCF;
background-image: url("/images/icons/error_msg.png");
border:1px solid #FF9595;
color:#CC3300;
}
.warning_msg {
background-color:#FFFBCC;
background-image: url("/images/icons/warning_msg.png");
border:1px solid #FFF35E;
color:#C69E00;
}
.success_msg {
background-color:#D5FFCF;
background-image: url("/images/icons/success_msg.png");
border:1px solid #97FF88;
color:#009900;
}
.notice_msg {
background-color:#DCE3FF;
background-image: url("/images/icons/notice_msg.png");
border:1px solid #93A8FF;
color:#556CB5;
}
.success_msg, .error_msg, .notice_msg, .warning_msg{
background-position:10px center;
background-repeat:no-repeat;
font-size:12px;
font-weight:bold;
min-height:14px;
line-height:14px;
margin-bottom:0px;
margin-top:0px;
padding:3px 10px 3px 40px;
display:block;
overflow: auto;
}
#msg_close {
background:transparent url("icons/cross_grey_small.png") no-repeat scroll 0 0;
cursor:pointer;
height:16px;
position:absolute;
right:5px;
top:5px;
width:16px;
}
error message css
r261 .error-message{
color:#CC3300;
}
Added flash messages support
r237
Update css +file browsing and diffs
r144 div#main {
padding: 5px;
}
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
div#container {
Update css +file browsing and diffs
r144 background: #FFFFFF;
position: relative;
color: #666;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
div.page-header {
Update css +file browsing and diffs
r144 padding: 50px 20px 0;
background: #556cb5 top left repeat-x;
position: relative;
}
div.page-header h1 {
margin: 10px 0 30px;
font-size: 1.8em;
font-weight: bold;
font-family: sans-serif;
letter-spacing: 1px;
Admin templating updates, added rest permission controllers
r230 color: #FFFFFF;
Update css +file browsing and diffs
r144 }
div.page-header h1 a {
font-weight: bold;
Admin templating updates, added rest permission controllers
r230 color: #FFFFFF;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
div.page-header a {
text-decoration: none;
}
div.page-header form {
position: absolute;
margin-bottom: 2px;
bottom: 0;
right: 20px;
}
div.page-header form label {
color: #DDD;
}
div.page-header form input {
padding: 2px;
border: solid 1px #DDD;
}
div.page-header form dl {
overflow: hidden;
}
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
Update css +file browsing and diffs
r144 div.page-header form dl dt {
font-size: 1.2em;
}
div.page-header form dl dt,div.page-header form dl dd {
margin: 0 0 0 5px;
float: left;
height: 24px;
line-height: 20px;
}
ul.page-nav {
margin: 10px 0 0 0;
list-style-type: none;
overflow: hidden;
width: 800px;
padding: 0;
}
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
Update css +file browsing and diffs
r144 ul.page-nav li {
templating update, improved look & feel, version bump
r225 margin: 0 4px 0 0;
Update css +file browsing and diffs
r144 float: left;
height: 24px;
font-size: 1.1em;
line-height: 24px;
text-align: center;
templating update, improved look & feel, version bump
r225 background: #556CB5;
Update css +file browsing and diffs
r144 }
ul.page-nav li.current {
background: #FFF;
padding-right: 5px;
padding-left: 5px;
}
templating update, improved look & feel, version bump
r225 ul.page-nav li.current a {
color: #556CB5;
}
Update css +file browsing and diffs
r144 ul.page-nav li a {
height: 24px;
templating update, improved look & feel, version bump
r225 color: #FFF;
Update css +file browsing and diffs
r144 padding-right: 5px;
padding-left: 5px;
display: block;
text-decoration: none;
templating update, improved look & feel, version bump
r225 font-weight: bold;
Update css +file browsing and diffs
r144 }
added style for logout
r184 ul.page-nav li.logout a {
templating update, improved look & feel, version bump
r225 color: #FDAC9D;
added style for logout
r184 }
Update css +file browsing and diffs
r144 ul.page-nav li a:hover {
background: #FFF;
templating update, improved look & feel, version bump
r225 color: #556CB5;
Update css +file browsing and diffs
r144 }
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
ul.submenu {
html + css changes, added icons and etc.
r219 margin: 5px 0px -20px 0px;
Update css +file browsing and diffs
r144 list-style-type: none;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 ul.submenu li {
Update css +file browsing and diffs
r144 margin: 0 10px 0 0;
html + css changes, added icons and etc.
r219 font-size: 0.9em;
font-weight:bold;
Update css +file browsing and diffs
r144 display: inline;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
html + css changes, added icons and etc.
r219 ul.submenu .repos {
background: url("/images/icons/folder_edit.png") no-repeat scroll 3px;
height: 16px;
padding-left: 20px;
padding-top: 0px;
text-align: left;
}
ul.submenu .users {
background: url("/images/icons/user_edit.png") no-repeat scroll 3px;
height: 16px;
padding-left: 20px;
padding-top: 0px;
text-align: left;
}
ul.submenu .permissions {
background: url("/images/icons/folder_key.png") no-repeat scroll 3px;
height: 16px;
padding-left: 20px;
padding-top: 0px;
text-align: left;
}
ul.submenu .current_submenu {
border-bottom: 2px solid #556CB5;
}
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
h2 {
Update css +file browsing and diffs
r144 margin: 20px 0 10px;
height: 30px;
line-height: 30px;
text-indent: 20px;
background: #FFF;
font-size: 1.2em;
border-top: dotted 1px #D5E1E6;
font-weight: bold;
html + css changes, added icons and etc.
r219 color:#556CB5;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 h2.no-link {
Update css +file browsing and diffs
r144 color: #006699;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 h2.no-border {
Update css +file browsing and diffs
r144 color: #FFF;
background: #556CB5;
border: 0;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 h2 a {
Update css +file browsing and diffs
r144 font-weight: bold;
color: #006699;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
div.page-path {
Update css +file browsing and diffs
r144 text-align: right;
padding: 20px 30px 10px 0;
border: solid #d9d8d1;
border-width: 0px 0px 1px;
font-size: 1.2em;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
div.page-footer {
Update css +file browsing and diffs
r144 margin: 50px 0 0;
position: relative;
Updated css for changeset
r214 text-align: center;
font-weight: bold;
font-size: 90%;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
div.page-footer p {
position: relative;
left: 20px;
bottom: 5px;
font-size: 1.2em;
}
ul.rss-logo {
position: absolute;
top: -10px;
right: 20px;
height: 20px;
list-style-type: none;
}
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
Update css +file browsing and diffs
r144 ul.rss-logo li {
display: inline;
}
ul.rss-logo li a {
padding: 3px 6px;
line-height: 10px;
border: 1px solid;
border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e;
color: #ffffff;
background-color: #ff6600;
font-weight: bold;
font-family: sans-serif;
font-size: 10px;
text-align: center;
text-decoration: none;
}
div.rss-logo li a:hover {
background-color: #ee5500;
}
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
p.normal {
Update css +file browsing and diffs
r144 margin: 20px 0 20px 30px;
font-size: 1.2em;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
span.logtags span {
Update css +file browsing and diffs
r144 background-repeat: no-repeat;
height: 16px;
padding-left: 20px;
padding-top: 0px;
text-align: left;
added images updated htl added tags,branches display
r110 font-weight: bold;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 span.logtags span.tagtag {
Css changes, added icon pack.
r210 background-image: url("/images/icons/tag_green.png");
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 span.logtags span.branchtag {
Css changes, added icon pack.
r210 background-image: url("/images/icons/arrow_branch.png");
added images updated htl added tags,branches display
r110 color: #628F53;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 span.logtags span.inbranchtag {
Css changes, added icon pack.
r210 background-image: url("/images/icons/arrow_branch.png");
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
div.diff pre {
Update css +file browsing and diffs
r144 margin: 10px 0 0 0;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 div.diff pre span {
Update css +file browsing and diffs
r144 font-family: monospace;
white-space: pre;
font-size: 1.2em;
padding: 3px 0;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 td.source {
Update css +file browsing and diffs
r144 white-space: pre;
font-family: monospace;
margin: 10px 30px 0;
font-size: 1.2em;
font-family: monospace;
}
div.source div.parity0,div.source div.parity1 {
padding: 1px;
font-size: 1.2em;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
div.source div.parity0 {
background: #F1F6F7;
}
div.source div.parity1 {
background: #FFFFFF;
}
div.parity0:hover,div.parity1:hover {
background: #D5E1E6;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 .linenr {
Update css +file browsing and diffs
r144 color: #999;
text-align: right;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 .lineno {
Update css +file browsing and diffs
r144 text-align: right;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 .lineno a {
Update css +file browsing and diffs
r144 color: #999;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 td.linenr {
Update css +file browsing and diffs
r144 width: 60px;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
div#powered-by {
Update css +file browsing and diffs
r144 position: absolute;
width: 75px;
top: 15px;
right: 20px;
font-size: 1.2em;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
div#powered-by a {
color: #EEE;
text-decoration: none;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
div#powered-by a:hover {
text-decoration: underline;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
dl.overview {
margin: 0 0 0 30px;
font-size: 1.1em;
overflow: hidden;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144 dl.overview dt,dl.overview dd {
margin: 5px 0;
float: left;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
dl.overview dt {
clear: left;
font-weight: bold;
width: 150px;
}
html + css changes, added icons and etc.
r219 #clone_url{
border: 0px;
}
Update css +file browsing and diffs
r144 /** end of summary **/
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
/** chagelog **/
h3.changelog {
Update css +file browsing and diffs
r144 margin: 20px 0 5px 30px;
padding: 0 0 2px;
font-size: 1.4em;
border-bottom: dotted 1px #D5E1E6;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 ul.changelog-entry {
Update css +file browsing and diffs
r144 margin: 0 0 10px 30px;
list-style-type: none;
position: relative;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 ul.changelog-entry li span.revdate {
Update css +file browsing and diffs
r144 font-size: 1.1em;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 ul.changelog-entry li.age {
Update css +file browsing and diffs
r144 position: absolute;
top: -25px;
right: 10px;
font-size: 1.4em;
color: #CCC;
font-weight: bold;
font-style: italic;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 ul.changelog-entry li span.name {
Update css +file browsing and diffs
r144 font-size: 1.2em;
font-weight: bold;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 ul.changelog-entry li.description {
Update css +file browsing and diffs
r144 margin: 10px 0 0;
font-size: 1.1em;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
/** end of changelog **/
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
/** file **/
p.files {
Update css +file browsing and diffs
r144 margin: 0 0 0 20px;
font-size: 2.0em;
font-weight: bold;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
/** end of file **/
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
/** changeset **/
Updated css for changeset
r214 #changeset_content{
width:60%;
float:left;
}
#changeset_content .container .wrapper{
width: 600px;
}
#changeset_content .container{
border:1px solid #CCCCCC;
height:120px;
}
#changeset_content .container .left{
float:left;
width: 70%;
padding-left: 5px;
}
#changeset_content .container .right{
float:right;
width: 25%;
text-align: right;
}
#changeset_content .container .left .date{
font-weight:bold;
}
#changeset_content .container .left .author{
}
#changeset_content .container .left .message{
templating update, improved look & feel, version bump
r225 font-style: italic;
color: #556CB5;
Updated css for changeset
r214 }
implemented rawdiff and diff download into diff view....
r160 .cs_files{
width: 60%;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Updated css for changeset
r214
implemented rawdiff and diff download into diff view....
r160 .cs_files .cs_added{
Updated css for changeset
r214 background: url("/images/icons/page_white_add.png") no-repeat scroll 3px;
/*background-color:#BBFFBB;*/
height: 16px;
padding-left: 20px;
margin-top: 7px;
text-align: left;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
implemented rawdiff and diff download into diff view....
r160 .cs_files .cs_changed{
Updated css for changeset
r214 background: url("/images/icons/page_white_edit.png") no-repeat scroll 3px;
/*background-color: #FFDD88;*/
height: 16px;
padding-left: 20px;
margin-top: 7px;
text-align: left;
implemented rawdiff and diff download into diff view....
r160 }
.cs_files .cs_removed{
Updated css for changeset
r214 background: url("/images/icons/page_white_delete.png") no-repeat scroll 3px;
/*background-color: #FF8888;*/
height: 16px;
padding-left: 20px;
margin-top: 7px;
text-align: left;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
/** end of changeset **/
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
/** canvas **/
canvas {
position: absolute;
z-index: 5;
top: -0.7em;
}
implemented rawdiff and diff download into diff view....
r160 #graph{
overflow: hidden;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
implemented rawdiff and diff download into diff view....
r160 }
#graph_nodes{
width:160px;
float:left;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
implemented rawdiff and diff download into diff view....
r160 #graph_content{
width:800px;
float:left;
}
#graph_content .container_header{
border:1px solid #CCCCCC;
height:30px;
background: #EEEEEE;
}
#graph_content .container .wrapper{
width: 600px;
}
#graph_content .container{
border-bottom: 1px solid #CCCCCC;
border-left: 1px solid #CCCCCC;
border-right: 1px solid #CCCCCC;
height:120px;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
implemented rawdiff and diff download into diff view....
r160 #graph_content .container .left{
float:left;
width: 70%;
padding-left: 5px;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
implemented rawdiff and diff download into diff view....
r160 #graph_content .container .right{
float:right;
width: 25%;
Updated css for changeset
r214 text-align: right;
implemented rawdiff and diff download into diff view....
r160 }
#graph_content .container .left .date{
font-weight:bold;
}
#graph_content .container .left .author{
}
#graph_content .container .left .message{
font-size: 80%;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Updated css for changeset
r214 .right div{
clear: both;
}
.right .changes .added,.changed,.removed{
implemented rawdiff and diff download into diff view....
r160 border:1px solid #DDDDDD;
display:block;
float:right;
font-size:0.75em;
text-align:center;
min-width:15px;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Updated css for changeset
r214 .right .changes .added{
implemented rawdiff and diff download into diff view....
r160 background:#BBFFBB;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Updated css for changeset
r214 .right .changes .changed{
implemented rawdiff and diff download into diff view....
r160 background: #FFDD88;
}
Updated css for changeset
r214 .right .changes .removed{
implemented rawdiff and diff download into diff view....
r160 background: #FF8888;
}
added merge and parents indicators to changelog
r212
.right .merge{
vertical-align: top;
font-size: 60%;
font-weight: bold;
}
.right .merge img{
vertical-align: bottom;
}
.right .parent{
Updated css for changeset
r214 font-size: 90%;
font-family: monospace;
added merge and parents indicators to changelog
r212 }
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 /** end of canvas **/
Update css +file browsing and diffs
r144 /* FILE BROWSER */
div.browserblock {
overflow: hidden;
padding: 0px;
border: 1px solid #ccc;
background: #f8f8f8;
font-size: 100%;
line-height: 100%;
/* new */
line-height: 125%;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144 div.browserblock .browser-header{
border-bottom: 1px solid #CCCCCC;
background: #EEEEEE;
color:blue;
padding:10px 0 10px 0;
}
div.browserblock .browser-header span{
margin-left:25px;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 font-weight: bold;
}
Update css +file browsing and diffs
r144 div.browserblock .browser-body{
background: #EEEEEE;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
table.code-browser {
implemented rawdiff and diff download into diff view....
r160 border-collapse:collapse;
width: 100%;
Update css +file browsing and diffs
r144 }
table.code-browser tr{
margin:3px;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
table.code-browser thead th {
background-color: #EEEEEE;
height: 20px;
font-size: 1.1em;
font-weight: bold;
text-align: center;
implemented rawdiff and diff download into diff view....
r160 text-align: left;
padding-left: 10px;
Update css +file browsing and diffs
r144 }
table.code-browser tbody tr {
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
}
Update css +file browsing and diffs
r144
table.code-browser tbody td {
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102
Update css +file browsing and diffs
r144 padding-left:10px;
height: 20px;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
.info-table {
background: none repeat scroll 0 0 #FAFAFA;
border-bottom: 1px solid #DDDDDD;
width: 100%;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }
Update css +file browsing and diffs
r144
.rss_logo {
Css changes, added icon pack.
r210 background: url("/images/icons/rss_16.png") no-repeat scroll 3px;
Update css +file browsing and diffs
r144 height: 16px;
padding-left: 20px;
padding-top: 0px;
text-align: left;
Html updates and fixes
r105 }
Update css +file browsing and diffs
r144 .atom_logo {
Css changes, added icon pack.
r210 background: url("/images/icons/atom.png") no-repeat scroll 3px;
Update css +file browsing and diffs
r144 height: 16px;
padding-left: 20px;
padding-top: 0px;
text-align: left;
}
Css changes, added icon pack.
r210 .archive_logo{
background: url("/images/icons/compress.png") no-repeat scroll 3px;
height: 16px;
padding-left: 20px;
text-align: left;
}
Html updates and fixes
r105
Update css +file browsing and diffs
r144 .browser-file {
Css changes, added icon pack.
r210 background: url("/images/icons/document_16.png") no-repeat scroll 3px;
Update css +file browsing and diffs
r144 height: 16px;
padding-left: 20px;
text-align: left;
html updates
r109 }
Update css +file browsing and diffs
r144 .browser-dir {
Css changes, added icon pack.
r210 background: url("/images/icons/folder_16.png") no-repeat scroll 3px;
Update css +file browsing and diffs
r144 height: 16px;
padding-left: 20px;
text-align: left;
}
#repos_list {
border: 1px solid #556CB5;
background: #FFFFFF;
Updated tempaltes, added file browser breadcrumbs, and feed icons
r102 }