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