Skip to content

Commit 40e4f1d

Browse files
fredtrumandurran
authored andcommitted
Compass-188: Double scroll bars on index view fix; scrollbar on hostname fix; (#560)
1 parent 2b5ee5f commit 40e4f1d

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

src/app/home/index.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@
8989
margin-top: -187px;
9090
padding-top: 187px;
9191
}
92+
&::-webkit-scrollbar {
93+
display: none;
94+
}
9295
}
9396

9497
.column {

src/internal-packages/indexes/styles/index.less

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@
2020

2121
.index-container {
2222

23+
.column-container {
24+
.column.main {
25+
&::-webkit-scrollbar {
26+
display: none;
27+
}
28+
}
29+
}
30+
2331
.create-index-btn {
2432
float: left;
2533
margin: 10px;

src/internal-packages/sidebar/styles/index.less

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,16 +191,20 @@
191191

192192
&-hostname {
193193
display: inline-block;
194-
height: 16px;
195-
width: 214px;
194+
height: 20px;
195+
width: 200px;
196+
line-height: 20px;
196197
overflow-x: hidden;
197198
text-overflow: ellipsis;
199+
&::-webkit-scrollbar {
200+
display: none;
201+
}
198202
}
199203

200204
&-version {
201205
color: #9DA4AA;
202206
font-weight: normal;
203-
line-height: 16px;
207+
line-height: 8px;
204208
height: 16px;
205209
font-size: 13px;
206210
margin-left: 36px;

0 commit comments

Comments
 (0)