summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/valo/components/_csslayout.scss
blob: b0fa4362e7b0f88d4cd7e6eba3a87f3b63c98a57 (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
$v-component-group-spacing: null !default;


@mixin valo-csslayout ($primary-stylename: v-csslayout, $include-additional-styles: contains($v-included-additional-styles, csslayout)){
  @if $include-additional-styles {
    .#{$primary-stylename}-well {
      @include valo-panel-well-style;
      @include valo-panel-adjust-content-margins;
    }

    .#{$primary-stylename}-card {
      @include valo-panel-style;
      @include valo-panel-adjust-content-margins;
    }

    .#{$primary-stylename}-v-component-group {
      @include valo-component-group;
    }
  }
}


@mixin valo-component-group {
  white-space: nowrap;
  position: relative;

  @if $v-border-radius > 0 {
    .v-widget ~ .v-widget:not(:last-child) {
      border-radius: 0;
    }

    .v-widget:last-child {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }

    .v-widget:first-child,
    .v-caption:first-child + .v-widget {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

    .v-widget ~ .v-widget.first.first {
      border-radius: $v-border-radius 0 0 $v-border-radius;
    }

    .v-widget ~ .v-widget.last.last {
      border-radius: 0 $v-border-radius $v-border-radius 0;
    }
  }

  // Assume most components have borders.
  // This is just a best-guess, will need fine-tuning if border-widths vary from widget-to-widget
  .v-widget {
    vertical-align: middle;

    $v-border-width: first-number($v-border);

    @if $v-border-width > 0 {
      margin-left: $v-component-group-spacing or -$v-border-width;
    } @else {
      margin-left: $v-component-group-spacing or 1px;
    }

    &:first-child {
      margin-left: 0;
    }

    // Focused component should be on top
    &:focus,
    &[class*="focus"],
    [class*="focus"] {
      position: relative;
      z-index: 5;
    }
  }
}