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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_a11y_option.html

Issue 2701503004: ChromeOS OOBE: fix focus indicator on Accessibility page. (Closed)
Patch Set: Update after review. Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe_a11y_option.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/login/oobe_a11y_option.html
diff --git a/chrome/browser/resources/chromeos/login/oobe_a11y_option.html b/chrome/browser/resources/chromeos/login/oobe_a11y_option.html
index f008e5e8e02a134f9b57367f066df3e4bd69ff58..a130a336969d99ef151f93513738289cb6584dcd 100644
--- a/chrome/browser/resources/chromeos/login/oobe_a11y_option.html
+++ b/chrome/browser/resources/chromeos/login/oobe_a11y_option.html
@@ -4,6 +4,30 @@
<dom-module name="oobe-a11y-option">
<template>
+ <style>
+ :root {
+ --oobe-toggle-button-size: {
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
+ height: 16px;
+ top: -2px;
+ width: 16px;
+ };
+ --oobe-toggle-bar-size: {
+ height: 12px;
+ left: 4px;
+ width: 24px;
+ };
+ --paper-toggle-button-checked-bar: var(--oobe-toggle-bar-size);
+ --paper-toggle-button-checked-button: {
+ @apply(--oobe-toggle-button-size);
+ transform: translate(14px, 0);
+ };
+ --paper-toggle-button-label-spacing: 0;
+ --paper-toggle-button-unchecked-bar: var(--oobe-toggle-bar-size);
+ --paper-toggle-button-unchecked-button:
+ var(--oobe-toggle-button-size);
+ }
+ </style>
<link rel="stylesheet" href="oobe_a11y_option.css">
<div id="elementBox" class="layout horizontal">
<div class="flex layout vertical center-justified">
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe_a11y_option.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698