Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: ui/accessibility/extensions/highcontrast/highcontrast.css

Issue 593293002: Initial checkin of accessibility extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix license issues Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 html[hc="a0"] {
6 -webkit-filter: url('#hc_extension_off');
7 }
8 html[hcx="0"] img[src*="jpg"],
9 html[hcx="0"] img[src*="jpeg"],
10 html[hcx="0"] svg image,
11 html[hcx="0"] img.rg_i,
12 html[hcx="0"] embed,
13 html[hcx="0"] object,
14 html[hcx="0"] video {
15 -webkit-filter: url('#hc_extension_off');
16 }
17
18 html[hc="a1"] {
19 -webkit-filter: url('#hc_extension_highcontrast');
20 }
21 html[hcx="1"] img[src*="jpg"],
22 html[hcx="1"] img[src*="jpeg"],
23 html[hcx="1"] img.rg_i,
24 html[hcx="1"] svg image,
25 html[hcx="1"] embed,
26 html[hcx="1"] object,
27 html[hcx="1"] video {
28 -webkit-filter: url('#hc_extension_highcontrast_back');
29 }
30
31 html[hc="a2"] {
32 -webkit-filter: url('#hc_extension_grayscale');
33 }
34 html[hcx="2"] img[src*="jpg"],
35 html[hcx="2"] img[src*="jpeg"],
36 html[hcx="2"] img.rg_i,
37 html[hcx="2"] svg image,
38 html[hcx="2"] embed,
39 html[hcx="2"] object,
40 html[hcx="2"] video {
41 -webkit-filter: url('#hc_extension_grayscale_back');
42 }
43
44 html[hc="a3"] {
45 -webkit-filter: url('#hc_extension_invert');
46 }
47 html[hcx="3"] img[src*="jpg"],
48 html[hcx="3"] img[src*="jpeg"],
49 html[hcx="3"] img.rg_i,
50 html[hcx="3"] svg image,
51 html[hcx="3"] embed,
52 html[hcx="3"] object,
53 html[hcx="3"] video {
54 -webkit-filter: url('#hc_extension_invert_back');
55 }
56
57 html[hc="a4"] {
58 -webkit-filter: url('#hc_extension_invert_grayscale');
59 }
60 html[hcx="4"] img[src*="jpg"],
61 html[hcx="4"] img[src*="jpeg"],
62 html[hcx="4"] img.rg_i,
63 html[hcx="4"] svg image,
64 html[hcx="4"] embed,
65 html[hcx="4"] object,
66 html[hcx="4"] video {
67 -webkit-filter: url('#hc_extension_invert_back');
68 }
69
70 html[hc="a5"] {
71 -webkit-filter: url('#hc_extension_yellow_on_black');
72 }
73 html[hcx="5"] img[src*="jpg"],
74 html[hcx="5"] img[src*="jpeg"],
75 html[hcx="5"] img.rg_i,
76 html[hcx="5"] svg image,
77 html[hcx="5"] embed,
78 html[hcx="5"] object,
79 html[hcx="5"] video {
80 -webkit-filter: url('#hc_extension_yellow_on_black_back');
81 }
OLDNEW
« no previous file with comments | « ui/accessibility/extensions/highcontrast/common.js ('k') | ui/accessibility/extensions/highcontrast/highcontrast.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698