blob: c634778fbfbfc7438e8d0983067c18ebe3229aa0 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
.firmware__ready {
font-weight: 300;
}
.firmware__table {
margin-top: 2.5em;
margin-bottom: 2.5em;
.table__cell {
a {
display: inline-block;
margin-right: 1.7em;
text-decoration: none;
font-weight: 700;
}
.icon {
color: $medblue;
&.disabled {
color: $medgrey;
&:hover {
cursor: default;
}
}
&:hover {
cursor: pointer;
}
}
.icon.icon-as-spacer {
text-indent: 0;
color: $btn__disabled-txt;
&:hover {
cursor: default;
}
}
}
.table-header {
font-weight: 700;
}
.table__row.disabled {
.firmware__action-link {
color: $medblue;
opacity: 1;
&:hover {
cursor: pointer;
}
}
}
.firmware__primary {
background-color: lighten($status-ok, 40%);
}
}
.firmware__version {
flex: 30%;
}
.firmware__active-version {
color: $medblue;
font-size: .8em;
float: right;
font-weight: 400;
}
.firmware__action-link {
color: $links;
padding: 5px;
min-width: 90px;
text-align: left;
}
.firmware__version {
position: relative;
.icon {
position: absolute;
right: 0;
top: 20%;
}
&.active {
overflow: visible;
}
}
.icon__more-dropdown {
width: 300px;
top: 70%;
}
// Upload firmware
.firmware__upload-form {
label {
font-weight: 700;
}
input {
height: 2.4em;
}
input[type=submit] {
width: auto;
margin-top: 1.5em;
}
}
.firmware__upload-chooser {
width: 100%;
background: $lightgrey;
padding-left: 1em;
padding-right: 1em;
margin-bottom: 1em;
.btn-secondary {
vertical-align: middle;
margin: 1em .5em 1em 0;
}
&.uploading {
@include indeterminate-bar;
}
@include mediaQuery(medium) {
width: 70%;
}
}
.firmware__upload-station {
padding-bottom: 2em;
border-bottom: 1px solid $medgrey;
padding-left: 1em;
margin-top: 2em;
}
.firmware__upload-tftp {
padding-top: 2em;
padding-left: 1em;
}
|