Skip to content

Commit b59415d

Browse files
committed
Merge branch 'prebid-8' into source-tid
2 parents 6ed3a3c + 86346eb commit b59415d

File tree

62 files changed

+2798
-4414
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+2798
-4414
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ pbjs.requestBids({
108108

109109
## Install
110110

111+
112+
111113
$ git clone https://github.com/prebid/Prebid.js.git
112114
$ cd Prebid.js
113115
$ npm ci
@@ -358,3 +360,4 @@ Prebid.js is supported on IE11 and modern browsers until 5.x. 6.x+ transpiles to
358360

359361
### Governance
360362
Review our governance model [here](https://github.com/prebid/Prebid.js/tree/master/governance.md).
363+
### END
Lines changed: 205 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
1+
html {
2+
width: 100%;
3+
}
4+
body {
5+
background: #ccc;
6+
margin: 20px 5px;
7+
font: 42px/60px Helvetica, Arial, sans-serif;
8+
min-width: 320px;
9+
max-width: 1920px;
10+
}
11+
#player:first-child {
12+
width: 100%;
13+
}
14+
15+
#player {
16+
margin: auto;
17+
background: rgba(0, 0, 20, 0.8);
18+
}
19+
#eventsLog.group-player-disabled .group-player,
20+
#eventsLog.group-media-disabled .group-media,
21+
#eventsLog.group-ads-disabled .group-ads,
22+
#eventsLog.group-auction-disabled .group-auction,
23+
#eventsLog.group-adRequest-disabled .group-adRequest,
24+
#eventsLog.group-adBreak-disabled .group-adBreak,
25+
#eventsLog.group-related-disabled .group-related,
26+
#eventsLog.group-ping-disabled .group-ping,
27+
#eventsLog.group-unknown-disabled .group-unknown,
28+
#eventsLog.group-quickPeek-disabled .group-quickPeek,
29+
#eventsLog.group-provider-disabled .group-provider,
30+
#eventsLog.group-video-disabled .group-video {
31+
display: none;
32+
}
33+
.input-field {
34+
padding: 0 0.25em;
35+
margin: 0 0 0 4px;
36+
border: 0;
37+
background-color: #232323;
38+
color: #F8F8F8;
39+
}
40+
.input-field:invalid {
41+
text-decoration: underline;
42+
text-decoration-color: red;
43+
}
44+
#eventsLog .sequence > .pre.filter-not-matched {
45+
display: none;
46+
opacity: 0.2;
47+
}
48+
a.button {
49+
-webkit-appearance: button;
50+
cursor: pointer;
51+
margin: 2px;
52+
background: #ccc;
53+
border-color: rgb(216, 216, 216) rgb(209, 209, 209) rgb(186, 186, 186);
54+
border-style: solid;
55+
border-width: 1px;
56+
padding: 1px 7px 2px;
57+
color: inherit;
58+
text-decoration: inherit;
59+
user-select: none;
60+
}
61+
.right {
62+
float: right;
63+
}
64+
.disabled {
65+
opacity: 0.5;
66+
}
67+
.nav.disabled {
68+
user-select: none;
69+
cursor: default;
70+
}
71+
.block {
72+
margin: 5px;
73+
background-color: #eee;
74+
}
75+
div.mode-player {
76+
background: #acc;
77+
}
78+
div.mode-ads {
79+
background: #fea;
80+
}
81+
div.sequence {
82+
display: block;
83+
}
84+
.group-player {
85+
background: #acc;
86+
}
87+
.group-media {
88+
background: #fa6;
89+
}
90+
.group-ads {
91+
background: #fcc;
92+
}
93+
.group-auction {
94+
background: #228;
95+
color: #eee;
96+
}
97+
pre {
98+
margin: 0;
99+
}
100+
div.toggle-block pre {
101+
margin: 1px 3px;
102+
}
103+
.events-block {
104+
min-height: 1440px;
105+
}
106+
.events-block .pre,
107+
.toggle-block pre {
108+
display: inline-block;
109+
padding: 0 5px;
110+
margin: 1px 3px 1px 20px;
111+
border-radius: 5px;
112+
font-family: monospace;
113+
white-space: pre;
114+
}
115+
.pre.group-ads,
116+
.pre.group-media,
117+
.pre.group-player,
118+
.pre.group-auction,
119+
.pre.event-ready {
120+
display: inline-block;
121+
padding: 0 5px;
122+
margin: 1px 3px 1px 20px;
123+
border-radius: 5px;
124+
font-family: monospace;
125+
white-space: pre;
126+
}
127+
128+
.list-events.events-block .pre.group-player,
129+
.list-events.events-block .pre.group-media,
130+
.list-events.events-block .pre.group-ads,
131+
.list-events.events-block .pre.group-auction {
132+
display: block;
133+
margin: 0;
134+
padding: 1px 10px;
135+
border-radius: 0;
136+
}
137+
138+
.pre.event-playlistItem {
139+
margin: 1px 3px 1px 10px;
140+
}
141+
.pre.event-adBreakStart,
142+
.pre.event-adBreakEnd {
143+
margin: 1px 3px 1px 20px;
144+
}
145+
.pre.event-adBreakStart,
146+
.pre.event-ready,
147+
.pre.event-adImpression,
148+
.pre.event-adError,
149+
.pre.event-adWarning {
150+
font-weight: 800;
151+
}
152+
.pre pre {
153+
display: inline;
154+
margin: 0 0 0 20px;
155+
}
156+
.toggle {
157+
cursor: pointer;
158+
user-select: none;
159+
}
160+
button,
161+
input,
162+
optgroup,
163+
select,
164+
textarea {
165+
color: inherit;
166+
font: inherit;
167+
}
168+
button {
169+
overflow: visible;
170+
padding: 1px 7px 2px;
171+
}
172+
button,
173+
select {
174+
text-transform: none;
175+
}
176+
button,
177+
html input[type="button"],
178+
input[type="reset"],
179+
input[type="submit"] {
180+
-webkit-appearance: button;
181+
cursor: pointer;
182+
margin: 2px;
183+
}
184+
button[disabled],
185+
html input[disabled] {
186+
cursor: default;
187+
}
188+
button::-moz-focus-inner,
189+
input::-moz-focus-inner {
190+
border: 0;
191+
padding: 0;
192+
}
193+
label {
194+
display: inline-block;
195+
max-width: 100%;
196+
margin-bottom: 5px;
197+
font-weight: bold;
198+
}
199+
200+
@media only screen and (min-device-width : 320px) and (max-device-width : 768px) {
201+
body {
202+
font-size: 2vw;
203+
line-height: 3vw;
204+
}
205+
}

0 commit comments

Comments
 (0)