monoblue_custom.css
951 lines
| 14.7 KiB
| text/css
|
CssLexer
r102 | /*** Initial Settings ***/ | ||
r298 | #mainhtml { | ||
r144 | margin: 15px 50px; | ||
background: #DBD4C6; | |||
font-family: sans-serif; | |||
r102 | } | ||
r298 | |||
#mainhtml .breadcrumbs a:HOVER { | |||
text-decoration: underline; | |||
r294 | } | ||
r298 | |||
r102 | a { | ||
r219 | color: #556CB5; | ||
r144 | text-decoration: none; | ||
r102 | } | ||
r298 | |||
a:HOVER { | |||
r144 | text-decoration: underline; | ||
} | |||
r219 | |||
r160 | /*** end of Initial Settings ***/ | ||
r219 | /*** ***/ | ||
.table_disp { | |||
r298 | border-left: 0px solid #666666; | ||
border-bottom: 1px solid #666666; | |||
border-right: 1px solid #666666; | |||
padding: 0px; | |||
margin: 0px; | |||
border-spacing: 0px; | |||
r219 | } | ||
.table_disp .header { | |||
r298 | 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; | |||
r219 | } | ||
.table_disp .header td { | |||
r298 | padding: 4px; | ||
vertical-align: middle; | |||
border-top: 1px solid #AAAAAA; | |||
border-bottom: 2px solid #666666; | |||
r219 | } | ||
r298 | |||
r219 | .table_disp td { | ||
r298 | border-left: 1px solid #AAAAAA; | ||
padding-left: 4px; | |||
padding-right: 4px; | |||
r219 | } | ||
table tr.parity0:hover,table tr.parity1:hover { | |||
r298 | background: #D5E1E6; | ||
r219 | } | ||
table tr.parity0 { | |||
r298 | background: #EAEAE9; | ||
r219 | } | ||
table tr.parity1 { | |||
r298 | background: #FFFFFF; | ||
} | |||
/*** ***/ | |||
/** COMMON SETTINGS **/ | |||
.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; | |||
r219 | } | ||
r298 | .delete_icon { | ||
background: url("/images/icons/delete.png") no-repeat scroll 3px; | |||
height: 16px; | |||
padding-left: 20px; | |||
padding-top: 0px; | |||
text-align: left; | |||
} | |||
r219 | |||
r298 | .action_button { | ||
border: 0px; | |||
display: block; | |||
r219 | } | ||
r298 | .action_button:hover { | ||
border: 0px; | |||
font-style: italic; | |||
cursor: pointer; | |||
r219 | } | ||
r298 | .flash_msg ul { | ||
margin: 0; | |||
padding: 25px 0px 0px 0px; | |||
r219 | } | ||
r298 | |||
.error_msg { | |||
background-color: #FFCFCF; | |||
background-image: url("/images/icons/error_msg.png"); | |||
border: 1px solid #FF9595; | |||
color: #CC3300; | |||
r219 | } | ||
r237 | .warning_msg { | ||
r298 | background-color: #FFFBCC; | ||
r237 | background-image: url("/images/icons/warning_msg.png"); | ||
r298 | border: 1px solid #FFF35E; | ||
color: #C69E00; | |||
r237 | } | ||
r298 | |||
r237 | .success_msg { | ||
r298 | background-color: #D5FFCF; | ||
r237 | background-image: url("/images/icons/success_msg.png"); | ||
r298 | border: 1px solid #97FF88; | ||
color: #009900; | |||
r237 | } | ||
r298 | |||
r237 | .notice_msg { | ||
r298 | background-color: #DCE3FF; | ||
r237 | background-image: url("/images/icons/notice_msg.png"); | ||
r298 | border: 1px solid #93A8FF; | ||
color: #556CB5; | |||
r237 | } | ||
r298 | .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; | |||
r237 | overflow: auto; | ||
r298 | } | ||
r237 | |||
#msg_close { | |||
r298 | 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; | |||
r237 | } | ||
r298 | .error-message { | ||
color: #CC3300; | |||
r261 | } | ||
r298 | |||
/**** TOOLTIP ****/ | |||
.yui-overlay,.yui-panel-container { | |||
visibility: hidden; | |||
position: absolute; | |||
z-index: 2; | |||
r281 | } | ||
.yui-tt { | |||
r298 | visibility: hidden; | ||
position: absolute; | |||
color: #666666; | |||
background-color: #FFFFFF; | |||
font-family: arial, helvetica, verdana, sans-serif; | |||
padding: 8px; | |||
border: 2px solid #556CB5; | |||
font: 100% sans-serif; | |||
width: auto; | |||
opacity: 1.0; | |||
r281 | } | ||
.yui-tt-shadow { | |||
r298 | display: none; | ||
} | |||
/** END TOOLTIP **/ | |||
/** AUTOCOMPLETE **/ | |||
.ac{ | |||
vertical-align: top; | |||
} | |||
.ac .match { | |||
font-weight:bold; | |||
} | |||
.ac .yui-ac { | |||
position: relative; | |||
font-family: arial; | |||
font-size: 100%; | |||
} | |||
r328 | .ac .perm_ac{ | ||
r298 | width:15em; | ||
} | |||
/* styles for input field */ | |||
.ac .yui-ac-input { | |||
position: absolute; | |||
width: 100%; | |||
} | |||
/* styles for results container */ | |||
.ac .yui-ac-container { | |||
position: absolute; | |||
top: 1.6em; | |||
width: 100%; | |||
r281 | } | ||
r298 | |||
/* styles for header/body/footer wrapper within container */ | |||
.ac .yui-ac-content { | |||
position: absolute; | |||
width: 100%; | |||
border: 1px solid #808080; | |||
background: #fff; | |||
overflow: hidden; | |||
z-index: 9050; | |||
} | |||
/* styles for container shadow */ | |||
.ac .yui-ac-shadow { | |||
position: absolute; | |||
margin: .3em; | |||
width: 100%; | |||
background: #000; | |||
-moz-opacity: 0.10; | |||
opacity: .10; | |||
filter: alpha(opacity = 10); | |||
z-index: 9049; | |||
} | |||
r281 | |||
r298 | /* styles for results list */ | ||
.ac .yui-ac-content ul { | |||
margin: 0; | |||
padding: 0; | |||
width: 100%; | |||
} | |||
r237 | |||
r298 | /* styles for result item */ | ||
.ac .yui-ac-content li { | |||
margin: 0; | |||
padding: 2px 5px; | |||
cursor: default; | |||
white-space: nowrap; | |||
} | |||
/* styles for prehighlighted result item */ | |||
.ac .yui-ac-content li.yui-ac-prehighlight { | |||
background: #B3D4FF; | |||
} | |||
/* styles for highlighted result item */ | |||
.ac .yui-ac-content li.yui-ac-highlight { | |||
background: #556CB5; | |||
color: #FFF; | |||
} | |||
/** END AUTOCOMPLETE **/ | |||
r144 | div#main { | ||
padding: 5px; | |||
} | |||
r102 | |||
div#container { | |||
r144 | background: #FFFFFF; | ||
position: relative; | |||
color: #666; | |||
r102 | } | ||
div.page-header { | |||
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; | |||
r230 | color: #FFFFFF; | ||
r144 | } | ||
div.page-header h1 a { | |||
font-weight: bold; | |||
r230 | color: #FFFFFF; | ||
r102 | } | ||
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; | |||
} | |||
r102 | |||
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; | |||
} | |||
r102 | |||
r144 | ul.page-nav li { | ||
r225 | margin: 0 4px 0 0; | ||
r144 | float: left; | ||
height: 24px; | |||
font-size: 1.1em; | |||
line-height: 24px; | |||
text-align: center; | |||
r225 | background: #556CB5; | ||
r144 | } | ||
ul.page-nav li.current { | |||
background: #FFF; | |||
padding-right: 5px; | |||
padding-left: 5px; | |||
} | |||
r298 | |||
r225 | ul.page-nav li.current a { | ||
color: #556CB5; | |||
} | |||
r298 | |||
r144 | ul.page-nav li a { | ||
height: 24px; | |||
r225 | color: #FFF; | ||
r144 | padding-right: 5px; | ||
padding-left: 5px; | |||
display: block; | |||
text-decoration: none; | |||
r225 | font-weight: bold; | ||
r144 | } | ||
r298 | |||
r184 | ul.page-nav li.logout a { | ||
r225 | color: #FDAC9D; | ||
r184 | } | ||
r298 | |||
r144 | ul.page-nav li a:hover { | ||
background: #FFF; | |||
r225 | color: #556CB5; | ||
r144 | } | ||
r102 | |||
ul.submenu { | |||
r219 | margin: 5px 0px -20px 0px; | ||
r144 | list-style-type: none; | ||
r102 | } | ||
r144 | |||
r102 | ul.submenu li { | ||
r144 | margin: 0 10px 0 0; | ||
r219 | font-size: 0.9em; | ||
r298 | font-weight: bold; | ||
r144 | display: inline; | ||
r102 | } | ||
r298 | |||
r219 | ul.submenu .repos { | ||
r298 | background: url("/images/icons/folder_edit.png") no-repeat scroll 3px; | ||
height: 16px; | |||
padding-left: 20px; | |||
padding-top: 0px; | |||
text-align: left; | |||
r219 | } | ||
r298 | |||
r219 | ul.submenu .users { | ||
r298 | background: url("/images/icons/user_edit.png") no-repeat scroll 3px; | ||
height: 16px; | |||
padding-left: 20px; | |||
padding-top: 0px; | |||
text-align: left; | |||
r219 | } | ||
r298 | |||
r219 | ul.submenu .permissions { | ||
r298 | background: url("/images/icons/folder_key.png") no-repeat scroll 3px; | ||
height: 16px; | |||
padding-left: 20px; | |||
padding-top: 0px; | |||
text-align: left; | |||
r219 | } | ||
r324 | ul.submenu .settings { | ||
background: url("/images/icons/cog.png") no-repeat scroll 3px; | |||
height: 16px; | |||
padding-left: 20px; | |||
padding-top: 0px; | |||
text-align: left; | |||
} | |||
r219 | |||
ul.submenu .current_submenu { | |||
r298 | border-bottom: 2px solid #556CB5; | ||
r219 | } | ||
r102 | |||
h2 { | |||
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; | |||
r298 | color: #556CB5; | ||
r102 | } | ||
r144 | |||
r102 | h2.no-link { | ||
r144 | color: #006699; | ||
r102 | } | ||
r144 | |||
r102 | h2.no-border { | ||
r144 | color: #FFF; | ||
background: #556CB5; | |||
border: 0; | |||
r102 | } | ||
r144 | |||
r102 | h2 a { | ||
r144 | font-weight: bold; | ||
color: #006699; | |||
r102 | } | ||
div.page-path { | |||
r144 | text-align: right; | ||
padding: 20px 30px 10px 0; | |||
border: solid #d9d8d1; | |||
border-width: 0px 0px 1px; | |||
font-size: 1.2em; | |||
r102 | } | ||
div.page-footer { | |||
r144 | margin: 50px 0 0; | ||
position: relative; | |||
r214 | text-align: center; | ||
font-weight: bold; | |||
font-size: 90%; | |||
r102 | } | ||
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; | |||
} | |||
r102 | |||
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; | |||
} | |||
r102 | |||
p.normal { | |||
r144 | margin: 20px 0 20px 30px; | ||
font-size: 1.2em; | |||
r102 | } | ||
span.logtags span { | |||
r144 | background-repeat: no-repeat; | ||
height: 16px; | |||
padding-left: 20px; | |||
padding-top: 0px; | |||
text-align: left; | |||
r110 | font-weight: bold; | ||
r102 | } | ||
r144 | |||
r102 | span.logtags span.tagtag { | ||
r210 | background-image: url("/images/icons/tag_green.png"); | ||
r102 | } | ||
r144 | |||
r102 | span.logtags span.branchtag { | ||
r210 | background-image: url("/images/icons/arrow_branch.png"); | ||
r110 | color: #628F53; | ||
r102 | } | ||
r144 | |||
r102 | span.logtags span.inbranchtag { | ||
r210 | background-image: url("/images/icons/arrow_branch.png"); | ||
r102 | } | ||
div.diff pre { | |||
r144 | margin: 10px 0 0 0; | ||
r102 | } | ||
r144 | |||
r102 | div.diff pre span { | ||
r144 | font-family: monospace; | ||
white-space: pre; | |||
font-size: 1.2em; | |||
padding: 3px 0; | |||
r102 | } | ||
r144 | |||
r102 | td.source { | ||
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; | |||
r102 | } | ||
r144 | |||
div.source div.parity0 { | |||
background: #F1F6F7; | |||
} | |||
div.source div.parity1 { | |||
background: #FFFFFF; | |||
} | |||
div.parity0:hover,div.parity1:hover { | |||
background: #D5E1E6; | |||
r102 | } | ||
r144 | |||
r102 | .linenr { | ||
r144 | color: #999; | ||
text-align: right; | |||
r102 | } | ||
r144 | |||
r102 | .lineno { | ||
r144 | text-align: right; | ||
r102 | } | ||
r144 | |||
r102 | .lineno a { | ||
r144 | color: #999; | ||
r102 | } | ||
r144 | |||
r102 | td.linenr { | ||
r144 | width: 60px; | ||
r102 | } | ||
div#powered-by { | |||
r144 | position: absolute; | ||
width: 75px; | |||
top: 15px; | |||
right: 20px; | |||
font-size: 1.2em; | |||
r102 | } | ||
r144 | |||
div#powered-by a { | |||
color: #EEE; | |||
text-decoration: none; | |||
r102 | } | ||
r144 | |||
div#powered-by a:hover { | |||
text-decoration: underline; | |||
r102 | } | ||
r144 | |||
dl.overview { | |||
margin: 0 0 0 30px; | |||
font-size: 1.1em; | |||
overflow: hidden; | |||
r102 | } | ||
r144 | dl.overview dt,dl.overview dd { | ||
margin: 5px 0; | |||
float: left; | |||
r102 | } | ||
r144 | |||
dl.overview dt { | |||
clear: left; | |||
font-weight: bold; | |||
width: 150px; | |||
} | |||
r298 | #clone_url { | ||
border: 0px; | |||
r219 | } | ||
r102 | |||
r298 | /** end of summary **/ /** chagelog **/ | ||
r102 | h3.changelog { | ||
r144 | margin: 20px 0 5px 30px; | ||
padding: 0 0 2px; | |||
font-size: 1.4em; | |||
border-bottom: dotted 1px #D5E1E6; | |||
r102 | } | ||
r144 | |||
r102 | ul.changelog-entry { | ||
r144 | margin: 0 0 10px 30px; | ||
list-style-type: none; | |||
position: relative; | |||
r102 | } | ||
r144 | |||
r102 | ul.changelog-entry li span.revdate { | ||
r144 | font-size: 1.1em; | ||
r102 | } | ||
r144 | |||
r102 | ul.changelog-entry li.age { | ||
r144 | position: absolute; | ||
top: -25px; | |||
right: 10px; | |||
font-size: 1.4em; | |||
color: #CCC; | |||
font-weight: bold; | |||
font-style: italic; | |||
r102 | } | ||
r144 | |||
r102 | ul.changelog-entry li span.name { | ||
r144 | font-size: 1.2em; | ||
font-weight: bold; | |||
r102 | } | ||
r144 | |||
r102 | ul.changelog-entry li.description { | ||
r144 | margin: 10px 0 0; | ||
font-size: 1.1em; | |||
r102 | } | ||
r144 | |||
r298 | /** end of changelog **/ /** file **/ | ||
r102 | p.files { | ||
r144 | margin: 0 0 0 20px; | ||
font-size: 2.0em; | |||
font-weight: bold; | |||
r102 | } | ||
r144 | |||
r298 | /** end of file **/ /** changeset **/ | ||
#changeset_content { | |||
r332 | border:1px solid #CCCCCC; | ||
padding:5px; | |||
r214 | } | ||
r298 | #changeset_content .container .wrapper { | ||
r214 | width: 600px; | ||
} | |||
r298 | |||
#changeset_content .container { | |||
height: 120px; | |||
r214 | } | ||
r298 | #changeset_content .container .left { | ||
float: left; | |||
r214 | width: 70%; | ||
padding-left: 5px; | |||
} | |||
r298 | #changeset_content .container .right { | ||
float: right; | |||
r214 | width: 25%; | ||
text-align: right; | |||
} | |||
r298 | #changeset_content .container .left .date { | ||
font-weight: bold; | |||
r214 | } | ||
r298 | |||
#changeset_content .container .left .author { | |||
r214 | |||
} | |||
r298 | |||
#changeset_content .container .left .message { | |||
r225 | font-style: italic; | ||
color: #556CB5; | |||
r214 | } | ||
r298 | .cs_files { | ||
r332 | |||
r102 | } | ||
r214 | |||
r298 | .cs_files .cs_added { | ||
r214 | background: url("/images/icons/page_white_add.png") no-repeat scroll 3px; | ||
/*background-color:#BBFFBB;*/ | |||
height: 16px; | |||
padding-left: 20px; | |||
margin-top: 7px; | |||
r298 | text-align: left; | ||
r102 | } | ||
r298 | |||
.cs_files .cs_changed { | |||
background: url("/images/icons/page_white_edit.png") no-repeat scroll | |||
3px; | |||
r214 | /*background-color: #FFDD88;*/ | ||
height: 16px; | |||
padding-left: 20px; | |||
margin-top: 7px; | |||
r298 | text-align: left; | ||
r160 | } | ||
r298 | |||
.cs_files .cs_removed { | |||
background: url("/images/icons/page_white_delete.png") no-repeat scroll | |||
3px; | |||
r214 | /*background-color: #FF8888;*/ | ||
height: 16px; | |||
padding-left: 20px; | |||
margin-top: 7px; | |||
r298 | text-align: left; | ||
} | |||
/** end of changeset **/ /** canvas **/ | |||
#graph { | |||
overflow: hidden; | |||
r102 | } | ||
r144 | |||
r298 | #graph_nodes { | ||
width: 160px; | |||
float: left; | |||
r322 | margin-left:-50px; | ||
margin-top: 5px; | |||
r102 | } | ||
r298 | #graph_content { | ||
width: 800px; | |||
float: left; | |||
r160 | } | ||
r298 | |||
#graph_content .container_header { | |||
border: 1px solid #CCCCCC; | |||
height: 30px; | |||
r160 | background: #EEEEEE; | ||
} | |||
r298 | #graph_content .container .wrapper { | ||
r160 | width: 600px; | ||
} | |||
r298 | |||
#graph_content .container { | |||
r160 | border-bottom: 1px solid #CCCCCC; | ||
border-left: 1px solid #CCCCCC; | |||
border-right: 1px solid #CCCCCC; | |||
r322 | min-height: 80px; | ||
overflow: hidden; | |||
r102 | } | ||
r298 | #graph_content .container .left { | ||
float: left; | |||
r160 | width: 70%; | ||
padding-left: 5px; | |||
r102 | } | ||
r298 | #graph_content .container .right { | ||
float: right; | |||
r160 | width: 25%; | ||
r214 | text-align: right; | ||
r160 | } | ||
r298 | |||
#graph_content .container .left .date { | |||
font-weight: bold; | |||
r160 | } | ||
r298 | |||
#graph_content .container .left .author { | |||
r160 | |||
} | |||
r298 | |||
#graph_content .container .left .message { | |||
r160 | font-size: 80%; | ||
r102 | } | ||
r298 | .right div { | ||
r214 | clear: both; | ||
} | |||
r298 | |||
.right .changes .added,.changed,.removed { | |||
border: 1px solid #DDDDDD; | |||
display: block; | |||
float: right; | |||
font-size: 0.75em; | |||
text-align: center; | |||
min-width: 15px; | |||
r102 | } | ||
r298 | |||
.right .changes .added { | |||
background: #BBFFBB; | |||
r102 | } | ||
r298 | |||
.right .changes .changed { | |||
r160 | background: #FFDD88; | ||
} | |||
r298 | |||
.right .changes .removed { | |||
r160 | background: #FF8888; | ||
} | |||
r212 | |||
r298 | .right .merge { | ||
r212 | vertical-align: top; | ||
font-size: 60%; | |||
font-weight: bold; | |||
} | |||
r298 | |||
.right .merge img { | |||
vertical-align: bottom; | |||
r212 | } | ||
r298 | .right .parent { | ||
r214 | font-size: 90%; | ||
font-family: monospace; | |||
r212 | } | ||
r102 | |||
r298 | /** end of canvas **/ /* FILE BROWSER */ | ||
r144 | div.browserblock { | ||
r298 | overflow: hidden; | ||
padding: 0px; | |||
border: 1px solid #ccc; | |||
background: #f8f8f8; | |||
font-size: 100%; | |||
line-height: 100%; | |||
/* new */ | |||
line-height: 125%; | |||
r102 | } | ||
r298 | |||
div.browserblock .browser-header { | |||
r144 | border-bottom: 1px solid #CCCCCC; | ||
background: #EEEEEE; | |||
r298 | color: blue; | ||
padding: 10px 0 10px 0; | |||
r144 | } | ||
r298 | |||
div.browserblock .browser-header span { | |||
margin-left: 25px; | |||
r102 | font-weight: bold; | ||
} | |||
r298 | |||
div.browserblock .browser-body { | |||
r144 | background: #EEEEEE; | ||
r102 | } | ||
r144 | |||
table.code-browser { | |||
r298 | border-collapse: collapse; | ||
r160 | width: 100%; | ||
r144 | } | ||
r298 | |||
table.code-browser tr { | |||
margin: 3px; | |||
r102 | } | ||
r144 | |||
table.code-browser thead th { | |||
background-color: #EEEEEE; | |||
height: 20px; | |||
font-size: 1.1em; | |||
font-weight: bold; | |||
text-align: center; | |||
r160 | text-align: left; | ||
padding-left: 10px; | |||
r144 | } | ||
r298 | |||
r144 | table.code-browser tbody tr { | ||
r102 | |||
} | |||
r144 | |||
table.code-browser tbody td { | |||
r298 | padding-left: 10px; | ||
r144 | height: 20px; | ||
r102 | } | ||
r144 | |||
.info-table { | |||
background: none repeat scroll 0 0 #FAFAFA; | |||
border-bottom: 1px solid #DDDDDD; | |||
width: 100%; | |||
r102 | } | ||
r144 | |||
.rss_logo { | |||
r210 | background: url("/images/icons/rss_16.png") no-repeat scroll 3px; | ||
r144 | height: 16px; | ||
padding-left: 20px; | |||
padding-top: 0px; | |||
text-align: left; | |||
r105 | } | ||
r144 | .atom_logo { | ||
r210 | background: url("/images/icons/atom.png") no-repeat scroll 3px; | ||
r144 | height: 16px; | ||
padding-left: 20px; | |||
padding-top: 0px; | |||
text-align: left; | |||
} | |||
r298 | |||
.archive_logo { | |||
r210 | background: url("/images/icons/compress.png") no-repeat scroll 3px; | ||
height: 16px; | |||
padding-left: 20px; | |||
text-align: left; | |||
} | |||
r105 | |||
r144 | .browser-file { | ||
r210 | background: url("/images/icons/document_16.png") no-repeat scroll 3px; | ||
r144 | height: 16px; | ||
padding-left: 20px; | |||
text-align: left; | |||
r109 | } | ||
r144 | .browser-dir { | ||
r210 | background: url("/images/icons/folder_16.png") no-repeat scroll 3px; | ||
r144 | height: 16px; | ||
padding-left: 20px; | |||
text-align: left; | |||
} | |||
#repos_list { | |||
border: 1px solid #556CB5; | |||
background: #FFFFFF; | |||
r102 | } |