Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/navigation/navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,14 @@ nav {
.resources {
.ui-icon { left: 10px; }
}
.trade, .instruments, .resources {
.trade, .instruments, .resources, .workspace {
.ui-menu .ui-menu-item {
list-style-image: none !important;
white-space: nowrap;
.ui-menu-item-wrapper {
padding: 8px 30px;
font-size: 14px;
cursor: pointer;
}
div {
font-size: 1rem;
Expand Down
16 changes: 8 additions & 8 deletions src/workspace/workspace-menu.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<ul class='workspace-ul'>
<li rv-on-click='showWorkspaceManager' class='invert-on-hover'>
<a href="#">
<li rv-on-click='showWorkspaceManager'>
<a href='#'>
<span class='ui-icon ui-icon-workspace'></span>
Manage
{'Manage' | i18n}
</a>
</li>
<li rv-on-click='tileDialogs' class='invert-on-hover'>
<a href="#">
<li rv-on-click='tileDialogs'>
<a href='#'>
<span class='ui-icon ui-icon-arrange'></span>
<span>Arrange</span>
{'Arrange' | i18n}
</a>
</li>
<li class='invert-on-hover' rv-on-click='closeAll'>
<li rv-on-click='closeAll'>
<a href='#'>
<span class='ui-icon ui-icon-delete'></span>
Close All
{'Close All' | i18n}
</a>
</li>
</ul>
1 change: 1 addition & 0 deletions src/workspace/workspace-menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ul.workspace-ul {
> a {
&:hover { opacity: 1; }
color: white;
font-size: 14px;
padding: 0;
line-height: 34px;
padding: 0 10px 0 36px !important;
Expand Down