在ionic <ion-item>

时间:2017-01-27 13:36:17

标签: html css ionic2

我正在尝试在列表中的<ion-item>之间添加自定义水平线。

我的CSS与<ion-list>一起运行正常,只是<ion-list>添加了我自己不想要的规则。我只想要我的自定义规则。

如果我尝试使用<ion-list no-lines>(要删除<ion-list>自动添加的规则,我的CSS不再有效,而且我不会获得自定义规则。

我的CSS是:

.my-item {
  border-style:solid;
  border-bottom-width: 11px;
  border-bottom-color: black;
}

我的HTML是:

<ion-list>
  <ion-item class="my-item>Something</ion-item>
  <ion-item class="my-item>Something Else</ion-item>
</ion-list>

添加我的真实代码

如果这有助于我使用的实际代码:

&#13;
&#13;
page-my-plans {

    }

    .pu-my-plans-plus-circle {
      display: block;
      //border: 2px solid white;
      background-color: $pu-orange;
      border-radius: 50%;
      height: 38px;
      width: 38px;
    }

    .pu-my-plans-plus-circle span {
      font-size: 38px;
      font-weight: 100;
      color: white;
      position: absolute;
      top: -7px;
      left: 8.5px;
    }
    .pu-plan-addButton {
      font-size: 30px;
      margin-right: 14px;
      margin-top:-2px;
    }


    .pu-section-list-item{
      color: black;
      font-weight:$pu-item-font-weight;
      font-size:$pu-item-font-size;
      padding-left:20px;
      padding-right:0px;
      margin-bottom: 4px;
    }
    .item{
      background: transparent !important;
    }


    // THEMING CSS
    // ===========
    //
    .pu-my-plans-background {
      background-image: url("../assets/img/PU_Light_BG_1.png");
      background-size: cover !important;
    }
    .pu-my-plans-item {
      border: none;
      border-bottom: 11px solid black;
    }
    .pu-my-plans-plan-date {
      color: black; //$pu-orange;
      font-size: 11px;
      font-weight: 200;
    }
&#13;
<ion-content class="pu-my-plans-background">

  <div *ngIf="hasPlans">
    <ion-list no-lines class="pu-item-list">
      <!--<ion-item-group reorder="true" (ionItemReorder)="reorderItems($event)">-->
        <ion-item-sliding *ngFor="let plan of plans; let i = index" >
          <ion-item class="pu-section-list-item pu-my-plans-item" (click)="editPlan(plan.id, plan.rev, plan.title, i)">
            {{ plan.title }}
            <br>
            <span class="pu-my-plans-plan-date">{{ plan.updated}}</span>
            <button *ngIf="plan.important" ion-button clear item-right>
              <ion-icon name="ios-alert-outline"></ion-icon>
            </button>
          </ion-item>
          <ion-item-options side="right">
            <button ion-button color="danger" (click)="deletePlan(plan.id, plan.rev)">
              <ion-icon name="delete"></ion-icon>
              Delete
            </button>
          </ion-item-options>
          <div class="xxx">SOME TEXT</div>
        </ion-item-sliding>
      <!--</ion-item-group>-->
    </ion-list>
  </div>

</ion-content>
&#13;
&#13;
&#13;

使用此代码,我尝试获取边框规则失败。如果我将no-lines添加到<ion-list>我的边框有效,但我也会得到<ion-list>生成的行。

这就是上面代码的样子:

enter image description here

如果我带走no-rules,它看起来像这样:

enter image description here

列表底部有一条规则,最后一项没有我想申请的边框。

2 个答案:

答案 0 :(得分:1)

只需在重置前添加自己的边框。

.my-item {
    border: none;
    border-bottom: 11px solid black;
}

修改

Ionic 2的ios样式还包含一个特定于最后一个孩子及其边界的规则,这是需要在此处覆盖的内容。

.list-ios>.item-block:last-child, .list-ios>.item-wrapper:last-child .item-block { 
    border-bottom: .55px solid #c8c7cc; 
}

答案 1 :(得分:0)

我可以帮到你,但我需要访问源代码。 http://view.ionic.io/