Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_tables.scss « scss « metro « themes - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54cbf43fb8f58aed6d822dae9ccf345440506f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.table {
  caption-side: top;

  td {
    touch-action: manipulation;
    vertical-align: middle;
  }

  th {
    background-color: $th-background;
    font-family: $font-family-bold;
    font-weight: normal;
    border-bottom: 1px solid $border-color;

    a {
      color: $th-color;
    }
  }

  caption {
    font-family: $font-family-bold;
    background-color: $th-background;
    font-weight: normal;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) {
  .table th.position-sticky {
    top: 87px;
  }
}