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

xlsx.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d34a001e3f06eebac2f3b2085783c3ad1945baa0 (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
$hll-bg: #f8eec7;

.hll {
  > td {
    background-color: $hll-bg;
  }
}

.xlsx-table {
  border: 0;

  > thead > tr > th {
    &:first-of-type {
      border-left: 0;
    }

    &:last-of-type {
      border-right: 0;
    }
  }

  > tbody > tr > td {
    &:first-of-type {
      background-color: $gray-light;
      border-top: 0;
      border-bottom: 0;
      vertical-align: middle;
    }
  }
}