en.javascript.info/2-ui/5-widgets/5-custom-events/menu-callback.view/style.css
2015-02-15 15:33:02 +03:00

20 lines
No EOL
326 B
CSS
Executable file

.menu ul {
display: none;
margin: 0;
}
.menu .title {
font-weight: bold;
cursor: pointer;
background: url(https://js.cx/clipart/arrow-right.png) left center no-repeat;
padding-left: 18px;
}
.menu.open ul {
display: block;
}
.menu.open .title {
background-image: url(https://js.cx/clipart/arrow-down.png);
}