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

behaviors.scss « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 542a53f0377f924f06dbc104f99251f0d56797e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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; }
  }
}