style.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413
  1. @import url("./icons.css");
  2. :root {
  3. /* Light */
  4. --light-color-background: #fcfcfc;
  5. --light-color-secondary-background: #fff;
  6. --light-color-text: #222;
  7. --light-color-text-aside: #707070;
  8. --light-color-link: #4da6ff;
  9. --light-color-menu-divider: #eee;
  10. --light-color-menu-divider-focus: #000;
  11. --light-color-menu-label: #707070;
  12. --light-color-panel: var(--light-color-secondary-background);
  13. --light-color-panel-divider: #eee;
  14. --light-color-comment-tag: #707070;
  15. --light-color-comment-tag-text: #fff;
  16. --light-color-ts: #9600ff;
  17. --light-color-ts-interface: #647f1b;
  18. --light-color-ts-enum: #937210;
  19. --light-color-ts-class: #0672de;
  20. --light-color-ts-private: #707070;
  21. --light-color-toolbar: #fff;
  22. --light-color-toolbar-text: #333;
  23. --light-icon-filter: invert(0);
  24. --light-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23000' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
  25. /* Dark */
  26. --dark-color-background: #36393f;
  27. --dark-color-secondary-background: #2f3136;
  28. --dark-color-text: #ffffff;
  29. --dark-color-text-aside: #e6e4e4;
  30. --dark-color-link: #00aff4;
  31. --dark-color-menu-divider: #eee;
  32. --dark-color-menu-divider-focus: #000;
  33. --dark-color-menu-label: #707070;
  34. --dark-color-panel: var(--dark-color-secondary-background);
  35. --dark-color-panel-divider: #818181;
  36. --dark-color-comment-tag: #dcddde;
  37. --dark-color-comment-tag-text: #2f3136;
  38. --dark-color-ts: #c97dff;
  39. --dark-color-ts-interface: #9cbe3c;
  40. --dark-color-ts-enum: #d6ab29;
  41. --dark-color-ts-class: #3695f3;
  42. --dark-color-ts-private: #e2e2e2;
  43. --dark-color-toolbar: #34373c;
  44. --dark-color-toolbar-text: #ffffff;
  45. --dark-icon-filter: invert(1);
  46. --dark-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23fff' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
  47. }
  48. @media (prefers-color-scheme: light) {
  49. :root {
  50. --color-background: var(--light-color-background);
  51. --color-secondary-background: var(--light-color-secondary-background);
  52. --color-text: var(--light-color-text);
  53. --color-text-aside: var(--light-color-text-aside);
  54. --color-link: var(--light-color-link);
  55. --color-menu-divider: var(--light-color-menu-divider);
  56. --color-menu-divider-focus: var(--light-color-menu-divider-focus);
  57. --color-menu-label: var(--light-color-menu-label);
  58. --color-panel: var(--light-color-panel);
  59. --color-panel-divider: var(--light-color-panel-divider);
  60. --color-comment-tag: var(--light-color-comment-tag);
  61. --color-comment-tag-text: var(--light-color-comment-tag-text);
  62. --color-ts: var(--light-color-ts);
  63. --color-ts-interface: var(--light-color-ts-interface);
  64. --color-ts-enum: var(--light-color-ts-enum);
  65. --color-ts-class: var(--light-color-ts-class);
  66. --color-ts-private: var(--light-color-ts-private);
  67. --color-toolbar: var(--light-color-toolbar);
  68. --color-toolbar-text: var(--light-color-toolbar-text);
  69. --icon-filter: var(--light-icon-filter);
  70. --external-icon: var(--light-external-icon);
  71. }
  72. }
  73. @media (prefers-color-scheme: dark) {
  74. :root {
  75. --color-background: var(--dark-color-background);
  76. --color-secondary-background: var(--dark-color-secondary-background);
  77. --color-text: var(--dark-color-text);
  78. --color-text-aside: var(--dark-color-text-aside);
  79. --color-link: var(--dark-color-link);
  80. --color-menu-divider: var(--dark-color-menu-divider);
  81. --color-menu-divider-focus: var(--dark-color-menu-divider-focus);
  82. --color-menu-label: var(--dark-color-menu-label);
  83. --color-panel: var(--dark-color-panel);
  84. --color-panel-divider: var(--dark-color-panel-divider);
  85. --color-comment-tag: var(--dark-color-comment-tag);
  86. --color-comment-tag-text: var(--dark-color-comment-tag-text);
  87. --color-ts: var(--dark-color-ts);
  88. --color-ts-interface: var(--dark-color-ts-interface);
  89. --color-ts-enum: var(--dark-color-ts-enum);
  90. --color-ts-class: var(--dark-color-ts-class);
  91. --color-ts-private: var(--dark-color-ts-private);
  92. --color-toolbar: var(--dark-color-toolbar);
  93. --color-toolbar-text: var(--dark-color-toolbar-text);
  94. --icon-filter: var(--dark-icon-filter);
  95. --external-icon: var(--dark-external-icon);
  96. }
  97. }
  98. body {
  99. margin: 0;
  100. }
  101. body.light {
  102. --color-background: var(--light-color-background);
  103. --color-secondary-background: var(--light-color-secondary-background);
  104. --color-text: var(--light-color-text);
  105. --color-text-aside: var(--light-color-text-aside);
  106. --color-link: var(--light-color-link);
  107. --color-menu-divider: var(--light-color-menu-divider);
  108. --color-menu-divider-focus: var(--light-color-menu-divider-focus);
  109. --color-menu-label: var(--light-color-menu-label);
  110. --color-panel: var(--light-color-panel);
  111. --color-panel-divider: var(--light-color-panel-divider);
  112. --color-comment-tag: var(--light-color-comment-tag);
  113. --color-comment-tag-text: var(--light-color-comment-tag-text);
  114. --color-ts: var(--light-color-ts);
  115. --color-ts-interface: var(--light-color-ts-interface);
  116. --color-ts-enum: var(--light-color-ts-enum);
  117. --color-ts-class: var(--light-color-ts-class);
  118. --color-ts-private: var(--light-color-ts-private);
  119. --color-toolbar: var(--light-color-toolbar);
  120. --color-toolbar-text: var(--light-color-toolbar-text);
  121. --icon-filter: var(--light-icon-filter);
  122. --external-icon: var(--light-external-icon);
  123. }
  124. body.dark {
  125. --color-background: var(--dark-color-background);
  126. --color-secondary-background: var(--dark-color-secondary-background);
  127. --color-text: var(--dark-color-text);
  128. --color-text-aside: var(--dark-color-text-aside);
  129. --color-link: var(--dark-color-link);
  130. --color-menu-divider: var(--dark-color-menu-divider);
  131. --color-menu-divider-focus: var(--dark-color-menu-divider-focus);
  132. --color-menu-label: var(--dark-color-menu-label);
  133. --color-panel: var(--dark-color-panel);
  134. --color-panel-divider: var(--dark-color-panel-divider);
  135. --color-comment-tag: var(--dark-color-comment-tag);
  136. --color-comment-tag-text: var(--dark-color-comment-tag-text);
  137. --color-ts: var(--dark-color-ts);
  138. --color-ts-interface: var(--dark-color-ts-interface);
  139. --color-ts-enum: var(--dark-color-ts-enum);
  140. --color-ts-class: var(--dark-color-ts-class);
  141. --color-ts-private: var(--dark-color-ts-private);
  142. --color-toolbar: var(--dark-color-toolbar);
  143. --color-toolbar-text: var(--dark-color-toolbar-text);
  144. --icon-filter: var(--dark-icon-filter);
  145. --external-icon: var(--dark-external-icon);
  146. }
  147. h1,
  148. h2,
  149. h3,
  150. h4,
  151. h5,
  152. h6 {
  153. line-height: 1.2;
  154. }
  155. h1 {
  156. font-size: 2em;
  157. margin: 0.67em 0;
  158. }
  159. h2 {
  160. font-size: 1.5em;
  161. margin: 0.83em 0;
  162. }
  163. h3 {
  164. font-size: 1.17em;
  165. margin: 1em 0;
  166. }
  167. h4,
  168. .tsd-index-panel h3 {
  169. font-size: 1em;
  170. margin: 1.33em 0;
  171. }
  172. h5 {
  173. font-size: 0.83em;
  174. margin: 1.67em 0;
  175. }
  176. h6 {
  177. font-size: 0.67em;
  178. margin: 2.33em 0;
  179. }
  180. pre {
  181. white-space: pre;
  182. white-space: pre-wrap;
  183. word-wrap: break-word;
  184. }
  185. dl,
  186. menu,
  187. ol,
  188. ul {
  189. margin: 1em 0;
  190. }
  191. dd {
  192. margin: 0 0 0 40px;
  193. }
  194. .container {
  195. max-width: 1200px;
  196. margin: 0 auto;
  197. padding: 0 40px;
  198. }
  199. @media (max-width: 640px) {
  200. .container {
  201. padding: 0 20px;
  202. }
  203. }
  204. .container-main {
  205. padding-bottom: 200px;
  206. }
  207. .row {
  208. display: flex;
  209. position: relative;
  210. margin: 0 -10px;
  211. }
  212. .row:after {
  213. visibility: hidden;
  214. display: block;
  215. content: "";
  216. clear: both;
  217. height: 0;
  218. }
  219. .col-4,
  220. .col-8 {
  221. box-sizing: border-box;
  222. float: left;
  223. padding: 0 10px;
  224. }
  225. .col-4 {
  226. width: 33.3333333333%;
  227. }
  228. .col-8 {
  229. width: 66.6666666667%;
  230. }
  231. ul.tsd-descriptions > li > :first-child,
  232. .tsd-panel > :first-child,
  233. .col-8 > :first-child,
  234. .col-4 > :first-child,
  235. ul.tsd-descriptions > li > :first-child > :first-child,
  236. .tsd-panel > :first-child > :first-child,
  237. .col-8 > :first-child > :first-child,
  238. .col-4 > :first-child > :first-child,
  239. ul.tsd-descriptions > li > :first-child > :first-child > :first-child,
  240. .tsd-panel > :first-child > :first-child > :first-child,
  241. .col-8 > :first-child > :first-child > :first-child,
  242. .col-4 > :first-child > :first-child > :first-child {
  243. margin-top: 0;
  244. }
  245. ul.tsd-descriptions > li > :last-child,
  246. .tsd-panel > :last-child,
  247. .col-8 > :last-child,
  248. .col-4 > :last-child,
  249. ul.tsd-descriptions > li > :last-child > :last-child,
  250. .tsd-panel > :last-child > :last-child,
  251. .col-8 > :last-child > :last-child,
  252. .col-4 > :last-child > :last-child,
  253. ul.tsd-descriptions > li > :last-child > :last-child > :last-child,
  254. .tsd-panel > :last-child > :last-child > :last-child,
  255. .col-8 > :last-child > :last-child > :last-child,
  256. .col-4 > :last-child > :last-child > :last-child {
  257. margin-bottom: 0;
  258. }
  259. @keyframes fade-in {
  260. from {
  261. opacity: 0;
  262. }
  263. to {
  264. opacity: 1;
  265. }
  266. }
  267. @keyframes fade-out {
  268. from {
  269. opacity: 1;
  270. visibility: visible;
  271. }
  272. to {
  273. opacity: 0;
  274. }
  275. }
  276. @keyframes fade-in-delayed {
  277. 0% {
  278. opacity: 0;
  279. }
  280. 33% {
  281. opacity: 0;
  282. }
  283. 100% {
  284. opacity: 1;
  285. }
  286. }
  287. @keyframes fade-out-delayed {
  288. 0% {
  289. opacity: 1;
  290. visibility: visible;
  291. }
  292. 66% {
  293. opacity: 0;
  294. }
  295. 100% {
  296. opacity: 0;
  297. }
  298. }
  299. @keyframes shift-to-left {
  300. from {
  301. transform: translate(0, 0);
  302. }
  303. to {
  304. transform: translate(-25%, 0);
  305. }
  306. }
  307. @keyframes unshift-to-left {
  308. from {
  309. transform: translate(-25%, 0);
  310. }
  311. to {
  312. transform: translate(0, 0);
  313. }
  314. }
  315. @keyframes pop-in-from-right {
  316. from {
  317. transform: translate(100%, 0);
  318. }
  319. to {
  320. transform: translate(0, 0);
  321. }
  322. }
  323. @keyframes pop-out-to-right {
  324. from {
  325. transform: translate(0, 0);
  326. visibility: visible;
  327. }
  328. to {
  329. transform: translate(100%, 0);
  330. }
  331. }
  332. body {
  333. background: var(--color-background);
  334. font-family: "Segoe UI", sans-serif;
  335. font-size: 16px;
  336. color: var(--color-text);
  337. }
  338. a {
  339. color: var(--color-link);
  340. text-decoration: none;
  341. }
  342. a:hover {
  343. text-decoration: underline;
  344. }
  345. a.external[target="_blank"] {
  346. background-image: var(--external-icon);
  347. background-position: top 3px right;
  348. background-repeat: no-repeat;
  349. padding-right: 13px;
  350. }
  351. code,
  352. pre {
  353. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  354. padding: 0.2em;
  355. margin: 0;
  356. font-size: 14px;
  357. }
  358. pre {
  359. padding: 10px;
  360. }
  361. pre code {
  362. padding: 0;
  363. font-size: 100%;
  364. }
  365. blockquote {
  366. margin: 1em 0;
  367. padding-left: 1em;
  368. border-left: 4px solid gray;
  369. }
  370. .tsd-typography {
  371. line-height: 1.333em;
  372. }
  373. .tsd-typography ul {
  374. list-style: square;
  375. padding: 0 0 0 20px;
  376. margin: 0;
  377. }
  378. .tsd-typography h4,
  379. .tsd-typography .tsd-index-panel h3,
  380. .tsd-index-panel .tsd-typography h3,
  381. .tsd-typography h5,
  382. .tsd-typography h6 {
  383. font-size: 1em;
  384. margin: 0;
  385. }
  386. .tsd-typography h5,
  387. .tsd-typography h6 {
  388. font-weight: normal;
  389. }
  390. .tsd-typography p,
  391. .tsd-typography ul,
  392. .tsd-typography ol {
  393. margin: 1em 0;
  394. }
  395. @media (min-width: 901px) and (max-width: 1024px) {
  396. html .col-content {
  397. width: 72%;
  398. }
  399. html .col-menu {
  400. width: 28%;
  401. }
  402. html .tsd-navigation {
  403. padding-left: 10px;
  404. }
  405. }
  406. @media (max-width: 900px) {
  407. html .col-content {
  408. float: none;
  409. width: 100%;
  410. }
  411. html .col-menu {
  412. position: fixed !important;
  413. overflow: auto;
  414. -webkit-overflow-scrolling: touch;
  415. z-index: 1024;
  416. top: 0 !important;
  417. bottom: 0 !important;
  418. left: auto !important;
  419. right: 0 !important;
  420. width: 100%;
  421. padding: 20px 20px 0 0;
  422. max-width: 450px;
  423. visibility: hidden;
  424. background-color: var(--color-panel);
  425. transform: translate(100%, 0);
  426. }
  427. html .col-menu > *:last-child {
  428. padding-bottom: 20px;
  429. }
  430. html .overlay {
  431. content: "";
  432. display: block;
  433. position: fixed;
  434. z-index: 1023;
  435. top: 0;
  436. left: 0;
  437. right: 0;
  438. bottom: 0;
  439. background-color: rgba(0, 0, 0, 0.75);
  440. visibility: hidden;
  441. }
  442. .to-has-menu .overlay {
  443. animation: fade-in 0.4s;
  444. }
  445. .to-has-menu :is(header, footer, .col-content) {
  446. animation: shift-to-left 0.4s;
  447. }
  448. .to-has-menu .col-menu {
  449. animation: pop-in-from-right 0.4s;
  450. }
  451. .from-has-menu .overlay {
  452. animation: fade-out 0.4s;
  453. }
  454. .from-has-menu :is(header, footer, .col-content) {
  455. animation: unshift-to-left 0.4s;
  456. }
  457. .from-has-menu .col-menu {
  458. animation: pop-out-to-right 0.4s;
  459. }
  460. .has-menu body {
  461. overflow: hidden;
  462. }
  463. .has-menu .overlay {
  464. visibility: visible;
  465. }
  466. .has-menu :is(header, footer, .col-content) {
  467. transform: translate(-25%, 0);
  468. }
  469. .has-menu .col-menu {
  470. visibility: visible;
  471. transform: translate(0, 0);
  472. display: grid;
  473. grid-template-rows: auto 1fr;
  474. max-height: 100vh;
  475. }
  476. .has-menu .tsd-navigation {
  477. max-height: 100%;
  478. }
  479. }
  480. .tsd-page-title {
  481. padding: 70px 0 20px 0;
  482. margin: 0 0 40px 0;
  483. background: var(--color-panel);
  484. box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  485. }
  486. .tsd-page-title h1 {
  487. margin: 0;
  488. }
  489. .tsd-breadcrumb {
  490. margin: 0;
  491. padding: 0;
  492. color: var(--color-text-aside);
  493. }
  494. .tsd-breadcrumb a {
  495. color: var(--color-text-aside);
  496. text-decoration: none;
  497. }
  498. .tsd-breadcrumb a:hover {
  499. text-decoration: underline;
  500. }
  501. .tsd-breadcrumb li {
  502. display: inline;
  503. }
  504. .tsd-breadcrumb li:after {
  505. content: " / ";
  506. }
  507. dl.tsd-comment-tags {
  508. overflow: hidden;
  509. }
  510. dl.tsd-comment-tags dt {
  511. float: left;
  512. padding: 1px 5px;
  513. margin: 0 10px 0 0;
  514. border-radius: 4px;
  515. border: 1px solid var(--color-comment-tag);
  516. color: var(--color-comment-tag);
  517. font-size: 0.8em;
  518. font-weight: normal;
  519. }
  520. dl.tsd-comment-tags dd {
  521. margin: 0 0 10px 0;
  522. }
  523. dl.tsd-comment-tags dd:before,
  524. dl.tsd-comment-tags dd:after {
  525. display: table;
  526. content: " ";
  527. }
  528. dl.tsd-comment-tags dd pre,
  529. dl.tsd-comment-tags dd:after {
  530. clear: both;
  531. }
  532. dl.tsd-comment-tags p {
  533. margin: 0;
  534. }
  535. .tsd-panel.tsd-comment .lead {
  536. font-size: 1.1em;
  537. line-height: 1.333em;
  538. margin-bottom: 2em;
  539. }
  540. .tsd-panel.tsd-comment .lead:last-child {
  541. margin-bottom: 0;
  542. }
  543. .toggle-protected .tsd-is-private {
  544. display: none;
  545. }
  546. .toggle-public .tsd-is-private,
  547. .toggle-public .tsd-is-protected,
  548. .toggle-public .tsd-is-private-protected {
  549. display: none;
  550. }
  551. .toggle-inherited .tsd-is-inherited {
  552. display: none;
  553. }
  554. .toggle-externals .tsd-is-external {
  555. display: none;
  556. }
  557. #tsd-filter {
  558. position: relative;
  559. display: inline-block;
  560. height: 40px;
  561. vertical-align: bottom;
  562. }
  563. .no-filter #tsd-filter {
  564. display: none;
  565. }
  566. #tsd-filter .tsd-filter-group {
  567. display: inline-block;
  568. height: 40px;
  569. vertical-align: bottom;
  570. white-space: nowrap;
  571. }
  572. #tsd-filter input {
  573. display: none;
  574. }
  575. @media (max-width: 900px) {
  576. #tsd-filter .tsd-filter-group {
  577. display: block;
  578. position: absolute;
  579. top: 40px;
  580. right: 20px;
  581. height: auto;
  582. background-color: var(--color-panel);
  583. visibility: hidden;
  584. transform: translate(50%, 0);
  585. box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  586. }
  587. .has-options #tsd-filter .tsd-filter-group {
  588. visibility: visible;
  589. }
  590. .to-has-options #tsd-filter .tsd-filter-group {
  591. animation: fade-in 0.2s;
  592. }
  593. .from-has-options #tsd-filter .tsd-filter-group {
  594. animation: fade-out 0.2s;
  595. }
  596. #tsd-filter label,
  597. #tsd-filter .tsd-select {
  598. display: block;
  599. padding-right: 20px;
  600. }
  601. }
  602. footer {
  603. border-top: 1px solid var(--color-panel-divider);
  604. background-color: var(--color-panel);
  605. }
  606. footer:after {
  607. content: "";
  608. display: table;
  609. }
  610. footer.with-border-bottom {
  611. border-bottom: 1px solid var(--color-panel-divider);
  612. }
  613. footer .tsd-legend-group {
  614. font-size: 0;
  615. }
  616. footer .tsd-legend {
  617. display: inline-block;
  618. width: 25%;
  619. padding: 0;
  620. font-size: 16px;
  621. list-style: none;
  622. line-height: 1.333em;
  623. vertical-align: top;
  624. }
  625. @media (max-width: 900px) {
  626. footer .tsd-legend {
  627. width: 50%;
  628. }
  629. }
  630. .tsd-hierarchy {
  631. list-style: square;
  632. padding: 0 0 0 20px;
  633. margin: 0;
  634. }
  635. .tsd-hierarchy .target {
  636. font-weight: bold;
  637. }
  638. .tsd-index-panel .tsd-index-content {
  639. margin-bottom: -30px !important;
  640. }
  641. .tsd-index-panel .tsd-index-section {
  642. margin-bottom: 30px !important;
  643. }
  644. .tsd-index-panel h3 {
  645. margin: 0 -20px 10px -20px;
  646. padding: 0 20px 10px 20px;
  647. border-bottom: 1px solid var(--color-panel-divider);
  648. }
  649. .tsd-index-panel ul.tsd-index-list {
  650. -webkit-column-count: 3;
  651. -moz-column-count: 3;
  652. -ms-column-count: 3;
  653. -o-column-count: 3;
  654. column-count: 3;
  655. -webkit-column-gap: 20px;
  656. -moz-column-gap: 20px;
  657. -ms-column-gap: 20px;
  658. -o-column-gap: 20px;
  659. column-gap: 20px;
  660. padding: 0;
  661. list-style: none;
  662. line-height: 1.333em;
  663. }
  664. @media (max-width: 900px) {
  665. .tsd-index-panel ul.tsd-index-list {
  666. -webkit-column-count: 1;
  667. -moz-column-count: 1;
  668. -ms-column-count: 1;
  669. -o-column-count: 1;
  670. column-count: 1;
  671. }
  672. }
  673. @media (min-width: 901px) and (max-width: 1024px) {
  674. .tsd-index-panel ul.tsd-index-list {
  675. -webkit-column-count: 2;
  676. -moz-column-count: 2;
  677. -ms-column-count: 2;
  678. -o-column-count: 2;
  679. column-count: 2;
  680. }
  681. }
  682. .tsd-index-panel ul.tsd-index-list li {
  683. -webkit-page-break-inside: avoid;
  684. -moz-page-break-inside: avoid;
  685. -ms-page-break-inside: avoid;
  686. -o-page-break-inside: avoid;
  687. page-break-inside: avoid;
  688. }
  689. .tsd-index-panel a,
  690. .tsd-index-panel .tsd-parent-kind-module a {
  691. color: var(--color-ts);
  692. }
  693. .tsd-index-panel .tsd-parent-kind-interface a {
  694. color: var(--color-ts-interface);
  695. }
  696. .tsd-index-panel .tsd-parent-kind-enum a {
  697. color: var(--color-ts-enum);
  698. }
  699. .tsd-index-panel .tsd-parent-kind-class a {
  700. color: var(--color-ts-class);
  701. }
  702. .tsd-index-panel .tsd-kind-module a {
  703. color: var(--color-ts);
  704. }
  705. .tsd-index-panel .tsd-kind-interface a {
  706. color: var(--color-ts-interface);
  707. }
  708. .tsd-index-panel .tsd-kind-enum a {
  709. color: var(--color-ts-enum);
  710. }
  711. .tsd-index-panel .tsd-kind-class a {
  712. color: var(--color-ts-class);
  713. }
  714. .tsd-index-panel .tsd-is-private a {
  715. color: var(--color-ts-private);
  716. }
  717. .tsd-flag {
  718. display: inline-block;
  719. padding: 1px 5px;
  720. border-radius: 4px;
  721. color: var(--color-comment-tag-text);
  722. background-color: var(--color-comment-tag);
  723. text-indent: 0;
  724. font-size: 14px;
  725. font-weight: normal;
  726. }
  727. .tsd-anchor {
  728. position: absolute;
  729. top: -100px;
  730. }
  731. .tsd-member {
  732. position: relative;
  733. }
  734. .tsd-member .tsd-anchor + h3 {
  735. margin-top: 0;
  736. margin-bottom: 0;
  737. border-bottom: none;
  738. }
  739. .tsd-member [data-tsd-kind] {
  740. color: var(--color-ts);
  741. }
  742. .tsd-member [data-tsd-kind="Interface"] {
  743. color: var(--color-ts-interface);
  744. }
  745. .tsd-member [data-tsd-kind="Enum"] {
  746. color: var(--color-ts-enum);
  747. }
  748. .tsd-member [data-tsd-kind="Class"] {
  749. color: var(--color-ts-class);
  750. }
  751. .tsd-member [data-tsd-kind="Private"] {
  752. color: var(--color-ts-private);
  753. }
  754. .tsd-navigation {
  755. margin: 0 0 0 40px;
  756. }
  757. .tsd-navigation a {
  758. display: block;
  759. padding-top: 2px;
  760. padding-bottom: 2px;
  761. border-left: 2px solid transparent;
  762. color: var(--color-text);
  763. text-decoration: none;
  764. transition: border-left-color 0.1s;
  765. }
  766. .tsd-navigation a:hover {
  767. text-decoration: underline;
  768. }
  769. .tsd-navigation ul {
  770. margin: 0;
  771. padding: 0;
  772. list-style: none;
  773. }
  774. .tsd-navigation li {
  775. padding: 0;
  776. }
  777. .tsd-navigation.primary {
  778. padding-bottom: 40px;
  779. }
  780. .tsd-navigation.primary a {
  781. display: block;
  782. padding-top: 6px;
  783. padding-bottom: 6px;
  784. }
  785. .tsd-navigation.primary ul li a {
  786. padding-left: 5px;
  787. }
  788. .tsd-navigation.primary ul li li a {
  789. padding-left: 25px;
  790. }
  791. .tsd-navigation.primary ul li li li a {
  792. padding-left: 45px;
  793. }
  794. .tsd-navigation.primary ul li li li li a {
  795. padding-left: 65px;
  796. }
  797. .tsd-navigation.primary ul li li li li li a {
  798. padding-left: 85px;
  799. }
  800. .tsd-navigation.primary ul li li li li li li a {
  801. padding-left: 105px;
  802. }
  803. .tsd-navigation.primary > ul {
  804. border-bottom: 1px solid var(--color-panel-divider);
  805. }
  806. .tsd-navigation.primary li {
  807. border-top: 1px solid var(--color-panel-divider);
  808. }
  809. .tsd-navigation.primary li.current > a {
  810. font-weight: bold;
  811. }
  812. .tsd-navigation.primary li.label span {
  813. display: block;
  814. padding: 20px 0 6px 5px;
  815. color: var(--color-menu-label);
  816. }
  817. .tsd-navigation.primary li.globals + li > span,
  818. .tsd-navigation.primary li.globals + li > a {
  819. padding-top: 20px;
  820. }
  821. .tsd-navigation.secondary {
  822. max-height: calc(100vh - 1rem - 40px);
  823. overflow: auto;
  824. position: sticky;
  825. top: calc(0.5rem + 40px);
  826. transition: 0.3s;
  827. }
  828. .tsd-navigation.secondary.tsd-navigation--toolbar-hide {
  829. max-height: calc(100vh - 1rem);
  830. top: 0.5rem;
  831. }
  832. .tsd-navigation.secondary ul {
  833. transition: opacity 0.2s;
  834. }
  835. .tsd-navigation.secondary ul li a {
  836. padding-left: 25px;
  837. }
  838. .tsd-navigation.secondary ul li li a {
  839. padding-left: 45px;
  840. }
  841. .tsd-navigation.secondary ul li li li a {
  842. padding-left: 65px;
  843. }
  844. .tsd-navigation.secondary ul li li li li a {
  845. padding-left: 85px;
  846. }
  847. .tsd-navigation.secondary ul li li li li li a {
  848. padding-left: 105px;
  849. }
  850. .tsd-navigation.secondary ul li li li li li li a {
  851. padding-left: 125px;
  852. }
  853. .tsd-navigation.secondary ul.current a {
  854. border-left-color: var(--color-panel-divider);
  855. }
  856. .tsd-navigation.secondary li.focus > a,
  857. .tsd-navigation.secondary ul.current li.focus > a {
  858. border-left-color: var(--color-menu-divider-focus);
  859. }
  860. .tsd-navigation.secondary li.current {
  861. margin-top: 20px;
  862. margin-bottom: 20px;
  863. border-left-color: var(--color-panel-divider);
  864. }
  865. .tsd-navigation.secondary li.current > a {
  866. font-weight: bold;
  867. }
  868. @media (min-width: 901px) {
  869. .menu-sticky-wrap {
  870. position: static;
  871. }
  872. }
  873. .tsd-panel {
  874. margin: 20px 0;
  875. padding: 20px;
  876. background-color: var(--color-panel);
  877. box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  878. }
  879. .tsd-panel:empty {
  880. display: none;
  881. }
  882. .tsd-panel > h1,
  883. .tsd-panel > h2,
  884. .tsd-panel > h3 {
  885. margin: 1.5em -20px 10px -20px;
  886. padding: 0 20px 10px 20px;
  887. border-bottom: 1px solid var(--color-panel-divider);
  888. }
  889. .tsd-panel > h1.tsd-before-signature,
  890. .tsd-panel > h2.tsd-before-signature,
  891. .tsd-panel > h3.tsd-before-signature {
  892. margin-bottom: 0;
  893. border-bottom: 0;
  894. }
  895. .tsd-panel table {
  896. display: block;
  897. width: 100%;
  898. overflow: auto;
  899. margin-top: 10px;
  900. word-break: normal;
  901. word-break: keep-all;
  902. border-collapse: collapse;
  903. }
  904. .tsd-panel table th {
  905. font-weight: bold;
  906. }
  907. .tsd-panel table th,
  908. .tsd-panel table td {
  909. padding: 6px 13px;
  910. border: 1px solid var(--color-panel-divider);
  911. }
  912. .tsd-panel table tr {
  913. background: var(--color-background);
  914. }
  915. .tsd-panel table tr:nth-child(even) {
  916. background: var(--color-secondary-background);
  917. }
  918. .tsd-panel-group {
  919. margin: 60px 0;
  920. }
  921. .tsd-panel-group > h1,
  922. .tsd-panel-group > h2,
  923. .tsd-panel-group > h3 {
  924. padding-left: 20px;
  925. padding-right: 20px;
  926. }
  927. #tsd-search {
  928. transition: background-color 0.2s;
  929. }
  930. #tsd-search .title {
  931. position: relative;
  932. z-index: 2;
  933. }
  934. #tsd-search .field {
  935. position: absolute;
  936. left: 0;
  937. top: 0;
  938. right: 40px;
  939. height: 40px;
  940. }
  941. #tsd-search .field input {
  942. box-sizing: border-box;
  943. position: relative;
  944. top: -50px;
  945. z-index: 1;
  946. width: 100%;
  947. padding: 0 10px;
  948. opacity: 0;
  949. outline: 0;
  950. border: 0;
  951. background: transparent;
  952. color: var(--color-text);
  953. }
  954. #tsd-search .field label {
  955. position: absolute;
  956. overflow: hidden;
  957. right: -40px;
  958. }
  959. #tsd-search .field input,
  960. #tsd-search .title {
  961. transition: opacity 0.2s;
  962. }
  963. #tsd-search .results {
  964. position: absolute;
  965. visibility: hidden;
  966. top: 40px;
  967. width: 100%;
  968. margin: 0;
  969. padding: 0;
  970. list-style: none;
  971. box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  972. }
  973. #tsd-search .results li {
  974. padding: 0 10px;
  975. background-color: var(--color-background);
  976. }
  977. #tsd-search .results li:nth-child(even) {
  978. background-color: var(--color-panel);
  979. }
  980. #tsd-search .results li.state {
  981. display: none;
  982. }
  983. #tsd-search .results li.current,
  984. #tsd-search .results li:hover {
  985. background-color: var(--color-panel-divider);
  986. }
  987. #tsd-search .results a {
  988. display: block;
  989. }
  990. #tsd-search .results a:before {
  991. top: 10px;
  992. }
  993. #tsd-search .results span.parent {
  994. color: var(--color-text-aside);
  995. font-weight: normal;
  996. }
  997. #tsd-search.has-focus {
  998. background-color: var(--color-panel-divider);
  999. }
  1000. #tsd-search.has-focus .field input {
  1001. top: 0;
  1002. opacity: 1;
  1003. }
  1004. #tsd-search.has-focus .title {
  1005. z-index: 0;
  1006. opacity: 0;
  1007. }
  1008. #tsd-search.has-focus .results {
  1009. visibility: visible;
  1010. }
  1011. #tsd-search.loading .results li.state.loading {
  1012. display: block;
  1013. }
  1014. #tsd-search.failure .results li.state.failure {
  1015. display: block;
  1016. }
  1017. .tsd-signature {
  1018. margin: 0 0 1em 0;
  1019. padding: 10px;
  1020. border: 1px solid var(--color-panel-divider);
  1021. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  1022. font-size: 14px;
  1023. overflow-x: auto;
  1024. }
  1025. .tsd-signature.tsd-kind-icon {
  1026. padding-left: 30px;
  1027. }
  1028. .tsd-signature.tsd-kind-icon:before {
  1029. top: 10px;
  1030. left: 10px;
  1031. }
  1032. .tsd-panel > .tsd-signature {
  1033. margin-left: -20px;
  1034. margin-right: -20px;
  1035. border-width: 1px 0;
  1036. }
  1037. .tsd-panel > .tsd-signature.tsd-kind-icon {
  1038. padding-left: 40px;
  1039. }
  1040. .tsd-panel > .tsd-signature.tsd-kind-icon:before {
  1041. left: 20px;
  1042. }
  1043. .tsd-signature-symbol {
  1044. color: var(--color-text-aside);
  1045. font-weight: normal;
  1046. }
  1047. .tsd-signature-type {
  1048. font-style: italic;
  1049. font-weight: normal;
  1050. }
  1051. .tsd-signatures {
  1052. padding: 0;
  1053. margin: 0 0 1em 0;
  1054. border: 1px solid var(--color-panel-divider);
  1055. }
  1056. .tsd-signatures .tsd-signature {
  1057. margin: 0;
  1058. border-width: 1px 0 0 0;
  1059. transition: background-color 0.1s;
  1060. }
  1061. .tsd-signatures .tsd-signature:first-child {
  1062. border-top-width: 0;
  1063. }
  1064. .tsd-signatures .tsd-signature.current {
  1065. background-color: var(--color-panel-divider);
  1066. }
  1067. .tsd-signatures.active > .tsd-signature {
  1068. cursor: pointer;
  1069. }
  1070. .tsd-panel > .tsd-signatures {
  1071. margin-left: -20px;
  1072. margin-right: -20px;
  1073. border-width: 1px 0;
  1074. }
  1075. .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon {
  1076. padding-left: 40px;
  1077. }
  1078. .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before {
  1079. left: 20px;
  1080. }
  1081. .tsd-panel > a.anchor + .tsd-signatures {
  1082. border-top-width: 0;
  1083. margin-top: -20px;
  1084. }
  1085. ul.tsd-descriptions {
  1086. position: relative;
  1087. overflow: hidden;
  1088. padding: 0;
  1089. list-style: none;
  1090. }
  1091. ul.tsd-descriptions.active > .tsd-description {
  1092. display: none;
  1093. }
  1094. ul.tsd-descriptions.active > .tsd-description.current {
  1095. display: block;
  1096. }
  1097. ul.tsd-descriptions.active > .tsd-description.fade-in {
  1098. animation: fade-in-delayed 0.3s;
  1099. }
  1100. ul.tsd-descriptions.active > .tsd-description.fade-out {
  1101. animation: fade-out-delayed 0.3s;
  1102. position: absolute;
  1103. display: block;
  1104. top: 0;
  1105. left: 0;
  1106. right: 0;
  1107. opacity: 0;
  1108. visibility: hidden;
  1109. }
  1110. ul.tsd-descriptions h4,
  1111. ul.tsd-descriptions .tsd-index-panel h3,
  1112. .tsd-index-panel ul.tsd-descriptions h3 {
  1113. font-size: 16px;
  1114. margin: 1em 0 0.5em 0;
  1115. }
  1116. ul.tsd-parameters,
  1117. ul.tsd-type-parameters {
  1118. list-style: square;
  1119. margin: 0;
  1120. padding-left: 20px;
  1121. }
  1122. ul.tsd-parameters > li.tsd-parameter-signature,
  1123. ul.tsd-type-parameters > li.tsd-parameter-signature {
  1124. list-style: none;
  1125. margin-left: -20px;
  1126. }
  1127. ul.tsd-parameters h5,
  1128. ul.tsd-type-parameters h5 {
  1129. font-size: 16px;
  1130. margin: 1em 0 0.5em 0;
  1131. }
  1132. ul.tsd-parameters .tsd-comment,
  1133. ul.tsd-type-parameters .tsd-comment {
  1134. margin-top: -0.5em;
  1135. }
  1136. .tsd-sources {
  1137. font-size: 14px;
  1138. color: var(--color-text-aside);
  1139. margin: 0 0 1em 0;
  1140. }
  1141. .tsd-sources a {
  1142. color: var(--color-text-aside);
  1143. text-decoration: underline;
  1144. }
  1145. .tsd-sources ul,
  1146. .tsd-sources p {
  1147. margin: 0 !important;
  1148. }
  1149. .tsd-sources ul {
  1150. list-style: none;
  1151. padding: 0;
  1152. }
  1153. .tsd-page-toolbar {
  1154. position: fixed;
  1155. z-index: 1;
  1156. top: 0;
  1157. left: 0;
  1158. width: 100%;
  1159. height: 40px;
  1160. color: var(--color-toolbar-text);
  1161. background: var(--color-toolbar);
  1162. border-bottom: 1px solid var(--color-panel-divider);
  1163. transition: transform 0.3s linear;
  1164. }
  1165. .tsd-page-toolbar a {
  1166. color: var(--color-toolbar-text);
  1167. text-decoration: none;
  1168. }
  1169. .tsd-page-toolbar a.title {
  1170. font-weight: bold;
  1171. }
  1172. .tsd-page-toolbar a.title:hover {
  1173. text-decoration: underline;
  1174. }
  1175. .tsd-page-toolbar .table-wrap {
  1176. display: table;
  1177. width: 100%;
  1178. height: 40px;
  1179. }
  1180. .tsd-page-toolbar .table-cell {
  1181. display: table-cell;
  1182. position: relative;
  1183. white-space: nowrap;
  1184. line-height: 40px;
  1185. }
  1186. .tsd-page-toolbar .table-cell:first-child {
  1187. width: 100%;
  1188. }
  1189. .tsd-page-toolbar--hide {
  1190. transform: translateY(-100%);
  1191. }
  1192. .tsd-select .tsd-select-list li:before,
  1193. .tsd-select .tsd-select-label:before,
  1194. .tsd-widget:before {
  1195. content: "";
  1196. display: inline-block;
  1197. width: 40px;
  1198. height: 40px;
  1199. margin: 0 -8px 0 0;
  1200. background-image: url(./widgets.png);
  1201. background-repeat: no-repeat;
  1202. text-indent: -1024px;
  1203. vertical-align: bottom;
  1204. filter: var(--icon-filter);
  1205. }
  1206. @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  1207. .tsd-select .tsd-select-list li:before,
  1208. .tsd-select .tsd-select-label:before,
  1209. .tsd-widget:before {
  1210. background-image: url(./widgets@2x.png);
  1211. background-size: 320px 40px;
  1212. }
  1213. }
  1214. .tsd-widget {
  1215. display: inline-block;
  1216. overflow: hidden;
  1217. opacity: 0.8;
  1218. height: 40px;
  1219. transition: opacity 0.1s, background-color 0.2s;
  1220. vertical-align: bottom;
  1221. cursor: pointer;
  1222. }
  1223. .tsd-widget:hover {
  1224. opacity: 0.9;
  1225. }
  1226. .tsd-widget.active {
  1227. opacity: 1;
  1228. background-color: var(--color-panel-divider);
  1229. }
  1230. .tsd-widget.no-caption {
  1231. width: 40px;
  1232. }
  1233. .tsd-widget.no-caption:before {
  1234. margin: 0;
  1235. }
  1236. .tsd-widget.search:before {
  1237. background-position: 0 0;
  1238. }
  1239. .tsd-widget.menu:before {
  1240. background-position: -40px 0;
  1241. }
  1242. .tsd-widget.options:before {
  1243. background-position: -80px 0;
  1244. }
  1245. .tsd-widget.options,
  1246. .tsd-widget.menu {
  1247. display: none;
  1248. }
  1249. @media (max-width: 900px) {
  1250. .tsd-widget.options,
  1251. .tsd-widget.menu {
  1252. display: inline-block;
  1253. }
  1254. }
  1255. input[type="checkbox"] + .tsd-widget:before {
  1256. background-position: -120px 0;
  1257. }
  1258. input[type="checkbox"]:checked + .tsd-widget:before {
  1259. background-position: -160px 0;
  1260. }
  1261. .tsd-select {
  1262. position: relative;
  1263. display: inline-block;
  1264. height: 40px;
  1265. transition: opacity 0.1s, background-color 0.2s;
  1266. vertical-align: bottom;
  1267. cursor: pointer;
  1268. }
  1269. .tsd-select .tsd-select-label {
  1270. opacity: 0.6;
  1271. transition: opacity 0.2s;
  1272. }
  1273. .tsd-select .tsd-select-label:before {
  1274. background-position: -240px 0;
  1275. }
  1276. .tsd-select.active .tsd-select-label {
  1277. opacity: 0.8;
  1278. }
  1279. .tsd-select.active .tsd-select-list {
  1280. visibility: visible;
  1281. opacity: 1;
  1282. transition-delay: 0s;
  1283. }
  1284. .tsd-select .tsd-select-list {
  1285. position: absolute;
  1286. visibility: hidden;
  1287. top: 40px;
  1288. left: 0;
  1289. margin: 0;
  1290. padding: 0;
  1291. opacity: 0;
  1292. list-style: none;
  1293. box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  1294. transition: visibility 0s 0.2s, opacity 0.2s;
  1295. }
  1296. .tsd-select .tsd-select-list li {
  1297. padding: 0 20px 0 0;
  1298. background-color: var(--color-background);
  1299. }
  1300. .tsd-select .tsd-select-list li:before {
  1301. background-position: 40px 0;
  1302. }
  1303. .tsd-select .tsd-select-list li:nth-child(even) {
  1304. background-color: var(--color-panel);
  1305. }
  1306. .tsd-select .tsd-select-list li:hover {
  1307. background-color: var(--color-panel-divider);
  1308. }
  1309. .tsd-select .tsd-select-list li.selected:before {
  1310. background-position: -200px 0;
  1311. }
  1312. @media (max-width: 900px) {
  1313. .tsd-select .tsd-select-list {
  1314. top: 0;
  1315. left: auto;
  1316. right: 100%;
  1317. margin-right: -5px;
  1318. }
  1319. .tsd-select .tsd-select-label:before {
  1320. background-position: -280px 0;
  1321. }
  1322. }
  1323. img {
  1324. max-width: 100%;
  1325. }
  1326. .tsd-anchor-icon {
  1327. margin-left: 10px;
  1328. vertical-align: middle;
  1329. color: var(--color-text);
  1330. }
  1331. .tsd-anchor-icon svg {
  1332. width: 1em;
  1333. height: 1em;
  1334. visibility: hidden;
  1335. }
  1336. .tsd-anchor-link:hover > .tsd-anchor-icon svg {
  1337. visibility: visible;
  1338. }