From cdd08e49d2f5b6bcdf72f92374c7747ad5495de6 Mon Sep 17 00:00:00 2001 From: Kirill Izotov Date: Wed, 17 Sep 2014 11:08:55 +0700 Subject: [PATCH] Fix missing static folder Change-Id: Ib38208193b9928160399c627dfbee48eb3fd3116 --- .gitignore | 3 --- .../static/mistraldashboard/scss/style.scss | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 mistraldashboard/static/mistraldashboard/scss/style.scss diff --git a/.gitignore b/.gitignore index 10e4d87..1e20cf0 100644 --- a/.gitignore +++ b/.gitignore @@ -37,6 +37,3 @@ nosetests.xml .pydevproject .idea .DS_Store -mistraldashboard/local/local_settings.py -mistraldashboard/local/.secret_key_store -static diff --git a/mistraldashboard/static/mistraldashboard/scss/style.scss b/mistraldashboard/static/mistraldashboard/scss/style.scss new file mode 100644 index 0000000..69583a2 --- /dev/null +++ b/mistraldashboard/static/mistraldashboard/scss/style.scss @@ -0,0 +1,19 @@ +.codeblock { + position: relative; + + .short { + cursor: pointer; + } + + .full { + display: none; + } + + &:focus .short { + display: none; + } + + &:focus .full { + display: block; + } +} \ No newline at end of file