简体   繁体   English

引导程序表中特定列的最后一行

[英]Bootstrap table last row in specific column

I have custom calendar that looks like this: 我有如下自定义日历:

在此处输入图片说明

As it's shown on the calendar I need to mark today's date with a specific border. 正如日历上显示的那样,我需要用特定的边框标记今天的日期。 I'm not sure how I can get last row in specific (today's) column and set border-bottom: 1px solid red; 我不确定如何获得特定列(今天的列)的最后一行并设置border-bottom: 1px solid red; on it. 在上面。

My custom SCSS code for the table looks like this, the last row in column where td class contains .client-today , I need to add border-bottom: 1px solid red; 我为表格自定义的SCSS代码如下所示, td类包含.client-today列的最后一行,我需要添加border-bottom: 1px solid red; (but just on last). (但仅在最后)。

.calendar-table {
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
    empty-cells: show;
    td {
        text-align: center;
        &:first-child {
            text-align: left;
            padding: 5px;
        }
    }
    th {
        text-align: center;
        padding: 5px;
        &:first-child {
            width: 15%;
        }
    }
    .today {
        border-bottom: 2px solid #C22;
    }
    .client-today {
        border-right: 2px solid #C22 !important;
        border-left: 2px solid #C22 !important;
    }
    .checked {
        border: none;
        cursor: pointer;
        background-color: rgba(255, 234, 234, 1);
        background: linear-gradient(to bottom, rgba(255, 234, 234, 1) 0%, rgba(255, 193, 193, 1) 100%);
    }
    .is-switch {
        border: none;
        cursor: pointer;
        z-index: 2;
        background-color: #ffc578;
        background: linear-gradient(to bottom, #ffc578 0%, #fb9d23 100%);
    }
    .attendant-name {
        position: absolute;
        top: 5px;
        width: 140px;
        z-index: 1;
        text-align: left;
        padding-left: 5px;
    }
    &.table-hover > tbody > tr:hover {
        background-color: #f2f9fe;
        background: linear-gradient(to bottom, #f2f9fe 0%, #d6f0fd 100%);
    }
}
<table class="calendar-table table-bordered table-hover">
    <thead>
        <tr>
            <th>Clients</th>
            <th ng-class="{'today': day.today}" ng-repeat="day in $ctrl.days track by $index">
                {{day.dateView}}
            </th>
        </tr>
    </thead>
    <tbody>
        <tr dir-paginate="item in $ctrl.calendar | itemsPerPage: $ctrl.pageSize track by $index " total-items="$ctrl.totalItems">
            <td>
                {{item.name}}
            </td>
            <td style="position: relative" ng-click="$ctrl.openEvent(day)" ng-class="{ 'checked': day.checked, 'is-switch' : day.isSwitch, 'client-today': day.today }" ng-repeat="day in item.calendar track by $index">
                <div ng-if="day.attendantName" class="attendant-name">{{day.attendantName}}</div>
                <i ng-if="day.isSwitch" class="fa fa-car" aria-hidden="true"></i>
            </td>
        </tr>
    </tbody>
</table>

You can use the last-child CSS selector. 您可以使用last-child CSS选择器。

tbody tr:last-child .client-today {
  border-bottom: 1px solid red;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM