Skip to content

Commit 1dcaf4a

Browse files
update integration section summary to be more clarifying
1 parent b93c457 commit 1dcaf4a

File tree

11 files changed

+19
-10
lines changed

11 files changed

+19
-10
lines changed

web-integrations/google-secure-signals/client-server/public/stylesheets/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ a:hover {
164164
#secure_signals_state {
165165
width: 100%;
166166
border-collapse: collapse;
167-
margin: 2rem 0;
167+
margin: 1rem 0 2rem 0;
168168
font-size: 0.875rem;
169169
border: 1px solid var(--border-color);
170170
border-radius: 8px;

web-integrations/google-secure-signals/client-server/views/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ <h2><%- identityName %> Integration Status</h2>
230230

231231
<!-- Google Secure Signals Section -->
232232
<h2 class="section-teal">Google Secure Signals Status</h2>
233-
<p class="section-summary">The Secure Signals SDK reads the <%- identityName %> token from localStorage and encrypts it for Google Ad Manager.</p>
233+
<p class="section-summary">Secure Signals automatically reads the token from storage and shares it with Google Ad Manager.</p>
234234

235235
<table id="secure_signals_state">
236236
<tr>

web-integrations/google-secure-signals/client-side/html/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ <h2>${IDENTITY_NAME} Integration Status</h2>
111111

112112
<!-- Google Secure Signals Section -->
113113
<h2 class="section-teal">Google Secure Signals Status</h2>
114-
<p class="section-summary">The Secure Signals SDK reads the ${IDENTITY_NAME} token from localStorage and encrypts it for Google Ad Manager.</p>
114+
<p class="section-summary">Secure Signals automatically reads the token from storage and shares it with Google Ad Manager.</p>
115115

116116
<table id="secure_signals_state">
117117
<tr>

web-integrations/google-secure-signals/client-side/html/styles/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ a:hover {
180180
width: 100%;
181181
border-collapse: separate;
182182
border-spacing: 0;
183-
margin: 2rem 0;
183+
margin: 1rem 0 2rem 0;
184184
border: 2px solid var(--border-color);
185185
border-radius: 8px;
186186
overflow: visible;

web-integrations/google-secure-signals/react-client-side/src/SecureSignalsApp.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,7 @@ const SecureSignalsApp = () => {
508508

509509
{/* Google Secure Signals Section */}
510510
<h2 className="section-teal">Google Secure Signals Status</h2>
511+
<p className="section-summary">Secure Signals automatically reads the token from storage and shares it with Google Ad Manager.</p>
511512

512513
<table id="secure_signals_state">
513514
<tbody>

web-integrations/google-secure-signals/react-client-side/src/styles/app.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,14 @@ p {
155155
line-height: 1.8;
156156
}
157157

158+
/* Section summary - same styling as intro but gray */
159+
p.section-summary {
160+
font-size: 0.95rem;
161+
color: var(--text-gray);
162+
margin-bottom: 1rem;
163+
line-height: 1.8;
164+
}
165+
158166
a {
159167
color: var(--link-color);
160168
text-decoration: underline;
@@ -172,7 +180,7 @@ a:hover {
172180
width: 100%;
173181
border-collapse: separate;
174182
border-spacing: 0;
175-
margin: 2rem 0;
183+
margin: 1rem 0 2rem 0;
176184
border: 2px solid var(--border-color);
177185
border-radius: 8px;
178186
overflow: visible;

web-integrations/google-secure-signals/server-side/public/stylesheets/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ a:hover {
163163
#secure_signals_state {
164164
width: 100%;
165165
border-collapse: collapse;
166-
margin: 2rem 0;
166+
margin: 1rem 0 2rem 0;
167167
font-size: 0.875rem;
168168
border: 1px solid var(--border-color);
169169
border-radius: 8px;

web-integrations/google-secure-signals/server-side/views/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ <h2><%- identityName %> Integration Status</h2>
183183

184184
<!-- Google Secure Signals Section -->
185185
<h2 class="section-teal">Google Secure Signals Status</h2>
186-
<p class="section-summary">The page exposes window.getUid2AdvertisingToken for the Secure Signals SDK to retrieve and encrypt tokens for Google Ad Manager.</p>
186+
<p class="section-summary">Secure Signals automatically reads the server-generated token and shares it with Google Ad Manager.</p>
187187

188188
<table id="secure_signals_state">
189189
<tr>

web-integrations/prebid-integrations/client-server/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ <h2><%- identityName %> Integration Status</h2>
260260

261261
<!-- Prebid Integration Status Section -->
262262
<h2 class="section-teal">Prebid Integration Status</h2>
263-
<p class="section-summary">Prebid.js manages token storage in localStorage and shares it with bidders during header bidding auctions.</p>
263+
<p class="section-summary">Prebid.js is configured to store and refresh tokens generated by the server.</p>
264264

265265
<table id="prebid_state">
266266
<tr>

web-integrations/prebid-integrations/client-side/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ <h2>${IDENTITY_NAME} Integration Status</h2>
296296

297297
<!-- Prebid Integration Status Section -->
298298
<h2 class="section-teal">Prebid Integration Status</h2>
299-
<p class="section-summary">Prebid.js manages token storage in localStorage and shares it with bidders during header bidding auctions.</p>
299+
<p class="section-summary">Prebid.js is configured to handle the entire token lifecycle—generation, storage, and automatic refresh.</p>
300300

301301
<table id="prebid_state">
302302
<tr>

0 commit comments

Comments
 (0)