Skip to content

Commit 80c375d

Browse files
committed
Initial commit
1 parent a902904 commit 80c375d

File tree

89 files changed

+6882
-0
lines changed

Some content is hidden

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

89 files changed

+6882
-0
lines changed

Origin.php

Lines changed: 408 additions & 0 deletions
Large diffs are not rendered by default.

config.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
return array(
4+
'endpoint' => 'http://192.168.1.102:8888/theme',
5+
);

css/admin.css

Lines changed: 238 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,238 @@
1+
/* @group Preview and Save Buttons */
2+
3+
#origin-buttons{
4+
float: right;
5+
margin-top: 10px;
6+
}
7+
8+
#origin-buttons > div {
9+
float: left;
10+
}
11+
12+
#origin-buttons .preview {
13+
display: inline-block;
14+
margin-right: 10px;
15+
}
16+
17+
#origin-buttons .preview .ui-button{
18+
float: left;
19+
margin-right: 0;
20+
}
21+
22+
#origin-buttons .preview .ui-button-text{
23+
font-size: 12px !important;
24+
}
25+
26+
/* @end */
27+
28+
/* @group Color Selector */
29+
30+
fieldset.type-color .container{
31+
display: inline-block;
32+
padding: 2px;
33+
border: 1px solid #C0C0C0;
34+
background: #EFEFEF;
35+
width: auto;
36+
37+
-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);
38+
}
39+
40+
fieldset.type-color .current{
41+
border: 1px solid white;
42+
display: block;
43+
width: 96px;
44+
height: 36px;
45+
cursor: pointer;
46+
47+
}
48+
49+
fieldset.type-color .icon{
50+
width: 100%;
51+
height: 100%;
52+
background: url(../img/change.png) no-repeat right bottom;
53+
}
54+
55+
fieldset.type-color input{
56+
display: none;
57+
}
58+
59+
/* @end */
60+
61+
/* @group Slider */
62+
63+
fieldset.type-slider{
64+
width: 500px;
65+
position:relative;
66+
}
67+
68+
fieldset.type-slider .current_value{
69+
position:absolute;
70+
top: -4px;
71+
right: -35px;
72+
width : 3em;
73+
font-size:12px;
74+
color:#666;
75+
border-left:1px solid #CCC;
76+
padding-left:8px;
77+
}
78+
79+
fieldset.type-slider .jquery-ui-slider{
80+
width: 500px;
81+
}
82+
83+
/* @group Value Indicator */
84+
85+
fieldset.type-slider .value-indicator{
86+
position: absolute;
87+
top: -33px;
88+
left: 50%;
89+
}
90+
91+
fieldset.type-slider .value-indicator .val{
92+
font-size: 11px;
93+
padding: 2px 7px;
94+
background: #222;
95+
color: white;
96+
position: relative;
97+
98+
-webkit-border-radius: 2px;
99+
-moz-border-radius: 2px;
100+
border-radius: 2px;
101+
}
102+
103+
fieldset.type-slider .value-indicator .val span{
104+
white-space:nowrap;
105+
}
106+
107+
fieldset.type-slider .value-indicator .val .pointer{
108+
width: 10px;
109+
height: 5px;
110+
background: url(../img/pointer.png) no-repeat;
111+
position: absolute;
112+
left: 50%;
113+
margin-left: -5px;
114+
bottom: -5px;
115+
}
116+
117+
/* @end */
118+
119+
120+
121+
/* @end */
122+
123+
/* @group Image Select */
124+
125+
.image_select .option{
126+
float: left;
127+
width: 260px;
128+
margin-left: 10px;
129+
display: none;
130+
cursor: pointer;
131+
}
132+
133+
.image_select img{
134+
width: 100%;
135+
height: auto;
136+
}
137+
138+
.image_select select{
139+
display: none;
140+
}
141+
142+
/* @end */
143+
144+
/* @group Image File */
145+
146+
fieldset.type-file .container{
147+
display: inline-block;
148+
padding: 3px;
149+
border: 1px solid #C0C0C0;
150+
background: #EFEFEF;
151+
width: auto;
152+
153+
-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);
154+
155+
margin: 0 6px 5px 0;
156+
}
157+
158+
fieldset.type-file .current{
159+
line-height: 0;
160+
border: 1px solid #BBB;
161+
padding: 10px;
162+
background: url(../img/grid.png) repeat;
163+
}
164+
165+
166+
167+
/* @end */
168+
169+
/* @group Pattern Select */
170+
171+
fieldset.type-pattern .container{
172+
display: block;
173+
float: left;
174+
padding: 3px;
175+
border: 1px solid #C0C0C0;
176+
background: #EFEFEF;
177+
width: auto;
178+
179+
-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);
180+
181+
margin: 0 6px 5px 0;
182+
}
183+
184+
fieldset.type-pattern .current{
185+
line-height: 0;
186+
border: 1px solid #BBB;
187+
background: white;
188+
width: 340px;
189+
height: 90px;
190+
191+
background-position: center center;
192+
}
193+
194+
195+
/* @end */
196+
197+
/* @group Preview */
198+
199+
#preview-container{
200+
padding: 2px 2px 18px 2px;
201+
overflow: hidden;
202+
}
203+
204+
#preview-iframe {
205+
width: 100%;
206+
height: 100%;
207+
margin: 0px;
208+
padding: 0px;
209+
210+
box-sizing:border-box;
211+
-moz-box-sizing:border-box;
212+
-webkit-box-sizing:border-box;
213+
}
214+
215+
/* @end */
216+
217+
/* @group Filters */
218+
219+
#filters {
220+
margin-bottom: 30px;
221+
}
222+
223+
#filters select{
224+
min-width: 250px;
225+
}
226+
227+
/* @end */
228+
229+
/* @group Form Labels */
230+
231+
.form-table .info{
232+
font-size: 11px;
233+
color: #A0A0A0;
234+
}
235+
236+
237+
238+
/* @end */

css/grid.css

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
.cell{
2+
float: left;
3+
box-sizing:border-box;
4+
-moz-box-sizing:border-box;
5+
-webkit-box-sizing:border-box;
6+
padding: 0px 10px 0px 10px;
7+
margin: 0px;
8+
min-height: 10px;
9+
}
10+
11+
.cell > *:first-child{
12+
margin-top: 0;
13+
}
14+
15+
.cell > *:last-child{
16+
margin-bottom: 0;
17+
}
18+
19+
.grid{
20+
margin-bottom: 10px;
21+
margin-left: -10px;
22+
margin-right: -10px;
23+
}
24+
25+
.grid.noneg {
26+
margin-left: 0;
27+
margin-right: 0;
28+
}

externals/chosen/chosen-sprite.png

396 Bytes
Loading

0 commit comments

Comments
 (0)