Skip to content

Commit 3d98040

Browse files
marcgurneykangas
authored andcommitted
INT-391 fix wrapping collection stats, fix sidebar list styling in connection window
1 parent 5bf95e9 commit 3d98040

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/connect/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var ConnectionView = View.extend({
1818
hook: 'name'
1919
}
2020
},
21-
template: '<a class="list-group-item" data-hook="name"></a>',
21+
template: '<li class="list-group-item"><a data-hook="name"></a></li>',
2222
onClick: function(event) {
2323
event.stopPropagation();
2424
event.preventDefault();

src/connect/sidebar.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ div
22
.sidebar.panel
33
.panel-heading(style='padding: 10px;')
44
.panel-title Connections
5-
.list-group(data-hook='connection-list', style='top: 32px;')
5+
ul.list-group(data-hook='connection-list', style='top: 32px;')
66

77
.sidebar-bg

styles/index.less

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,11 @@ html, body{
125125
.collection-stats-holder {
126126
position: absolute;
127127
right: 20px;
128+
text-align: right;
129+
min-width: 450px;
128130
}
129131
.collection-stats {
130-
float: left;
132+
display: inline-block;
131133
font-weight: 200;
132134
list-style: none;
133135
padding: 0 30px 0 0;

0 commit comments

Comments
 (0)