Project

General

Profile

Download (1.26 KB) Statistics
| Branch: | Tag: | Revision:
1
// Fixes problems in the valo theme
2
// must be imported after the valo theme
3

    
4
// -------------------------------------------
5
// add missing tiny, and small style for select lists
6

    
7
.v-select-tiny {
8
  font-size: $v-font-size--tiny;
9
}
10

    
11
.v-select-small {
12
  font-size: $v-font-size--small;
13
}
14

    
15
.v-filterselect-suggestpopup-tiny {
16
  font-size: $v-font-size--tiny;
17
}
18

    
19
.v-filterselect-suggestpopup-small {
20
  font-size: $v-font-size--small;
21
}
22

    
23
// ------------------------------------------- 
24

    
25
.edit-valo .v-layout .v-component-group {
26
    .v-textfield, .v-switch, .v-button {
27
        margin-top: $edit-v-shadow-spread-radius;
28
        margin-bottom: $edit-v-shadow-spread-radius;
29
    }
30
} 
31
    
32

    
33
// -------------------------------------------
34
// add missing shadows
35
.v-select-select {   
36
    @include box-shadow(valo-bevel-and-shadow($bevel: $v-bevel, $shadow: $v-shadow, $background-color: $v-app-background-color, $gradient: $v-gradient));
37
}
38
// and component group border 
39
.v-caption:first-child + .v-widget > .v-select-select {
40
    border-top-right-radius: 0;
41
    border-bottom-right-radius: 0;
42
}
43
// tiny size
44
.v-select-tiny .v-select-select { 
45
    height: $v-unit-size--tiny
46
}
47
// causes problem with multiselect --> need to fix reset these:
48
.v-widget .v-select-select { 
49
    height: initial;
50
}
51

    
52

    
53

    
(5-5/5)