| 1 |
/** |
| 2 |
* @version 1.0 |
| 3 |
* @package: Admin Panel |
| 4 |
* @category: Admin UI |
| 5 |
* @author wpdevelop |
| 6 |
* |
| 7 |
* @web-site http://oplugins.com/ |
| 8 |
* @email info@oplugins.com |
| 9 |
* |
| 10 |
* @modified 2015-04-11 |
| 11 |
*/ |
| 12 |
|
| 13 |
/* Admin Content Pages */ |
| 14 |
.wpbm_page .wpbm_admin_page .wpbm_header_margin { |
| 15 |
height:10px; |
| 16 |
} |
| 17 |
/* Collapse & expand elements in settings meta boxes */ |
| 18 |
.wpbm_page .meta-box .postbox .handlediv { |
| 19 |
background: url("../../../../../../wp-admin/images/arrows.png") no-repeat scroll 5px -27px transparent; |
| 20 |
} |
| 21 |
.wpbm_page .meta-box .postbox.closed .handlediv { |
| 22 |
background-position:5px 10px; |
| 23 |
} |
| 24 |
.wpbm_page .meta-box .postbox .handlediv:hover { |
| 25 |
cursor: pointer !important; |
| 26 |
} |
| 27 |
.wpbm_page .meta-box .postbox .hndle:hover { |
| 28 |
cursor: default !important; |
| 29 |
} |
| 30 |
|
| 31 |
/* Settings Menuboxes */ |
| 32 |
.wpbm_settings_row.wpbm_settings_row_left { |
| 33 |
width:64%; |
| 34 |
float:left; |
| 35 |
margin-right:1%; |
| 36 |
} |
| 37 |
.wpbm_settings_row.wpbm_settings_row_right { |
| 38 |
width:35%; |
| 39 |
float:left; |
| 40 |
} |
| 41 |
|
| 42 |
/* Set switched Meta Boxes size*/ |
| 43 |
.wpbm_settings_row.wpbm_settings_row_left_small { |
| 44 |
width:35%; |
| 45 |
} |
| 46 |
.wpbm_settings_row.wpbm_settings_row_right_big { |
| 47 |
width:64%; |
| 48 |
} |
| 49 |
/* FixIn: 7.0.1.54 */ |
| 50 |
.wpbm_page input::-moz-placeholder, |
| 51 |
.wpbm_page textarea::-moz-placeholder{ |
| 52 |
color: #ccc; |
| 53 |
opacity: 1; |
| 54 |
} |
| 55 |
.wpbm_page input:-ms-input-placeholder, |
| 56 |
.wpbm_page textarea:-ms-input-placeholder{ |
| 57 |
color: #ccc; |
| 58 |
} |
| 59 |
.wpbm_page input::-webkit-input-placeholder, |
| 60 |
.wpbm_page textarea::-webkit-input-placeholder{ |
| 61 |
color: #ccc; |
| 62 |
} |
| 63 |
|
| 64 |
/* iPad mini and all iPhones and other Mobile Devices */ |
| 65 |
@media (max-width: 782px) { |
| 66 |
/* Settings Top TABS */ |
| 67 |
.wpbm_page .wpbm_admin_page .metabox-holder .wpbm_settings_row { |
| 68 |
width:100%; |
| 69 |
float:none; |
| 70 |
} |
| 71 |
.wpbm_text_hide_mobile { |
| 72 |
display:none; |
| 73 |
} |
| 74 |
} |
| 75 |
|