-
Notifications
You must be signed in to change notification settings - Fork 568
/
Copy path_general.scss
101 lines (84 loc) · 1.49 KB
/
_general.scss
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
@use 'variables' as *;
@use 'mixins';
*,
*::before,
*::after {
box-sizing: border-box;
}
a {
color: var(--accent-color);
&:focus {
outline: none;
}
&:focus-visible {
outline: $focus-outline;
}
}
/* stylelint-disable block-opening-brace-space-before */
a[href^='http://'],
a[href^='https://']
{
cursor: pointer; // Make all web links use pointer cursor
}
/* stylelint-enable block-opening-brace-space-before */
html,
body {
height: 100%;
user-select: none;
}
body {
margin: 0;
font: 14px/1.5 $sans;
overflow: hidden;
-webkit-touch-callout: none;
}
img,
svg {
vertical-align: middle;
}
b,
strong,
optgroup {
font-weight: $bold;
}
[contenteditable] {
user-select: text; // Safari (https://stackoverflow.com/questions/20435166)
}
.app {
display: flex;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.simplenote-app {
display: flex;
position: relative;
width: 100%;
height: 100%;
}
.login__draggable-area {
height: 100px;
position: absolute;
top: 0;
width: 100%;
-webkit-app-region: drag;
}
.gridicon {
fill: currentcolor;
}
.search-match {
background-color: var(--highlight-color);
border-radius: 3px;
color: var(--primary-color);
padding-left: 2px;
padding-right: 2px;
&[data-current-match='true'] {
background-color: var(--search-selection-color);
}
}
/* stylelint-disable-next-line selector-class-pattern */
.MuiTooltip-tooltip.icon-button__tooltip {
background-color: var(--tertiary-color);
}