File: _Search.scss

package info (click to toggle)
firefox 149.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,767,760 kB
  • sloc: cpp: 7,416,064; javascript: 6,752,859; ansic: 3,774,850; python: 1,250,473; xml: 641,578; asm: 439,191; java: 186,617; sh: 56,634; makefile: 18,856; objc: 13,092; perl: 12,763; pascal: 5,960; yacc: 4,583; cs: 3,846; lex: 1,720; ruby: 1,002; php: 436; lisp: 258; awk: 105; sql: 66; sed: 53; csh: 10; exp: 6
file content (398 lines) | stat: -rw-r--r-- 10,781 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
$search-height: var(--size-item-xlarge);
$search-height-new: 52px;
$search-icon-size: 24px;
$search-icon-padding: 16px;
$search-icon-width: 2 * $search-icon-padding + $search-icon-size - 4px; // 52px
$search-button-width: var(--size-item-xlarge);
$glyph-forward: url('chrome://browser/skin/forward.svg');

.search-wrapper {
  // Compact layout defaults formerly under .thumbs-ui-compact
  padding: 0;
  margin-block: var(--space-xxlarge);
  margin-block-start: 0;

  .logo-and-wordmark {
    margin-block-end: var(--space-xxlarge);
  }

  .logo-and-wordmark-wrapper {
    margin-block-end: 0;
  }

  @media (height <=700px) {
    padding: 0;
    margin-block-start: 0;
  }

  @media (height > 700px) {
    padding: 0;
  }

  // Edge case for users who have only search enabled
  .only-search & {
    // Bug 1967304 - Large number (40px)
    padding-block-end: calc(var(--space-large) + var(--space-xlarge));
  }

  .search-inner-wrapper {
    cursor: default;
    display: flex;
    min-height: $search-height-new;
    margin: 0 auto;
    position: relative;
    width: 304px;

    @media (min-width: $break-point-medium) {
      width: $searchbar-width-medium;
    }

    @media (min-width: $break-point-large) {
      width: 510px;
    }

    @media (min-width: $break-point-widest) {
      width: 720px;
    }
  }

  .search-inner-wrapper:has(.trending-searches-pill-wrapper) {
    display: flex;
    flex-direction: column;

    .search-handoff-button {
      height: 52px;
    }
  }

  /**
   * @backward-compat { version 148 }
   *
   * Temporary dual implementation to support train hopping. The old handoff UI
   * is kept alongside the new contentSearchHandoffUI.mjs custom element until
   * the module lands on all channels. Controlled by the pref
   * browser.newtabpage.activity-stream.search.useHandoffComponent.
   * Remove the old implementation and the pref once this ships to Release.
   */
  .search-handoff-button {
    background: var(--newtab-background-color-secondary) var(--newtab-search-icon) $search-icon-padding center no-repeat;
    background-size: $search-icon-size;
    // Bug 1967304 - $variable
    padding-inline-start: $search-icon-width; // stylelint-disable-line declaration-property-value-disallowed-list
    padding-inline-end: var(--space-small);
    padding-block: 0;
    width: 100%;
    box-shadow: $shadow-card;
    border: 1px solid transparent;
    border-radius: var(--border-radius-medium);
    color: var(--newtab-text-primary-color);
    -moz-context-properties: fill;
    fill: var(--newtab-text-secondary-color);

    &:dir(rtl) {
      background-position-x: right $search-icon-padding;
    }
  }

  /**
   * @backward-compat { version 148 }
   *
   * Temporary dual implementation to support train hopping. The old handoff UI
   * is kept alongside the new contentSearchHandoffUI.mjs custom element until
   * the module lands on all channels. Controlled by the pref
   * browser.newtabpage.activity-stream.search.useHandoffComponent.
   * Remove the old implementation and the pref once this ships to Release.
   */
  &.fake-focus:not(.search.disabled) {
    .search-handoff-button {
      border: 1px solid var(--newtab-primary-action-background);
      box-shadow: $shadow-focus;
    }
  }

  /**
   * @backward-compat { version 148 }
   *
   * Temporary dual implementation to support train hopping. The old handoff UI
   * is kept alongside the new contentSearchHandoffUI.mjs custom element until
   * the module lands on all channels. Controlled by the pref
   * browser.newtabpage.activity-stream.search.useHandoffComponent.
   * Remove the old implementation and the pref once this ships to Release.
   */
  .search-handoff-button {
    padding-inline-end: var(--space-large);
    color: var(--newtab-text-primary-color);
    fill: var(--newtab-text-secondary-color);
    -moz-context-properties: fill;

    .fake-caret {
      inset-block-start: var(--space-large);
      // Bug 1967304 - $variable
      inset-inline-start: $search-icon-width; // stylelint-disable-line declaration-property-value-disallowed-list

      &:dir(rtl) {
        background-position-x: right $search-icon-padding;
      }
    }
  }

  content-search-handoff-ui {
    --content-search-handoff-ui-background-color: var(--newtab-background-color-secondary);
    --content-search-handoff-ui-color: var(--newtab-text-primary-color);
    --content-search-handoff-ui-fill: var(--newtab-text-secondary-color);
    --content-search-handoff-ui-caret-color: var(--newtab-text-primary-color);
    --content-search-handoff-ui-fakefocus-border-color: var(--newtab-primary-action-background);
    --content-search-handoff-ui-fakefocus-box-shadow-inner: var(--newtab-primary-action-background-dimmed);
    --content-search-handoff-ui-fakefocus-box-shadow-outer: transparent;
  }

  &.visible-logo {
    .logo-and-wordmark {
      .wordmark {
        fill: var(--newtab-wordmark-color);
      }
    }
  }
}

.has-recommended-stories {
  .outer-wrapper:not(.fixed-search) .search-wrapper {
    margin-block-start: var(--space-large);
  }

  .logo-and-wordmark {
    position: absolute;
    inset-inline-start: var(--space-xxlarge);
    inset-block-start: var(--space-xxlarge);

    @media (min-width: $break-point-layout-variant) {
      inset-inline-start: var(--space-large);
    }

    @media (min-width: $break-point-large) {
      inset-inline-start: var(--space-xxlarge);
    }
  }

  &.no-search {
    .body-wrapper {
      margin-block-start: 0;

      @media (min-width: $break-point-large) {
        // This is to handle the gap left by search being removed.
        // Bug 1967304 - Large number (96px)
        margin-block-start: calc(var(--space-xlarge) * 4);
      }

      @media (min-width: $break-point-ultra-wide) {
        margin-block-start: 0;
      }
    }
  }

  // Bug 1961633 - Keep shortcuts/feed below the logo/weather widget (var b layout)
  &.no-search.has-sections-grid {
    .body-wrapper {
      // 96px is the margin necessary to maintain the same spacing with/without the search bar
      // Bug 1967304 - Large number (96px)
      margin-block-start: calc(var(--space-xlarge) * 4);
    }

    .logo-and-wordmark {
      inset-inline-start: var(--space-large);

      @media (min-width: $break-point-small) {
        inset-inline-start: var(--space-xxlarge);
      }

      @media (min-width: $break-point-layout-variant) {
        inset-inline-start: var(--space-large);
      }

      @media (min-width: $break-point-large) {
        inset-inline-start: var(--space-xxlarge);
      }
    }

  }

  .search-inner-wrapper {
    width: 200px;

    @media (min-width: $break-point-small) {
      width: 300px;
    }

    @media (min-width: $break-point-medium) {
      width: 350px;
    }

    @media (min-width: $break-point-large) {
      width: 410px;
    }

    @media (min-width: $break-point-widest) {
      width: 584px;
    }

    @media (min-width: $break-point-weather) {
      width: 720px;
    }
  }

  // Bug 1960519 - Custom override for mobile icon next to weather
  &.has-mobile-download-promo {
    .search-inner-wrapper {
      @media (min-width: $break-point-widest) {
        // Set to smaller breakpoint to fit weather
        width: 497px;
      }

      @media (min-width: $break-point-weather) {
        // Reset back to default length
        width: 720px;
      }
    }
  }

  .logo {
    width: 52px;
    height: 52px;
    background-size: 52px;
  }

  .wordmark {
    display: none;
    height: 52px;

    @media (min-width: $break-point-large) {
      display: block;
    }
  }
}

.search-handoff-button {
  background: var(--newtab-background-color-secondary) var(--newtab-search-icon) $search-icon-padding center no-repeat;
  background-size: $search-icon-size;
  border: solid 1px transparent;
  border-radius: var(--border-radius-small);
  box-shadow: $shadow-secondary, 0 0 0 1px $black-15;
  cursor: text;
  font-size: inherit;
  padding: 0;
  // Bug 1967304 - Large number (48px)
  padding-inline: calc(var(--space-xlarge) * 2);
  opacity: 1;
  width: 100%;

  &:dir(rtl) {
    background-position-x: right $search-icon-padding;
  }

  .fake-focus:not(.search-disabled) & {
    border: 1px solid var(--border-color-interactive);
    box-shadow: var(--newtab-textbox-focus-boxshadow);

    .fake-caret {
      display: block;
    }
  }

  .search-disabled & {
    opacity: 0.5;
    box-shadow: none;
  }

  .fake-editable:focus {
    outline: none;
    caret-color: transparent;
  }

  .fake-editable {
    color: transparent;
    height: 100%;
    opacity: 0;
    position: absolute;
    inset: 0;
  }

  .fake-textbox {
    opacity: 0.54;
    text-align: start;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }

  .fake-caret {
    /* To replicate the default caret blink rate of 567ms (https://searchfox.org/mozilla-central/source/widget/cocoa/nsLookAndFeel.mm#397):
     - Multiply the blink time by 2 to cover both the visible and hidden states.
     - Use steps(2, start) to divide the animation into 2 phases:
       1. First 567ms (Step 1) → Caret is visible
       2. Next 567ms (Step 2) → Caret is hidden
    This gives a sharp ON/OFF effect instead of a smooth transition. */

    animation: caret-animation var(--caret-blink-time, 1134ms) steps(2, start) var(--caret-blink-count, infinite);
    background: var(--newtab-text-primary-color);
    display: none;
    // Bug 1967304 - Large number (48px)
    inset-inline-start:calc(var(--space-xlarge) * 2);
    height: 17px;
    position: absolute;
    inset-block-start: var(--space-large);
    width: 1px;

    @keyframes caret-animation {
      to {
        visibility: hidden;
      }
    }
  }
}

@media (height > 700px) {
  .activity-stream .fixed-search {
    .search-wrapper {
      $search-height: $search-height-new;
      $search-icon-size: 24px;
      $search-icon-padding: 16px;
      $search-header-bar-height: 95px;

      border-block-end: solid 1px var(--border-color);
      padding: var(--space-xlarge) 0;
      background-color: var(--newtab-overlay-color);
      min-height: $search-header-bar-height;
      inset-inline-start: 0;
      position: fixed;
      inset-block-start: 0;
      width: 100%;
      z-index: 3;
      display: flex;
      align-items: center;

      .search-inner-wrapper {
        min-height: $search-height;
      }

      .search-handoff-button .fake-caret {
        inset-block-start: var(--space-large);
      }

      .logo-and-wordmark {
        display: none;
      }
    }

    .search-handoff-button {
      background-position-x: var(--space-large);
      background-size: $search-icon-size;

      &:dir(rtl) {
        background-position-x: right var(--space-large);
      }

      .fake-caret {
        inset-block-start: var(--space-small);
      }
    }
  }
}