Fix missing static folder

Change-Id: Ib38208193b9928160399c627dfbee48eb3fd3116
changes/50/122050/1 0.1
Kirill Izotov 2014-09-17 11:08:55 +07:00
parent c7777ee5d5
commit cdd08e49d2
2 changed files with 19 additions and 3 deletions

3
.gitignore vendored
View File

@ -37,6 +37,3 @@ nosetests.xml
.pydevproject
.idea
.DS_Store
mistraldashboard/local/local_settings.py
mistraldashboard/local/.secret_key_store
static

View File

@ -0,0 +1,19 @@
.codeblock {
position: relative;
.short {
cursor: pointer;
}
.full {
display: none;
}
&:focus .short {
display: none;
}
&:focus .full {
display: block;
}
}