summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/tables.scss
blob: 793ab3d9bb9bf50e50a3953864233d5ea4f58df5 (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
44
45
46
.table-holder {
  margin: -$gl-padding;
  margin-top: 0;
  margin-bottom: 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 {
        font-weight: normal;
        font-size: 15px;
        border-bottom: 1px solid $border-color !important;
      }

      td {
        border-color: $table-border-color !important;
        border-bottom: 1px solid;
      }
    }
  }
}