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

_sidebar.scss « scss « assets « site - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d893ba9dcc9d8b9ce5a61c62956dcd0cec554908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
.bd-sidebar {
  @include media-breakpoint-down(md) {
    margin: 0 -.75rem 1rem;
  }
}

.bd-links {
  overflow: auto;
  font-weight: 600;

  @include media-breakpoint-up(md) {
    position: sticky;
    top: 5rem;
    // Override collapse behaviors
    // stylelint-disable-next-line declaration-no-important
    display: block !important;
    height: subtract(100vh, 7rem);
    // Prevent focus styles to be cut off:
    padding-left: .25rem;
    margin-left: -.25rem;
    overflow-y: auto;
  }

  > ul {
    @include media-breakpoint-down(md) {
      padding: 1.5rem .75rem;
      background-color: $gray-100;
      border-bottom: 1px solid $gray-200;
    }
  }

  a {
    padding: .1875rem .5rem;
    margin-top: .125rem;
    margin-left: 1.25rem;
    color: rgba($black, .65);
    text-decoration: if($link-decoration == none, null, none);

    &:hover,
    &:focus {
      color: rgba($black, .85);
      text-decoration: if($link-hover-decoration == underline, none, null);
      background-color: rgba($bd-purple-bright, .1);
    }
  }

  .btn {
    // Custom styles (as we don't have a completely neutral button style)
    padding: .25rem .5rem;
    font-weight: 600;
    color: rgba($black, .65);
    background-color: transparent;
    border: 0;

    &:hover,
    &:focus {
      color: rgba($black, .85);
      background-color: rgba($bd-purple-bright, .1);
    }

    &:focus {
      box-shadow: 0 0 0 1px rgba($bd-purple-bright, .7);
    }

    // Add chevron if there's a submenu
    &::before {
      width: 1.25em;
      line-height: 0; // Align in the middle
      content: escape-svg($sidebar-collapse-icon);
      @include transition(transform .35s ease);
      transform-origin: .5em 50%;
    }

    &[aria-expanded="true"] {
      color: rgba($black, .85);

      &::before {
        transform: rotate(90deg);
      }
    }
  }

  .active {
    font-weight: 600;
    color: rgba($black, .85);
  }
}