2012-10-29 13:24:25 -04:00
|
|
|
// Details
|
|
|
|
//--------
|
2014-10-27 13:06:01 -04:00
|
|
|
.js-details-container {
|
|
|
|
.content {
|
|
|
|
display: none;
|
|
|
|
&.hide { display: block; }
|
|
|
|
}
|
2016-10-14 16:39:08 -04:00
|
|
|
|
2014-10-27 13:06:01 -04:00
|
|
|
&.open .content {
|
|
|
|
display: block;
|
|
|
|
&.hide { display: none; }
|
|
|
|
}
|
|
|
|
}
|
2014-06-26 03:49:14 -04:00
|
|
|
|
|
|
|
// Toggle between two states.
|
2014-10-27 13:06:01 -04:00
|
|
|
.js-toggler-container {
|
2016-03-30 16:30:06 -04:00
|
|
|
.turn-on { display: block; }
|
2014-10-27 13:06:01 -04:00
|
|
|
.turn-off { display: none; }
|
|
|
|
&.on {
|
2016-03-30 16:30:06 -04:00
|
|
|
.turn-on { display: none; }
|
2014-10-27 13:06:01 -04:00
|
|
|
.turn-off { display: block; }
|
|
|
|
}
|
|
|
|
}
|
2016-07-01 08:54:55 -04:00
|
|
|
|
2016-08-16 13:46:01 -04:00
|
|
|
// Hide element if Vue is still working on rendering it fully.
|
2016-07-01 08:54:55 -04:00
|
|
|
[v-cloak="true"] {
|
2016-08-16 13:46:01 -04:00
|
|
|
display: none !important;
|
2016-07-01 08:54:55 -04:00
|
|
|
}
|