forked from frappe/builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
63 lines (52 loc) · 975 Bytes
/
index.css
File metadata and controls
63 lines (52 loc) · 975 Bytes
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
@import "frappe-ui/src/style.css";
@layer base {
ul,
ol {
list-style: revert;
padding: revert;
}
}
/* to match style of tip tap editor for new lines */
p:empty::before {
content: "";
display: inline-block;
}
.__text_block__ {
overflow-wrap: break-word;
}
.__text_block__ a {
color: var(--link-color);
text-decoration: underline;
background-color: transparent;
}
@layer utilities {
/* Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.show-scrollbar::-webkit-scrollbar {
display: block;
}
.show-scrollbar {
-ms-overflow-style: auto;
scrollbar-width: auto;
}
}
*:not(.canvas, .canvas *) {
&::-webkit-scrollbar {
@apply w-2 h-2 bg-surface-gray-1;
}
&::-webkit-scrollbar-corner {
@apply bg-surface-gray-1;
}
&::-webkit-scrollbar-thumb {
@apply rounded-full bg-surface-gray-3;
}
}
[data-theme='dark'] img {
filter: revert;
}