summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/tables.scss
blob: 76163b3a05ecfcf0af114e833426a08b6d255b95 (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
table {
  &.table {
    .dropdown-menu a {
      text-decoration: none;
    }

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

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

    tr {
      td, th {
        padding: 8px 10px;
        line-height: 20px;
        vertical-align: middle;
      }
      th {
        font-weight: normal;
        font-size: 15px;
        border-bottom: 1px solid $border-color !important;
      }
      td {
        border-color: #F1F1F1 !important;
        border-bottom: 1px solid;
      }
    }
  }
}