gitlab-org--gitlab-foss/app/assets/stylesheets/behaviors.scss

29 lines
501 B
SCSS
Raw Normal View History

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