Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 148 | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
body {
2
 font-family: sans-serif;
3
 font-size: 1em;
4
 font-kerning: normal;
5
 font-variant-ligatures: common-ligatures;
6
 text-rendering: optimizeLegibility;
7
 padding-top: 10px;
8
}
9
 
10
.popover {
11
 max-width: none;
12
}
13
 
14
.octicon {
15
 margin-right:.25em;
16
 vertical-align: baseline;
17
 width: 0.75em;
18
}
19
 
20
.table-bordered>thead>tr>td {
21
 border-bottom-width: 1px;
22
}
23
 
24
.table tbody>tr>td, .table thead>tr>td {
25
 padding-top: 3px;
26
 padding-bottom: 3px;
27
}
28
 
29
.table-condensed tbody>tr>td {
30
 padding-top: 0;
31
 padding-bottom: 0;
32
}
33
 
34
.table .progress {
35
 margin-bottom: inherit;
36
}
37
 
38
.table-borderless th, .table-borderless td {
39
 border: 0 !important;
40
}
41
 
42
.table tbody tr.covered-by-large-tests, li.covered-by-large-tests, tr.success, td.success, li.success, span.success {
43
 background-color: #dff0d8;
44
}
45
 
46
.table tbody tr.covered-by-medium-tests, li.covered-by-medium-tests {
47
 background-color: #c3e3b5;
48
}
49
 
50
.table tbody tr.covered-by-small-tests, li.covered-by-small-tests {
51
 background-color: #99cb84;
52
}
53
 
54
.table tbody tr.danger, .table tbody td.danger, li.danger, span.danger {
55
 background-color: #f2dede;
56
}
57
 
58
.table tbody tr.warning, .table tbody td.warning, li.warning, span.warning {
59
 background-color: #fcf8e3;
60
}
61
 
62
.table tbody td.info {
63
 background-color: #d9edf7;
64
}
65
 
66
td.big {
67
 vertical-align: middle;
68
 width: 117px;
69
}
70
 
71
td.small {
72
}
73
 
74
td.codeLine {
75
 font-family: "Source Code Pro", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
76
 white-space: pre-wrap;
77
}
78
 
79
td span.comment {
80
 color: #888a85;
81
}
82
 
83
td span.default {
84
 color: #2e3436;
85
}
86
 
87
td span.html {
88
 color: #888a85;
89
}
90
 
91
td span.keyword {
92
 color: #2e3436;
93
 font-weight: bold;
94
}
95
 
96
pre span.string {
97
 color: #2e3436;
98
}
99
 
100
span.success, span.warning, span.danger {
101
 margin-right: 2px;
102
 padding-left: 10px;
103
 padding-right: 10px;
104
 text-align: center;
105
}
106
 
107
#toplink {
108
 position: fixed;
109
 left: 5px;
110
 bottom: 5px;
111
 outline: 0;
112
}
113
 
114
svg text {
115
 font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
116
 font-size: 11px;
117
 color: #666;
118
 fill: #666;
119
}
120
 
121
.scrollbox {
122
 height:245px;
123
 overflow-x:hidden;
124
 overflow-y:scroll;
125
}
126
 
127
table + .structure-heading {
128
 border-top: 1px solid lightgrey;
129
 padding-top: 0.5em;
130
}
991 lars 131
 
132
.legend {
133
 font-weight: bold;
134
 margin-right: 2px;
135
 padding-left: 10px;
136
 padding-right: 10px;
137
 text-align: center;
138
}
139
 
140
.covered-by-small-tests {
141
 background-color: #99cb84;
142
}
143
 
144
.covered-by-medium-tests {
145
 background-color: #c3e3b5;
146
}
147
 
148
.covered-by-large-tests {
149
 background-color: #dff0d8;
150
}
151
 
152
.not-covered {
153
 background-color: #f2dede;
154
}
155
 
156
.not-coverable {
157
 background-color: #fcf8e3;
158
}