Skip to content

Commit d1edcac

Browse files
authored
Merge pull request #648 from will-moore/top_links_scrollbar_hidden
hide scrollbar for top-links
2 parents 225bb1e + 2cdcbff commit d1edcac

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

omeroweb/webclient/templates/webclient/base/includes/menu.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
</ul>
3838

3939
<!-- Only shown if ul list scrollable -->
40-
<button id="more_button" style="display: none;height: 23px; border-radius: 4px; border: solid 1px hsl(210, 15%, 25%); background: transparent; color: hsl(210,20%,80%); min-width: none;">
40+
<button id="more_button" title="Scroll the links to the right to see the full list"
41+
style="display: none; height: 23px; border-radius: 4px; border: solid 1px hsl(210, 15%, 25%); background: transparent; color: hsl(210,20%,80%); min-width: none;">
4142
More...
4243
</button>
4344

omeroweb/webgateway/static/webgateway/css/ome.header.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@
7575
margin-left:10px;
7676
position:relative;
7777
flex: 1 1 auto;
78-
overflow: auto;
78+
overflow-x: auto;
79+
overflow-y: hidden;
7980
height: 100%;
8081
display: flex;
8182
flex-direction: row;
@@ -123,7 +124,7 @@
123124
justify-content: flex-start;
124125
overflow-x: auto;
125126
gap: 24px;
126-
height: 100%;
127+
height: 100px;
127128
align-items: center;
128129
}
129130

0 commit comments

Comments
 (0)