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

_subnav.scss « scss « assets « 4.3 « docs « static « site - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b82107ee97e75f7df848cef7eca7f5161b9d9eff (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
.bd-subnavbar {
  background-color: rgba(#fff, .75);
  backdrop-filter: blur(1rem);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .15);

  .booticon {
    opacity: .25;
  }

  .dropdown-toggle {
    @include font-size(100%);
    text-decoration: none;
  }

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

  .dropdown-item.active {
    font-weight: 600;
    color: $gray-900;
    background: escape-svg($dropdown-active-icon) no-repeat .4rem .6rem/.75rem .75rem;
  }

  @include media-breakpoint-up(md) {
    @supports (position: sticky) {
      position: sticky;
      top: 0;
      z-index: 1071; // over everything in bootstrap
    }
  }
}

.bd-search {
  position: relative; // To contain the Algolia search

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

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

.bd-search-docs-toggle {
  line-height: 1;
  color: $gray-900;
}

.link-dark {
  font-weight: 500;
  color: $dark;

  &:hover,
  &:focus {
    color: $blue;
    text-decoration: none;
  }
}