summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/tables.scss
blob: b42075c98d06f44ffb70d67eb94f1c51f8e7dcf1 (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
33
34
35
36
37
38
39
40
41
42
43
.table-holder {
  margin: 0;
}

table {
  &.table {
    margin-bottom: $gl-padding;

    .dropdown-menu a {
      text-decoration: none;
    }

    .success,
    .warning,
    .danger,
    .info {
      color: #fff;

      a:not(.btn) {
        text-decoration: underline;
        color: #fff;
      }
    }

    tr {
      td, th {
        padding: 10px $gl-padding;
        line-height: 20px;
        vertical-align: middle;
      }

      th {
        background-color: $background-color;
        font-weight: normal;
        border-bottom: none;
      }

      td {
        border-color: $table-border-color;
      }
    }
  }
}