diff options
author | James Moger <james.moger@gitblit.com> | 2013-09-18 12:12:52 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-09-18 12:12:52 -0400 |
commit | cba235ff73f5eff90f6e178104466fa22271b053 (patch) | |
tree | 5af2893762eaf9e8e419bd6f05082c54eaeeb1f8 /src/main/resources/gitblit.css | |
parent | 0c5cee25a1d9019de2d92427fda886a28076aa01 (diff) | |
download | gitblit-cba235ff73f5eff90f6e178104466fa22271b053.tar.gz gitblit-cba235ff73f5eff90f6e178104466fa22271b053.zip |
CSS tweaks for responsive layout
Diffstat (limited to 'src/main/resources/gitblit.css')
-rw-r--r-- | src/main/resources/gitblit.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/resources/gitblit.css b/src/main/resources/gitblit.css index eef0d0b5..05e6b8ae 100644 --- a/src/main/resources/gitblit.css +++ b/src/main/resources/gitblit.css @@ -1131,7 +1131,7 @@ table.pretty td.icon { }
table.pretty td.icon img {
- vertical-align: top;
+ vertical-align: middle;
}
table.pretty td {
@@ -1159,7 +1159,7 @@ table.pretty tr.commit { height: 24px;
}
-@media (min-width: 768px) {
+@media (min-width: 979px) {
td.ellipsize {
text-overflow: ellipsis;
overflow: hidden;
@@ -1167,7 +1167,7 @@ table.pretty tr.commit { }
}
-@media (max-width: 767px) {
+@media (max-width: 979px) {
td.ellipsize {
text-overflow: inherit;
overflow: visible;
@@ -1324,6 +1324,7 @@ tr.dark:hover a { td.author {
font-style: italic !important;
+ white-space: nowrap;
}
td.date {
|