1

paper-dialog对于我的生活,当我在顶部有一个应用程序工具栏时,我似乎无法从顶部删除愚蠢的边距。

我设法div通过使用仅使用标准对其进行排序margin-top: 0px;,但我不能对app-toolbar.

在此处输入图像描述

Chrome 上开发人员模式的罪魁祸首似乎是这一行,但我无法理解......

在此处输入图像描述

代码

paper-dialog {
  border-radius: 2px;
}

app-toolbar {
  background: green;
  margin-top: 0px;
}

.card-content {
  margin-top: 0px;
}
<base href="https://polygit.org/polymer+polymer+v1.9.1/components/" />
<script src="webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="polymer/polymer.html" />
<link rel="import" href="paper-dialog/paper-dialog.html" />
<link rel="import" href="app-layout/app-toolbar/app-toolbar.html" />
<link rel="import" href="paper-input/paper-input.html" />
<link rel="import" href="neon-animation/animations/scale-up-animation.html" />

<paper-dialog modal alwaysOnTop opened horizontalAlign="auto" entry-animation="scale-up-animation" exit-animation="fade-out-animation">
  <app-toolbar>Log in</app-toolbar>
  <div class="card-content">
    <paper-input placeholder="username or email"></paper-input>
    <paper-input placeholder="password"></paper-input>
  </div>
</paper-dialog>

4

2 回答 2

2

尝试添加:

padding-top: 0px;
margin-top: 0px;

到您的 css 以获取纸质对话框或包含纸质对话框的 div!

于 2017-07-10T14:32:46.250 回答
2

让你的 CSS 胜过继承的 CSS 的技巧是比继承的 CSS 更具体。

为此,我在 paper-dialog 中添加了一个类,然后对于我所说的选择器paper-dialog.someclass>app-toolbar:first-child,这意味着在 paper-dialog 中 app-toolbar 的第一个实例与类 someclass。

然后是接受这个 CSS 覆盖继承的位。

paper-dialog {
  border-radius: 2px;
}

paper-dialog.someclass>app-toolbar:first-child {
  background: green;
  margin-top: 0px;
}

.card-content {
  margin-top: 0px;
}
<base href="https://polygit.org/polymer+polymer+v1.9.1/components/" />
<script src="webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="polymer/polymer.html" />
<link rel="import" href="paper-dialog/paper-dialog.html" />
<link rel="import" href="app-layout/app-toolbar/app-toolbar.html" />
<link rel="import" href="paper-input/paper-input.html" />
<link rel="import" href="neon-animation/animations/scale-up-animation.html" />

<paper-dialog class="someclass" modal alwaysOnTop opened horizontalAlign="auto" entry-animation="scale-up-animation" exit-animation="fade-out-animation">
  <app-toolbar>Log in</app-toolbar>
  <div class="card-content">
    <paper-input placeholder="username or email"></paper-input>
    <paper-input placeholder="password"></paper-input>
  </div>
</paper-dialog>

于 2017-07-10T14:23:08.703 回答