Browse code

added changes to implement the From number drop-down list, the available numbers and default number fields and the debug logging checkbox, etc.

DoubleBastionAdmin authored on 08/01/2024 19:33:20
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,285 @@
1
+/**
2
+ * @copyright 2021 Double Bastion LLC <www.doublebastion.com>
3
+ *
4
+ * @author Double Bastion LLC
5
+ *
6
+ * @license GNU AGPL version 3 or any later version
7
+ *
8
+ * This program is free software; you can redistribute it and/or
9
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
10
+ * License as published by the Free Software Foundation; either
11
+ * version 3 of the License, or any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
17
+ *
18
+ * You should have received a copy of the GNU Affero General Public
19
+ * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
+ *
21
+ */
22
+
23
+@font-face {
24
+    font-family: 'Open Sans';
25
+    src: url('../fonts/opensans-light.woff2') format('woff2'),
26
+         url('../fonts/opensans-light.woff') format('woff');
27
+    font-weight: 300;
28
+    font-style: normal;
29
+}
30
+@font-face {
31
+    font-family: 'Open Sans';
32
+    src: url('../fonts/opensans-lightitalic.woff2') format('woff2'),
33
+         url('../fonts/opensans-lightitalic.woff') format('woff');
34
+    font-weight: 300;
35
+    font-style: italic;
36
+}
37
+@font-face {
38
+    font-family: 'Open Sans';
39
+    src: url('../fonts/opensans-regular.woff2') format('woff2'),
40
+         url('../fonts/opensans-regular.woff') format('woff');
41
+    font-weight: 400;
42
+    font-style: normal;
43
+}
44
+@font-face {
45
+    font-family: 'Open Sans';
46
+    src: url('../fonts/opensans-italic.woff2') format('woff2'),
47
+         url('../fonts/opensans-italic.woff') format('woff');
48
+    font-weight: 400;
49
+    font-style: italic;
50
+}
51
+@font-face {
52
+    font-family: 'Open Sans';
53
+    src: url('../fonts/opensans-semibold.woff2') format('woff2'),
54
+         url('../fonts/opensans-semibold.woff') format('woff');
55
+    font-weight: 600;
56
+    font-style: normal;
57
+}
58
+@font-face {
59
+    font-family: 'Open Sans';
60
+    src: url('../fonts/opensans-semibolditalic.woff2') format('woff2'),
61
+         url('../fonts/opensans-semibolditalic.woff') format('woff');
62
+    font-weight: 600;
63
+    font-style: italic;
64
+}
65
+@font-face {
66
+    font-family: 'Open Sans';
67
+    src: url('../fonts/opensans-bold.woff2') format('woff2'),
68
+         url('../fonts/opensans-bold.woff') format('woff');
69
+    font-weight: 700;
70
+    font-style: normal;
71
+}
72
+@font-face {
73
+    font-family: 'Open Sans';
74
+    src: url('../fonts/opensans-bolditalic.woff2') format('woff2'),
75
+         url('../fonts/opensans-bolditalic.woff') format('woff');
76
+    font-weight: 700;
77
+    font-style: italic;
78
+}
79
+@font-face {
80
+    font-family: 'Open Sans';
81
+    src: url('../fonts/opensans-extrabold.woff2') format('woff2'),
82
+         url('../fonts/opensans-extrabold.woff') format('woff');
83
+    font-weight: 800;
84
+    font-style: normal;
85
+}
86
+@font-face {
87
+    font-family: 'Open Sans';
88
+    src: url('../fonts/opensans-extrabolditalic.woff2') format('woff2'),
89
+         url('../fonts/opensans-extrabolditalic.woff') format('woff');
90
+    font-weight: 800;
91
+    font-style: italic;
92
+}
93
+
94
+@font-face {
95
+    font-family: 'Inter';
96
+    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
97
+         url('../fonts/Inter-Regular.woff') format('woff');
98
+    font-weight: 400;
99
+    font-style: normal;
100
+}
101
+@font-face {
102
+    font-family: 'Inter';
103
+    src: url('../fonts/Inter-Italic.woff2') format('woff2'),
104
+         url('../fonts/Inter-Italic.woff') format('woff');
105
+    font-weight: 400;
106
+    font-style: italic;
107
+}
108
+@font-face {
109
+    font-family: 'Inter';
110
+    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
111
+         url('../fonts/Inter-Medium.woff') format('woff');
112
+    font-weight: 500;
113
+    font-style: normal;
114
+}
115
+@font-face {
116
+    font-family: 'Inter';
117
+    src: url('../fonts/Inter-MediumItalic.woff2') format('woff2'),
118
+         url('../fonts/Inter-MediumItalic.woff') format('woff');
119
+    font-weight: 500;
120
+    font-style: italic;
121
+}
122
+@font-face {
123
+    font-family: 'Inter';
124
+    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
125
+         url('../fonts/Inter-SemiBold.woff') format('woff');
126
+    font-weight: 600;
127
+    font-style: normal;
128
+}
129
+@font-face {
130
+    font-family: 'Inter';
131
+    src: url('../fonts/Inter-SemiBoldItalic.woff2') format('woff2'),
132
+         url('../fonts/Inter-SemiBoldItalic.woff') format('woff');
133
+    font-weight: 600;
134
+    font-style: italic;
135
+}
136
+@font-face {
137
+    font-family: 'Inter';
138
+    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
139
+         url('../fonts/Inter-Bold.woff') format('woff');
140
+    font-weight: 700;
141
+    font-style: normal;
142
+}
143
+@font-face {
144
+    font-family: 'Inter';
145
+    src: url('../fonts/Inter-BoldItalic.woff2') format('woff2'),
146
+         url('../fonts/Inter-BoldItalic.woff') format('woff');
147
+    font-weight: 700;
148
+    font-style: italic;
149
+}
150
+@font-face {
151
+    font-family: 'Inter';
152
+    src: url('../fonts/Inter-ExtraBold.woff2') format('woff2'),
153
+         url('../fonts/Inter-ExtraBold.woff') format('woff');
154
+    font-weight: 800;
155
+    font-style: normal;
156
+}
157
+@font-face {
158
+    font-family: 'Inter';
159
+    src: url('../fonts/Inter-ExtraBoldItalic.woff2') format('woff2'),
160
+         url('../fonts/Inter-ExtraBoldItalic.woff') format('woff');
161
+    font-weight: 800;
162
+    font-style: italic;
163
+}
164
+
165
+#app {
166
+   position: relative;
167
+   display: flex;
168
+   min-height: 100%;
169
+   min-width: 100%;
170
+}
171
+
172
+#app-content {
173
+   position: relative;
174
+   z-index: 1000;
175
+   flex-basis: 100vw;
176
+   min-width: 0;
177
+   min-height: 100%;
178
+   margin: 0 !important;
179
+   overflow-y: scroll;
180
+}
181
+
182
+#app-content #app-content-wrapper {
183
+   height: 100%;
184
+}
185
+
186
+#sip_trip_phone_adm {
187
+   font-family: 'Open Sans';
188
+}
189
+
190
+.sip_trip_box {
191
+   display: block;
192
+   width: 500px;
193
+   font-family: 'Open Sans';
194
+}
195
+
196
+#settings-dscr {
197
+  padding-top: 3px;
198
+  font-size: 15.6px;
199
+}
200
+
201
+#sip_trip_phone_save_msg {
202
+  color: #181918;
203
+  background-color: #a5e5b3;
204
+  font-weight: bold;
205
+  border-radius: 3px;
206
+}
207
+
208
+#STPhoneContent {
209
+  display: block; 
210
+  position: relative;
211
+  width: 100%;
212
+  height: 100%;
213
+}
214
+
215
+#STPhoneGreyLogo {
216
+  display: block;
217
+  margin-top: -40px;
218
+  position: relative;
219
+  background-image: url('../img/sip_trip_phone_grey.svg');
220
+  background-repeat: no-repeat;
221
+  background-position: center center;
222
+  width: 100%;
223
+  height: 100%;
224
+}
225
+
226
+#sipuserpassword {
227
+  font-size: 12px;
228
+}
229
+
230
+#labelSipRealm, #stunServer, #debugLogging, #voiceNumbers, #dftVoiceNumber {
231
+  width: 500px;
232
+}
233
+
234
+#voiceNumbers, #dftVoiceNumber { 
235
+  margin: 12px 0 0 0;
236
+}
237
+
238
+#tracesipmsg {
239
+  cursor: pointer;
240
+}
241
+
242
+.stpVoicePhNoTip {
243
+   position: relative;
244
+   display: inline-block;
245
+   z-index: 1000;
246
+}
247
+
248
+.stpdtVoicePhNoTip {
249
+   position: relative;
250
+   display: inline-block;
251
+   z-index: 999;
252
+}
253
+
254
+#stpVoicePhNoInfo, #stpdtVoicePhNoInfo {
255
+  display: inline;
256
+  margin: 0px 0px 0px 8px;
257
+  color: #5c8cbf;
258
+  font-family: 'Inter';
259
+  font-weight: 800;
260
+  font-size: 17px;
261
+  vertical-align: top;
262
+}
263
+
264
+.stpVoicePhNoText, .stpdtVoicePhNoText {
265
+   display: block;
266
+   position: absolute;
267
+   visibility: hidden;
268
+   top: 16px;
269
+   left: -110px;
270
+   width: 370px;
271
+   height: auto;
272
+   padding: 6px 12px;
273
+   color: #393939;
274
+   font-size: 15px;
275
+   font-weight: 600;
276
+   border-radius: 6px;
277
+   overflow-y: auto;
278
+   background-color: #fafafa;
279
+   box-shadow: 0 0 23px rgba(0, 0, 0, 0.1);
280
+   -webkit-box-shadow: 0 0 23px rgba(0, 0, 0, 0.23);
281
+}
282
+
283
+.stpVoicePhNoTip:hover .stpVoicePhNoText, .stpdtVoicePhNoTip:hover .stpdtVoicePhNoText {
284
+   visibility: visible;
285
+}
Browse code

removed appinfo/info.xml appinfo/signature.json CHANGELOG.txt README.md js/settings.js js/launchphone.js css/style.css phone/scripts/app.js templates/settings.php l10n/en_GB.js l10n/en_GB.json phone/css/ctxSip.css phone/index.html lib/Controller/SphoneController.php lib/Service/SphoneService.php phone/sounds/dtmf.mp3 phone/sounds/incoming.mp3 phone/sounds/outgoing.mp3 img/sip_trip_phone_screenshot.png img/sip_trip_phone_transfer_call.png img/sip_trip_phone_making_calls.png img/sip_trip_phone_initial_screen.png img/sip_trip_phone_dialpad.png

DoubleBastionAdmin authored on 08/01/2024 19:00:48
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,79 +0,0 @@
1
-/**
2
- * @copyright 2021 Double Bastion LLC <www.doublebastion.com>
3
- *
4
- * @author Double Bastion LLC
5
- *
6
- * @license GNU AGPL version 3 or any later version
7
- *
8
- * This program is free software; you can redistribute it and/or
9
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
10
- * License as published by the Free Software Foundation; either
11
- * version 3 of the License, or any later version.
12
- *
13
- * This program is distributed in the hope that it will be useful,
14
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
- * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
17
- *
18
- * You should have received a copy of the GNU Affero General Public
19
- * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
- *
21
- */
22
-
23
-#app {
24
-  position: relative;
25
-  display: flex;
26
-  min-height: 100%;
27
-  min-width: 100%;
28
-}
29
-
30
-#app-content {
31
-   position: relative;
32
-   z-index: 1000;
33
-   flex-basis: 100vw;
34
-   min-width: 0;
35
-   min-height: 100%;
36
-   margin: 0 !important;
37
-   overflow-y: scroll;
38
-}
39
-
40
-#app-content #app-content-wrapper {
41
-   height: 100%;
42
-}
43
-
44
-.sip_trip_box {
45
-  width: 400px;
46
-  display: block;
47
-}
48
-
49
-#settings-dscr {
50
-  padding-top: 3px;
51
-}
52
-
53
-#sip_trip_phone_save_msg {
54
-  color: #181918;
55
-  background-color: #a5e5b3;
56
-  font-weight: bold;
57
-}
58
-
59
-#STPhoneContent {
60
-  display: block; 
61
-  position: relative;
62
-  width: 100%;
63
-  height: 100%;
64
-}
65
-
66
-#STPhoneGreyLogo {
67
-  display: block;
68
-  margin-top: -40px;
69
-  position: relative;
70
-  background-image: url('../img/sip_trip_phone_grey.svg');
71
-  background-repeat: no-repeat;
72
-  background-position: center center;
73
-  width: 100%;
74
-  height: 100%;
75
-}
76
-
77
-#labelSipRealm {
78
-  width: 400px;
79
-}
80 0
\ No newline at end of file
Browse code

added appinfo/info.xml appinfo/signature.json Contributors.txt CHANGELOG.txt README.md lib/Settings/Personal.php css/style.css js/launchphone.js

DoubleBastionAdmin authored on 27/10/2022 16:22:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,79 @@
1
+/**
2
+ * @copyright 2021 Double Bastion LLC <www.doublebastion.com>
3
+ *
4
+ * @author Double Bastion LLC
5
+ *
6
+ * @license GNU AGPL version 3 or any later version
7
+ *
8
+ * This program is free software; you can redistribute it and/or
9
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
10
+ * License as published by the Free Software Foundation; either
11
+ * version 3 of the License, or any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
17
+ *
18
+ * You should have received a copy of the GNU Affero General Public
19
+ * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
+ *
21
+ */
22
+
23
+#app {
24
+  position: relative;
25
+  display: flex;
26
+  min-height: 100%;
27
+  min-width: 100%;
28
+}
29
+
30
+#app-content {
31
+   position: relative;
32
+   z-index: 1000;
33
+   flex-basis: 100vw;
34
+   min-width: 0;
35
+   min-height: 100%;
36
+   margin: 0 !important;
37
+   overflow-y: scroll;
38
+}
39
+
40
+#app-content #app-content-wrapper {
41
+   height: 100%;
42
+}
43
+
44
+.sip_trip_box {
45
+  width: 400px;
46
+  display: block;
47
+}
48
+
49
+#settings-dscr {
50
+  padding-top: 3px;
51
+}
52
+
53
+#sip_trip_phone_save_msg {
54
+  color: #181918;
55
+  background-color: #a5e5b3;
56
+  font-weight: bold;
57
+}
58
+
59
+#STPhoneContent {
60
+  display: block; 
61
+  position: relative;
62
+  width: 100%;
63
+  height: 100%;
64
+}
65
+
66
+#STPhoneGreyLogo {
67
+  display: block;
68
+  margin-top: -40px;
69
+  position: relative;
70
+  background-image: url('../img/sip_trip_phone_grey.svg');
71
+  background-repeat: no-repeat;
72
+  background-position: center center;
73
+  width: 100%;
74
+  height: 100%;
75
+}
76
+
77
+#labelSipRealm {
78
+  width: 400px;
79
+}
0 80
\ No newline at end of file
Browse code

removed appinfo/info.xml appinfo/signature.json Contributors.txt CHANGELOG.txt README.md lib/Settings/Personal.php css/style.css js/launchphone.js

DoubleBastionAdmin authored on 27/10/2022 16:18:04
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,73 +0,0 @@
1
-/**
2
- * @copyright 2021 Double Bastion LLC <www.doublebastion.com>
3
- *
4
- * @author Double Bastion LLC
5
- *
6
- * @license GNU AGPL version 3 or any later version
7
- *
8
- * This program is free software; you can redistribute it and/or
9
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
10
- * License as published by the Free Software Foundation; either
11
- * version 3 of the License, or any later version.
12
- *
13
- * This program is distributed in the hope that it will be useful,
14
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
- * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
17
- *
18
- * You should have received a copy of the GNU Affero General Public
19
- * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
- *
21
- */
22
-
23
-#app-content {
24
-  display: block;
25
-  position: absolute;
26
-  width: 100%;
27
-  height: 100%;
28
-}
29
-
30
-#app-content #app-content-wrapper {
31
-  display: block;
32
-  position: absolute;
33
-  margin: 0px;
34
-  height: 100%;
35
-  width: 100%;
36
-}
37
-
38
-.sip_trip_box {
39
-  width: 400px;
40
-  display: block;
41
-}
42
-
43
-#settings-dscr {
44
-  padding-top: 3px;
45
-}
46
-
47
-#sip_trip_phone_save_msg {
48
-  color: #181918;
49
-  background-color: #a5e5b3;
50
-  font-weight: bold;
51
-}
52
-
53
-#STPhoneContent {
54
-  display: block; 
55
-  position: relative;
56
-  width: 100%;
57
-  height: 100%;
58
-}
59
-
60
-#STPhoneGreyLogo {
61
-  display: block;
62
-  margin-top: -40px;
63
-  position: relative;
64
-  background-image: url('../img/sip_trip_phone_grey.svg');
65
-  background-repeat: no-repeat;
66
-  background-position: center center;
67
-  width: 100%;
68
-  height: 100%;
69
-}
70
-
71
-#labelSipRealm {
72
-  width: 400px;
73
-}
74 0
\ No newline at end of file
Browse code

added CHANGELOG.txt README.md appinfo/info.xml appinfo/signature.json phone/scripts/app.js templates/settings.php css/style.css

DoubleBastionAdmin authored on 22/09/2022 08:46:22
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,73 @@
1
+/**
2
+ * @copyright 2021 Double Bastion LLC <www.doublebastion.com>
3
+ *
4
+ * @author Double Bastion LLC
5
+ *
6
+ * @license GNU AGPL version 3 or any later version
7
+ *
8
+ * This program is free software; you can redistribute it and/or
9
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
10
+ * License as published by the Free Software Foundation; either
11
+ * version 3 of the License, or any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
17
+ *
18
+ * You should have received a copy of the GNU Affero General Public
19
+ * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
+ *
21
+ */
22
+
23
+#app-content {
24
+  display: block;
25
+  position: absolute;
26
+  width: 100%;
27
+  height: 100%;
28
+}
29
+
30
+#app-content #app-content-wrapper {
31
+  display: block;
32
+  position: absolute;
33
+  margin: 0px;
34
+  height: 100%;
35
+  width: 100%;
36
+}
37
+
38
+.sip_trip_box {
39
+  width: 400px;
40
+  display: block;
41
+}
42
+
43
+#settings-dscr {
44
+  padding-top: 3px;
45
+}
46
+
47
+#sip_trip_phone_save_msg {
48
+  color: #181918;
49
+  background-color: #a5e5b3;
50
+  font-weight: bold;
51
+}
52
+
53
+#STPhoneContent {
54
+  display: block; 
55
+  position: relative;
56
+  width: 100%;
57
+  height: 100%;
58
+}
59
+
60
+#STPhoneGreyLogo {
61
+  display: block;
62
+  margin-top: -40px;
63
+  position: relative;
64
+  background-image: url('../img/sip_trip_phone_grey.svg');
65
+  background-repeat: no-repeat;
66
+  background-position: center center;
67
+  width: 100%;
68
+  height: 100%;
69
+}
70
+
71
+#labelSipRealm {
72
+  width: 400px;
73
+}
0 74
\ No newline at end of file
Browse code

removed CHANGELOG.txt README.md appinfo/info.xml appinfo/signature.json phone/scripts/app.js templates/settings.php css/style.css

DoubleBastionAdmin authored on 22/09/2022 08:32:29
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,69 +0,0 @@
1
-/**
2
- * @copyright 2021 Double Bastion LLC <www.doublebastion.com>
3
- *
4
- * @author Double Bastion LLC
5
- *
6
- * @license GNU AGPL version 3 or any later version
7
- *
8
- * This program is free software; you can redistribute it and/or
9
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
10
- * License as published by the Free Software Foundation; either
11
- * version 3 of the License, or any later version.
12
- *
13
- * This program is distributed in the hope that it will be useful,
14
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
- * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
17
- *
18
- * You should have received a copy of the GNU Affero General Public
19
- * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
- *
21
- */
22
-
23
-#app-content {
24
-  display: block;
25
-  position: absolute;
26
-  width: 100%;
27
-  height: 100%;
28
-}
29
-
30
-#app-content #app-content-wrapper {
31
-  display: block;
32
-  position: absolute;
33
-  margin: 0px;
34
-  height: 100%;
35
-  width: 100%;
36
-}
37
-
38
-.sip_trip_box {
39
-  width: 400px;
40
-  display: block;
41
-}
42
-
43
-#settings-dscr {
44
-  padding-top: 3px;
45
-}
46
-
47
-#sip_trip_phone_save_msg {
48
-  color: #181918;
49
-  background-color: #a5e5b3;
50
-  font-weight: bold;
51
-}
52
-
53
-#STPhoneContent {
54
-  display: block; 
55
-  position: relative;
56
-  width: 100%;
57
-  height: 100%;
58
-}
59
-
60
-#STPhoneGreyLogo {
61
-  display: block;
62
-  margin-top: -40px;
63
-  position: relative;
64
-  background-image: url('../img/sip_trip_phone_grey.svg');
65
-  background-repeat: no-repeat;
66
-  background-position: center center;
67
-  width: 100%;
68
-  height: 100%;
69
-}
70 0
\ No newline at end of file
Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,69 @@
1
+/**
2
+ * @copyright 2021 Double Bastion LLC <www.doublebastion.com>
3
+ *
4
+ * @author Double Bastion LLC
5
+ *
6
+ * @license GNU AGPL version 3 or any later version
7
+ *
8
+ * This program is free software; you can redistribute it and/or
9
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
10
+ * License as published by the Free Software Foundation; either
11
+ * version 3 of the License, or any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
17
+ *
18
+ * You should have received a copy of the GNU Affero General Public
19
+ * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
+ *
21
+ */
22
+
23
+#app-content {
24
+  display: block;
25
+  position: absolute;
26
+  width: 100%;
27
+  height: 100%;
28
+}
29
+
30
+#app-content #app-content-wrapper {
31
+  display: block;
32
+  position: absolute;
33
+  margin: 0px;
34
+  height: 100%;
35
+  width: 100%;
36
+}
37
+
38
+.sip_trip_box {
39
+  width: 400px;
40
+  display: block;
41
+}
42
+
43
+#settings-dscr {
44
+  padding-top: 3px;
45
+}
46
+
47
+#sip_trip_phone_save_msg {
48
+  color: #181918;
49
+  background-color: #a5e5b3;
50
+  font-weight: bold;
51
+}
52
+
53
+#STPhoneContent {
54
+  display: block; 
55
+  position: relative;
56
+  width: 100%;
57
+  height: 100%;
58
+}
59
+
60
+#STPhoneGreyLogo {
61
+  display: block;
62
+  margin-top: -40px;
63
+  position: relative;
64
+  background-image: url('../img/sip_trip_phone_grey.svg');
65
+  background-repeat: no-repeat;
66
+  background-position: center center;
67
+  width: 100%;
68
+  height: 100%;
69
+}
0 70
\ No newline at end of file