From 324589019d4cb65c262048e86aa860068ca75946 Mon Sep 17 00:00:00 2001 From: Jon Rohan Date: Mon, 21 Jan 2013 17:01:46 -0800 Subject: [PATCH] refactoring select-list.css into 2 files --- .atom/themes/Atom - Dark/select-list.css | 24 +----------------------- static/select-list.css | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 23 deletions(-) create mode 100644 static/select-list.css diff --git a/.atom/themes/Atom - Dark/select-list.css b/.atom/themes/Atom - Dark/select-list.css index a17e22023..61497eccc 100644 --- a/.atom/themes/Atom - Dark/select-list.css +++ b/.atom/themes/Atom - Dark/select-list.css @@ -4,33 +4,11 @@ top: 0; left: 50%; margin-left: -40%; - background-color: #444; box-sizing: border-box; - color: #eee; - -webkit-box-shadow: 0 0 5px 5px #222; - padding: 5px; z-index: 99; - cursor: pointer; -} - -.select-list .editor { - margin-bottom: 5px; } .select-list ol { position: relative; overflow-y: auto; -} - -.select-list li:hover { - background-color: #555; -} - -.select-list ol .selected { - background: green; -} - -.select-list .error { - padding-top: 5px; - font-weight: bold; -} +} \ No newline at end of file diff --git a/static/select-list.css b/static/select-list.css new file mode 100644 index 000000000..9bfc0adc9 --- /dev/null +++ b/static/select-list.css @@ -0,0 +1,24 @@ +.select-list { + background-color: #444; + color: #eee; + -webkit-box-shadow: 0 0 5px 5px #222; + padding: 5px; + cursor: pointer; +} + +.select-list .editor { + margin-bottom: 5px; +} + +.select-list li:hover { + background-color: #555; +} + +.select-list ol .selected { + background: green; +} + +.select-list .error { + padding-top: 5px; + font-weight: bold; +}