File: cr_drawer.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 (109 lines) | stat: -rw-r--r-- 2,231 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
100
101
102
103
104
105
106
107
108
109
/* 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
 * #scheme=relative
 * #css_wrapper_metadata_end */

:host {
  --cr-drawer-width: 256px;
}

:host dialog {
  --transition-timing: 200ms ease;
  background-color: var(--cr-drawer-background-color, #fff);
  border: none;
  border-start-end-radius: var(--cr-drawer-border-start-end-radius, 0);
  border-end-end-radius: var(--cr-drawer-border-end-end-radius, 0);
  bottom: 0;
  left: calc(-1 * var(--cr-drawer-width));
  margin: 0;
  max-height: initial;
  max-width: initial;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
  transition: left var(--transition-timing);
  width: var(--cr-drawer-width);
}

@media (prefers-color-scheme: dark) {
  :host dialog {
    background: var(--cr-drawer-background-color, var(--google-grey-900))
        linear-gradient(rgba(255, 255, 255, .04), rgba(255, 255, 255, .04));
  }
}

:host dialog,
#container {
  height: 100%;
  word-break: break-word;
}

:host([show_]) dialog {
  left: 0;
}

:host([align=rtl]) dialog {
  left: auto;
  right: calc(-1 * var(--cr-drawer-width));
  transition: right var(--transition-timing);
}

:host([show_][align=rtl]) dialog {
  right: 0;
}

:host dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity var(--transition-timing);
}

:host([show_]) dialog::backdrop {
  opacity: 1;
}

.drawer-header {
  align-items: center;
  border-bottom: var(--cr-separator-line);
  color: var(--cr-drawer-header-color, inherit);
  display: flex;
  font-size: 123.08%;  /* go to 16px from 13px */
  font-weight: var(--cr-drawer-header-font-weight, inherit);
  min-height: 56px;
  padding-inline-start: var(--cr-drawer-header-padding, 24px);
}

@media (prefers-color-scheme: dark) {
  .drawer-header {
    color: var(--cr-primary-text-color);
  }
}

#heading {
  outline: none;
}

:host ::slotted([slot='body']) {
  height: calc(100% - 56px);
  overflow: auto;
}

picture {
  margin-inline-end: 16px;
}

picture,
#product-logo {
  height: 24px;
  width: 24px;
}