mirror of
https://github.com/google/pebble.git
synced 2025-04-01 15:24:04 +00:00
40 lines
No EOL
507 B
SCSS
Executable file
40 lines
No EOL
507 B
SCSS
Executable file
/*
|
|
jQuery.mmenu labels addon CSS
|
|
*/
|
|
|
|
@import "../inc/variables";
|
|
|
|
.mm-list
|
|
{
|
|
li.mm-label
|
|
{
|
|
> span
|
|
{
|
|
@include mm_ellipsis;
|
|
padding: 0;
|
|
line-height: $mm_labelHeight;
|
|
}
|
|
|
|
&.mm-opened a.mm-subopen:after
|
|
{
|
|
@include mm_webkit-prefix( "transform", rotate( 45deg ) );
|
|
}
|
|
}
|
|
li.mm-collapsed:not( .mm-uncollapsed )
|
|
{
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.mm-menu.mm-vertical .mm-list
|
|
{
|
|
> li.mm-label
|
|
{
|
|
> a.mm-subopen:after
|
|
{
|
|
top: ( $mm_labelHeight / 2 ) - 4;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include mm_colors_labels; |