| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- // ==========================================================================
- // FILTER TABLE
- // ==========================================================================
- // Table
- // --------------------------------------------------------------------------
- .filter-table * {
- box-sizing: border-box;
- }
- .filter-table {
- width: 100%;
- table-layout: fixed;
- border-collapse: collapse;
- }
- .filter-table tr {
- background: @grafanaPanelBackground;
- border-bottom: 2px solid @bodyBackground;
- }
- .filter-table th {
- padding: 10px 15px 10px 0;
- text-align: left;
- &:first-child {
- padding-left: 15px;
- }
- }
- .filter-table td {
- padding: 15px 15px 15px 0;
- &:first-child {
- padding-left: 15px;
- }
- }
- .filter-table .ellipsis {
- display: block;
- width: 100%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
|