| 1 |
/** |
| 2 |
* Core CSS for s2Member menu pages. |
| 3 |
* |
| 4 |
* Copyright: © 2009-2011 |
| 5 |
* {@link http://www.websharks-inc.com/ WebSharks, Inc.} |
| 6 |
* ( coded in the USA ) |
| 7 |
* |
| 8 |
* Released under the terms of the GNU General Public License. |
| 9 |
* You should have received a copy of the GNU General Public License, |
| 10 |
* along with this software. In the main directory, see: /licensing/ |
| 11 |
* If not, see: {@link http://www.gnu.org/licenses/}. |
| 12 |
* |
| 13 |
* @package s2Member\Menu_Pages |
| 14 |
* @since 3.0 |
| 15 |
*/ |
| 16 |
/* |
| 17 |
These CSS selectors are all specific to this software. |
| 18 |
These are for Custom Reg Field configuration. |
| 19 |
-specifically for the tools. |
| 20 |
*/ |
| 21 |
div#ws-plugin--s2member-custom-reg-field-configuration-tools > a |
| 22 |
{ |
| 23 |
display: block; |
| 24 |
padding: 0 0 0 20px; |
| 25 |
background: url('<?php echo $i; ?>/add-icon.png') no-repeat center left; |
| 26 |
} |
| 27 |
div#ws-plugin--s2member-custom-reg-field-configuration-thickbox-tools-form > table |
| 28 |
{ |
| 29 |
display: none; /* Hide until it's inside thickbox. */ |
| 30 |
} |
| 31 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form |
| 32 |
{ |
| 33 |
width: 95%; |
| 34 |
margin: 2.5%; |
| 35 |
} |
| 36 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form label |
| 37 |
{ |
| 38 |
color: #164A61; |
| 39 |
} |
| 40 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form input[type = "text"], |
| 41 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form textarea, |
| 42 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form select |
| 43 |
{ |
| 44 |
font-size: 11px; |
| 45 |
padding: 3px; |
| 46 |
} |
| 47 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form input[type = "text"], |
| 48 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form select |
| 49 |
{ |
| 50 |
height: 2em; |
| 51 |
} |
| 52 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form input[type = "text"], |
| 53 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form textarea |
| 54 |
{ |
| 55 |
width: 99%; |
| 56 |
} |
| 57 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form select |
| 58 |
{ |
| 59 |
width: 100%; |
| 60 |
} |
| 61 |
table#ws-plugin--s2member-custom-reg-field-configuration-tools-form select option |
| 62 |
{ |
| 63 |
padding: 1px; |
| 64 |
} |
| 65 |
tr.ws-plugin--s2member-custom-reg-field-configuration-tools-form-spacer td |
| 66 |
{ |
| 67 |
height: 1px; |
| 68 |
padding: 2px 0 2px 0; |
| 69 |
} |
| 70 |
/* |
| 71 |
These CSS selectors are all specific to this software. |
| 72 |
These are for Custom Reg Field configuration. |
| 73 |
-specifically for the table. |
| 74 |
*/ |
| 75 |
table#ws-plugin--s2member-custom-reg-field-configuration-table |
| 76 |
{ |
| 77 |
width: 100%; |
| 78 |
-moz-border-radius: 3px; |
| 79 |
-webkit-border-radius: 3px; |
| 80 |
border-radius: 3px; |
| 81 |
border: 1px solid transparent; |
| 82 |
} |
| 83 |
table#ws-plugin--s2member-custom-reg-field-configuration-table th |
| 84 |
{ |
| 85 |
font-weight: bold; |
| 86 |
} |
| 87 |
table#ws-plugin--s2member-custom-reg-field-configuration-table tr.e |
| 88 |
{ |
| 89 |
background-color: #EEEEEE; |
| 90 |
} |
| 91 |
table#ws-plugin--s2member-custom-reg-field-configuration-table tr.s > td |
| 92 |
{ |
| 93 |
border-top: 1px solid #666666; |
| 94 |
} |
| 95 |
a.ws-plugin--s2member-custom-reg-field-configuration-move-up, |
| 96 |
a.ws-plugin--s2member-custom-reg-field-configuration-move-down, |
| 97 |
a.ws-plugin--s2member-custom-reg-field-configuration-edit, |
| 98 |
a.ws-plugin--s2member-custom-reg-field-configuration-delete |
| 99 |
{ |
| 100 |
width: 16px; |
| 101 |
height: 16px; |
| 102 |
margin: 0 5px 0 5px; |
| 103 |
display: inline-block; |
| 104 |
} |
| 105 |
a.ws-plugin--s2member-custom-reg-field-configuration-move-up |
| 106 |
{ |
| 107 |
background: url('<?php echo $i; ?>/arrow-up-icon.png') no-repeat; |
| 108 |
} |
| 109 |
a.ws-plugin--s2member-custom-reg-field-configuration-move-down |
| 110 |
{ |
| 111 |
background: url('<?php echo $i; ?>/arrow-down-icon.png') no-repeat; |
| 112 |
} |
| 113 |
a.ws-plugin--s2member-custom-reg-field-configuration-edit |
| 114 |
{ |
| 115 |
background: url('<?php echo $i; ?>/edit-icon.png') no-repeat; |
| 116 |
} |
| 117 |
a.ws-plugin--s2member-custom-reg-field-configuration-delete |
| 118 |
{ |
| 119 |
background: url('<?php echo $i; ?>/delete-icon.png') no-repeat; |
| 120 |
} |