| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .table-panel-wrapper {
- .panel-content {
- padding: 0;
- }
- .panel-title-container {
- padding-bottom: 4px;
- }
- }
- .table-panel-container {
- overflow: auto;
- }
- .table-panel-footer {
- text-align: center;
- .pagination {
- display: inline-block;
- }
- }
- .gf-table-panel* {
- box-sizing: border-box;
- }
- .gf-table-panel {
- width: 100%;
- border-collapse: collapse;
- }
- .gf-table-panel tr {
- border-bottom: 2px solid @bodyBackground;
- }
- .gf-table-panel th {
- background: @grafanaListAccent;
- padding: 5px 0 5px 15px;
- text-align: left;
- border-top: 2px solid @bodyBackground;
- color: @blue;
- &:first-child {
- padding-left: 15px;
- }
- }
- .gf-table-panel td {
- padding: 12px 0 12px 15px;
- &:first-child {
- padding-left: 15px;
- }
- }
- .gf-table-panel .ellipsis {
- display: block;
- width: 100%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
|