File: horizontal_carousel.css

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (99 lines) | stat: -rw-r--r-- 2,644 bytes parent folder | download | duplicates (8)
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
/* Copyright 2024 The Chromium Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

/* #css_wrapper_metadata_start
 * #type=style-lit
 * #import=./history_clusters_shared_style.css.js
 * #scheme=relative
 * #include=history-clusters-shared-style
 * #css_wrapper_metadata_end */

:host {
  --cr-icon-button-margin-start: 0px;
  --gradient-start: 64px;
  --horizontal-carousel-button-center:
          calc(var(--horizontal-carousel-button-size) / 2
          + var(--horizontal-carousel-button-margin));
  /* 16px cluster padding - 2px margin */
  --horizontal-carousel-button-margin: 14px;
  --horizontal-carousel-button-size: 28px;

  display: flex;
  isolation: isolate;
  position: relative;
}

.carousel-button,
.hover-layer {
  border-radius: 50%;
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-button {
  --cr-icon-button-size: var(--horizontal-carousel-button-size);
  background-color: var(--color-button-background-tonal);
  margin: 0;
  /* Set z-index so the buttons hide the overflowing text that have z-index
     of 0. */
  z-index: 1;
}

:host(:hover) .carousel-button {
  display: block;
}

.hover-layer {
  background: var(--cr-hover-background-color);
  height: var(--horizontal-carousel-button-size);
  width: var(--horizontal-carousel-button-size);
  pointer-events: none;
  z-index: 2;
}

#backButton, #backHoverLayer {
  left: var(--horizontal-carousel-button-margin);
}

#forwardButton, #forwardHoverLayer {
  right: var(--horizontal-carousel-button-margin);
}

#backButton:hover ~ #backHoverLayer,
#forwardButton:hover ~ #forwardHoverLayer {
  display: block;
}

:host([show-back-button_]:hover)
    #carouselContainer {
  -webkit-mask-image: linear-gradient(to right,
      transparent var(--horizontal-carousel-button-center),
    black var(--gradient-start));
}

:host([show-forward-button_]:hover)
    #carouselContainer {
  -webkit-mask-image: linear-gradient(to right,
    black calc(100% - var(--gradient-start)),
      transparent  calc(100% - var(--horizontal-carousel-button-center)));
}

:host([show-back-button_][show-forward-button_]:hover)
    #carouselContainer {
  -webkit-mask-image: linear-gradient(to right,
      transparent var(--horizontal-carousel-button-center),
      black var(--gradient-start),
      black calc(100% - var(--gradient-start)),
      transparent calc(100% - var(--horizontal-carousel-button-center)));
}

#carouselContainer {
  display: flex;
  flex-wrap: nowrap;
  min-width: 0;
  padding: 2px; /* To account for 2px focus outline on pills */
  overflow-x: hidden;
}