-
Notifications
You must be signed in to change notification settings - Fork 0
/
jira.user.css
45 lines (41 loc) · 1.19 KB
/
jira.user.css
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
/* ==UserStyle==
@name jira - autodark
@version 0.2.2
@description jira - autodark
@namespace tst2005/autodark/jira
@author tst2005
@homepageURL https://github.com/usercss/autodark
@supportURL https://github.com/usercss/autodark/issues
@updateURL https://github.com/usercss/autodark/raw/master/jira.user.css
@license MIT
@preprocessor uso
==/UserStyle== */
@-moz-document regexp("^https://[^/]+/jira/.*$"), regexp("^https://jira\\.[^/]+/.*$"), regexp("^https://[^/]+/confluence/.*$") {
html {
filter: invert(1) hue-rotate(180deg) brightness(90%) contrast(90%);
}
body {
background-color: #141314;
}
/* recuperer les images normalement */
img {
filter: invert(1) hue-rotate(180deg);
}
/* les pseudo-fullscreen pour montrant un fichier attaché s'affiche deja en fond dark. */
#cp-container-1,
.cp-image-container {
filter: invert(1) hue-rotate(180deg);
}
/* obtenir la barre de header comme l'original */
#header {
filter: invert(1) hue-rotate(180deg);
}
#logo,
#user-options {
filter: invert(1) hue-rotate(180deg);
}
/* comment preview content (inside iframe) */
html body#tinymce.mce-content-body pre.code.panel {
filter: invert(1) hue-rotate(180deg);
}
}