blob: 3cefbb0a4b412d1d26ef0a438fad04822fc092d6 (
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
|
@mixin valo-csslayout ($primary-stylename: v-csslayout){
}
@mixin valo-component-group ($primary-stylename: v-csslayout) {
.#{$primary-stylename}-v-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-border-width;
} @else {
margin-left: 1px;
}
&:first-child {
margin-left: 0;
}
// Focused component should be on top
&:focus,
&[class*="focus"],
[class*="focus"] {
position: relative;
z-index: 5;
}
}
}
}
|