hdoc-tools 0.14.5 → 0.14.6

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,6 +1,6 @@
1
1
  {
2
2
  "name": "hdoc-tools",
3
- "version": "0.14.5",
3
+ "version": "0.14.6",
4
4
  "description": "Hornbill HDocBook Development Support Tool",
5
5
  "main": "hdoc.js",
6
6
  "bin": {
@@ -242,6 +242,150 @@ video {
242
242
  background-color: var(--htl-custom-block-warning-code-bg);
243
243
  }
244
244
 
245
+
246
+ /* HTL inline styles */
247
+ .badge {
248
+ white-space: nowrap;
249
+ border-radius: 4px;
250
+ padding: 0.1rem 0.5rem;
251
+ font-size: 0.8em;
252
+ margin-right: 4px;
253
+ color: white;
254
+ font-weight: unset;
255
+ }
256
+
257
+ .badge:empty {
258
+ display: inline-block;
259
+ }
260
+
261
+ .badge:after {
262
+ border-radius: 4px;
263
+ padding: 0.05rem 0.25rem;
264
+ }
265
+
266
+ .badge.badge-schema:after {
267
+ /* MINT */
268
+ content: "Schema";
269
+ border: solid 1px #34bc9d;
270
+ background-color: #46cfb0;
271
+ }
272
+
273
+ .badge.badge-simple:after {
274
+ /* AQUA */
275
+ content: "Simple";
276
+ border: solid 1px #3bd0d6;
277
+ background-color: #4fc2e5;
278
+ }
279
+
280
+ .badge.badge-complex:after {
281
+ /* GRAPEFRUIT */
282
+ content: "Complex";
283
+ border: solid 1px #da4453;
284
+ background-color: #ed5565;
285
+ color: white;
286
+ }
287
+
288
+ .badge.badge-method:after {
289
+ /* BLUEJEANS */
290
+ content: "Method";
291
+ border: solid 1px #4b8ad5;
292
+ background-color: #5e96e6;
293
+ color: white;
294
+ }
295
+
296
+ .badge.badge-experimental:after {
297
+ content: "Experimental";
298
+ border: solid 1px #da4453;
299
+ background-color: #ed5565;
300
+ }
301
+
302
+ .badge.badge-production:after {
303
+ content: "In Production";
304
+ border: solid 1px #185e0f;
305
+ background-color: #3d9719;
306
+ }
307
+
308
+ .badge.badge-development:after {
309
+ content: "In Development";
310
+ border: solid 1px #4b8ad5;
311
+ background-color: #5e96e6;
312
+ }
313
+
314
+ .badge.badge-preliminary:after {
315
+ content: "Preliminary";
316
+ border: solid 1px #bdaa58;
317
+ background-color: #ddaf19;
318
+ }
319
+
320
+ .badge.badge-depreciated:after {
321
+ content: "Deprecated";
322
+ border: solid 1px #494949;
323
+ background-color: #666666;
324
+ }
325
+
326
+ .badge.badge-info:after {
327
+ content: "Info";
328
+ white-space: nowrap;
329
+ border: solid 1px rgb(48, 121, 0);
330
+ background-color: rgb(57, 150, 3);
331
+ }
332
+
333
+ .badge.badge-warn:after {
334
+ content: "Warning";
335
+ white-space: nowrap;
336
+ border: solid 1px rgb(173, 137, 19);
337
+ background-color: rgb(211, 168, 29);
338
+ }
339
+
340
+ .badge.badge-error:after {
341
+ content: "Error";
342
+ white-space: nowrap;
343
+ border: solid 1px rgb(121, 0, 0);
344
+ background-color: rgb(184, 0, 0);
345
+ }
346
+
347
+ .badge.badge-endpoint-internal:after {
348
+ content: "internal";
349
+ white-space: nowrap;
350
+ border: solid 1px #4A536B;
351
+ background-color: #4A536B;
352
+ }
353
+
354
+ .badge.badge-endpoint-api:after {
355
+ content: "api";
356
+ white-space: nowrap;
357
+ border: solid 1px #1194DE;
358
+ background-color: #1194DE;
359
+ }
360
+
361
+ .badge.badge-user-api:after {
362
+ content: "user";
363
+ white-space: nowrap;
364
+ border: solid 1px #51C17D;
365
+ background-color: #51C17D;
366
+ }
367
+
368
+ .badge.badge-portal-api:after {
369
+ content: "portal";
370
+ white-space: nowrap;
371
+ border: solid 1px #F18929;
372
+ background-color: #F18929;
373
+ }
374
+
375
+ .badge.badge-mobile-api:after {
376
+ content: "mobile";
377
+ white-space: nowrap;
378
+ border: solid 1px #C7004F;
379
+ background-color: #C7004F;
380
+ }
381
+
382
+ .badge.badge-integration-api:after {
383
+ content: "integration";
384
+ white-space: nowrap;
385
+ border: solid 1px #224187;
386
+ background-color: #224187;
387
+ }
388
+
245
389
  code {
246
390
  font-size: 0.9em;
247
391
  }