@robotical/martyblocksjr 3.5.7 → 3.5.8
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.
|
@@ -1 +1,27 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg
|
|
2
|
+
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
viewBox="0 0 118.91 118.91"
|
|
5
|
+
>
|
|
6
|
+
<circle cx="59.46" cy="59.46" r="59.46" style="fill: #f173a6" />
|
|
7
|
+
<rect
|
|
8
|
+
x="50.14"
|
|
9
|
+
y="16.9"
|
|
10
|
+
width="18.63"
|
|
11
|
+
height="85.12"
|
|
12
|
+
rx="9.31"
|
|
13
|
+
ry="9.31"
|
|
14
|
+
transform="translate(59.46 -24.63) rotate(45)"
|
|
15
|
+
style="fill: #fff"
|
|
16
|
+
/>
|
|
17
|
+
<rect
|
|
18
|
+
x="50.14"
|
|
19
|
+
y="16.9"
|
|
20
|
+
width="18.63"
|
|
21
|
+
height="85.12"
|
|
22
|
+
rx="9.31"
|
|
23
|
+
ry="9.31"
|
|
24
|
+
transform="translate(143.54 59.46) rotate(135)"
|
|
25
|
+
style="fill: #fff"
|
|
26
|
+
/>
|
|
27
|
+
</svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 118.91 118.91"><circle cx="59.46" cy="59.46" r="59.46" style="fill:#E71167;"/><rect x="50.14" y="16.9" width="18.63" height="85.12" rx="9.31" ry="9.31" transform="translate(59.46 -24.63) rotate(45)" style="fill:#fff;"/><rect x="50.14" y="16.9" width="18.63" height="85.12" rx="9.31" ry="9.31" transform="translate(143.54 59.46) rotate(135)" style="fill:#fff;"/></svg>
|
|
@@ -51,11 +51,26 @@
|
|
|
51
51
|
flex-direction: column;
|
|
52
52
|
cursor: pointer;
|
|
53
53
|
padding-top: 2px;
|
|
54
|
-
padding-bottom: 1px;
|
|
55
54
|
}
|
|
56
55
|
|
|
57
56
|
.connectButtonConnected {
|
|
58
57
|
/* background: #4bfaa3; */
|
|
58
|
+
display: grid;
|
|
59
|
+
grid-template-rows: 1fr 1fr 1fr;
|
|
60
|
+
grid-template-columns: 1fr;
|
|
61
|
+
justify-content: space-between;
|
|
62
|
+
align-items: center;
|
|
63
|
+
flex-direction: column;
|
|
64
|
+
padding-bottom: 0px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.connectButtonConnected .connectIcon {
|
|
68
|
+
margin-bottom: 1px;
|
|
69
|
+
display: grid;
|
|
70
|
+
width: ${css_vh(4.5)};
|
|
71
|
+
align-items: center;
|
|
72
|
+
align-self: center;
|
|
73
|
+
justify-self: center;
|
|
59
74
|
}
|
|
60
75
|
|
|
61
76
|
.iconButtonContainer {
|
|
@@ -71,10 +86,15 @@
|
|
|
71
86
|
.notConnectedButtonContainer {
|
|
72
87
|
background-image: url('../assets/connection/connect_btn-default.svg');
|
|
73
88
|
}
|
|
74
|
-
.connectButton:hover .notConnectedButtonContainer {
|
|
89
|
+
/* .connectButton:hover .notConnectedButtonContainer {
|
|
75
90
|
background-image: url('../assets/connection/connect_btn-hover.svg');
|
|
76
|
-
}
|
|
91
|
+
} */
|
|
77
92
|
.connectedButtonContainer {
|
|
93
|
+
position: absolute;
|
|
94
|
+
top: -10px;
|
|
95
|
+
left: -10px;
|
|
96
|
+
width: 30px;
|
|
97
|
+
height: 30px;
|
|
78
98
|
background-image: url('../assets/connection/disconnect_btn-default.svg');
|
|
79
99
|
}
|
|
80
100
|
.connectButton:hover .connectedButtonContainer {
|
|
@@ -82,11 +102,18 @@
|
|
|
82
102
|
}
|
|
83
103
|
|
|
84
104
|
.raftNameConnectButton {
|
|
85
|
-
|
|
86
|
-
|
|
105
|
+
display: flex;
|
|
106
|
+
align-items: center;
|
|
107
|
+
justify-content: center;
|
|
108
|
+
color: #ffffff;
|
|
109
|
+
align-self: center;
|
|
110
|
+
justify-self: center;
|
|
111
|
+
background: #89c761;
|
|
87
112
|
font-family: 'Lato Regular';
|
|
88
113
|
text-align: center;
|
|
89
|
-
|
|
114
|
+
height: 100%;
|
|
115
|
+
width: 100%;
|
|
116
|
+
border-radius: 4px;
|
|
90
117
|
}
|
|
91
118
|
|
|
92
119
|
.batteryAndSignalContainer {
|
|
@@ -104,7 +131,7 @@
|
|
|
104
131
|
}
|
|
105
132
|
.signalIndicatorContainer {
|
|
106
133
|
display: grid;
|
|
107
|
-
width:
|
|
134
|
+
width: 26%;
|
|
108
135
|
}
|
|
109
136
|
.connIssueOverlay {
|
|
110
137
|
position: absolute;
|
|
@@ -120,9 +147,8 @@
|
|
|
120
147
|
|
|
121
148
|
/* Styles for the icon part of the button */
|
|
122
149
|
.connectIcon {
|
|
123
|
-
margin-bottom: 1px;
|
|
124
150
|
display: grid;
|
|
125
|
-
width: ${css_vh(
|
|
151
|
+
width: ${css_vh(4.2)};
|
|
126
152
|
}
|
|
127
153
|
|
|
128
154
|
/* .connectText media query for smaller screens */
|