summaryrefslogtreecommitdiff
path: root/widgets/gitlab_merge_requests/gitlab_merge_requests.scss
blob: d3c51f5416efa6add17ad0e8eea1be4bdc285b7f (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
58
59
60
61
62
63
64
65
66
67
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color:  teal;

$heading-color:     rgba(255, 255, 255, 0.7);
$merge-title-color: rgba(255, 255, 255, 1.0);
$merge-info-color: rgba(255, 255, 255, 1.0);

// ----------------------------------------------------------------------------
// Widget-gitlab-merge-requests styles
// ----------------------------------------------------------------------------
.widget-gitlab-merge-requests {

  background-color: $background-color;
  vertical-align: top !important;

  .header {
    margin-bottom: 0;
    font-size: xx-large;
    color: $heading-color;
  }

  .sub-header {
    color: $heading-color;
    font-size: large;
    margin-bottom: 1vh;
  }

  .merge {
    margin-bottom: 2vh;
  }

  .merge-title {
    font-size: medium;
    font-weight: bold;
    color: $merge-title-color;
  }

  .merge-info {
    font-size: small;
    font-style: italic;
    color: $merge-info-color;
  }

  .merge-info div {
    float:left;
  }

  .list {
    list-style: none;
  }

  .updated-at {
    color: rgba(0, 0, 0, 0.3);
  }

  ol, ul {
    margin: 0 15px;
    text-align: left;
  }

  ol {
    list-style-position: inside;
  }

}