diff --git a/josh-ui/src/App.scss b/josh-ui/src/App.scss index e2d145b3f..6d134d625 100644 --- a/josh-ui/src/App.scss +++ b/josh-ui/src/App.scss @@ -147,6 +147,20 @@ nav { } } +.history-list-entry .summary { + @include ui-link-clickable; + &:hover { + background: $color-background-highlight; + } +} + +.history-list-entry .hash { + @include ui-link-clickable; + &:hover { + background: $color-background-highlight; + } +} + .commit-list-entry-browse { @include ui-link-clickable; &:hover { @@ -157,6 +171,11 @@ nav { .commit-list-entry { padding: .4em .4em; + display: block; + + &:hover { + background: $color-background-highlight; + } span.hash { margin: 0 0.7em 0 0; @@ -164,12 +183,12 @@ nav { font-weight: bolder; } span.authorEmail { + float: right; margin: 0 0.7em 0 0; - color: $color-highlight; + color: $color-font-shadowed; font-weight: bolder; } span.summary { - display: block; margin: 0 0.7em 0 0; font-weight: bolder; } diff --git a/josh-ui/src/History.tsx b/josh-ui/src/History.tsx index 7472de5c9..4bdaa8c58 100644 --- a/josh-ui/src/History.tsx +++ b/josh-ui/src/History.tsx @@ -91,17 +91,19 @@ export class HistoryList extends React.Component { return values.map((entry) => { return
-
- {entry.summary} +
+ + {entry.hash.slice(0,8)} + + + {entry.summary} + {entry.authorEmail}
-
- Browse -
})