Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/behaviors.scss')
-rw-r--r--app/assets/stylesheets/behaviors.scss22
1 files changed, 0 insertions, 22 deletions
diff --git a/app/assets/stylesheets/behaviors.scss b/app/assets/stylesheets/behaviors.scss
deleted file mode 100644
index 469f4f296ae..00000000000
--- a/app/assets/stylesheets/behaviors.scss
+++ /dev/null
@@ -1,22 +0,0 @@
-// Details
-//--------
-.js-details-container {
- .content {
- display: none;
- &.hide { display: block; }
- }
- &.open .content {
- display: block;
- &.hide { display: none; }
- }
-}
-
-// Toggle between two states.
-.js-toggler-container {
- .turn-on { display: block; }
- .turn-off { display: none; }
- &.on {
- .turn-on { display: none; }
- .turn-off { display: block; }
- }
-}