@appscode/design-system 2.17.55 → 2.17.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
.lightweight-editor {
|
|
2
|
-
// border: 1px solid var(--border-color, #ddd);
|
|
3
2
|
border-radius: 4px;
|
|
4
3
|
overflow: hidden;
|
|
5
4
|
font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
|
|
6
5
|
|
|
7
|
-
|
|
6
|
+
.cm-editor {
|
|
8
7
|
height: 100%;
|
|
9
8
|
|
|
10
9
|
&.cm-focused {
|
|
@@ -13,26 +12,26 @@
|
|
|
13
12
|
}
|
|
14
13
|
}
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
.cm-content {
|
|
17
16
|
padding: 8px;
|
|
18
17
|
min-height: 100%;
|
|
19
18
|
}
|
|
20
19
|
|
|
21
|
-
|
|
20
|
+
.cm-gutter {
|
|
22
21
|
background-color: var(--gutter-bg, #f8f9fa);
|
|
23
22
|
border-right: 1px solid var(--border-color, #e9ecef);
|
|
24
23
|
}
|
|
25
24
|
|
|
26
|
-
|
|
25
|
+
.cm-lineNumbers {
|
|
27
26
|
color: var(--line-numbers-color, #6c757d);
|
|
28
27
|
font-size: 12px;
|
|
29
28
|
}
|
|
30
29
|
|
|
31
|
-
|
|
30
|
+
.cm-foldGutter {
|
|
32
31
|
width: 16px;
|
|
33
32
|
}
|
|
34
33
|
|
|
35
|
-
|
|
34
|
+
.cm-diagnostic {
|
|
36
35
|
padding: 2px 4px;
|
|
37
36
|
border-radius: 2px;
|
|
38
37
|
|
|
@@ -47,8 +46,7 @@
|
|
|
47
46
|
}
|
|
48
47
|
}
|
|
49
48
|
|
|
50
|
-
|
|
51
|
-
:deep(.cm-lintRange-error) {
|
|
49
|
+
.cm-lintRange-error {
|
|
52
50
|
background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, #dc3545 2px, #dc3545 4px);
|
|
53
51
|
background-position: bottom;
|
|
54
52
|
background-repeat: repeat-x;
|
|
@@ -57,8 +55,7 @@
|
|
|
57
55
|
text-decoration: none;
|
|
58
56
|
}
|
|
59
57
|
|
|
60
|
-
|
|
61
|
-
:deep(.cm-lintRange-warning) {
|
|
58
|
+
.cm-lintRange-warning {
|
|
62
59
|
background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, #ffc107 2px, #ffc107 4px);
|
|
63
60
|
background-position: bottom;
|
|
64
61
|
background-repeat: repeat-x;
|
|
@@ -67,7 +64,7 @@
|
|
|
67
64
|
text-decoration: none;
|
|
68
65
|
}
|
|
69
66
|
|
|
70
|
-
|
|
67
|
+
.cm-search {
|
|
71
68
|
background-color: var(--search-bg, #fff);
|
|
72
69
|
border: 1px solid var(--border-color, #ddd);
|
|
73
70
|
border-radius: 4px;
|