From 6e9bc819a4e38997751ec5eb39867d38c1adf335 Mon Sep 17 00:00:00 2001 From: Rich-Harris Date: Sun, 11 Oct 2015 12:35:50 -0400 Subject: [PATCH] relocate input styles --- src/app/Input/Module.html | 16 ---------------- src/styles/button.css | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/app/Input/Module.html b/src/app/Input/Module.html index 2c7ed8e..930c673 100644 --- a/src/app/Input/Module.html +++ b/src/app/Input/Module.html @@ -34,22 +34,6 @@ /*background-color: #f4f4f4;*/ } - .module-name { - display: block; - width: 100%; - font-family: inherit; - font-size: inherit; - padding: 0.5em; - border: none; - outline: none; - line-height: 1; - color: #333; - } - - .module-name:focus { - background-color: #eee; - } - .entry-module-label { color: #999; } diff --git a/src/styles/button.css b/src/styles/button.css index a3b1e24..9cd27e0 100644 --- a/src/styles/button.css +++ b/src/styles/button.css @@ -34,3 +34,19 @@ select { background-size: auto 100%; outline: none; } + +input { + display: block; + width: 100%; + font-family: inherit; + font-size: inherit; + padding: 0.5em; + border: none; + outline: none; + line-height: 1; + color: #333; +} + +input:focus { + background-color: #eee; +}