Skip to content

Commit 57b2a47

Browse files
committed
Update to 1.3.10-OPEN-BETA
1 parent 0ec3ce7 commit 57b2a47

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+6774
-238
lines changed

config/config.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
/*
4949
Mailsettings
5050
*/
51+
define("USE_MAILS", "true");
5152
define("MAILADRESS", "mail@my-domain.de");
5253
define("MAIL_SMTP", "false");
5354
define("MAIL_SMTP_HOST", "");
@@ -122,6 +123,16 @@
122123
*/
123124
define("TEAMSPEAKTREE_INTERVAL", "2000");
124125

126+
/*
127+
Advanced
128+
Hide specific servergroups in your teamspeakviewer. Default is empty.
129+
130+
Examples
131+
2,3,4 = Servergroups 2, 3 and 4 will be hide
132+
234,123 = servergroups 234 and 123 will be hide
133+
*/
134+
define("TEAMSPEAKTREE_HIDE_SGROUPS", "");
135+
125136
/*
126137
Advanced
127138
Change the Interval of Permissionscheck for every Client he is connected. If you want to
@@ -159,6 +170,17 @@
159170
*/
160171
define("GET_DB_CLIENTS", "9000000");
161172

173+
/*
174+
Advanced
175+
Here you can edit, how long will be the created teamspeak banner image used.
176+
177+
Examples
178+
60 = 1 minute (default)
179+
120 = 2 minutes
180+
300 = 5 minutes
181+
*/
182+
define("TEAMSPEAK_BANNER_REFRESH_INTERVALL", "60");
183+
162184
/*
163185
Advanced
164186
Default Teamspeak "Server Create" Configuration
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
.bootstrap-tagsinput {
2+
background-color: #fff;
3+
border: 1px solid #ccc;
4+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
5+
display: inline-block;
6+
padding: 4px 6px;
7+
color: #555;
8+
vertical-align: middle;
9+
border-radius: 4px;
10+
max-width: 100%;
11+
line-height: 22px;
12+
cursor: text;
13+
width: 100%;
14+
}
15+
.bootstrap-tagsinput .label
16+
{
17+
font-weight: normal;
18+
}
19+
.bootstrap-tagsinput input {
20+
border: none;
21+
box-shadow: none;
22+
outline: none;
23+
background-color: transparent;
24+
padding: 0 6px;
25+
margin: 0;
26+
width: auto;
27+
max-width: inherit;
28+
}
29+
.bootstrap-tagsinput.form-control input::-moz-placeholder {
30+
color: #777;
31+
opacity: 1;
32+
}
33+
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
34+
color: #777;
35+
}
36+
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
37+
color: #777;
38+
}
39+
.bootstrap-tagsinput input:focus {
40+
border: none;
41+
box-shadow: none;
42+
}
43+
.bootstrap-tagsinput .tag {
44+
margin-right: 2px;
45+
color: white;
46+
}
47+
.bootstrap-tagsinput .tag [data-role="remove"] {
48+
margin-left: 8px;
49+
cursor: pointer;
50+
}
51+
.bootstrap-tagsinput .tag [data-role="remove"]:after {
52+
content: "x";
53+
padding: 0px 2px;
54+
}
55+
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
56+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
57+
}
58+
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
59+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
60+
}
61+
62+
.tt-menu {
63+
position: absolute;
64+
top: 100%;
65+
left: 0;
66+
z-index: 1000;
67+
display: none;
68+
float: left;
69+
min-width: 160px;
70+
padding: 5px 0;
71+
margin: 2px 0 0;
72+
list-style: none;
73+
font-size: 14px;
74+
background-color: #ffffff;
75+
border: 1px solid #cccccc;
76+
border: 1px solid rgba(0, 0, 0, 0.15);
77+
border-radius: 4px;
78+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
79+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
80+
background-clip: padding-box;
81+
cursor: pointer;
82+
}
83+
84+
.tt-suggestion {
85+
display: block;
86+
padding: 3px 20px;
87+
clear: both;
88+
font-weight: normal;
89+
line-height: 1.428571429;
90+
color: #333333;
91+
white-space: nowrap;
92+
}
93+
94+
.tt-suggestion:hover,
95+
.tt-suggestion:focus {
96+
color: #ffffff;
97+
text-decoration: none;
98+
outline: 0;
99+
background-color: #428bca;
100+
}
101+

0 commit comments

Comments
 (0)