Changeset 215791
- Timestamp:
- 03/10/2010 03:28:21 PM (16 years ago)
- Location:
- file-proxy/trunk
- Files:
-
- 1 added
- 1 edited
- 1 copied
-
assets/css/admin-style.css (copied) (copied from file-proxy/trunk/assets/css/iphone-switch.css) (1 diff)
-
com/twothirdsdesign/file-proxy/admin/admin.php (modified) (3 diffs)
-
com/twothirdsdesign/file-proxy/admin/settings_page.php (added)
Legend:
- Unmodified
- Added
- Removed
-
file-proxy/trunk/assets/css/admin-style.css
r213168 r215791 1 .iPhoneCheckContainer {2 position: relative;3 height: 27px;4 cursor: pointer;5 overflow: hidden; }6 .iPhoneCheckContainer input {7 position: absolute;8 top: 5px;9 left: 30px; }10 .iPhoneCheckHandle {11 display: block;12 height: 27px;13 cursor: pointer;14 position: absolute;15 top: 0;16 left: 0;17 background: url(../img/slider_left.png) no-repeat;18 z-index: 2;19 padding-left: 4px; }20 .iPhoneCheckHandleRight {21 height: 100%;22 width: 100%;23 padding-right: 4px;24 background: url(../img/slider_right.png) no-repeat top right;25 z-index: 2; }26 .iPhoneCheckHandleCenter {27 height: 100%;28 width: 100%;29 background: url(../img/slider_center.png);30 z-index: 2; }31 label.iPhoneCheckLabelOn, label.iPhoneCheckLabelOff {32 white-space: nowrap;33 font-size: 17px;34 line-height: 17px;35 font-weight: bold;36 font-family: Helvetica Neue, Arial, Helvetica, sans-serif;37 text-transform: uppercase;38 cursor: pointer;39 display: block;40 height: 22px;41 position: absolute;42 width: auto;43 top: 0;44 overflow: hidden; }45 label.iPhoneCheckLabelOn {46 color: #fff;47 background: url(../img/on.png) no-repeat;48 text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.6);49 left: 0;50 padding: 5px 0 0 8px;51 z-index: 1; }52 label.iPhoneCheckLabelOff {53 color: #8B8B8B;54 background: url(../img/off.png) no-repeat right 0;55 text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.6);56 text-align: right;57 right: 0;58 padding: 5px 8px 0 0; }59 60 div.danger div.iPhoneCheckContainer label.iPhoneCheckLabelOn {61 background: url(../img/on_danger.png) no-repeat !important;62 }63 -
file-proxy/trunk/com/twothirdsdesign/file-proxy/admin/admin.php
r215787 r215791 95 95 function enqueue_style() { 96 96 wp_enqueue_style( 'iphone-switch' , TTDFP_URL .'assets/css/iphone-switch.css' , false, $this->m->get_option("version"), 'screen' ); 97 wp_enqueue_style( 'aaia-admin-style' , TTDFP_URL .'assets/css/admin-style.css' , false, $this->m->get_option("version"), 'screen' ); 97 98 } 98 99 … … 194 195 * @since 0.5 195 196 */ 196 function render_settings_page() { ?> 197 function render_settings_page() { 198 199 require_once 'settings_page.php'; 200 if(false) {?> 197 201 <div class="wrap"> 198 202 <div id="icon-options-general" class="icon32"><br /></div> … … 225 229 226 230 </div><!-- .wrap --> <?php 231 } 227 232 } 228 233
Note: See TracChangeset
for help on using the changeset viewer.