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

23 lines
387 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; }
}
&.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; }
}
}