-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserchrome.css
106 lines (87 loc) · 3.45 KB
/
userchrome.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*****************************************************************************
* Styling for Dark Theme *
* *
* For styling the entire Joplin app (except the rendered Markdown, *
* which is defined in `userstyle.css`) *
*****************************************************************************/
/*------ Editor: Headings ---------------------------------------------------*/
.ace_heading {
color: cyan !important;
/* font-weight: bold; */
/*font-size: 1.1em;*/
}
/*---------------------------------------------------------------------------*/
/*------ Editor: inline code and codeblocks ---------------------------------*/
.ace_support.ace_function {
color: greenyellow !important;
}
/*---------------------------------------------------------------------------*/
/*------ Editor: text in brackets [ ] ---------------------------------------*/
.ace_string {
color: #f9ee98 !important; /* yellow-ish */
}
/*---------------------------------------------------------------------------*/
/*------ Editor: strong -----------------------------------------------------*/
.ace_string.ace_strong {
color: salmon !important;
}
/*---------------------------------------------------------------------------*/
/*------ Editor: italics ----------------------------------------------------*/
.ace_string.ace_emphasis {
color: salmon !important;
font-style: italic;
}
/*---------------------------------------------------------------------------*/
/*------ Editor: list elements and checkbox elements ------------------------*/
.ace_list {
color: deepskyblue !important;
}
/*---------------------------------------------------------------------------*/
/*------ Editor: checkbox [ ] and [x] ---------------------------------------*/
/*
.ace_variable {
color: lightgrey !important;
}
*/
/*---------------------------------------------------------------------------*/
/*------ Notebook and note list panes: Dim items ----------------------------*/
/*
a.list-item {
color: #A3A79F !important;
}
.fa.fa-plus-square, .fa.fa-minus-square {
color: #575856 !important;
}
.note-list input[type="checkbox"i] {
opacity: .5;
}
*/
/*---------------------------------------------------------------------------*/
/*------ Notebook pane: use lines for notebook tree -------------------------*/
.folders i.fa.fa-minus-square, .folders i.fa.fa-plus-square {
padding-right: 3px !important;
}
.folders .list-item-container {
margin: 0 !important;
}
.folders a.list-item {
border-left: 1px solid #575856 !important;
padding-left: 4px;
margin: 0 !important;
}
/*---------------------------------------------------------------------------*/
/*------ Input fields: Search (global, local), Note Title -------------------*/
/* .header input { */
input {
border-radius: 0px !important;
border: 1px solid rgb(85, 85, 85);
outline: none;
background-color: #000000 !important;
}
/*---------------------------------------------------------------------------*/
/*------ Attachment pane: make first 2 columns easier to read ---------------*/
#react-root > div > div > div:nth-child(2) > div:nth-child(2) > table > tbody > tr > td.titleCell,
#react-root > div > div > div:nth-child(2) > div:nth-child(2) > table > tbody > tr > td:nth-child(2) {
font-size: unset !important;
}
/*---------------------------------------------------------------------------*/