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

tabbed-pane.scss « shortcodes « scss « assets - github.com/google/docsy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65096aee6e0ae12fa93d99eca4a86aaf9d8d7d82 (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
.tab-content {
  .tab-pane {
    pre {
      margin: 0rem 0 0rem 0;
    }
  }
}

.tab-content {
  .tab-pane {
    .highlight {
      margin: 0rem 0 0rem 0;
      border: none;
      max-width: 100%;
    }
    margin-top: 0rem;
    margin-bottom: 1.5rem;
    max-width: 80%;
    border-left: 1px solid rgba(0, 0, 0, 0.125);
    border-right: 1px solid rgba(0, 0, 0, 0.125);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  }
}

.tab-body {
  font-weight: $font-weight-medium;
  background: $gray-100;
  color: inherit;
  border-radius: 0;
  padding: 1.5rem;

  @each $color, $value in $theme-colors {
    &-#{$color} {
      border-style: solid;
      border-color: $value;
    }
  }
}