在 Polymer labs 待办事项列表https://github.com/PolymerLabs/todo-list.git中,我在 index.html 中添加了一个类似这样的纸质下拉菜单
<body unresolved class="fullbleed layout vertical">
<span id="browser-sync-binding"></span>
<template is="dom-bind" id="app">
<todo-auth id="auth"
user="{{user}}"
location="[[firebaseURL]]"
user="{{user}}">
</todo-auth>
<todo-data location="[[firebaseURL]]"
todos="{{todos}}"
user="{{user}}">
</todo-data>
<todo-view class="flex"
route="{{route}}"
todos="{{todos}}"
on-sign-out="signOut">
</todo-view>
<paper-dropdown-menu label="Time">
<paper-listbox class="dropdown-content" selected="0">
<paper-item>All dDay</paper-item>
<paper-item>AM</paper-item>
<paper-item>PM</paper-item>
</paper-listbox>
</paper-dropdown-menu>
<paper-toast id="caching-complete"
duration="6000"
text="Caching complete! This app will work offline.">
</paper-toast>
在 paper-dropdown-menu 演示的源代码中,我没有看到他们做任何特别的事情来让它垂直堆叠。我可以知道什么覆盖了待办事项列表应用程序中的默认样式以及如何让它垂直堆叠?谢谢。