summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/gitlab_bootstrap/lists.scss
blob: a5d6bd0af4ca1b6dc3a18a67e609337dcd279840 (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
/** LISTS **/

ul {
  /**
   * List li block element #1
   *
   */
  .wll {
    background-color: #FFF;
    padding: 10px 5px;
    min-height: 20px;
    border-bottom: 1px solid #eee;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    &.smoke { background-color:#f5f5f5; }
    &:hover {
      background:$hover;
      border-bottom:1px solid #ADF;
    }
    &:last-child { border:none }
    .author { color: #999; }

    p {
      padding-top:5px;
      margin:0;
      color:#222;
      img {
        position:relative;
        top:3px;
      }
    }
  }
}