bfg-common 1.3.476 → 1.3.478
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -48,40 +48,40 @@
|
|
|
48
48
|
background-position: 0 3.57142857143%;
|
|
49
49
|
}
|
|
50
50
|
.settings {
|
|
51
|
-
background-position: 0 60.
|
|
51
|
+
background-position: 0 60.714285714%;
|
|
52
52
|
}
|
|
53
53
|
.backup-storage {
|
|
54
|
-
background-position: 60.
|
|
54
|
+
background-position: 60.714285714% 64.285714286%;
|
|
55
55
|
}
|
|
56
56
|
.backup-storage-error {
|
|
57
|
-
background-position: 64.
|
|
57
|
+
background-position: 64.285714286% 67.857142857%;
|
|
58
58
|
}
|
|
59
59
|
.backup-storage-warning {
|
|
60
|
-
background-position: 67.
|
|
60
|
+
background-position: 67.857142857% 71.428571429%;
|
|
61
61
|
}
|
|
62
62
|
.backup-storage-maintenance {
|
|
63
|
-
background-position: 71.
|
|
63
|
+
background-position: 71.428571429% 75%;
|
|
64
64
|
}
|
|
65
65
|
.backup-storage-connected {
|
|
66
|
-
background-position:
|
|
66
|
+
background-position: 75% 78.571428571%;
|
|
67
67
|
}
|
|
68
68
|
.backup-storage-disconnected {
|
|
69
|
-
background-position: 78.
|
|
69
|
+
background-position: 78.571428571% 82.142857143%;
|
|
70
70
|
}
|
|
71
71
|
.backup-bucket {
|
|
72
|
-
background-position: 82.
|
|
72
|
+
background-position: 82.142857143% 85.714285714%;
|
|
73
73
|
}
|
|
74
74
|
.backup-bucket-ok {
|
|
75
|
-
background-position: 85.
|
|
75
|
+
background-position: 85.714285714% 89.285714286%;
|
|
76
76
|
}
|
|
77
77
|
.backup-bucket-warning {
|
|
78
|
-
background-position: 89.
|
|
78
|
+
background-position: 89.285714286% 92.857142857%;
|
|
79
79
|
}
|
|
80
80
|
.backup-bucket-error {
|
|
81
|
-
background-position: 92.
|
|
81
|
+
background-position: 92.857142857% 96.428571429%;
|
|
82
82
|
}
|
|
83
83
|
.backup-bucket-inaccessible {
|
|
84
|
-
background-position:
|
|
84
|
+
background-position: 96.428571429% 100%;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
/* _____BACKGROUND IMAGE_____ */
|
|
@@ -136,13 +136,13 @@ export const backupStorageLocalizationByState = [
|
|
|
136
136
|
]
|
|
137
137
|
|
|
138
138
|
export const backupStorageIconByState = [
|
|
139
|
-
'
|
|
140
|
-
'
|
|
141
|
-
'
|
|
142
|
-
'
|
|
143
|
-
'
|
|
144
|
-
'
|
|
145
|
-
'
|
|
139
|
+
'backup-storage-error',
|
|
140
|
+
'backup-storage',
|
|
141
|
+
'backup-storage-warning',
|
|
142
|
+
'backup-storage-error',
|
|
143
|
+
'backup-storage-maintenance',
|
|
144
|
+
'backup-storage-connected',
|
|
145
|
+
'backup-storage-disconnected', // 'datastore-disconnected',
|
|
146
146
|
]
|
|
147
147
|
|
|
148
148
|
export const bucketLocalizationByState = [
|
|
@@ -153,8 +153,8 @@ export const bucketLocalizationByState = [
|
|
|
153
153
|
]
|
|
154
154
|
|
|
155
155
|
export const bucketIconByState = [
|
|
156
|
-
'
|
|
157
|
-
'
|
|
158
|
-
'
|
|
159
|
-
'
|
|
156
|
+
'backup-bucket-error',
|
|
157
|
+
'backup-bucket',
|
|
158
|
+
'backup-bucket-warning',
|
|
159
|
+
'backup-bucket-error',
|
|
160
160
|
]
|