From d0d438f480e29a5ebaf64449a5c3e7f4ebb13690 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Wed, 11 May 2011 22:33:16 -0400 Subject: [PATCH] Clarified access restrictions. --- src/com/gitblit/wicket/resources/gitblit.css | 91 ++++++++++++++++++++++++++++++++++++--------- 1 files changed, 73 insertions(+), 18 deletions(-) diff --git a/src/com/gitblit/wicket/resources/gitblit.css b/src/com/gitblit/wicket/resources/gitblit.css index 3200381..13e761d 100644 --- a/src/com/gitblit/wicket/resources/gitblit.css +++ b/src/com/gitblit/wicket/resources/gitblit.css @@ -32,14 +32,14 @@ /* age0: age < 60*60*2 */ .age0 { - color: #009900; + color: #008000; font-style: italic; font-weight: bold; } /* age1: 60*60*2 <= age < 60*60*24*2 */ .age1 { - color: #009900; + color: #008000; font-style: italic; } @@ -72,25 +72,39 @@ line-height: inherit; } -div.header { +div.header, div.commitHeader { background-color: #D2C3AF; padding: 3px; border: 1px solid #808080; +} + +div.header { border-radius: 3px 3px 0 0; } -div.header a { +div.commitHeader { + border-radius: 3px; +} + +div.header a, div.commitHeader a { color: black; text-decoration: none; font-weight: bold; } -div.header a:hover { +div.header a:hover, div.commitHeader a:hover { text-decoration: underline; } div.pager { padding: 0px 0px 15px 5px; +} + +span.empty { + font-size: 0.9em; + font-style: italic; + padding-left:10px; + color: #008000; } span.link, span.link a { @@ -265,7 +279,7 @@ } span.diff.remove { - color: #cc0000; + color: #FFDDDD; font-family: inherit; } @@ -366,7 +380,7 @@ } span.addition { - background-color: #bbffbb; + background-color: #ccffcc; } span.modification { @@ -374,11 +388,11 @@ } span.deletion { - background-color: #ff8888; + background-color: #f8bbbb; } span.rename { - background-color: #8888ff; + background-color: #cAc2f5; } div.commitLegend { @@ -430,8 +444,13 @@ padding: 8px; } -table.plain td.edit { +table.plain td.edit { padding: 3px; +} + +table.plain td.editButton { + padding:0px; + padding-top: 10px; } table.plain td.edit input { @@ -504,6 +523,19 @@ font-weight: bold; } +table.palette { border:0;} +table.palette td.header { + font-weight: bold; + background-color: #D2C3AF !important; + padding: 3px !important; + border: 1px solid #808080 !important; + border-bottom: 0px solid !important; + border-radius: 3px 3px 0 0; +} +table.palette td.pane { + padding: 0px; +} + tr th a { padding-right: 15px; background-position: right; background-repeat:no-repeat; } tr th.wicket_orderDown a {background-image: url(arrow_down.png); } tr th.wicket_orderUp a { background-image: url(arrow_up.png); } @@ -558,19 +590,25 @@ } td.mode { + text-align: right; font-family: monospace; - width:90px; + width: 8em; padding-right:15px; } td.size { text-align: right; - width:100px; + width: 8em; padding-right:15px; } td.rightAlign { text-align: right; +} + +td.treeLinks { + text-align: right; + width: 13em; } span .tagRef, span .headRef, span .remoteRef, span .otherRef { @@ -599,20 +637,37 @@ span .otherRef { background-color: #ffaaff; - border-color: #ffccff #ff00ee #ff00ee #ffccff; + border-color: #ff00ee; } span .remoteRef { - background-color: #aaaaff; - border-color: #ccccff #0033cc #0033cc #ccccff; + background-color: #cAc2f5; + border-color: #6c6cbf; } span .tagRef { background-color: #ffffaa; - border-color: #ffffcc #ffee00 #ffee00 #ffffcc; + border-color: #ffcc00; } span .headRef { - background-color: #aaffaa; - border-color: #ccffcc #00cc33 #00cc33 #ccffcc; + background-color: #ccffcc; + border-color: #00cc33; +} + +.feedbackPanelERROR { + color: red; + list-style-image: url(bullet_error.png); + font-weight: bold; + vertical-align: top; + padding:0; + margin:0; +} + +.feedbackPanelINFO { + color: green; + list-style: none; + font-weight: bold; + padding:0; + margin:0; } \ No newline at end of file -- Gitblit v1.9.1