File tree Expand file tree Collapse file tree 4 files changed +20
-7
lines changed Expand file tree Collapse file tree 4 files changed +20
-7
lines changed Original file line number Diff line number Diff line change 36
36
< a href ="/settings/maps "> < i class ="material-icons "> map</ i > Map Rotation</ a >
37
37
38
38
< span > Database</ span >
39
- < a href ="/db/statistics "> < i class ="material-icons "> timeline</ i > Statistics</ a >
39
+ < a href ="/db/statistics " class =" runtime " > < i class ="material-icons "> timeline</ i > Statistics</ a >
40
40
< a href ="/db/bans " class ="runtime "> < i class ="material-icons "> gavel</ i > Bans</ a >
41
41
42
42
<!--<span>Group Settings</span>
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ <h2>General Settings</h2>
8
8
< span > Server</ span >
9
9
< table class ="status embedded ">
10
10
< tr class ="fixed "> < th > Session name</ th > < td > < input id ="general_input_session_name " type ="text "> </ td > </ tr >
11
- < tr class ="fixed "> < th > Password</ th > < td > < input id ="general_input_password " type ="text "> </ td > </ tr >
11
+ < tr class ="runtime "> < th > Password</ th > < td > < input id ="general_input_password " type ="text "> </ td > </ tr >
12
12
< tr class ="runtime "> < th > Admin password</ th > < td > < input id ="general_input_admin_password " type ="text "> </ td > </ tr >
13
13
< tr class ="fixed "> < th > Max. players</ th > < td > < input id ="general_input_max_players " type ="number " min ="1 " max ="64 "> </ td > </ tr >
14
14
< tr class ="fixed "> < th > Min. players</ th > < td > < input id ="general_input_min_players " type ="number " min ="0 " max ="64 "> </ td > </ tr >
@@ -65,22 +65,22 @@ <h2>General Settings</h2>
65
65
< div class ="item ">
66
66
< span > Performance</ span >
67
67
< table class ="status embedded ">
68
- < tr class ="fixed ">
68
+ < tr class ="runtime ">
69
69
< th > Lag version</ th >
70
70
< td > < input type ="number "id ="general_input_lagversion " min ="0 " max ="4 "> </ td >
71
71
</ tr >
72
72
73
- < tr class ="fixed ">
73
+ < tr class ="runtime ">
74
74
< th > Split update</ th >
75
75
< td > < input type ="checkbox " id ="general_input_splitupdate_enable "> </ td >
76
76
</ tr >
77
77
78
- < tr class ="fixed ">
78
+ < tr class ="runtime ">
79
79
< th > Drop lag jumps</ th >
80
80
< td > < input type ="checkbox " id ="general_input_droplagjumps_enable "> </ td >
81
81
</ tr >
82
82
83
- < tr class ="fixed ">
83
+ < tr class ="runtime ">
84
84
< th > Waitlate</ th >
85
85
< td > < input type ="checkbox " id ="general_input_waitlate_enable "> </ td >
86
86
</ tr >
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ function EventDisplay(container) {
10
10
11
11
this . container = $ ( container ) ;
12
12
this . container . addClass ( "item" ) ;
13
+ this . container . addClass ( "event" ) ;
13
14
this . container . hide ( ) ;
14
15
15
16
this . timeout = null ;
@@ -39,7 +40,7 @@ function EventDisplay(container) {
39
40
base . container . removeClass ( "info" ) ;
40
41
base . container . addClass ( cls ) ;
41
42
base . txt . html ( msg ) ;
42
- if ( r ) base . container . fadeIn ( ) ; else base . container . slideDown ( ) ;
43
+ if ( r ) base . container . fadeIn ( ) ; else base . container . slideDown ( ) ;
43
44
}
44
45
45
46
if ( base . timeout != null ) clearTimeout ( base . timeout ) ;
Original file line number Diff line number Diff line change @@ -37,6 +37,18 @@ body {
37
37
}
38
38
}
39
39
40
+ /**
41
+ * Events
42
+ **/
43
+ div .event {
44
+ position : fixed;
45
+ z-index : 10 ;
46
+ top : 0 ;
47
+ right : 0 ;
48
+ background : # f0f0f0 ;
49
+ min-width : 25% ;
50
+ }
51
+
40
52
/**
41
53
* Frame
42
54
**/
You can’t perform that action at this time.
0 commit comments