compose.c: fix untrusted source issue
[platform/upstream/libxkbcommon.git] / doc / doxygen-extra.css
1 div#top, div.header, div.contents {
2     margin-left: auto;
3     margin-right: auto;
4     width: 960px;
5 }
6
7 .footer {
8     display: none;
9 }
10
11 dl.todo dt::before {
12     content: '🚧 ';
13 }
14
15 span.todo::before {
16     content: '🚧 ';
17 }
18
19 /* Append external links with a distinctive icon */
20 a[href^="http://"]::after,
21 a[href^="https://"]::after
22 {
23     content: "";
24     width: 11px;
25     height: 11px;
26     margin-left: 4px;
27     /* Bootstrap icon: https://icons.getbootstrap.com/icons/box-arrow-up-right/ */
28     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-box-arrow-up-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
29     background-position: center;
30     background-repeat: no-repeat;
31     background-size: contain;
32     display: inline-block;
33 }
34
35 /*******************************************************************************
36  * Error index
37  ******************************************************************************/
38
39 div.example-container {
40     display: flex;
41     flex-flow: row wrap;
42     justify-content: space-between;
43     gap: 1em;
44 }
45
46 div.example {
47     flex-grow: 1;
48     overflow-x: auto;
49     margin-top: 1em;
50 }
51
52 div.example-inner {
53     height: 100%;
54     display: flex;
55     flex-direction: column;
56 }
57
58 div.example-title {
59     padding: 0 0 1em 0;
60     font-style: italic;
61 }