File: libgitg-style.css

package info (click to toggle)
gitg 41-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,876 kB
  • sloc: ansic: 1,636; ruby: 1,445; sh: 314; python: 261; xml: 57; makefile: 15
file content (127 lines) | stat: -rw-r--r-- 2,448 bytes parent folder | download | duplicates (5)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.gitg-file-header {
	transition: 0.1s ease-out;
	background-color: @theme_bg_color;
}

.gitg-file-header.expanded {
	transition: 0.1s ease-out;
	background-color: shade(@theme_bg_color, 0.95);
}

.gitg-diff-view-grid-files {
	border-top: 1px solid @borders;
}

.diff-lines-separator {
	border-right: 1px solid shade(@theme_bg_color, 0.95);
}

.diff-lines-gutter-border {
	border-right: 2px solid shade(@theme_bg_color, 0.95);
}

GitgDiffViewFileRendererText {
	color: @insensitive_fg_color;
}

GitgDiffViewFileRendererText.view {
	color: @theme_text_color;
}

GitgDiffView GitgDiffViewCommitDetails {
	border-bottom: 1px outset lighter(@borders);
}

textview.commit-message text {
	background-color: @theme_bg_color;
	color: @theme_text_color;
}

gitg-diffstat {
	border: 1px inset shade(@borders, 1.2);
	border-radius: 5px;
	background-color: shade(@theme_base_color, 0.975);
	padding: 1px 5px 1px 3px;
	-gitg-diffstat-bar-height: 5px;
}

gitg-diffstat.no-frame {
	border: 0;
}

gitg-diffstat.added,
gitg-diffstat.removed,
gitg-diffstat.no-frame.added,
gitg-diffstat.no-frame.removed {
	border: 0;
}

gitg-diffstat.added,
gitg-diffstat.added-only,
gitg-diffstat.no-frame.added,
gitg-diffstat.no-frame.added-only {
	background-color: #ddffdd;
	border-radius: 3px 0px 0px 3px;
}

gitg-diffstat.added.dark,
gitg-diffstat.added-only.dark {
	background-color: rgb(78, 154, 6);
}

gitg-diffstat.added:dir(rtl),
gitg-diffstat.no-frame.added:dir(rtl) {
	border-radius: 0px 3px 3px 0px;
}

gitg-diffstat.removed,
gitg-diffstat.removed-only,
gitg-diffstat.no-frame.removed,
gitg-diffstat.no-frame.removed-only {
	background-color: #ffdddd;
	border-radius: 0px 3px 3px 0px;
}

.dark gitg-diffstat.removed,
.dark gitg-diffstat.removed-only {
	background-color: rgb(164, 0, 0);
}

gitg-diffstat.removed:dir(rtl),
gitg-diffstat.no-frame.removed:dir(rtl) {
	border-radius: 3px 0px 0px 3px;
}

gitg-diffstat.removed-only,
gitg-diffstat.added-only,
gitg-diffstat.no-frame.removed-only,
gitg-diffstat.no-frame.added-only {
	border-radius: 3px;
}

GitgDiffViewOptions GtkSpinButton,
GitgDiffViewOptions GtkButton {
	padding: 3px 6px 3px 6px;
}

GitgDiffViewOptions {
	border-top: 1px solid @borders;
}

.language-frame {
	background-color: #e1e1e1;
	border-radius: 3px;
	padding: 3px;
}

.dark .language-frame {
	background-color: #535353;
}

GitgDiffImageSideBySide.old {
	border: 10px solid #ddddff;
}

GitgDiffImageSideBySide.new {
	border: 10px solid #ddffdd;
}