UI and build process tweaks.

* Reworked the buid process to compile SCSS files and move WWW assets
  directories individually.
* Added pulsing animation for the current marker.
* Bugfix for View objects.
This commit is contained in:
Jonathan Bernard
2013-10-24 20:42:53 +00:00
parent c42a3805c2
commit e8bebb49fb
4 changed files with 43 additions and 378 deletions

View File

@ -414,6 +414,11 @@ input {
&.edit-notes .notes-text { display: none; }
&.current .duration {
-webkit-animation: pulse 1s infinite alternate;
-moz-animation: pulse 1s infinite alternate;
-o-animation: pulse 1s infinite alternate;
animation: pulse 1s infinite alternate; }
}
}
@ -483,3 +488,20 @@ input {
}
.hidden { display: none; }
@-webkit-keyframes pulse {
from { opacity: 1; }
to { opacity: 0.2; } }
@-moz-keyframes pulse {
from { opacity: 1; }
to { opacity: 0.2; } }
@-o-keyframes pulse {
from { opacity: 1; }
to { opacity: 0.2; } }
@keyframes pulse {
from { opacity: 1; }
to { opacity: 0.2; } }