wordpress-starter 0.2 → 0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (133) hide show
  1. data/CHANGELOG.md +4 -1
  2. data/README.md +12 -0
  3. data/lib/wordpress-starter.rb +2 -1
  4. data/templates/bootstrap/404.php +24 -0
  5. data/templates/bootstrap/admin/README.txt +25 -0
  6. data/templates/bootstrap/admin/assets/css/admin-style.css +838 -0
  7. data/templates/bootstrap/admin/assets/css/colorpicker.css +177 -0
  8. data/templates/bootstrap/admin/assets/images/1col.png +0 -0
  9. data/templates/bootstrap/admin/assets/images/2-col-portfolio.png +0 -0
  10. data/templates/bootstrap/admin/assets/images/2cl.png +0 -0
  11. data/templates/bootstrap/admin/assets/images/2cr.png +0 -0
  12. data/templates/bootstrap/admin/assets/images/3-col-portfolio.png +0 -0
  13. data/templates/bootstrap/admin/assets/images/3cm.png +0 -0
  14. data/templates/bootstrap/admin/assets/images/3cr.png +0 -0
  15. data/templates/bootstrap/admin/assets/images/4-col-portfolio.png +0 -0
  16. data/templates/bootstrap/admin/assets/images/accept.png +0 -0
  17. data/templates/bootstrap/admin/assets/images/button_check.png +0 -0
  18. data/templates/bootstrap/admin/assets/images/colorpicker/blank.gif +0 -0
  19. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_background.png +0 -0
  20. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_hex.png +0 -0
  21. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_hsb_b.png +0 -0
  22. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_hsb_h.png +0 -0
  23. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_hsb_s.png +0 -0
  24. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_indic.gif +0 -0
  25. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_overlay.png +0 -0
  26. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_rgb_b.png +0 -0
  27. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_rgb_g.png +0 -0
  28. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_rgb_r.png +0 -0
  29. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_select.gif +0 -0
  30. data/templates/bootstrap/admin/assets/images/colorpicker/colorpicker_submit.png +0 -0
  31. data/templates/bootstrap/admin/assets/images/colorpicker/select.png +0 -0
  32. data/templates/bootstrap/admin/assets/images/dropdown-arrow.png +0 -0
  33. data/templates/bootstrap/admin/assets/images/favicon.ico +0 -0
  34. data/templates/bootstrap/admin/assets/images/icon-add.png +0 -0
  35. data/templates/bootstrap/admin/assets/images/icon-backup.png +0 -0
  36. data/templates/bootstrap/admin/assets/images/icon-delete.png +0 -0
  37. data/templates/bootstrap/admin/assets/images/icon-docs.png +0 -0
  38. data/templates/bootstrap/admin/assets/images/icon-edit.png +0 -0
  39. data/templates/bootstrap/admin/assets/images/icon-home.png +0 -0
  40. data/templates/bootstrap/admin/assets/images/icon-info.png +0 -0
  41. data/templates/bootstrap/admin/assets/images/icon-notice.png +0 -0
  42. data/templates/bootstrap/admin/assets/images/icon-paint.png +0 -0
  43. data/templates/bootstrap/admin/assets/images/icon-settings.png +0 -0
  44. data/templates/bootstrap/admin/assets/images/icon-slider.png +0 -0
  45. data/templates/bootstrap/admin/assets/images/icon-warn.png +0 -0
  46. data/templates/bootstrap/admin/assets/images/icon_option.png +0 -0
  47. data/templates/bootstrap/admin/assets/images/loading-bottom.gif +0 -0
  48. data/templates/bootstrap/admin/assets/images/select.png +0 -0
  49. data/templates/bootstrap/admin/assets/images/sign_warning.png +0 -0
  50. data/templates/bootstrap/admin/assets/images/stop.png +0 -0
  51. data/templates/bootstrap/admin/assets/images/toggle_tabs.png +0 -0
  52. data/templates/bootstrap/admin/assets/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  53. data/templates/bootstrap/admin/assets/images/warning.png +0 -0
  54. data/templates/bootstrap/admin/assets/images/wrench.png +0 -0
  55. data/templates/bootstrap/admin/assets/images/wrench16.png +0 -0
  56. data/templates/bootstrap/admin/assets/js/ajaxupload.js +606 -0
  57. data/templates/bootstrap/admin/assets/js/colorpicker.js +455 -0
  58. data/templates/bootstrap/admin/assets/js/cookie.js +1 -0
  59. data/templates/bootstrap/admin/assets/js/jquery.maskedinput-1.2.2.js +252 -0
  60. data/templates/bootstrap/admin/assets/js/jquery.tipsy.js +241 -0
  61. data/templates/bootstrap/admin/assets/js/of-medialibrary-uploader.js +168 -0
  62. data/templates/bootstrap/admin/assets/js/smof.js +623 -0
  63. data/templates/bootstrap/admin/classes/class.options-machine.php +627 -0
  64. data/templates/bootstrap/admin/front-end/options.php +77 -0
  65. data/templates/bootstrap/admin/functions/functions.admin.php +76 -0
  66. data/templates/bootstrap/admin/functions/functions.interface.php +232 -0
  67. data/templates/bootstrap/admin/functions/functions.load.php +14 -0
  68. data/templates/bootstrap/admin/functions/functions.mediauploader.php +194 -0
  69. data/templates/bootstrap/admin/functions/functions.options.php +508 -0
  70. data/templates/bootstrap/admin/functions/functions.php +0 -0
  71. data/templates/bootstrap/admin/index.php +87 -0
  72. data/templates/bootstrap/admin/layouts/default.css +0 -0
  73. data/templates/bootstrap/admin/layouts/placebo.css +0 -0
  74. data/templates/bootstrap/archive.php +57 -0
  75. data/templates/bootstrap/category.php +40 -0
  76. data/templates/bootstrap/comments.php +65 -0
  77. data/templates/bootstrap/content-aside.php +26 -0
  78. data/templates/bootstrap/content-image.php +29 -0
  79. data/templates/bootstrap/content-link.php +27 -0
  80. data/templates/bootstrap/content-none.php +21 -0
  81. data/templates/bootstrap/content-page.php +24 -0
  82. data/templates/bootstrap/content-quote.php +26 -0
  83. data/templates/bootstrap/content-status.php +33 -0
  84. data/templates/bootstrap/content.php +67 -0
  85. data/templates/bootstrap/editor-style.scss +72 -0
  86. data/templates/bootstrap/footer.php +29 -0
  87. data/templates/bootstrap/functions.php +1528 -0
  88. data/templates/bootstrap/header.php +74 -0
  89. data/templates/bootstrap/ie.scss +1 -0
  90. data/templates/bootstrap/images/bg/bg0.png +0 -0
  91. data/templates/bootstrap/images/bg/bg1.png +0 -0
  92. data/templates/bootstrap/images/bg/bg10.png +0 -0
  93. data/templates/bootstrap/images/bg/bg11.png +0 -0
  94. data/templates/bootstrap/images/bg/bg2.png +0 -0
  95. data/templates/bootstrap/images/bg/bg3.png +0 -0
  96. data/templates/bootstrap/images/bg/bg4.png +0 -0
  97. data/templates/bootstrap/images/bg/bg5.png +0 -0
  98. data/templates/bootstrap/images/bg/bg6.jpg +0 -0
  99. data/templates/bootstrap/images/bg/bg7.jpg +0 -0
  100. data/templates/bootstrap/images/bg/bg8.png +0 -0
  101. data/templates/bootstrap/images/bg/bg9.png +0 -0
  102. data/templates/bootstrap/images/glyphicons-halflings-white.png +0 -0
  103. data/templates/bootstrap/images/glyphicons-halflings.png +0 -0
  104. data/templates/bootstrap/index.php +19 -0
  105. data/templates/bootstrap/javascripts/app.js +6 -0
  106. data/templates/bootstrap/javascripts/bootstrap.js +2159 -0
  107. data/templates/bootstrap/javascripts/bootstrap.min.js +6 -0
  108. data/templates/{project/javascripts/moderninzr.min.js → bootstrap/javascripts/modernizr.min.js} +0 -0
  109. data/templates/bootstrap/languages/readme.txt +6 -0
  110. data/templates/bootstrap/license.txt +281 -0
  111. data/templates/bootstrap/loop.php +30 -0
  112. data/templates/bootstrap/manifest.rb +156 -0
  113. data/templates/bootstrap/options.php +42 -0
  114. data/templates/bootstrap/page.php +29 -0
  115. data/templates/bootstrap/print.scss +104 -0
  116. data/templates/bootstrap/readme.txt +6 -0
  117. data/templates/bootstrap/sass/_app.scss +10 -0
  118. data/templates/bootstrap/sass/_settings.scss +301 -0
  119. data/templates/bootstrap/screen.scss +1 -0
  120. data/templates/bootstrap/screenshot.png +0 -0
  121. data/templates/bootstrap/search.php +31 -0
  122. data/templates/bootstrap/searchform.php +31 -0
  123. data/templates/bootstrap/sidebar.php +15 -0
  124. data/templates/bootstrap/single.php +31 -0
  125. data/templates/bootstrap/style.css +18 -0
  126. data/templates/bootstrap/tag.php +41 -0
  127. data/templates/foundation/functions.php +8 -9
  128. data/templates/foundation/sass/_app.scss +2 -0
  129. data/templates/project/functions.php +1 -1
  130. data/templates/project/javascripts/app.js +2 -5
  131. data/templates/project/javascripts/modernizr.min.js +4 -0
  132. data/templates/project/manifest.rb +1 -1
  133. metadata +141 -2
@@ -1,12 +1,15 @@
1
1
  CHANGELOG (notable new features or fixes)
2
2
  ---------
3
3
 
4
+ ### 0.3
5
+ * Added Twitter Bootstrap based theme http://twitter.github.com/bootstrap/
6
+
4
7
  ### 0.2
5
8
  * Big refactoring
6
9
  - default project now contains custom starter them
7
10
  -
8
11
  - Added Automattic _s (underscores) theme http://underscores.me
9
- - Added Foundation based Theme
12
+ - Added Zurb Foundation based theme http://foundation.zurb.com
10
13
  - Included FC Webicons Set from http://fairheadcreative.com
11
14
 
12
15
  ### 0.1
data/README.md CHANGED
@@ -45,6 +45,17 @@ this theme comes bundled with a few features that makes easier to start:
45
45
  - Build with [Compass](http://compass-style.org/) and Zurb's Foundation framework 3.2 [http://foundation.zurb.com/](http://foundation.zurb.com/)
46
46
  - The theme is bundled with the [Slightly Modded Options Framework SMOF](http://aquagraphite.com/2011/09/29/slightly-modded-options-framework/), and include some known filters and actions that cleans and improves the output generated by WordPress
47
47
 
48
+ The boostrap pattern contains a basic theme based on Twitter Boostrap framework
49
+ ---------------------------------------------------------------------------------
50
+
51
+ compass -r wordpress-starter -f wordpress/boostrap /path/to/installation
52
+
53
+ this theme comes bundled with a few features that makes easier to start:
54
+
55
+ - Full HTML5+CSS3 markup
56
+ - Build with [Compass](http://compass-style.org/) and Twitter Boostrap framework 2.2.2 [http://twitter.github.com/bootstrap](http://twitter.github.com/bootstrap)
57
+ - The theme is bundled with the [Slightly Modded Options Framework SMOF](http://aquagraphite.com/2011/09/29/slightly-modded-options-framework/), and include some known filters and actions that cleans and improves the output generated by WordPress
58
+
48
59
  The starter pattern contains the Automattic starter theme _s [http://underscores.me/](http://underscores.me/)
49
60
  ------------------------------------------------------------
50
61
 
@@ -59,6 +70,7 @@ Dependencies
59
70
 
60
71
  - compass >= 0.12.2
61
72
  - sass >= 3.2.0
73
+ - bootstrap-sass ~> 2.2.1.1
62
74
  - zurb-foundation >= 3.2.2
63
75
  - susy ~> 1.0.5
64
76
 
@@ -3,6 +3,7 @@
3
3
  # By default, you should always included Compass. Do not include your
4
4
  # extension.
5
5
  require 'compass'
6
+ require 'bootstrap-sass'
6
7
  require 'zurb-foundation'
7
8
  require "susy"
8
9
 
@@ -17,7 +18,7 @@ Compass::Frameworks.register('wordpress', :path => extension_path)
17
18
  # a prerelease version
18
19
  # Date is in the form of YYYY-MM-DD
19
20
  module WordpressStarter
20
- VERSION = "0.2"
21
+ VERSION = "0.3"
21
22
  DATE = "2012-12-11"
22
23
  end
23
24
 
@@ -0,0 +1,24 @@
1
+ <?php
2
+ /**
3
+ * The 404 error file.
4
+ *
5
+ * @category Theme
6
+ * @package [bootstrap]
7
+ * @author [Your Name]
8
+ * @copyright 2012 [Your Name]
9
+ */
10
+
11
+ get_header();
12
+ ?>
13
+ <article id="post-0" class="post error404 no-results not-found">
14
+ <header class="entry-header">
15
+ <h1 class="entry-title"><?php _e( 'This is somewhat embarrassing, isn&rsquo;t it?', 'bootstrap' ); ?></h1>
16
+ </header>
17
+
18
+ <div class="entry-content">
19
+ <p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'bootstrap' ); ?></p>
20
+ <?php get_search_form(); ?>
21
+ </div>
22
+ </article>
23
+ <?php
24
+ get_footer();
@@ -0,0 +1,25 @@
1
+ All questions and setup instructions please go to http://aquagraphite.com/2011/09/29/slightly-modded-options-framework/
2
+
3
+ @author - Syamil MJ
4
+ @author - URI http://aquagraphite.com
5
+ @title - Slightly Modded Options Framework SMOF
6
+ @description - Options frameworks for WordPress Themes
7
+ @version - 1.4.0
8
+ @license - WTFPL - http://sam.zoy.org/wtfpl/
9
+
10
+ Changelog:
11
+
12
+ V 1.4.0 - 16 APRIL 2012
13
+ - add folding checkbox group option (credits to plovs - https://github.com/plovs)
14
+ - add sample grouped options
15
+ - add transfer option
16
+ - fix css quirks on some options
17
+ - single call to admin/admin.php from functions.php
18
+ - unique database name for options & backup
19
+ - replaced ereg_replace function (deprecated in PHP 5.3)
20
+ - uses add_theme_page to replace add_submenu_page
21
+ - reorganized files, paths etc
22
+ - delete background option
23
+ - delete child types
24
+ - everything a bit faster now
25
+ - change reset method
@@ -0,0 +1,838 @@
1
+ -----------------------------------------------------------------------------------
2
+ /* Admin styles
3
+ /*-----------------------------------------------------------------------------------*/
4
+
5
+ .updated, .error {
6
+ display:none!important
7
+ } /* disable the admin notices */
8
+ #of_container {
9
+ margin: 15px;
10
+ width: 785px;
11
+ position:relative;
12
+ z-index: 0
13
+ }
14
+ #of_container #header {
15
+ height: 70px;
16
+ background:#f1f1f1;
17
+ border: 1px solid #ccc;
18
+ -webkit-border-radius: 6px 6px 0 0;
19
+ -moz-border-radius: 6px 6px 0 0;
20
+ border-radius: 6px 6px 0 0;
21
+ background-image: -ms-linear-gradient(top,#f9f9f9,#ececec);
22
+ background-image: -moz-linear-gradient(top,#f9f9f9,#ececec);
23
+ background-image: -o-linear-gradient(top,#f9f9f9,#ececec);
24
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));
25
+ background-image: -webkit-linear-gradient(top,#f9f9f9,#ececec);
26
+ background-image: linear-gradient(top,#f9f9f9,#ececec);
27
+ -moz-box-shadow: inset 0 1px 0 #fff;
28
+ -webkit-box-shadow: inset 0 1px 0 #fff;
29
+ box-shadow: inset 0 1px 0 #fff;
30
+ }
31
+ #of_container #header .logo {
32
+ float: left;
33
+ margin:10px 20px;
34
+ }
35
+ #of_container #js-warning {
36
+ color: red;
37
+ float: left;
38
+ margin: 20px 10px;
39
+ width: 330px;
40
+ }
41
+ #of_container ul,#of_container ol {margin: 0;}
42
+ .js #of_container #js-warning {
43
+ display: none;
44
+ }
45
+
46
+ #of_container #header .logo h2 {
47
+ display:inline-block;
48
+ font-style:normal;
49
+ padding-right:5px;
50
+ }
51
+ #of_container #header .logo span {
52
+ color:#888888;
53
+ }
54
+ #of_container #header .icon-option {
55
+ float: right;
56
+ height: 32px;
57
+ width: 32px;
58
+ background: url(../images/icon_option.png) no-repeat;
59
+ margin:20px 30px 0;
60
+ }
61
+
62
+ #of_container #info_bar {
63
+ background: #f3f3f3;
64
+ border:solid #d8d8d8;
65
+ border-bottom:1px solid #D8D8D8;
66
+ border-width:0px 1px 1px 1px;
67
+ padding: 6px 20px 0px 6px;
68
+ height: 31px;
69
+ text-align: right;
70
+ -moz-box-shadow: inset 0 1px 0 #fcfcfc;
71
+ -webkit-box-shadow: inset 0 1px 0 #fcfcfc;
72
+ box-shadow: inset 0 1px 0 #fcfcfc;
73
+ }
74
+
75
+ #of_container #expand_options{
76
+ cursor: pointer;
77
+ display: block;
78
+ height: 22px;
79
+ width: 21px;
80
+ float: left;
81
+ font-size:0px;
82
+ text-indent: -9999px;
83
+ margin: 0 0 0 10px;
84
+ border: 1px solid #bbb;
85
+ -webkit-border-radius: 2px;
86
+ -moz-border-radius: 2px;
87
+ border-radius: 2px;
88
+ }
89
+ #of_container #info_bar .expand { background: url(../images/toggle_tabs.png) no-repeat -2px -1px; }
90
+ #of_container #info_bar .close { background: url(../images/toggle_tabs.png) no-repeat -2px -26px; }
91
+ #of_container #expand_options:hover {
92
+ cursor: pointer;
93
+ border-color: #888;
94
+ }
95
+ #of_container #main {
96
+ background-color: #f1f1f1;
97
+ border-left: 1px solid #d8d8d8;
98
+ border-right: 1px solid #d8d8d8;
99
+ border-bottom: 1px solid #d8d8d8;
100
+ }
101
+ #of_container #of-nav {
102
+ float: left;
103
+ position: relative;
104
+ z-index: 9999;
105
+ width: 160px;
106
+ }
107
+ #of_container #of-nav ul {
108
+ margin:0;
109
+ }
110
+ #of_container #of-nav li {
111
+ margin-bottom:0;
112
+ -moz-box-shadow: inset 0 1px 0 #f9f9f9;
113
+ -webkit-box-shadow: inset 0 1px 0 #f9f9f9;
114
+ box-shadow: inset 0 1px 0 #f9f9f9;
115
+ margin-right: 1px;
116
+ border-bottom: 1px solid #d8d8d8;
117
+ }
118
+
119
+ #of_container #of-nav li:last-child {
120
+ -moz-box-shadow: inset 0 1px 0 #f9f9f9, 0 1px 0 #f9f9f9;
121
+ -webkit-box-shadow: inset 0 1px 0 #f9f9f9, 0 1px 0 #f9f9f9;
122
+ box-shadow: inset 0 1px 0 #f9f9f9, 0 1px 0 #f9f9f9;
123
+ }
124
+
125
+ #of_container #of-nav li.current {
126
+ margin-right: 0;
127
+ }
128
+
129
+ #of_container #of-nav li a, #of_container #of-nav ul li a:link, #of-nav ul li a:visited {
130
+ display: block;
131
+ padding: 10px 10px 10px 40px;
132
+ background-repeat: no-repeat;
133
+ background-position: 13px 10px;
134
+ font-weight:bold;
135
+ font-size: 12px;
136
+ text-decoration: none;
137
+ color: #555;
138
+ opacity: 0.5;
139
+ }
140
+ #of_container #of-nav ul li.current a {
141
+ background-color: #fcfcfc;
142
+ color: #797979;
143
+ opacity: 1;
144
+ }
145
+
146
+ #of_container #of-nav ul li a:hover {
147
+ color: #d54e21;
148
+ opacity: 1;
149
+ }
150
+
151
+ /*menu icons - customize to your liking*/
152
+ #of_container #of-nav li.slideroptions a{ background-image:url(../images/icon-slider.png);}
153
+ #of_container #of-nav li.generalsettings a{ background-image:url(../images/icon-settings.png);}
154
+ #of_container #of-nav li.stylingoptions a{ background-image:url(../images/icon-paint.png);}
155
+ #of_container #of-nav li.exampleoptions a{ background-image:url(../images/icon-docs.png);}
156
+ #of_container #of-nav li.homesettings a{ background-image:url(../images/icon-home.png);}
157
+ #of_container #of-nav li.backupoptions a {background: url(../images/icon-backup.png) no-repeat;}
158
+ #of_container #of-nav li.advancedsettings a {background: url(../images/wrench16.png) no-repeat;}
159
+
160
+ #of_container #content {
161
+ float: left;
162
+ min-height: 500px;
163
+ width: 595px;
164
+ margin-left: -1px;
165
+ padding: 0 14px;
166
+ font-family: "Lucida Grande", Sans-serif;
167
+ background-color: #FCFCFC;
168
+ border-left: 1px solid #d8d8d8;
169
+ -moz-box-shadow: inset 0 1px 0 #fff;
170
+ -webkit-box-shadow: inset 0 1px 0 #fff;
171
+ box-shadow: inset 0 1px 0 #fff;
172
+ }
173
+ #of_container #content .section {
174
+ margin-bottom: 10px;
175
+ overflow-x : hidden;
176
+ }
177
+ #of_container #content .section h3.heading {
178
+ font-family:;
179
+ margin: 10px 0 10px 0;
180
+ padding: 7px 0px;
181
+ border-bottom: 1px solid #e7e7e7;
182
+ }
183
+ #of_container #content .section .controls {
184
+ float: left;
185
+ width: 345px;
186
+ margin: 0 15px 0 0;
187
+ }
188
+ #of_container #content .section .explain {
189
+ float: left;
190
+ width: 225px;
191
+ padding: 0 10px 0 0;
192
+ font-size: 11px;
193
+ color: #999999;
194
+ }
195
+ #of_container #content .section-checkbox .controls {
196
+ width:25px
197
+ }
198
+
199
+ #of_container #content .section-multicheck .controls input.checkbox {
200
+ margin-top:9px;
201
+ }
202
+
203
+ #of_container #content .section-checkbox .explain {
204
+ max-width:93%;
205
+ }
206
+ #of_container #content .section-color .controls {
207
+ width:105px
208
+ }
209
+ #of_container #content .section-color .explain {
210
+ width:440px
211
+ }
212
+ #of_container #content .section-info h3.heading {
213
+ display:none;
214
+ }
215
+ #of_container #content .section-info .controls {
216
+ margin: 20px 0 0;
217
+ float:none;
218
+ width: auto;
219
+ }
220
+ #of_container #content .section-info .controls .of-info{
221
+ padding: 15px 10px;
222
+ line-height: 1.5em;
223
+ font-size: 12px;
224
+ background-color: #EFF9FF;
225
+ border: 1px solid #D6F0FF;
226
+ color:#777;
227
+ }
228
+
229
+ #of_container #content .section-info .controls .of-info ._icon {
230
+ height:16px; width:16px;
231
+ margin: 0 10px 0 0;
232
+ float: left;
233
+ }
234
+ #of_container #content .section-info .controls small {
235
+ font-size: 12px
236
+ }
237
+ #of_container #content .section-info h3.heading {
238
+ -webkit-border-radius: 3px 3px 0 0;
239
+ -moz-border-radius: 3px 3px 0 0;
240
+ border-radius: 3px 3px 0 0;
241
+ }
242
+ #of_container #content .section-info .controls {
243
+ -webkit-border-radius: 0 0 3px 3px;
244
+ -moz-border-radius: 0 0 3px 3px;
245
+ border-radius: 0 0 3px 3px;
246
+ }
247
+ #of_container .sorter {margin-right: -20px;}
248
+ #of_container .sorter ul {
249
+ background: #F9F9F9;
250
+ border: 1px dashed #E3E3E3;
251
+ min-height: 40px;
252
+ padding: 10px 10px 0;
253
+ width: 145px;
254
+ float: left;
255
+ margin: 0 15px 0 0;
256
+ }
257
+ #of_container .sorter ul h3 {
258
+ margin: 0 0 10px;
259
+ text-align: center;
260
+ color: #777;
261
+ text-transform: capitalize;
262
+ }
263
+ #of_container .sorter ul li {
264
+ border: 1px solid #DFDFDF;
265
+ cursor: move;
266
+ font-weight: bold;
267
+ margin-bottom:10px;
268
+ padding:0 10px;
269
+ height: 40px;
270
+ line-height: 40px;
271
+ background-color: #F1F1F1;
272
+ background-image: -ms-linear-gradient(top,#f9f9f9,#ececec);
273
+ background-image: -moz-linear-gradient(top,#f9f9f9,#ececec);
274
+ background-image: -o-linear-gradient(top,#f9f9f9,#ececec);
275
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));
276
+ background-image: -webkit-linear-gradient(top,#f9f9f9,#ececec);
277
+ background-image: linear-gradient(top,#f9f9f9,#ececec);
278
+ overflow: hidden;
279
+ -webkit-border-radius: 3px;
280
+ -moz-border-radius: 3px;
281
+ border-radius: 3px;
282
+ -moz-box-shadow: inset 0 1px 0 #fff;
283
+ -webkit-box-shadow: inset 0 1px 0 #fff;
284
+ box-shadow: inset 0 1px 0 #fff;
285
+ text-align:center;
286
+ }
287
+
288
+
289
+ #of_container #content .section-sorter li.placeholder {
290
+ background:#f9f9f9;
291
+ border-width:1px;
292
+ border-style:dashed;
293
+ height:40px;}
294
+
295
+ #of_container #content .section-slider li.placeholder {
296
+ background:#f9f9f9;
297
+ border-width:1px;
298
+ border-style:dashed;
299
+ height:33px;}
300
+
301
+
302
+ #of_container textarea, #of_container input, #of_container select, #of_container button{
303
+ -webkit-border-radius: 3px;
304
+ -moz-border-radius: 3px;
305
+ border-radius: 3px;
306
+ border-style:solid;
307
+ border-width:1px;
308
+ }
309
+ #of_container .controls input, #of_container .controls select, #of_container .controls textarea {
310
+ margin-bottom: 9px !important;
311
+ background-color: #f1f1f1;
312
+ border: 1px solid;
313
+ border-color: #ccc #e6e6e6 #e6e6e6 #ccc;
314
+ width: 340px;
315
+ padding: 4px;
316
+ font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
317
+ font-size: 12px;
318
+ }
319
+ #of_container .controls input:hover, #of_container .controls textarea:hover {
320
+ background-color: #f9f9f9;
321
+ }
322
+
323
+ #of_container .controls input:focus, #of_container .controls textarea:focus {
324
+ background-color: #fff;
325
+ border-color: #ccc #e6e6e6 #e6e6e6 #ccc;
326
+ outline:0;
327
+ }
328
+
329
+ #of_container .controls .upload {
330
+ width: 340px;
331
+ }
332
+
333
+
334
+ #of_container .controls select {
335
+ height: 28px;
336
+ padding: 4px 5px;
337
+ width: 340px
338
+ }
339
+ #of_container .controls textarea {
340
+ width: 345px;
341
+ }
342
+ #of_container input[type=text] {
343
+ width: 340px;
344
+ }
345
+ #of_container input.checkbox {
346
+ width: 30px;
347
+ margin-top:3px;
348
+ }
349
+ #of_container input.of-radio {
350
+ width: 30px;
351
+ }
352
+ label.radio, label.multicheck {
353
+ position: relative;
354
+ bottom: 9px;
355
+ }
356
+ #of_container .controls .input-text-small {
357
+ width: 60px;
358
+ margin-right:10px
359
+ }
360
+ #of_container .meta-two {
361
+ margin-right:10px
362
+ }
363
+ #of_container .controls .of-color {
364
+ float:left;
365
+ width: 70px;
366
+ margin-left:5px; /* font-size:20px; height:34px;*/
367
+ }
368
+ #of_container #content .section-typography .controls {
369
+ width:440px
370
+ }
371
+ #of_container #content .section-typography .explain {
372
+ width:130px
373
+ }
374
+ #of_container .controls .of-typography-size {
375
+ width:70px;
376
+ float:left
377
+ }
378
+ #of_container .controls .of-typography-unit {
379
+ width:60px;
380
+ float:left
381
+ }
382
+ #of_container .controls .of-typography-face {
383
+ width:145px;
384
+ float:left
385
+ }
386
+ #of_container .controls .of-typography-style {
387
+ width:95px;
388
+ float:left
389
+ }
390
+ #of_container .controls .of-radio-img-img {
391
+ border:3px solid #fff;
392
+ margin:0 5px 10px 0;
393
+ display:none;
394
+ cursor:pointer;
395
+ float:left;
396
+ }
397
+ #of_container .controls .of-radio-img-selected {
398
+ border:3px solid #ccc
399
+ }
400
+ #of_container .controls .of-radio-img-img:hover {
401
+ opacity:.8;
402
+ }
403
+
404
+ #of_container .controls .of-radio-tile-img {
405
+ width:50px;
406
+ height:50px;
407
+ border:3px solid #f9f9f9;
408
+ margin:0 5px 10px 0;
409
+ display:none;
410
+ cursor:pointer;
411
+ float:left;
412
+ }
413
+ #of_container .controls .of-radio-tile-selected {
414
+ border:3px solid #ccc
415
+ }
416
+ #of_container .controls .of-radio-tile-img:hover {
417
+ opacity:.8;
418
+ }
419
+
420
+ #of_container .controls .of-border-width {
421
+ width:70px;
422
+ float:left
423
+ }
424
+ #of_container .controls .of-border-style {
425
+ width:95px;
426
+ float:left
427
+ }
428
+ #of_container .group {
429
+ display:none;
430
+ padding-bottom:20px;
431
+ }
432
+ #of_container .group h2 {
433
+ display:none;
434
+ border-bottom:3px solid #e7e7e7
435
+ }
436
+ #of_container .controls input:focus, #of_container select:focus, #of_container textarea:focus {
437
+ background:#fff;
438
+ }
439
+
440
+ #of_container .accept {
441
+ background: #DBF6BE no-repeat 10px center;
442
+ border: solid #9BBF65;
443
+ border-width: 0px 1px 1px 1px;
444
+ color: #060;
445
+ font-weight: bold;
446
+ padding: 10px;
447
+ text-align: center;
448
+ }
449
+ #of_container .warning {
450
+ background: #ffeeee no-repeat 10px center;
451
+ ;
452
+ border: solid #dfbfbf;
453
+ border-width: 0px 1px 1px 1px;
454
+ color: #333;
455
+ font-weight: bold;
456
+ padding: 10px;
457
+ text-align: center;
458
+ }
459
+ #of_container .update_available {
460
+ background: #FFFEEB no-repeat 10px center;
461
+ border: solid #CCCCCC;
462
+ border-width: 0px 1px 1px 1px;
463
+ color: #333;
464
+ font-weight: bold;
465
+ padding: 10px;
466
+ text-align: center;
467
+ }
468
+ #of_container .of-save-popup {
469
+ position:absolute;
470
+ background:rgba(0, 0, 0, 0.5);
471
+ color:#fff;
472
+ font-size:24px;
473
+ text-align:center;
474
+ display:none;
475
+ -webkit-border-radius: 12px;
476
+ -moz-border-radius: 12px;
477
+ border-radius: 12px;
478
+ }
479
+
480
+ #of_container .of-save-popup div{
481
+ background-repeat: no-repeat;
482
+ background-position: 20px 50%;
483
+ padding:30px 30px 30px 60px;
484
+ }
485
+ #of_container .of-save-save {
486
+ background-image: url(../images/button_check.png);
487
+ }
488
+ #of_container .of-save-reset {
489
+ background-image: url(../images/sign_warning.png);
490
+ }
491
+ #of_container .of-save-fail {
492
+ background-image:url(../images/stop.png);
493
+ }
494
+
495
+ #of_container .accept,
496
+ #of_container .warning,
497
+ #of_container .update_available,
498
+ #of_container .of-save-popup {
499
+ z-index: 9999;
500
+ }
501
+
502
+ #of_container .upload_button_div {
503
+ margin-top:7px;
504
+ margin-bottom: 15px;
505
+ }
506
+
507
+ #of_container .button {
508
+ border-width: 1px;
509
+ border-style: solid;
510
+ -moz-border-radius: 3px;
511
+ -khtml-border-radius: 3px;
512
+ -webkit-border-radius: 3px;
513
+ border-radius: 3px;
514
+ border-color: #dfdfdf;
515
+ background-color: #fff;
516
+ margin:4px 0 4px;
517
+ }
518
+
519
+
520
+ #of_container .button:hover,#of_container .button_hover {
521
+ border-color: #bbb;
522
+ color: #464646;
523
+ }
524
+
525
+ #of_container .button_active {
526
+ background:#eee url(../../images/white-grad-active.png) repeat-x scroll left top;
527
+ }
528
+
529
+ #of_container .image_reset_button, #of_container .mlu_remove_button {
530
+ margin-left:10px;
531
+ color:#ef521d;
532
+ }
533
+
534
+ #of_container .image_reset_button:hover, #of_container .mlu_remove_button:hover {
535
+ color:red;
536
+ }
537
+
538
+ #of_container .upload-error {
539
+ float:left;
540
+ color:#666;
541
+ font-size:10px;
542
+ font-weight:bold;
543
+ text-decoration:none;
544
+ text-shadow:1px 1px 0 #FFFFFF;
545
+ margin: 0 10px 0 0;
546
+ padding:3px 10px;
547
+ background:#FFDFEC;
548
+ -webkit-border-radius: 4px;
549
+ -moz-border-radius: 4px;
550
+ border-radius: 4px;
551
+ }
552
+ #of_container .reset-button {
553
+ font-family:Arial,Verdana,sans-serif;
554
+ float:left;
555
+ padding: 0 7px;
556
+ height: 23px;
557
+ line-height: 23px;
558
+ margin:0 ;
559
+ color: #ef521d;
560
+ border-color: #bbb;
561
+ }
562
+
563
+ #of_container .reset-button:hover { color: #ef521d; border-color: #888}
564
+
565
+ #of_container .slide_add_button { float:right; margin-top:10px; }
566
+
567
+
568
+ #of_container .save_bar {
569
+ background: #f3f3f3;
570
+ border:solid #ccc;
571
+ border-width:0px 1px 1px 1px;
572
+ padding: 10px 20px 0px 20px;
573
+ height: 35px;
574
+ text-align: right;
575
+ -webkit-border-radius: 0 0 3px 3px;
576
+ -moz-border-radius: 0 0 3px 3px;
577
+ border-radius: 0 0 3px 3px;
578
+ -moz-box-shadow: inset 0 1px 0 #fff;
579
+ -webkit-box-shadow: inset 0 1px 0 #fff;
580
+ box-shadow: inset 0 1px 0 #fff;
581
+ }
582
+
583
+ #of_save {
584
+ font-family: Arial,Verdana,sans-serif;
585
+ padding: 0 7px;
586
+ height: 23px;
587
+ line-height: 23px;
588
+ border:1px solid #0a6d9b !important;
589
+ float:right;
590
+ }
591
+
592
+ #of_save:hover {
593
+ border:1px solid #111 !important;
594
+ }
595
+
596
+ #of_container .hide {
597
+ display:none
598
+ }
599
+ #of_container .ajax-loading-img-top {
600
+ margin: 5px 4px 0;
601
+ float:left
602
+ }
603
+ #of_container .ajax-loading-img-bottom {
604
+ margin: 5px 4px 0;
605
+ }
606
+ #of_container .ajax-reset-loading-img {
607
+ display: block;
608
+ margin-left: 100px;
609
+ }
610
+
611
+ #of_container .screenshot {
612
+ max-width:340px;
613
+ margin-bottom:9px;
614
+ }
615
+
616
+ #of_container .of-uploaded-image {
617
+
618
+ }
619
+
620
+ #of_container .of-option-image {
621
+ max-width:340px;
622
+ padding: 5px;
623
+ border:1px solid #e3e3e3;
624
+ background:#f7f7f7;
625
+ -moz-border-radius: 3px;
626
+ -khtml-border-radius: 3px;
627
+ -webkit-border-radius: 3px;
628
+ border-radius: 3px;
629
+ }
630
+ #of_container .select_wrapper {
631
+ -moz-border-radius: 4px;
632
+ -webkit-border-radius: 4px;
633
+ border-radius: 4px;
634
+ font-family: "Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
635
+ font-size: 12px;
636
+ background: #F1F1F1 url(../images/select.png) no-repeat right center;
637
+ border-color: #CCC #E6E6E6 #E6E6E6 #CCC;;
638
+ border-style: solid;
639
+ border-width: 1px;
640
+ float: left;
641
+ height: 26px;
642
+ width: 344px;
643
+ margin: 0;
644
+ margin-bottom: 9px !important;
645
+ width: 340px;
646
+ display: block;
647
+ color: #888;
648
+ position:relative;
649
+ }
650
+
651
+ #of_container .select_wrapper:hover {background-color:#f9f9f9;}
652
+
653
+ #of_container .mini .controls select, #of_container #content .section .mini .controls, #of_container .controls .typography-size, #of_container .controls .border-width,#of_container .controls .mini,#of_container .mini .controls input, #of_container #content .mini .controls {width: 70px;}
654
+ #of_container .controls .typography-face {width: 145px;}
655
+ #of_container .controls .typography-style, #of_container .controls .border-style {width: 95px;}
656
+ #of_container .controls .typography-size,#of_container .controls .typography-face,#of_container .controls .typography-style, #of_container .controls .border-width, #of_container .controls .border-style {margin-right:5px;}
657
+
658
+ #of_container #content .mini .explain {
659
+ width:500px;
660
+ }
661
+ #of_container .of-notice {
662
+ background: #ffd1d1;
663
+ border:1px solid #DFDFDF;
664
+ -moz-border-radius:8px;
665
+ text-align: center;
666
+ margin-bottom: 15px
667
+ }
668
+
669
+ #of_container .slider li {
670
+ width: 345px;
671
+ border: 1px solid #dfdfdf;
672
+ background:#f9f9f9;
673
+ overflow:hidden;
674
+ -webkit-border-radius: 3px;
675
+ -moz-border-radius: 3px;
676
+ border-radius: 3px;
677
+ -moz-box-shadow: inset 0 1px 0 #fff;
678
+ -webkit-box-shadow: inset 0 1px 0 #fff;
679
+ box-shadow: inset 0 1px 0 #fff;
680
+ }
681
+
682
+ #of_container .slide_header {
683
+ cursor:move;
684
+ height:32px;
685
+ padding-left:10px;
686
+ padding-right:20px;
687
+ line-height:32px;
688
+ background-color: #F1F1F1;
689
+ margin: 1px 0 -1px 0;
690
+ border-bottom: 1px solid #dfdfdf;
691
+ background-image: -ms-linear-gradient(top,#f9f9f9,#ececec);
692
+ background-image: -moz-linear-gradient(top,#f9f9f9,#ececec);
693
+ background-image: -o-linear-gradient(top,#f9f9f9,#ececec);
694
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));
695
+ background-image: -webkit-linear-gradient(top,#f9f9f9,#ececec);
696
+ background-image: linear-gradient(top,#f9f9f9,#ececec);
697
+ overflow:hidden;
698
+ position: relative;
699
+ }
700
+
701
+ #of_container .slide_body {
702
+ display:none;
703
+ padding:10px 10px 10px 11px;
704
+ }
705
+
706
+
707
+ #of_container .slider li input,#of_container .slider li textarea,#of_container .slider li .screenshot,#of_container .slider li .of-option-image {
708
+ width:311px;
709
+ }
710
+
711
+ #of_container a.slide_edit_button, #of_container a.slide_delete_button {
712
+ text-indent:-9999px;
713
+ font-size:0;
714
+ }
715
+ #of_container a.slide_edit_button {
716
+ position: absolute;
717
+ right: 0;
718
+ top: 0;
719
+ width:32px;
720
+ height:32px;
721
+ background: url(../images/dropdown-arrow.png) no-repeat 9px -28px;
722
+ }
723
+ #of_container a:hover.slide_edit_button {
724
+ background: url(../images/dropdown-arrow.png) no-repeat 9px 11px;}
725
+
726
+ #of_container a.slide_delete_button {
727
+ float: right;
728
+ margin: 0 0 0 7px;
729
+ width:16px;
730
+ height:16px;
731
+ background: url(../images/icon-delete.png) no-repeat
732
+ }
733
+
734
+ #of_container .select_wrapper span {
735
+ height: 26px;
736
+ line-height: 26px;
737
+ z-index: 2;
738
+ padding-left: 6px;
739
+ position:absolute;
740
+ left:0;
741
+ }
742
+
743
+ #of_container .select_wrapper .select {
744
+ cursor: pointer;
745
+ height: 28px;
746
+ margin: 0;
747
+ -moz-opacity: 0;
748
+ filter: alpha(opacity: 0);
749
+ opacity: 0;
750
+ padding: 0;
751
+ position: relative;
752
+ width: inherit;
753
+ z-index: 4;
754
+ }
755
+
756
+ #of_backup {
757
+ margin: 40px 20px;
758
+ width: 600px;
759
+ }
760
+ #of_backup textarea {
761
+ margin-bottom: 9px !important;
762
+ background-color: #F1F1F1;
763
+ border: 1px solid;
764
+ width: 100%;
765
+ padding: 4px;
766
+ font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
767
+ font-size: 12px;
768
+ border-color: #CCC #E6E6E6 #E6E6E6 #CCC;
769
+ }
770
+
771
+ #of_container #content .section-backup .controls { width: 80%}
772
+ #of_container #content .section-backup .explain {
773
+ display:none
774
+ }
775
+ #of_container #content .section-backup .backup-box {
776
+ margin: 0 0 20px;
777
+ }
778
+
779
+ #of_container #content .section-backup .instructions {
780
+ margin: 0 0 10px;
781
+ color: #777;
782
+ }
783
+ #of_container #content .section-backup .button, #of_container #content .section-transfer .button {
784
+ margin: 0 25px 0 0;
785
+ }
786
+
787
+ .temphide {display:none;}
788
+ /*-------------------------------------------------------------------------------------------*/
789
+ /* GENERAL STYLES */
790
+ /*-------------------------------------------------------------------------------------------*/
791
+
792
+ /* http://sonspring.com/journal/clearing-floats */
793
+
794
+ html body * span.clear, html body * div.clear, html body * li.clear, html body * dd.clear {
795
+ background: none;
796
+ border: 0;
797
+ clear: both;
798
+ display: block;
799
+ float: none;
800
+ font-size: 0;
801
+ list-style: none;
802
+ margin: 0;
803
+ padding: 0;
804
+ overflow: hidden;
805
+ visibility: hidden;
806
+ width: 0;
807
+ height: 0;
808
+ }
809
+
810
+
811
+ /*-------------------------------------------------------------------------------------------*/
812
+ /* Tipsy
813
+ /*-------------------------------------------------------------------------------------------*/
814
+ .tipsy { font-size: 10px; position: absolute; padding: 5px; z-index: 100000; }
815
+ .tipsy-inner { background-color: #000; color: #FFF; max-width: 200px; padding: 5px 8px 4px 8px; text-align: center; }
816
+
817
+ /* Rounded corners */
818
+ .tipsy-inner { border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
819
+
820
+ /* Uncomment for shadow */
821
+ /*.tipsy-inner { box-shadow: 0 0 5px #000000; -webkit-box-shadow: 0 0 5px #000000; -moz-box-shadow: 0 0 5px #000000; }*/
822
+
823
+ .tipsy-arrow { position: absolute; width: 0; height: 0; line-height: 0; border: 5px dashed #000; }
824
+
825
+ /* Rules to colour arrows */
826
+ .tipsy-arrow-n { border-bottom-color: #000; }
827
+ .tipsy-arrow-s { border-top-color: #000; }
828
+ .tipsy-arrow-e { border-left-color: #000; }
829
+ .tipsy-arrow-w { border-right-color: #000; }
830
+
831
+ .tipsy-n .tipsy-arrow { top: 0px; left: 50%; margin-left: -5px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent; }
832
+ .tipsy-nw .tipsy-arrow { top: 0; left: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;}
833
+ .tipsy-ne .tipsy-arrow { top: 0; right: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;}
834
+ .tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -5px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
835
+ .tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
836
+ .tipsy-se .tipsy-arrow { bottom: 0; right: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
837
+ .tipsy-e .tipsy-arrow { right: 0; top: 50%; margin-top: -5px; border-left-style: solid; border-right: none; border-top-color: transparent; border-bottom-color: transparent; }
838
+ .tipsy-w .tipsy-arrow { left: 0; top: 50%; margin-top: -5px; border-right-style: solid; border-left: none; border-top-color: transparent; border-bottom-color: transparent; }