File: password_change_details.html

package info (click to toggle)
chromium 138.0.7204.157-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,864 kB
  • sloc: cpp: 34,936,859; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,967; 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 (121 lines) | stat: -rw-r--r-- 3,053 bytes parent folder | download | duplicates (4)
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
<style include="shared-style cr-shared-style">
  :host(:not(.multi-card)) {
    background-color: var(--cr-card-background-color);
    box-shadow: var(--cr-card-shadow);
    height: 100%;
  }

  #header {
    align-items: center;
    display: flex;
    padding-top: 28px;
  }

  #title {
    font-family: 'Roboto';
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }

  .columned-section {
    display: flex;
    gap: 16px;
    padding: 16px var(--cr-section-padding) 0;
  }

  settings-collapse-radio-button .columned-section {
    padding: 4px 0 16px 0;
  }

  .columned-section .column {
    flex: 1;
    min-width: 0;
  }

  .columned-section .description-header {
    color: var(--google-blue-600);
  }

  .columned-section h2.description-header,
  .columned-section h3.description-header {
    font-size: inherit;
    font-weight: 400;
    margin: 0;
    padding: 0;
  }

  @media (prefers-color-scheme: dark) {
    .columned-section .description-header {
      color: var(--google-blue-300);
    }
  }

  .columned-section ul {
    list-style-type: none;
    padding-inline-start: 0;
  }

  .columned-section ul.icon-bulleted-list li {
    column-gap: 16px;
    display: flex;
  }

  .columned-section li {
    margin: 16px 0;
  }

  cr-icon {
    flex-shrink: 0;
    width:20px;
    height: 20px;
  }
</style>

<div id="header">
  <cr-icon-button id="back" class="icon-arrow-back back-button"
      on-click="navigateBack_">
  </cr-icon-button>
  <h2 id="title" class="page-title">$i18n{passwordChangeSettingLabel}</h2>
</div>
<div class="cr-row first">
  <div class="flex cr-padded-text">
    <div>$i18n{passwordChangeSettingLabel}</div>
    <div class="cr-padded-text cr-secondary-text">
      $i18n{passwordChangeSettingSubLabel}
    </div>
  </div>
</div>
<div class="columned-section">
  <div class="column">
    <h2 class="description-header">$i18n{columnHeadingWhenUsed}</h2>
    <ul class="icon-bulleted-list cr-secondary-text">
      <li>
        <cr-icon icon="passwords-icon:chat-info" aria-hidden="true"></cr-icon>
        <div class="secondary">$i18n{passwordChangeSettingDataBreach}</div>
      </li>
      <li>
        <cr-icon icon="cr20:password" aria-hidden="true"></cr-icon>
        <div class="secondary">$i18n{passwordChangeSettingWhereSaved}</div>
      </li>
    </ul>
  </div>
  <div class="column">
    <h2 class="description-header">$i18n{columnHeadingConsider}</h2>
    <ul class="icon-bulleted-list cr-secondary-text">
      <li>
        <cr-icon icon="passwords-icon:psychiatry" aria-hidden="true"></cr-icon>
        <div class="secondary">$i18n{passwordChangeSettingExperimental}</div>
      </li>
      <li>
        <cr-icon icon="passwords-icon:account-box" aria-hidden="true"></cr-icon>
        <div class="secondary">$i18n{passwordChangeSettingContent}</div>
      </li>
      <li>
        <cr-icon icon="passwords-icon:lock" aria-hidden="true"></cr-icon>
        <div class="secondary">$i18n{passwordChangeSettingEncryption}</div>
      </li>
    </ul>
  </div>
</div>