fix disabled menu item focus jumping
unfortunately this causes a new issue. the container gets 1px larger i think due to box model issues. but this is better than before. le sigh...
This commit is contained in:
parent
92f0c80e9f
commit
3971dc65f6
2 changed files with 13 additions and 4 deletions
|
|
@ -45,7 +45,7 @@ body
|
||||||
list-style none outside none
|
list-style none outside none
|
||||||
margin 2px
|
margin 2px
|
||||||
padding 4px
|
padding 4px
|
||||||
|
|
||||||
h1
|
h1
|
||||||
letter-spacing 0.1em
|
letter-spacing 0.1em
|
||||||
margin-top 8px
|
margin-top 8px
|
||||||
|
|
@ -138,7 +138,7 @@ body
|
||||||
|
|
||||||
div.cursor
|
div.cursor
|
||||||
text-decoration underline
|
text-decoration underline
|
||||||
|
|
||||||
#lib-filter
|
#lib-filter
|
||||||
margin 4px
|
margin 4px
|
||||||
width 175px
|
width 175px
|
||||||
|
|
@ -214,7 +214,7 @@ body
|
||||||
|
|
||||||
div.selected
|
div.selected
|
||||||
selected-div()
|
selected-div()
|
||||||
|
|
||||||
div.current
|
div.current
|
||||||
border 1px solid #096AC8
|
border 1px solid #096AC8
|
||||||
background-color #292929
|
background-color #292929
|
||||||
|
|
@ -251,6 +251,15 @@ body
|
||||||
width: 240px
|
width: 240px
|
||||||
font-size: 1em
|
font-size: 1em
|
||||||
|
|
||||||
|
#menu-library .ui-state-disabled.ui-state-focus,
|
||||||
|
#menu-playlist .ui-state-disabled.ui-state-focus
|
||||||
|
margin: .3em -1px .2em
|
||||||
|
|
||||||
|
#menu-library .menu-item-last.ui-state-disabled.ui-state-focus,
|
||||||
|
#menu-playlist .menu-item-last.ui-state-disabled.ui-state-focus
|
||||||
|
margin: 5px -1px .2em
|
||||||
|
height: 23px
|
||||||
|
|
||||||
#shortcuts
|
#shortcuts
|
||||||
h1
|
h1
|
||||||
margin-bottom 10px
|
margin-bottom 10px
|
||||||
|
|
|
||||||
|
|
@ -356,7 +356,7 @@
|
||||||
<li><a href="#" class="queue-next-random">Queue Next in Random Order</a></li>
|
<li><a href="#" class="queue-next-random">Queue Next in Random Order</a></li>
|
||||||
<li><a href="#" class="delete">Delete</a></li>
|
<li><a href="#" class="delete">Delete</a></li>
|
||||||
<li><a href="#" class="download" target="_blank">Download</a></li>
|
<li><a href="#" class="download" target="_blank">Download</a></li>
|
||||||
<li><a href="#" class="edit-tags">Edit Tags</a></li>
|
<li><a href="#" class="edit-tags menu-item-last">Edit Tags</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<script src="vendor/jquery-2.1.0.min.js"></script>
|
<script src="vendor/jquery-2.1.0.min.js"></script>
|
||||||
<script src="vendor/jquery-ui-1.10.4.custom.min.js"></script>
|
<script src="vendor/jquery-ui-1.10.4.custom.min.js"></script>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue