-
Notifications
You must be signed in to change notification settings - Fork 21
/
mobile_invert_colours.css
82 lines (70 loc) · 1.76 KB
/
mobile_invert_colours.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
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
/* invert the colours of the theme completely */
/*
body#onMobile div.item img,
body#onMobile #version img,
body#onMobile .navbar img,
body#onMobile .navbar #appnavbar > li.current_page_item > a > img,
body#onMobile .navbar #appnavbar > li:not(.current_page_item) > a > img
*/
/*
body#onMobile img{
-webkit-filter: none;
filter:none;
-webkit-filter: invert(100%)!important;
filter:invert(100%)!important;
}
body#onMobile,
body#onMobile #tabs,
body#onMobile #settingscontent select,
body#onMobile #settingscontent input,
body#onMobile #settingscontent textarea
{
-webkit-filter: invert(100%);
filter:invert(100%);
}
*/
/*
body#onMobile #appnavbar > li > a > img{filter:none}
*/
/*
html body#onMobile{
background-color:black!important;
}*/
body#onMobile #holder{
-webkit-filter: invert(100%);
filter:invert(100%);
}
body#onMobile #tabs,
body#onMobile select,
body#onMobile input,
body#onMobile textarea
{
-webkit-filter: invert(100%);
filter:invert(100%);
}
/*
body#onMobile .dataTables_wrapper{
filter:invert(100%);
}*/
body#onMobile .navbar{
background-color:transparent;
}
body#onMobile.events #main-view,
body#onMobile .label.label-info.lcursor,
body#onMobile .btnstyle3,
body#onMobile .btnstyle3-sel,
body#onMobile #holder img,
body#onMobile div.dataTables_wrapper .ui-toolbar,
body#onMobile div.dataTables_wrapper .ui-widget-header{
-webkit-filter: invert(100%);
filter:invert(100%);
}
body#onMobile .item.statusTimeout table tr > td#name,
body#onMobile .item.statusTimeout table tr > td.name,
body#onMobile .item.statusTimeout table tr > td#name span,
body#onMobile .item.statusTimeout table tr > td.name span{
background-color: #1FD2C5 !important;
}
html body#onMobile{
background-color: #000 !important;
}