From 8880188001da23a5f0960e3970c4eb9bbd448306 Mon Sep 17 00:00:00 2001 From: Saku Ytti Date: Sun, 23 Feb 2014 19:11:29 +0200 Subject: Migrate to sinatra/puma from webrick As I can't do IO#select on sinatra/puma to run it when I have time, I have to run it on separate thread. This means Nodes container needs to be thread safe, it now has ghetto mutex locking, but I probably need to be be more focused what are the external methods that can be called and wrap those in @mutex.synchronize Provide also HTML UI not just JSON for ghetto UI to people who don't want to integrate --- lib/oxidized/api/web/public/css/oxidized.css | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 lib/oxidized/api/web/public/css/oxidized.css (limited to 'lib/oxidized/api/web/public/css/oxidized.css') diff --git a/lib/oxidized/api/web/public/css/oxidized.css b/lib/oxidized/api/web/public/css/oxidized.css new file mode 100644 index 0000000..8455513 --- /dev/null +++ b/lib/oxidized/api/web/public/css/oxidized.css @@ -0,0 +1,35 @@ +body { + background: #fdf6e3; + color: #002b36; +} + +a:link { + /* color: #268bd2; */ + color: #dc322f; + text-decoration: none; +} + +a:visited { +} + +a:hover { + color: #d33682; + text-decoration: underline; +} + +a:active { +} + +tr.odd { + background: #eee8d5; +} + +tr.even { + background: #fdf6e3; +} + +tr:hover { + background: #586e75; + color: #fdf6e3; +} + -- cgit v1.2.1