Project

General

Profile

Download (1.52 KB) Statistics
| Branch: | Tag: | Revision:
1
// Global variable overrides. Must be declared before importing Valo.
2

    
3
// Defines the plaintext font size, weight and family. Font size affects general component sizing.
4
//$v-font-size: 16px;
5
//$v-font-weight: 300;
6
//$v-font-family: "Open Sans", sans-serif;
7

    
8
// Defines the border used by all components.
9
//$v-border: 1px solid (v-shade 0.7);
10
//$v-border-radius: 4px;
11

    
12
// Affects the color of some component elements, e.g Button, Panel title, etc
13
//$v-background-color: hsl(210, 0%, 98%);
14
// Affects the color of content areas, e.g  Panel and Window content, TextField input etc
15
//$v-app-background-color: $v-background-color;
16

    
17
// Affects the visual appearance of all components
18
//$v-gradient: v-linear 8%;
19
//$v-bevel-depth: 30%;
20
//$v-shadow-opacity: 5%;
21

    
22
// Defines colors for indicating status (focus, success, failure)
23
//$v-focus-color: valo-focus-color(); // Calculates a suitable color automatically
24
//$v-friendly-color: #2c9720;
25
//$v-error-indicator-color: #ed473b;
26

    
27
// For more information, see: https://vaadin.com/book/-/page/themes.valo.html
28
// Example variants can be copy/pasted from https://vaadin.com/wiki/-/wiki/Main/Valo+Examples
29

    
30

    
31
@import "../runo/runo.scss";
32

    
33
@mixin edit {
34
  @include runo;
35
  // Insert your own theme rules here
36
  
37
    /* Style specifically for the row header cells. */
38
    .v-table-cell-content-synonym {
39
       font-style: italic;
40
       text-indent: 10px
41
    }
42
    
43
    .v-table-cell-content-taxon {
44
       font-style: italic;        
45
    }
46

    
47
    .cr-arrow .v-icon {
48
        color: #006666;
49
        font-size: 30px;
50
    }
51

    
52
}
(2-2/4)