summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/content-src/styles/_icons.scss
blob: 4074f0a6a6bc1f5a3b096289fe678f4edf1c1879 (plain)
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
.icon {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: $icon-size;
  -moz-context-properties: fill;
  display: inline-block;
  color: var(--newtab-text-primary-color);
  fill: currentColor;
  height: $icon-size;
  vertical-align: middle;
  width: $icon-size;

  // helper classes
  &.icon-spacer {
    margin-inline-end: 8px;
  }

  &.icon-small-spacer {
    margin-inline-end: 6px;
  }

  &.icon-button-style {
    fill: var(--newtab-text-secondary-color);
    border: 0;

    &:focus,
    &:hover {
      fill: var(--newtab-text-primary-color);
    }
  }

  // icon images
  &.icon-bookmark-added {
    background-image: url('chrome://browser/skin/bookmark.svg');
  }

  &.icon-bookmark-hollow {
    background-image: url('chrome://browser/skin/bookmark-hollow.svg');
  }

  &.icon-clear-input {
    background-image: url('chrome://global/skin/icons/close-fill.svg');
  }

  &.icon-delete {
    background-image: url('chrome://global/skin/icons/delete.svg');
  }

  &.icon-search {
    background-image: url('chrome://global/skin/icons/search-glass.svg');
  }

  &.icon-modal-delete {
    flex-shrink: 0;
    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-modal-delete-20.svg');
    background-size: $larger-icon-size;
    height: $larger-icon-size;
    width: $larger-icon-size;
  }

  &.icon-mail {
    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-mail-16.svg');
  }

  &.icon-dismiss {
    background-image: url('chrome://global/skin/icons/close.svg');
  }

  &.icon-info {
    background-image: url('chrome://global/skin/icons/info.svg');
  }

  &.icon-new-window {
    @include flip-icon;

    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-newWindow-16.svg');
  }

  &.icon-new-window-private {
    background-image: url('chrome://browser/skin/privateBrowsing.svg');
  }

  &.icon-settings {
    background-image: url('chrome://global/skin/icons/settings.svg');
  }

  &.icon-pin {
    @include flip-icon;

    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-pin-16.svg');
  }

  &.icon-unpin {
    @include flip-icon;

    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-unpin-16.svg');
  }

  &.icon-edit {
    background-image: url('chrome://global/skin/icons/edit.svg');
  }

  &.icon-pocket {
    background-image: url('chrome://global/skin/icons/pocket.svg');
  }

  &.icon-pocket-save {
    background-image: url('chrome://global/skin/icons/pocket.svg');
    fill: $white;
  }

  &.icon-pocket-delete {
    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-pocket-delete-16.svg');
  }

  &.icon-pocket-archive {
    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-pocket-archive-16.svg');
  }

  &.icon-history-item {
    background-image: url('chrome://browser/skin/history.svg');
  }

  &.icon-trending {
    background-image: url('chrome://browser/skin/trending.svg');
    transform: translateY(2px); // trending bolt is visually top heavy
  }

  &.icon-now {
    background-image: url('chrome://browser/skin/history.svg');
  }

  &.icon-topsites {
    background-image: url('chrome://browser/skin/topsites.svg');
  }

  &.icon-pin-small {
    @include flip-icon;

    background-image: url('chrome://browser/skin/pin-12.svg');
    background-size: $smaller-icon-size;
    height: $smaller-icon-size;
    width: $smaller-icon-size;
  }

  &.icon-check {
    background-image: url('chrome://global/skin/icons/check.svg');
  }

  &.icon-download {
    background-image: url('chrome://browser/skin/downloads/downloads.svg');
  }

  &.icon-copy {
    background-image: url('chrome://global/skin/icons/edit-copy.svg');
  }

  &.icon-open-file {
    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-open-file-16.svg');
  }

  &.icon-webextension {
    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-webextension-16.svg');
  }

  &.icon-highlights {
    background-image: url('chrome://global/skin/icons/highlights.svg');
  }

  &.icon-arrowhead-down {
    background-image: url('chrome://global/skin/icons/arrow-down.svg');
  }

  &.icon-arrowhead-down-small {
    background-image: url('chrome://global/skin/icons/arrow-down-12.svg');
    background-size: $smaller-icon-size;
    height: $smaller-icon-size;
    width: $smaller-icon-size;
  }

  &.icon-arrowhead-forward-small {
    background-image: url('chrome://global/skin/icons/arrow-right-12.svg');
    background-size: $smaller-icon-size;
    height: $smaller-icon-size;
    width: $smaller-icon-size;

    &:dir(rtl) {
      background-image: url('chrome://global/skin/icons/arrow-left-12.svg');
    }
  }

  &.icon-arrowhead-up {
    background-image: url('chrome://global/skin/icons/arrow-up.svg');
  }

  &.icon-add {
    background-image: url('chrome://global/skin/icons/plus.svg');
  }

  &.icon-minimize {
    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-minimize-16.svg');
  }

  &.icon-maximize {
    background-image: url('chrome://activity-stream/content/data/content/assets/glyph-maximize-16.svg');
  }

  &.icon-arrow {
    background-image: url('chrome://global/skin/icons/arrow-right-12.svg');
  }
}