@omnia/runtime 8.0.20-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.
@@ -98,7 +98,7 @@
98
98
  width: 100%;
99
99
  }
100
100
 
101
- .v-tooltip .v-overlay__content {
101
+ .v-tooltip > .v-overlay__content {
102
102
  background: rgba(var(--v-theme-surface-variant), 0.7);
103
103
  color: rgb(var(--v-theme-on-surface-variant));
104
104
  border-radius: 4px;
@@ -112,11 +112,11 @@
112
112
  pointer-events: none;
113
113
  transition-property: opacity, transform;
114
114
  }
115
- .v-tooltip .v-overlay__content[class*=enter-active] {
115
+ .v-tooltip > .v-overlay__content[class*=enter-active] {
116
116
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
117
117
  transition-duration: 150ms;
118
118
  }
119
- .v-tooltip .v-overlay__content[class*=leave-active] {
119
+ .v-tooltip > .v-overlay__content[class*=leave-active] {
120
120
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
121
121
  transition-duration: 75ms;
122
122
  }
@@ -604,14 +604,14 @@
604
604
  opacity: 0;
605
605
  }
606
606
 
607
- .v-menu .v-overlay__content {
607
+ .v-menu > .v-overlay__content {
608
608
  display: flex;
609
609
  flex-direction: column;
610
610
  border-radius: 4px;
611
611
  }
612
- .v-menu .v-overlay__content > .v-card,
613
- .v-menu .v-overlay__content > .v-sheet,
614
- .v-menu .v-overlay__content > .v-list {
612
+ .v-menu > .v-overlay__content > .v-card,
613
+ .v-menu > .v-overlay__content > .v-sheet,
614
+ .v-menu > .v-overlay__content > .v-list {
615
615
  background: rgb(var(--v-theme-surface));
616
616
  border-radius: inherit;
617
617
  overflow: auto;
@@ -1551,6 +1551,7 @@
1551
1551
 
1552
1552
  .v-badge__badge {
1553
1553
  align-items: center;
1554
+ display: inline-flex;
1554
1555
  border-radius: 10px;
1555
1556
  font-size: 0.75rem;
1556
1557
  font-weight: 500;
@@ -33,6 +33,18 @@
33
33
  .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
34
34
  flex-direction: row-reverse;
35
35
  }
36
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
37
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
38
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
39
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
40
+ text-align: center;
41
+ }
42
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
43
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
44
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
45
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
46
+ justify-content: center;
47
+ }
36
48
  .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
37
49
  .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
38
50
  .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
@@ -120,133 +132,6 @@
120
132
  .v-data-table-rows-no-data {
121
133
  text-align: center;
122
134
  }
123
- .v-table {
124
- background: rgb(var(--v-theme-surface));
125
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
126
- }
127
- .v-table .v-table-divider {
128
- border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
129
- }
130
- .v-table .v-table__wrapper > table > thead > tr > th {
131
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
132
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
133
- }
134
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
135
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
136
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
137
- }
138
- .v-table .v-table__wrapper > table > tfoot > tr > td,
139
- .v-table .v-table__wrapper > table > tfoot > tr > th {
140
- border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
141
- }
142
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover {
143
- background: rgba(var(--v-border-color), var(--v-hover-opacity));
144
- }
145
- .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
146
- background: rgb(var(--v-theme-surface));
147
- box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
148
- z-index: 1;
149
- }
150
- .v-table.v-table--fixed-footer > tfoot > tr > th,
151
- .v-table.v-table--fixed-footer > tfoot > tr > td {
152
- background: rgb(var(--v-theme-surface));
153
- box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
154
- }
155
-
156
- .v-table {
157
- --v-table-header-height: 56px;
158
- border-radius: inherit;
159
- line-height: 1.5;
160
- max-width: 100%;
161
- }
162
- .v-table > .v-table__wrapper > table {
163
- width: 100%;
164
- border-spacing: 0;
165
- }
166
- .v-table > .v-table__wrapper > table > tbody > tr > td,
167
- .v-table > .v-table__wrapper > table > tbody > tr > th,
168
- .v-table > .v-table__wrapper > table > thead > tr > td,
169
- .v-table > .v-table__wrapper > table > thead > tr > th,
170
- .v-table > .v-table__wrapper > table > tfoot > tr > td,
171
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
172
- padding: 0 16px;
173
- transition: height cubic-bezier(0.4, 0, 0.2, 1);
174
- }
175
- .v-table > .v-table__wrapper > table > tbody > tr > th,
176
- .v-table > .v-table__wrapper > table > thead > tr > th,
177
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
178
- font-weight: 500;
179
- user-select: none;
180
- text-align: start;
181
- }
182
- .v-table--density-default > .v-table__wrapper > table > tbody > tr > th,
183
- .v-table--density-default > .v-table__wrapper > table > thead > tr > th,
184
- .v-table--density-default > .v-table__wrapper > table > tfoot > tr > th {
185
- height: calc(var(--v-table-header-height) + 0px);
186
- }
187
- .v-table--density-default > .v-table__wrapper > table > tbody > tr > td,
188
- .v-table--density-default > .v-table__wrapper > table > thead > tr > td,
189
- .v-table--density-default > .v-table__wrapper > table > tfoot > tr > td {
190
- height: calc(var(--v-table-row-height, 52px) + 0px);
191
- }
192
-
193
- .v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > th,
194
- .v-table--density-comfortable > .v-table__wrapper > table > thead > tr > th,
195
- .v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > th {
196
- height: calc(var(--v-table-header-height) - 8px);
197
- }
198
- .v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > td,
199
- .v-table--density-comfortable > .v-table__wrapper > table > thead > tr > td,
200
- .v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > td {
201
- height: calc(var(--v-table-row-height, 52px) - 8px);
202
- }
203
-
204
- .v-table--density-compact > .v-table__wrapper > table > tbody > tr > th,
205
- .v-table--density-compact > .v-table__wrapper > table > thead > tr > th,
206
- .v-table--density-compact > .v-table__wrapper > table > tfoot > tr > th {
207
- height: calc(var(--v-table-header-height) - 16px);
208
- }
209
- .v-table--density-compact > .v-table__wrapper > table > tbody > tr > td,
210
- .v-table--density-compact > .v-table__wrapper > table > thead > tr > td,
211
- .v-table--density-compact > .v-table__wrapper > table > tfoot > tr > td {
212
- height: calc(var(--v-table-row-height, 52px) - 16px);
213
- }
214
-
215
- .v-table__wrapper {
216
- border-radius: inherit;
217
- overflow: auto;
218
- }
219
-
220
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
221
- border-top-left-radius: 0;
222
- }
223
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
224
- border-top-right-radius: 0;
225
- }
226
-
227
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
228
- border-bottom-left-radius: 0;
229
- }
230
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
231
- border-bottom-right-radius: 0;
232
- }
233
-
234
- .v-table--fixed-height > .v-table__wrapper {
235
- overflow-y: auto;
236
- }
237
-
238
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
239
- border-bottom: 0px !important;
240
- position: sticky;
241
- top: 0;
242
- }
243
-
244
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
245
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
246
- border-top: 0px !important;
247
- position: sticky;
248
- bottom: 0;
249
- }
250
135
  .v-data-table-footer {
251
136
  display: flex;
252
137
  align-items: center;
@@ -3,7 +3,7 @@
3
3
  justify-content: center;
4
4
  margin: auto;
5
5
  }
6
- .v-dialog .v-overlay__content {
6
+ .v-dialog > .v-overlay__content {
7
7
  max-height: calc(100% - 48px);
8
8
  width: calc(100% - 48px);
9
9
  max-width: calc(100% - 48px);
@@ -11,24 +11,24 @@
11
11
  display: flex;
12
12
  flex-direction: column;
13
13
  }
14
- .v-dialog .v-overlay__content > .v-card,
15
- .v-dialog .v-overlay__content > .v-sheet {
14
+ .v-dialog > .v-overlay__content > .v-card,
15
+ .v-dialog > .v-overlay__content > .v-sheet {
16
16
  --v-scrollbar-offset: 0px;
17
17
  border-radius: 4px;
18
18
  overflow-y: auto;
19
19
  box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
20
20
  }
21
- .v-dialog .v-overlay__content > .v-card {
21
+ .v-dialog > .v-overlay__content > .v-card {
22
22
  display: flex;
23
23
  flex-direction: column;
24
24
  }
25
- .v-dialog .v-overlay__content > .v-card > .v-card-item {
25
+ .v-dialog > .v-overlay__content > .v-card > .v-card-item {
26
26
  padding: 14px 24px 0;
27
27
  }
28
- .v-dialog .v-overlay__content > .v-card > .v-card-item + .v-card-text {
28
+ .v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text {
29
29
  padding-top: 10px;
30
30
  }
31
- .v-dialog .v-overlay__content > .v-card > .v-card-text {
31
+ .v-dialog > .v-overlay__content > .v-card > .v-card-text {
32
32
  font-size: inherit;
33
33
  letter-spacing: 0.03125em;
34
34
  line-height: inherit;
@@ -38,7 +38,7 @@
38
38
  .v-dialog--fullscreen {
39
39
  --v-scrollbar-offset: 0px;
40
40
  }
41
- .v-dialog--fullscreen .v-overlay__content {
41
+ .v-dialog--fullscreen > .v-overlay__content {
42
42
  border-radius: 0;
43
43
  margin: 0;
44
44
  padding: 0;
@@ -50,27 +50,27 @@
50
50
  top: 0;
51
51
  left: 0;
52
52
  }
53
- .v-dialog--fullscreen .v-overlay__content > .v-card,
54
- .v-dialog--fullscreen .v-overlay__content > .v-sheet {
53
+ .v-dialog--fullscreen > .v-overlay__content > .v-card,
54
+ .v-dialog--fullscreen > .v-overlay__content > .v-sheet {
55
55
  min-height: 100%;
56
56
  min-width: 100%;
57
57
  border-radius: 0;
58
58
  }
59
59
 
60
- .v-dialog--scrollable .v-overlay__content,
61
- .v-dialog--scrollable .v-overlay__content > form {
60
+ .v-dialog--scrollable > .v-overlay__content,
61
+ .v-dialog--scrollable > .v-overlay__content > form {
62
62
  display: flex;
63
63
  }
64
- .v-dialog--scrollable .v-overlay__content > .v-card,
65
- .v-dialog--scrollable .v-overlay__content > form > .v-card {
64
+ .v-dialog--scrollable > .v-overlay__content > .v-card,
65
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card {
66
66
  display: flex;
67
67
  flex: 1 1 100%;
68
68
  flex-direction: column;
69
69
  max-height: 100%;
70
70
  max-width: 100%;
71
71
  }
72
- .v-dialog--scrollable .v-overlay__content > .v-card > .v-card-text,
73
- .v-dialog--scrollable .v-overlay__content > form > .v-card > .v-card-text {
72
+ .v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
73
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
74
74
  backface-visibility: hidden;
75
75
  overflow-y: auto;
76
76
  }
@@ -133,6 +133,7 @@
133
133
  flex: 1 1 auto;
134
134
  max-width: 100%;
135
135
  min-height: 100vh;
136
+ min-height: 100dvh;
136
137
  position: relative;
137
138
  }
138
139
  .v-main {
@@ -1598,13 +1599,8 @@
1598
1599
  pointer-events: none;
1599
1600
  }
1600
1601
 
1601
- .v-app-bar .v-btn {
1602
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
1603
- }
1604
-
1605
1602
  .v-card-actions .v-btn {
1606
1603
  padding: 0 8px;
1607
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
1608
1604
  }
1609
1605
  .v-card-actions .v-btn ~ .v-btn {
1610
1606
  margin-inline-start: 0.5rem;
@@ -1627,43 +1623,6 @@
1627
1623
  .v-snackbar-actions .v-btn {
1628
1624
  padding: 0 8px;
1629
1625
  }
1630
- .v-ripple__container {
1631
- color: inherit;
1632
- border-radius: inherit;
1633
- position: absolute;
1634
- width: 100%;
1635
- height: 100%;
1636
- left: 0;
1637
- top: 0;
1638
- overflow: hidden;
1639
- z-index: 0;
1640
- pointer-events: none;
1641
- contain: strict;
1642
- }
1643
- .v-ripple__animation {
1644
- color: inherit;
1645
- position: absolute;
1646
- top: 0;
1647
- left: 0;
1648
- border-radius: 50%;
1649
- background: currentColor;
1650
- opacity: 0;
1651
- pointer-events: none;
1652
- overflow: hidden;
1653
- will-change: transform, opacity;
1654
- }
1655
- .v-ripple__animation--enter {
1656
- transition: none;
1657
- opacity: 0;
1658
- }
1659
- .v-ripple__animation--in {
1660
- transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
1661
- opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
1662
- }
1663
- .v-ripple__animation--out {
1664
- transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
1665
- opacity: 0;
1666
- }
1667
1626
  .v-btn-toggle .v-btn.v-btn--selected:not(.v-btn--disabled) .v-btn__overlay {
1668
1627
  opacity: var(--v-activated-opacity);
1669
1628
  }
@@ -1937,6 +1896,43 @@
1937
1896
  background-position-x: var(--v-progress-linear-height);
1938
1897
  }
1939
1898
  }
1899
+ .v-ripple__container {
1900
+ color: inherit;
1901
+ border-radius: inherit;
1902
+ position: absolute;
1903
+ width: 100%;
1904
+ height: 100%;
1905
+ left: 0;
1906
+ top: 0;
1907
+ overflow: hidden;
1908
+ z-index: 0;
1909
+ pointer-events: none;
1910
+ contain: strict;
1911
+ }
1912
+ .v-ripple__animation {
1913
+ color: inherit;
1914
+ position: absolute;
1915
+ top: 0;
1916
+ left: 0;
1917
+ border-radius: 50%;
1918
+ background: currentColor;
1919
+ opacity: 0;
1920
+ pointer-events: none;
1921
+ overflow: hidden;
1922
+ will-change: transform, opacity;
1923
+ }
1924
+ .v-ripple__animation--enter {
1925
+ transition: none;
1926
+ opacity: 0;
1927
+ }
1928
+ .v-ripple__animation--in {
1929
+ transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
1930
+ opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
1931
+ }
1932
+ .v-ripple__animation--out {
1933
+ transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
1934
+ opacity: 0;
1935
+ }
1940
1936
  .v-progress-circular {
1941
1937
  align-items: center;
1942
1938
  display: inline-flex;
@@ -2243,7 +2239,7 @@ html.v-overlay-scroll-blocked {
2243
2239
  border-radius: inherit;
2244
2240
  bottom: 0;
2245
2241
  left: 0;
2246
- opacity: 32%;
2242
+ opacity: 0.32;
2247
2243
  position: fixed;
2248
2244
  right: 0;
2249
2245
  top: 0;
@@ -9690,6 +9686,10 @@ html.overflow-y-hidden {
9690
9686
  height: 100% !important;
9691
9687
  }
9692
9688
 
9689
+ .h-screen {
9690
+ height: 100dvh !important;
9691
+ }
9692
+
9693
9693
  .w-auto {
9694
9694
  width: auto !important;
9695
9695
  }
@@ -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
+ }