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,136 @@
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
+ The content from below is identical with that of the original file "ctxSip.less".
24
+
25
+ We list below the copyright notice of the ctxSip phone (https://github.com/collecttix/ctxSip)
26
+ which also applies to the original "ctxSip.less" file, which was part of it:
27
+
28
+
29
+   The MIT License (MIT)
30
+
31
+   Copyright (c) 2014 Collecttix
32
+
33
+   Permission is hereby granted, free of charge, to any person obtaining a copy
34
+   of this software and associated documentation files (the "Software"), to deal
35
+   in the Software without restriction, including without limitation the rights
36
+   to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
37
+   copies of the Software, and to permit persons to whom the Software is
38
+   furnished to do so, subject to the following conditions:
39
+
40
+   The above copyright notice and this permission notice shall be included in
41
+   all copies or substantial portions of the Software.
42
+
43
+   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
44
+   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
45
+   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
46
+   AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
47
+   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
48
+   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
49
+   THE SOFTWARE.
50
+*/
51
+
52
+#sipClient {
53
+
54
+    background-color : #333;
55
+    font-size        : 13px;
56
+    line-height      : 1.42857143;
57
+
58
+    p {
59
+        margin      : 0;
60
+        padding     : 0 0 10px 0;
61
+        line-height : 18px;
62
+    }
63
+
64
+    .sipStatus {
65
+        margin           : 0 -15px 15px -15px;
66
+        padding          : 5px 15px;
67
+        background-color : #111;
68
+        color            : #999;
69
+    }
70
+
71
+    #txtCallStatus { color : #fff; }
72
+
73
+    #sip-dialpad {
74
+        width   : 292px;
75
+        padding : 16px 20px;
76
+    }
77
+
78
+    #sip-dialpad .col-xs-4 { text-align : center; }
79
+
80
+    .digit {
81
+        height           : 66px;
82
+        width            : 66px;
83
+        margin           : 0 8px 14px !important;
84
+        background-color : #f8f8f8;
85
+        font-weight      : 300;
86
+        font-size        : 24px;
87
+        border-radius    : 100px;
88
+        line-height      : 21px;
89
+        padding-top      : 9px;
90
+        float            : left;
91
+
92
+        span {
93
+            display     : block;
94
+            color       : #999;
95
+            font-size   : 10px;
96
+            font-weight : normal;
97
+        }
98
+    }
99
+
100
+    .sip-panel h3   { margin-top : 22px; }
101
+
102
+    #sip-splash {
103
+        height : 371px;
104
+
105
+        .fa {
106
+            margin-bottom : 15px;
107
+        }
108
+
109
+        .fa-circle {
110
+            color: #5cb85c;
111
+        }
112
+    }
113
+
114
+    #sip-log .panel-heading {
115
+        padding : 10px 8px;
116
+    }
117
+    #sip-logitems {
118
+        height   : 332px;
119
+        overflow : auto;
120
+    }
121
+
122
+    #sldVolume  {
123
+        width      : 140px;
124
+        margin     : 0 auto;
125
+        box-shadow : none;
126
+    }
127
+
128
+    .sip-logitem {
129
+        padding : 4px;
130
+    }
131
+
132
+    #numDisplay::-webkit-input-placeholder { color:#bbb; }
133
+    #numDisplay::-moz-placeholder          { color:#bbb; }
134
+    #numDisplay::-ms-input-placeholder     { color:#bbb; }
135
+    #numDisplay::-moz-placeholder          { color:#bbb; }
136
+}