From 503a524d276d14a8214baa8afb66f6390694ca48 Mon Sep 17 00:00:00 2001 From: Vani Date: Mon, 23 Apr 2018 11:09:51 -0700 Subject: [PATCH] docs: change capitalization for css hex color values (#23511) PR Close #23511 --- aio/content/examples/toh-pt5/src/app/app.component.css | 4 ++-- .../toh-pt5/src/app/dashboard/dashboard.component.css | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aio/content/examples/toh-pt5/src/app/app.component.css b/aio/content/examples/toh-pt5/src/app/app.component.css index bf741e4575..7cf19e6ede 100644 --- a/aio/content/examples/toh-pt5/src/app/app.component.css +++ b/aio/content/examples/toh-pt5/src/app/app.component.css @@ -18,11 +18,11 @@ nav a { border-radius: 4px; } nav a:visited, a:link { - color: #607D8B; + color: #607d8b; } nav a:hover { color: #039be5; - background-color: #CFD8DC; + background-color: #cfd8dc; } nav a.active { color: #039be5; diff --git a/aio/content/examples/toh-pt5/src/app/dashboard/dashboard.component.css b/aio/content/examples/toh-pt5/src/app/dashboard/dashboard.component.css index 3822cc56bb..8dc6701a78 100644 --- a/aio/content/examples/toh-pt5/src/app/dashboard/dashboard.component.css +++ b/aio/content/examples/toh-pt5/src/app/dashboard/dashboard.component.css @@ -33,11 +33,11 @@ h4 { color: #eee; max-height: 120px; min-width: 120px; - background-color: #607D8B; + background-color: #607d8b; border-radius: 2px; } .module:hover { - background-color: #EEE; + background-color: #eee; cursor: pointer; color: #607d8b; }