Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
760 blopes 1
* {
2
    box-sizing: border-box;
3
}
4
 
5
body {
6
    .ui-widget {
7
        font-family: $fontFamily;
8
        font-size: $fontSize;
9
        text-decoration: none;
10
    }
11
 
12
    .ui-icon {
13
        font-size: $iconSize;
14
        display: inline-block;
15
        vertical-align: baseline;
16
        margin: 0;
17
        position: static;
18
        text-indent: 0;
19
        overflow: visible;
20
        background-repeat: no-repeat;
21
    }
22
 
23
    .pi {
24
        font-size: $iconSize;
25
    }
26
 
27
    .ui-widget-overlay {
28
        -webkit-animation-name: modal-in;
29
        animation-name: modal-in;
30
        animation-duration: $animationDuration;
31
        animation-timing-function: $animationTimingFunction;
32
        animation-fill-mode: forwards;
33
    }
34
 
35
    .ui-helper-reset {
36
        line-height: normal;
37
    }
38
 
39
    .ui-state-disabled {
40
        opacity: $disabledOpacity;
41
    }
42
 
43
    .ui-widget-overlay {
44
        background: $maskBg;
45
    }
46
}