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

_subnav.scss « scss « assets « site - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc47c6fb5467a6a1da434987ce7f70e789f69564 (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
.bd-subnavbar {
  --bs-gutter-x: $bd-gutter-x;
  --bs-gutter-y: $bd-gutter-x;

  // The position and z-index are needed for the dropdown to stay on top of the content
  position: relative;
  z-index: $zindex-sticky;
  background-color: rgba($white, .95);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .15);

  .dropdown-menu {
    @include font-size(.875rem);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .05);
  }

  .dropdown-item.current {
    font-weight: 600;
    background-image: escape-svg($dropdown-active-icon);
    background-repeat: no-repeat;
    background-position: right $dropdown-item-padding-x top .6rem;
    background-size: .75rem .75rem;
  }

  @include media-breakpoint-up(md) {
    position: sticky;
    top: 0;
  }
}

.bd-search {
  position: relative;

  &::after {
    position: absolute;
    top: .4rem;
    right: .4rem;
    bottom: .4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: .3125rem;
    padding-left: .3125rem;
    @include font-size(.75rem);
    color: $gray-600;
    content: "Ctrl + /";
    background-color: $gray-100;
    @include border-radius(.125rem);
  }

  @include media-breakpoint-down(md) {
    width: 100%;
  }

  .form-control {
    padding-right: 3.75rem;

    &:focus {
      border-color: $bd-purple-bright;
      box-shadow: 0 0 0 3px rgba($bd-purple-bright, .25);
    }
  }
}

.bd-sidebar-toggle {
  color: $text-muted;

  &:hover,
  &:focus {
    color: $bd-purple-bright;
  }

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

  .bi-collapse { display: none; }

  &:not(.collapsed) {
    .bi-expand { display: none; }
    .bi-collapse { display: inline-block; }
  }
}