shortcoder
Last commit date
images
10 years ago
js
10 years ago
languages
10 years ago
readme.txt
10 years ago
sc-admin-css.css
10 years ago
sc-admin-js.js
10 years ago
sc-insert.php
10 years ago
screenshot-1.png
10 years ago
screenshot-2.png
10 years ago
screenshot-3.png
10 years ago
screenshot-4.png
10 years ago
shortcoder.php
10 years ago
sc-admin-css.css
246 lines
| 1 | /* |
| 2 | * Admin Page CSS for Shortcoder plugin |
| 3 | * Author : Aakash Chakravarthy |
| 4 | * Version : 3.3 |
| 5 | */ |
| 6 | .wrap{ |
| 7 | margin: 15px auto 15px; |
| 8 | width: 700px; |
| 9 | padding: 0px; |
| 10 | } |
| 11 | .wrap #content{ |
| 12 | background: #FFFFFF; |
| 13 | padding: 15px; |
| 14 | border: 1px solid #dfdfdf; |
| 15 | margin: 10px 0px 0px; |
| 16 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
| 17 | } |
| 18 | .wrap h3{ |
| 19 | margin: 0px -15px 15px; |
| 20 | padding: 0px 15px 10px; |
| 21 | border-bottom: 1px solid #dfdfdf; |
| 22 | background: linear-gradient(to bottom, #FFF, #F3F3F3); |
| 23 | } |
| 24 | .wrap h3 small{ |
| 25 | color: #666666; |
| 26 | font-size: 11px; |
| 27 | margin: 0px 0px 0px 5px; |
| 28 | } |
| 29 | #sc_form{ |
| 30 | margin: 0px -15px 10px; |
| 31 | padding: 0px 15px 20px; |
| 32 | border-bottom: 1px solid #dfdfdf; |
| 33 | } |
| 34 | #sc_content{ |
| 35 | width: 100%; |
| 36 | font: 11.5px/2em "Courier New", Courier, monospace; |
| 37 | resize: vertical; |
| 38 | } |
| 39 | .sc_section{ |
| 40 | margin: 0 0 20px 0; |
| 41 | } |
| 42 | .sc_section:last-of-type{ |
| 43 | margin: 0; |
| 44 | } |
| 45 | .sc_name_wrap{ |
| 46 | position: relative; |
| 47 | display: block; |
| 48 | } |
| 49 | .sc_name_wrap input{ |
| 50 | padding: 10px; |
| 51 | font-size: 14px; |
| 52 | font-weight: bold; |
| 53 | margin:0; |
| 54 | } |
| 55 | #sc_code{ |
| 56 | font-size: 12px; |
| 57 | color: #666; |
| 58 | display: none; |
| 59 | background: #FCFCFC; |
| 60 | padding: 3px 10px; |
| 61 | position: absolute; |
| 62 | right: 1px; |
| 63 | bottom: 1px; |
| 64 | top:1px; |
| 65 | border-left: 1px solid #ccc; |
| 66 | line-height: 2.5; |
| 67 | } |
| 68 | .sc_fld_title{ |
| 69 | margin: 0 0 10px 0; |
| 70 | display: block; |
| 71 | } |
| 72 | .sc_settings label{ |
| 73 | margin: 0 0 10px 0; |
| 74 | display: block; |
| 75 | } |
| 76 | .sc_settings label:last-child{ |
| 77 | margin: 0; |
| 78 | } |
| 79 | #sc_list{ |
| 80 | margin: 25px 0 17px 0; |
| 81 | } |
| 82 | #sc_list li{ |
| 83 | background: linear-gradient(to bottom, #FFF, #F3F3F3); |
| 84 | float: left; |
| 85 | cursor: pointer; |
| 86 | color: #454545; |
| 87 | margin: 0 8px; |
| 88 | padding: 5px 15px; |
| 89 | border: 1px solid #DFDFDF; |
| 90 | font-size: 15px; |
| 91 | } |
| 92 | #sc_list li:hover{ |
| 93 | border-color: #0099CC; |
| 94 | } |
| 95 | #sc_list li:active{ |
| 96 | background: #f2f2f2; |
| 97 | } |
| 98 | #sc_submit{ |
| 99 | font-size: 15px; |
| 100 | font-weight: bold; |
| 101 | padding: 10px 15px; |
| 102 | height: auto!important; |
| 103 | } |
| 104 | .sc_btdisabled{ |
| 105 | opacity: 0.5; |
| 106 | } |
| 107 | |
| 108 | #sc_delete{ |
| 109 | background: #F7F7F7 url(images/trash-can.png) no-repeat; |
| 110 | height: 48px; |
| 111 | width: 48px; |
| 112 | border: 1px solid #F00; |
| 113 | position: fixed; |
| 114 | right: 50px; |
| 115 | bottom: 50px; |
| 116 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
| 117 | border-radius: 10px; |
| 118 | } |
| 119 | .sc_trashHover{ |
| 120 | opacity: 1 !important; |
| 121 | box-shadow: 0px 0px 5px 1px #ff0000 !important; |
| 122 | } |
| 123 | .sc_back{ |
| 124 | margin: -6px 0px 0px !important; |
| 125 | float: right; |
| 126 | } |
| 127 | .sc_back:hover{ |
| 128 | color: #666666; |
| 129 | } |
| 130 | |
| 131 | .sc_editor_active{ |
| 132 | border-color: #666666!important; |
| 133 | } |
| 134 | |
| 135 | .sc_share_wrap{ |
| 136 | margin-left: -65px; |
| 137 | position: absolute; |
| 138 | top: 20%; |
| 139 | } |
| 140 | .sc_share_wrap li{ |
| 141 | padding: 7px; |
| 142 | background: white url(images/grey-bg.png) repeat-x bottom; |
| 143 | border: 1px solid #dfdfdf; |
| 144 | margin: 0px 0px 7px; |
| 145 | opacity: 0.6; |
| 146 | -webkit-border-radius: 5px; |
| 147 | -moz-border-radius: 5px; |
| 148 | border-radius: 5px; |
| 149 | cursor: pointer; |
| 150 | } |
| 151 | .sc_share_wrap a{ |
| 152 | background-repeat: no-repeat; |
| 153 | height: 32px; |
| 154 | width: 32px; |
| 155 | display: block; |
| 156 | } |
| 157 | .sc_donate a{ background-image: url(images/donate.png); } |
| 158 | .sc_share a{ background-image: url(images/share.png); } |
| 159 | .sc_share_iframe{ |
| 160 | background: #FFFFFF; |
| 161 | border: 1px solid #dfdfdf; |
| 162 | -webkit-border-radius: 5px; |
| 163 | -moz-border-radius: 5px; |
| 164 | border-radius: 5px; |
| 165 | -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); |
| 166 | -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); |
| 167 | box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); |
| 168 | } |
| 169 | |
| 170 | .sc_hidden_text{ |
| 171 | display: none; |
| 172 | } |
| 173 | .sc_credits{ |
| 174 | background: url(images/aw.png) no-repeat; |
| 175 | padding-left: 23px; |
| 176 | color: #8B8B8B; |
| 177 | margin-left: -5px; |
| 178 | font-size: 13px; |
| 179 | text-decoration: none; |
| 180 | } |
| 181 | .sc_edit_note{ |
| 182 | margin: 10px 0 20px 0; |
| 183 | font-size: 10px; |
| 184 | } |
| 185 | |
| 186 | /** Modal **/ |
| 187 | .sc_modal { |
| 188 | position: fixed; |
| 189 | z-index: 99999; |
| 190 | top: 20%; |
| 191 | left: 30%; |
| 192 | right: 30%; |
| 193 | bottom: 20%; |
| 194 | background: #FFF; |
| 195 | box-shadow: 0 8px 21px -8px #000; |
| 196 | border-radius: 5px; |
| 197 | padding: 20px; |
| 198 | outline: 1000px solid rgba(255, 255, 255, 0.86); |
| 199 | border: 3px solid #D8D8D8; |
| 200 | overflow: auto; |
| 201 | display: none; |
| 202 | } |
| 203 | .sc_modal_close { |
| 204 | color: #777; |
| 205 | font: 14px/100% arial, sans-serif; |
| 206 | position: absolute; |
| 207 | right: 5px; |
| 208 | text-decoration: none; |
| 209 | text-shadow: 0 1px 0 #fff; |
| 210 | padding: 10px; |
| 211 | cursor: pointer; |
| 212 | font-weight: bold; |
| 213 | top: 0; |
| 214 | } |
| 215 | .sc_modal_close:after { |
| 216 | content: 'X'; |
| 217 | } |
| 218 | |
| 219 | .smallText{ |
| 220 | font-size: 11px; |
| 221 | color: #333333; |
| 222 | font-weight: none; |
| 223 | } |
| 224 | .grey{ |
| 225 | color: #999; |
| 226 | } |
| 227 | |
| 228 | * html .clearfix{ |
| 229 | height: 1%; |
| 230 | overflow: visible; |
| 231 | } |
| 232 | |
| 233 | /* float clearing for IE7 */ |
| 234 | *+html .clearfix{ |
| 235 | min-height: 1%; |
| 236 | } |
| 237 | |
| 238 | /* float clearing for everyone else */ |
| 239 | .clearfix:after{ |
| 240 | clear: both; |
| 241 | content: "."; |
| 242 | display: block; |
| 243 | height: 0; |
| 244 | visibility: hidden; |
| 245 | font-size: 0; |
| 246 | } |