1.5 KB74 lines
Blame
1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8.github-diff-status-OPEN {
9 background-color: var(--github-open-bg);
10}
11.github-diff-status-MERGED {
12 background-color: var(--github-merged-bg);
13}
14.github-diff-status-CLOSED {
15 background-color: var(--github-closed-bg);
16}
17.github-diff-status-none {
18 background-color: var(--github-neutral-bg);
19}
20.github-diff-status-ERROR {
21 background-color: var(--github-closed-bg);
22}
23.github-diff-status-DRAFT {
24 background-color: var(--github-neutral-bg);
25}
26.github-diff-status-MERGE_QUEUED {
27 background-color: #966600;
28}
29
30.github-diff-info {
31 display: flex;
32 flex-direction: row;
33 align-items: center;
34 gap: var(--halfpad);
35}
36
37.github-diff-status {
38 font-weight: bold;
39 border-radius: 10px;
40 padding: 3px 8px;
41 font-size: 70%;
42 white-space: nowrap;
43}
44.github-diff-info a {
45 color: white;
46}
47.github-diff-badge-icon.codicon {
48 font-size: 100%;
49 margin-right: var(--halfpad);
50 font-weight: bold;
51 text-decoration: none;
52}
53
54.github-diff-status .tooltip-creator {
55 align-items: center;
56}
57
58.github-review-decision {
59 border-radius: 10px;
60 padding: 3px 8px;
61 font-size: 70%;
62 white-space: nowrap;
63}
64
65.github-review-decision-APPROVED {
66 background-color: var(--github-open-bg);
67}
68.github-review-decision-CHANGES_REQUESTED {
69 background-color: var(--github-closed-bg);
70}
71.github-review-decision-REVIEW_REQUIRED {
72 background-color: var(--github-neutral-bg);
73}
74