Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / templates / Report.html.twig
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <link href='http://fonts.googleapis.com/css?family=Open+Sans:600italic,400,700,600' rel='stylesheet' type='text/css' />
5     <style type="text/css">
6     <!--
7
8 body {
9   width: 80%;
10   color: #343434;
11   margin: 1em auto;
12   font-family: 'Open Sans', Verdana, sans-serif;
13 }
14
15 details {
16   font-size: 18px;
17   line-height: 25px;
18   margin-bottom: 2em;
19   display: block;
20 }
21
22 details summary {
23   padding: 1em;
24   margin-bottom: 1em;
25   display: block;
26 }
27
28 details.error summary {
29   background-color: #ffd5d5;
30 }
31
32 details.warning summary {
33   background-color: #fff3bb;
34 }
35
36 a {
37   color: #095cb1;
38   font-weight: bold;
39   text-decoration: none;
40 }
41
42 h5 {
43   font-size: 1em;
44 }
45
46 aside {
47   font-style: italic;
48   line-height: 20px;
49   font-size: 15px;
50 }
51
52 .group {
53   border: 1px solid #ececec;
54   padding: 1em;
55   display: block;
56 }
57
58 .group > summary {
59   padding: 0;
60   color: #c8c8c8;
61   margin-bottom: 0;;
62   font-weight: bold;
63   letter-spacing: .1em;
64   text-transform: uppercase;
65   display: block;
66 }
67
68 .group[open] > summary {
69   margin-bottom: 1em;
70 }
71
72 .group > details:last-child {
73   margin-bottom: 0;
74 }
75
76     -->
77     </style>
78   </head>
79   <body>
80   {% for tag, tagged_issues in issues %}
81     <details open="true" class="group">
82       <summary>{{ tag }}</summary>
83       {{ tagged_issues }}
84     </details>
85   {% endfor %}
86   </body>
87 </html>