blob: e4ad010cc5de29e5184545202b3a74e7e6e1d056 (
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
47
48
49
50
51
52
53
54
55
56
57
  | 
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color:  #178CA6;
$value-color:       #fff;
$title-color:       #fff;
$label-color:       rgba(255, 255, 255, 0.7);
$moreinfo-color:    rgba(255, 255, 255, 0.7);
// ----------------------------------------------------------------------------
// Widget-github_pr styles
// ----------------------------------------------------------------------------
.widget-github-pr {
  background-color: $background-color;
  vertical-align: top;
  .title {
    color: $title-color;
  }
  ol, ul {
    margin: 0 15px;
    text-align: left;
    color: $label-color;
  }
  ol {
    list-style-position: inside;
  }
  li {
    margin-bottom: 5px;
  }
  .github_pr-nostyle {
    list-style: none;
  }
  .label-link {
    color: $value-color;
    &:hover {
      color: rgba(255, 255, 255, 0.7);
    }
  }
  .updated-at {
    color: rgba(0, 0, 0, 0.3);
  }
  .more-info {
    color: $moreinfo-color;
  }
}
  |