-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
140 lines (116 loc) · 2.6 KB
/
styles.css
File metadata and controls
140 lines (116 loc) · 2.6 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
/* GitLab Issues Plugin Styles */
/* ProjectPickerModal Styles */
.gitlab-project-suggestion {
padding: 8px 12px;
border-radius: 4px;
margin: 2px 0;
}
.gitlab-project-name {
font-weight: 600;
font-size: 14px;
color: var(--text-normal);
margin-bottom: 2px;
}
.gitlab-project-path {
font-size: 12px;
color: var(--text-muted);
font-family: var(--font-monospace);
margin-bottom: 2px;
}
.gitlab-project-description {
font-size: 11px;
color: var(--text-faint);
line-height: 1.3;
max-height: 2.6em;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.gitlab-project-suggestion:hover .gitlab-project-name {
color: var(--text-accent);
}
.gitlab-project-suggestion:hover .gitlab-project-path {
color: var(--text-normal);
}
.gitlab-plugin-status {
margin: 10px 0;
padding: 10px;
border-radius: 5px;
font-weight: 500;
}
.gitlab-status-success {
background-color: var(--color-green-rgb);
background-color: rgba(var(--color-green-rgb), 0.1);
color: var(--color-green);
border: 1px solid rgba(var(--color-green-rgb), 0.3);
}
.gitlab-status-warning {
background-color: var(--color-orange-rgb);
background-color: rgba(var(--color-orange-rgb), 0.1);
color: var(--color-orange);
border: 1px solid rgba(var(--color-orange-rgb), 0.3);
}
.gitlab-status-info {
background-color: rgba(var(--color-blue-rgb), 0.1);
color: var(--color-blue);
border: 1px solid rgba(var(--color-blue-rgb), 0.3);
font-size: 0.9em;
margin-top: 5px;
padding: 8px;
border-radius: 4px;
}
.gitlab-plugin-help {
margin-top: 20px;
padding: 15px;
background-color: var(--background-secondary);
border-radius: 5px;
}
.gitlab-plugin-help h3 {
margin-top: 0;
color: var(--text-accent);
}
.gitlab-plugin-help ol {
margin: 10px 0;
padding-left: 20px;
}
.gitlab-plugin-help li {
margin: 5px 0;
line-height: 1.5;
}
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
.gitlab-plugin {
/* Add your plugin-specific styles here */
}
.gitlab-button {
background-color: #FCA326;
border: none;
color: white;
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
}
.gitlab-button:hover {
background-color: #e8932a;
}
.gitlab-modal {
/* Styles for GitLab-related modals */
}
.gitlab-settings {
/* Styles for GitLab settings */
}
.gitlab-icon {
/* Styles for GitLab icons */
width: 16px;
height: 16px;
}