123456789101112131415161718192021222324252627282930313233343536373839 |
- .statistics-module {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- }
- .statistics-module > .statistics-table {
- width: 100%;
- color: #d1d1d1;
- border-collapse: collapse;
- text-align: center;
- }
- .statistics-module > .statistics-table,
- .statistics-module > .statistics-table tr,
- .statistics-module > .statistics-table td,
- .statistics-module > .statistics-table th {
- border: 1px solid #d1d1d1;
- }
- .statistics-module > .statistics-pager {
- margin: 5px 0;
- }
- .statistics-module > .statistics-pager > span,
- .statistics-module > .statistics-pager > .pager-page-size-selector {
- margin-left: 5px;
- }
- .statistics-module > .statistics-pager > .pager-page {
- text-decoration: underline;
- cursor: pointer;
- }
- .statistics-module > .statistics-pager > .pager-page.current {
- font-weight: 900;
- text-decoration: none;
- cursor: default;
- }
|