@omnia/runtime 8.0.19-vnext → 8.0.21-vnext

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.
@@ -0,0 +1,219 @@
1
+ /* PrismJS 1.29.0
2
+ https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript+aspnet+csharp+json+jsx+tsx+typescript&plugins=line-highlight+line-numbers+highlight-keywords */
3
+ code[class*=language-],
4
+ pre[class*=language-] {
5
+ color: #ccc;
6
+ background: 0 0;
7
+ font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
8
+ font-size: 1em;
9
+ text-align: left;
10
+ white-space: pre;
11
+ word-spacing: normal;
12
+ word-break: normal;
13
+ word-wrap: normal;
14
+ line-height: 1.5;
15
+ -moz-tab-size: 4;
16
+ -o-tab-size: 4;
17
+ tab-size: 4;
18
+ -webkit-hyphens: none;
19
+ -moz-hyphens: none;
20
+ -ms-hyphens: none;
21
+ hyphens: none
22
+ }
23
+
24
+ pre[class*=language-] {
25
+ padding: 1em;
26
+ margin: .5em 0;
27
+ overflow: auto
28
+ }
29
+
30
+ :not(pre)>code[class*=language-],
31
+ pre[class*=language-] {
32
+ background: #2d2d2d
33
+ }
34
+
35
+ :not(pre)>code[class*=language-] {
36
+ padding: .1em;
37
+ border-radius: .3em;
38
+ white-space: normal
39
+ }
40
+
41
+ .token.block-comment,
42
+ .token.cdata,
43
+ .token.comment,
44
+ .token.doctype,
45
+ .token.prolog {
46
+ color: #999
47
+ }
48
+
49
+ .token.punctuation {
50
+ color: #ccc
51
+ }
52
+
53
+ .token.attr-name,
54
+ .token.deleted,
55
+ .token.namespace,
56
+ .token.tag {
57
+ color: #e2777a
58
+ }
59
+
60
+ .token.function-name {
61
+ color: #6196cc
62
+ }
63
+
64
+ .token.boolean,
65
+ .token.function,
66
+ .token.number {
67
+ color: #f08d49
68
+ }
69
+
70
+ .token.class-name,
71
+ .token.constant,
72
+ .token.property,
73
+ .token.symbol {
74
+ color: #f8c555
75
+ }
76
+
77
+ .token.atrule,
78
+ .token.builtin,
79
+ .token.important,
80
+ .token.keyword,
81
+ .token.selector {
82
+ color: #cc99cd
83
+ }
84
+
85
+ .token.attr-value,
86
+ .token.char,
87
+ .token.regex,
88
+ .token.string,
89
+ .token.variable {
90
+ color: #7ec699
91
+ }
92
+
93
+ .token.entity,
94
+ .token.operator,
95
+ .token.url {
96
+ color: #67cdcc
97
+ }
98
+
99
+ .token.bold,
100
+ .token.important {
101
+ font-weight: 700
102
+ }
103
+
104
+ .token.italic {
105
+ font-style: italic
106
+ }
107
+
108
+ .token.entity {
109
+ cursor: help
110
+ }
111
+
112
+ .token.inserted {
113
+ color: green
114
+ }
115
+
116
+ pre[data-line] {
117
+ position: relative;
118
+ padding: 1em 0 1em 3em
119
+ }
120
+
121
+ .line-highlight {
122
+ position: absolute;
123
+ left: 0;
124
+ right: 0;
125
+ padding: inherit 0;
126
+ margin-top: 1em;
127
+ background: hsla(24, 20%, 50%, .08);
128
+ background: linear-gradient(to right, hsla(24, 20%, 50%, .1) 70%, hsla(24, 20%, 50%, 0));
129
+ pointer-events: none;
130
+ line-height: inherit;
131
+ white-space: pre
132
+ }
133
+
134
+ @media print {
135
+ .line-highlight {
136
+ -webkit-print-color-adjust: exact;
137
+ color-adjust: exact
138
+ }
139
+ }
140
+
141
+ .line-highlight:before,
142
+ .line-highlight[data-end]:after {
143
+ content: attr(data-start);
144
+ position: absolute;
145
+ top: .4em;
146
+ left: .6em;
147
+ min-width: 1em;
148
+ padding: 0 .5em;
149
+ background-color: hsla(24, 20%, 50%, .4);
150
+ color: #f4f1ef;
151
+ font: bold 65%/1.5 sans-serif;
152
+ text-align: center;
153
+ vertical-align: .3em;
154
+ border-radius: 999px;
155
+ text-shadow: none;
156
+ box-shadow: 0 1px #fff
157
+ }
158
+
159
+ .line-highlight[data-end]:after {
160
+ content: attr(data-end);
161
+ top: auto;
162
+ bottom: .4em
163
+ }
164
+
165
+ .line-numbers .line-highlight:after,
166
+ .line-numbers .line-highlight:before {
167
+ content: none
168
+ }
169
+
170
+ pre[id].linkable-line-numbers span.line-numbers-rows {
171
+ pointer-events: all
172
+ }
173
+
174
+ pre[id].linkable-line-numbers span.line-numbers-rows>span:before {
175
+ cursor: pointer
176
+ }
177
+
178
+ pre[id].linkable-line-numbers span.line-numbers-rows>span:hover:before {
179
+ background-color: rgba(128, 128, 128, .2)
180
+ }
181
+
182
+ pre[class*=language-].line-numbers {
183
+ position: relative;
184
+ padding-left: 3.8em;
185
+ counter-reset: linenumber
186
+ }
187
+
188
+ pre[class*=language-].line-numbers>code {
189
+ position: relative;
190
+ white-space: inherit
191
+ }
192
+
193
+ .line-numbers .line-numbers-rows {
194
+ position: absolute;
195
+ pointer-events: none;
196
+ top: 0;
197
+ font-size: 100%;
198
+ left: -3.8em;
199
+ width: 3em;
200
+ letter-spacing: -1px;
201
+ border-right: 1px solid #999;
202
+ -webkit-user-select: none;
203
+ -moz-user-select: none;
204
+ -ms-user-select: none;
205
+ user-select: none
206
+ }
207
+
208
+ .line-numbers-rows>span {
209
+ display: block;
210
+ counter-increment: linenumber
211
+ }
212
+
213
+ .line-numbers-rows>span:before {
214
+ content: counter(linenumber);
215
+ color: #999;
216
+ display: block;
217
+ padding-right: .8em;
218
+ text-align: right
219
+ }