fix master backlog sub-menu accessibility
This commit is contained in:
@@ -56,6 +56,7 @@ Latest (master):
|
|||||||
|
|
||||||
* Fixed .warning style
|
* Fixed .warning style
|
||||||
+ Coloring status on issue page (it'll look like label)
|
+ Coloring status on issue page (it'll look like label)
|
||||||
|
* Fixed master backlog sub-menu accessibility
|
||||||
|
|
||||||
v1.1.0 (2015-02-15):
|
v1.1.0 (2015-02-15):
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -352,6 +352,7 @@ $story-sp-input-width: 50px;
|
|||||||
}
|
}
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
|
position: relative;
|
||||||
min-width: 150px;
|
min-width: 150px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
@@ -366,19 +367,34 @@ $story-sp-input-width: 50px;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
> .ui-icon {
|
||||||
|
position: absolute;
|
||||||
|
top: 4px;
|
||||||
|
right: 8px;
|
||||||
|
left: auto;
|
||||||
|
background-position: -32px -16px;
|
||||||
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: -1px;
|
||||||
left: 160px;
|
left: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background-color: $gray-lightest;
|
border: 1px solid $gray-light;
|
||||||
|
border-left: 0 none;
|
||||||
|
background-color: $body-bg;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
box-shadow: 0 2px 1px rgba(#000, .1);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover ul {
|
&:hover {
|
||||||
display: block;
|
background-color: $gray-lightest;
|
||||||
|
|
||||||
|
ul {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user