mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 09:30:31 +03:00
Added sticky header to tags table
This commit is contained in:
parent
16d2e437b6
commit
b0c1549005
3 changed files with 19 additions and 8 deletions
9
src/tags/TagsTable.scss
Normal file
9
src/tags/TagsTable.scss
Normal file
|
@ -0,0 +1,9 @@
|
|||
@import '../utils/base';
|
||||
@import '../utils/mixins/sticky-cell';
|
||||
|
||||
.tags-table__header-cell.tags-table__header-cell {
|
||||
@include sticky-cell(false);
|
||||
|
||||
top: $headerHeight;
|
||||
position: sticky;
|
||||
}
|
|
@ -8,6 +8,7 @@ import { useQueryState } from '../utils/helpers/hooks';
|
|||
import { parseQuery } from '../utils/helpers/query';
|
||||
import { TagsListChildrenProps } from './data/TagsListChildrenProps';
|
||||
import { TagsTableRowProps } from './TagsTableRow';
|
||||
import './TagsTable.scss';
|
||||
|
||||
const TAGS_PER_PAGE = 20; // TODO Allow customizing this value in settings
|
||||
|
||||
|
@ -35,11 +36,12 @@ export const TagsTable = (colorGenerator: ColorGenerator, TagsTableRow: FC<TagsT
|
|||
<table className="table table-hover mb-0">
|
||||
<thead className="responsive-table__header">
|
||||
<tr>
|
||||
<th>Tag</th>
|
||||
<th className="text-lg-right">Short URLs</th>
|
||||
<th className="text-lg-right">Visits</th>
|
||||
<th />
|
||||
<th className="tags-table__header-cell">Tag</th>
|
||||
<th className="tags-table__header-cell text-lg-right">Short URLs</th>
|
||||
<th className="tags-table__header-cell text-lg-right">Visits</th>
|
||||
<th className="tags-table__header-cell" />
|
||||
</tr>
|
||||
<tr><th colSpan={4} className="p-0 border-top-0" /></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{currentPage.length === 0 && <tr><td colSpan={4} className="text-center">No results found</td></tr>}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
@import '../base';
|
||||
|
||||
@mixin sticky-cell() {
|
||||
@mixin sticky-cell($with-separators: true) {
|
||||
z-index: 1;
|
||||
border: none !important;
|
||||
position: relative;
|
||||
|
@ -11,20 +11,20 @@
|
|||
top: -1px;
|
||||
left: 0;
|
||||
bottom: -1px;
|
||||
right: -1px;
|
||||
right: if($with-separators, -1px, 0);
|
||||
background: var(--table-border-color);
|
||||
z-index: -2;
|
||||
}
|
||||
|
||||
&:first-child:before {
|
||||
left: -1px;
|
||||
left: if($with-separators, -1px, 0);
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 1px;
|
||||
left: if($with-separators, 1px, 0);
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
background: var(--primary-color);
|
||||
|
|
Loading…
Reference in a new issue