Skip to content

Commit 27931b4

Browse files
author
Mark Vincent
authored
Merge pull request #323 from WildcardSearch/maintenance
3.1.13 Release
2 parents b2adfe9 + 7f902ca commit 27931b4

27 files changed

+950
-76
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Advanced-Sidebox 3.1.12
1+
## Advanced-Sidebox 3.1.13
22

33
<p align="center">
44
<img title="Advanced Sidebox Logo" alt="Advanced Sidebox Logo" src="http://i.imgur.com/4QWLq5V.png" />
Lines changed: 215 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,215 @@
1+
/*
2+
* Plugin Name: Advanced Sidebox for MyBB 1.8.x
3+
* Copyright 2014 WildcardSearch
4+
* http://www.rantcentralforums.com
5+
*
6+
* this file contains style information for the ACP pages
7+
*/
8+
9+
/* sidebox management */
10+
11+
div.container {
12+
width: 100%;
13+
background: #ffffff;
14+
}
15+
16+
table.content {
17+
text-align: center;
18+
width: 100%;
19+
table-layout: fixed;
20+
border-collapse: collapse;
21+
}
22+
23+
/* components */
24+
25+
div.draggable {
26+
z-index: 50;
27+
}
28+
29+
.custom_type, .box_type, .sidebox {
30+
cursor: move;
31+
font-size: 12px;
32+
padding: 3px;
33+
margin: 2px 1px;
34+
35+
-webkit-user-select: none; /* Safari*/
36+
-khtml-user-select: none; /* Konqueror */
37+
-moz-user-select: none; /* Firefox */
38+
-ms-user-select: none; /* Internet Explorer/Edge */
39+
user-select: none; /* Chrome and Opera */
40+
41+
border-radius: 3px;
42+
-moz-border-radius: 3px;
43+
-webkit-border-radius: 3px;
44+
}
45+
46+
.box_type {
47+
background: #99e6ff;
48+
border: 1px solid #0086b3;
49+
/* text-align: center;
50+
line-height: 15px;
51+
text-shadow: 3px 3px 3px #070772; */
52+
}
53+
54+
.custom_type {
55+
background: #ffffbf;
56+
border: 1px solid #b3b300;
57+
/* width: 93%;
58+
text-align: center;
59+
line-height: 15px;
60+
text-shadow: 3px 3px 3px #5a642f; */
61+
}
62+
63+
.sidebox {
64+
background: #bfffbf;
65+
border: 1px solid #00b300;
66+
line-height: 25px;
67+
color: #000000;
68+
position: relative;
69+
}
70+
71+
.column {
72+
border: 1px solid #aaaaaa;
73+
}
74+
75+
td.hover {
76+
background: #eeeeee;
77+
}
78+
79+
.trashcan {
80+
min-height: 80px;
81+
}
82+
83+
.forum_column {
84+
width: 225px;
85+
min-height: 300px;
86+
}
87+
88+
#addon_menu {
89+
border: 1px solid #aaaaaa;
90+
}
91+
92+
#custom_menu {
93+
border: 1px solid #aaaaaa;
94+
}
95+
96+
.column_head {
97+
background: #aaaaaa;
98+
color: #333;
99+
font-size: 1.5em;
100+
}
101+
102+
/* visibility chart */
103+
104+
.tooltip {
105+
color: #000000;
106+
outline: none;
107+
cursor: help;
108+
text-decoration: none;
109+
position: relative;
110+
}
111+
112+
.tooltip span {
113+
display: none;
114+
position: absolute;
115+
top: 0px;
116+
left: -300px;
117+
width: 300px;
118+
119+
border-radius: 3px;
120+
-moz-border-radius: 3px;
121+
-webkit-border-radius: 3px;
122+
}
123+
124+
.tooltip:hover span {
125+
display: inline;
126+
}
127+
128+
.custom {
129+
z-index: 99;
130+
}
131+
132+
* html a:hover {
133+
background: transparent;
134+
}
135+
136+
.info {
137+
background: #99ccff;
138+
border: 1px solid #7396ff;
139+
}
140+
141+
.info_icon {
142+
position: relative;
143+
float: left;
144+
padding: 4px;
145+
}
146+
147+
.del_icon {
148+
position: relative;
149+
float: right;
150+
padding: 4px;
151+
}
152+
153+
.box_info {
154+
background: #cccccc;
155+
color: #333;
156+
border: 1px solid #888888;
157+
}
158+
159+
.box_info td {
160+
width: 10px;
161+
height: 10px;
162+
}
163+
164+
.script_header {
165+
background: #ffffff;
166+
color: #000;
167+
168+
height: 10px;
169+
text-align: right;
170+
padding-right: 10px;
171+
}
172+
173+
.group_header {
174+
background: #ffffff;
175+
color: #000;
176+
}
177+
178+
td.info_cell {
179+
height: 10px;
180+
width: 10px;
181+
}
182+
183+
th.script_header {
184+
color: #000;
185+
height: 10px;
186+
}
187+
188+
td.on {
189+
background: #cfffbf;
190+
}
191+
192+
td.off {
193+
background: #ffffff;
194+
}
195+
196+
/* footer menu */
197+
198+
.asb_label {
199+
color: #333;
200+
font-weight: bold;
201+
margin: auto auto;
202+
padding: 5px 0px;
203+
border: 1px solid #aaaaaa;
204+
text-align: center;
205+
206+
border-radius: 3px;
207+
-moz-border-radius: 3px;
208+
-webkit-border-radius: 3px;
209+
}
210+
211+
.asb_label a:hover,
212+
.asb_label a:active {
213+
color: #333;
214+
text-decoration: none;
215+
}
408 Bytes
Loading
377 Bytes
Loading
1.31 KB
Loading
574 Bytes
Loading
210 Bytes
Loading
4.88 KB
Loading
221 Bytes
Loading
148 Bytes
Loading

0 commit comments

Comments
 (0)