diff options
author | James Moger <james.moger@gitblit.com> | 2013-06-18 22:22:31 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-06-18 22:22:31 -0400 |
commit | ff7d3cffc7af1f24a1db8d42758943cc05bcbaa0 (patch) | |
tree | 798f512e83f9a1e7de120078f11b05d132e507ba /src/main/resources | |
parent | f5359b93f1c68f76c00f7efc3746a227ba5249bc (diff) | |
download | gitblit-ff7d3cffc7af1f24a1db8d42758943cc05bcbaa0.tar.gz gitblit-ff7d3cffc7af1f24a1db8d42758943cc05bcbaa0.zip |
Reflogs, Digests, and Dashboards
Renamed pushlog to reflog to better match it's current and future purpose.
Split PushesPanel into ReflogPanel and DigestsPanel.
Overhauled project pages and gave them a coherent purpose from the dashboard.
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/gitblit.css | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/src/main/resources/gitblit.css b/src/main/resources/gitblit.css index 351d43fe..6074b369 100644 --- a/src/main/resources/gitblit.css +++ b/src/main/resources/gitblit.css @@ -129,23 +129,39 @@ navbar div>ul .menu-dropdown li a:hover,.nav .menu-dropdown li a:hover,.navbar d background-color: #002060;
}
-div.push {
+div.reflog {
border-bottom: 1px solid #ddd;
margin-bottom: 5px;
padding-bottom: 5px;
}
-div.push .icon {
+div.reflog .icon {
font-size: 42px;
line-height: 42px;
}
-div.push i {
+div.reflog .when {
+ color: #aaa;
+}
+
+div.reflog i {
font-size: 42px;
color: #bbb;
vertical-align: middle;
}
+div.dashboardTitle {
+ font-size: 1.75em;
+ padding-bottom: 5px;
+ margin-bottom: 10px;
+ border-bottom: 1px solid #ccc;
+}
+
+div.dashboardTitle small {
+ color: #888;
+ font-size: 0.7em;
+}
+
.repositorynavbar {
background-color: #fbfbfb;
border-bottom: 1px solid #ccc;
|