Skip to content
Snippets Groups Projects
Commit 0c18db46 authored by Florent Poittevin's avatar Florent Poittevin
Browse files

fix: update main toolbar mobile to avoid hover on non clickable element

parent 6e5c679a
No related branches found
No related tags found
No related merge requests found
......@@ -37,12 +37,12 @@
</ng-template>
<li *ngIf="!isProduction"
class="theme-selector">
class="theme-selector no-clickable">
<dlcm-theme-selector [(theme)]="theme">
</dlcm-theme-selector>
</li>
<li class="version">
<li class="version no-clickable">
{{appUtil.getVersions()}}
</li>
</ul>
......
......@@ -43,10 +43,13 @@ ul {
li {
list-style: none;
padding: 8px 0px;
cursor: pointer;
&:hover {
background-color: $grey;
&:not(.no-clickable) {
cursor: pointer;
&:hover {
background-color: $grey;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment