File: _TopicSelection.scss

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (178 lines) | stat: -rw-r--r-- 4,057 bytes parent folder | download | duplicates (5)
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
/* stylelint-disable max-nesting-depth */

.modalOverlayOuter.active:has(.topic-selection-container) {
  background-color: rgba(21, 20, 26, 50%);
}

.topic-selection-container {
  --transition: 0.6s opacity, 0.6s scale, 0.6s rotate, 0.6s translate;

  position: relative;
  border-radius: var(--space-small);
  box-shadow: $shadow-large;
  padding: var(--space-xxlarge);
  max-width: 745px;
  height: auto;

  .dismiss-button {
    position: absolute;
    appearance: none;
    border: none;
    z-index: 2;
    inset-block-start: 0;
    inset-inline: auto 0;
    border-radius: var(--border-radius-small);
    padding: 0;
    margin: var(--space-small);
    display: block;
    float: inline-end;
    background: url('chrome://global/skin/icons/close.svg') no-repeat center / 16px;
    height: var(--size-item-large);
    width: var(--size-item-large);
    align-self: end;
    // override default min-height and min-width for buttons
    min-height: var(--size-item-large);
    min-width: var(--size-item-large);
    -moz-context-properties: fill;
    fill: currentColor;
    transition: var(--transition);

    &:hover {
      background-color: var(--button-background-color-hover);

      &:active {
        background-color: var(--button-background-color-active)
      }
    }

  }

  .title {
    text-align: center;
    font-size: var(--font-size-xlarge);
    font-weight: var(--font-weight-bold);
    margin-block-end: var(--space-small);
  }

  .subtitle {
    text-align: center;
    margin-block: 0 var(--space-xlarge);
  }

  .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    > a {
      color: var(--link-color);

      &:hover {
        color: var(--link-color-hover);
      }

      &:hover:active {
        color: var(--link-color-active);
      }

      &:visited {
        color: var(--link-color-visited);
      }
    }

    .button-group {
      gap: var(--space-medium);
      display: flex;
    }
  }
}

.topic-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-item-small);
  margin: var(--size-item-large) auto;
  justify-content: center;
  width: fit-content;

  .topic-item {
    align-items: center;
    border-radius: var(--border-radius-circle);
    border: var(--border-width) solid var(--border-color-interactive);
    display: flex;
    justify-self: center;
    max-width: fit-content;
    padding-block: var(--space-xsmall);
    padding-inline: var(--space-xsmall) var(--space-large);
    position: relative;

    &:hover {
      cursor: pointer;
      background-color: var(--button-background-color-hover);
    }

    &:active {
      background-color: var(--button-background-color-active);
    }

    &:has(input:checked) {
      border-color: var(--color-accent-primary);
    }

    &:focus-within {
      outline-offset: 2px;
      outline: 2px solid var(--color-accent-primary);
    }

    .topic-item-label {
      margin-inline-end: var(--space-small);
    }

    .topic-custom-checkbox {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 42px;
      height: 42px;
      border-radius: var(--border-radius-circle);
      background-color: var(--newtab-button-static-background);
      margin-inline-end: var(--space-large);

      .topic-icon {
        font-size: var(--font-size-xlarge);
      }

      .topic-checked {
        display: none;
      }
    }

    input[type='checkbox'] {
      height: 100%;
      opacity: 0;
      position: absolute;
      width: 90%;

      &:checked~.topic-custom-checkbox {
        background-color: var(--color-accent-primary);
        position: relative;

        .topic-icon {
          display: none;
        }

        .topic-checked {
          color: var(--color-white);
          -moz-context-properties: fill;
          display: block;
          fill: currentColor;
          background: url('chrome://global/skin/icons/check.svg');
          background-size: cover;
          width: 26px;
          height: 26px;
        }
      }
    }
  }
}