-
-
Notifications
You must be signed in to change notification settings - Fork 709
/
Copy path_transfers.scss
82 lines (68 loc) · 1.34 KB
/
_transfers.scss
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
78
79
80
81
82
.transfers {
padding: 32px;
h1 {
font-weight: normal;
margin-top: 0;
//padding-top: 12px;
padding-bottom: 12px;
border-bottom: 1px solid $default-rule-color;
}
h2 {
font-size: 24px;
font-weight: normal;
}
div.card {
background-color: white;
padding: 0 16px;
overflow: hidden;
}
button.cancel, button.deny {
@extend %button-base;
@extend %button-danger;
}
button.accept, button.continue, button.start, button.finish {
@extend %button-base;
@extend %button-primary;
}
button.pause, button.clear-errors {
@extend %button-base;
@extend %button-secondary;
}
input[name="destination"] {
width: 200px;
}
.grain-list {
@extend %grain-table;
.td-state {
width: 32px;
text-align: center;
}
.state-error {
width: 32px;
height: 24px;
@extend .icon-close;
&::before {
font-size: 20px;
@extend .icon;
}
color: #a00;
}
.state-done {
width: 32px;
height: 24px;
@extend .icon-check;
&::before {
font-size: 20px;
@extend .icon;
}
color: #0a0;
}
.state-downloading {
width: 32px;
height: 24px;
@extend %pseudo-img-tag;
background-image: url("/spinner_96.gif");
background-position-x: center;
}
}
}