adminbar-style.css
10 years ago
chosen-sprite.png
11 years ago
chosen-sprite@2x.png
10 years ago
chosen.min.css
8 years ago
give-admin-rtl.css
8 years ago
give-admin-rtl.min.css
8 years ago
give-admin.css
8 years ago
give-admin.css.map
10 years ago
give-admin.min.css
8 years ago
give-dashicon.css
10 years ago
jquery-ui-fresh.css
8 years ago
jquery-ui-fresh.min.css
8 years ago
give-admin.css
3512 lines
| 1 | /*! |
| 2 | * Give Admin SCSS/CSS |
| 3 | * |
| 4 | * @description: The Main SCSS file for ADMIN styles which is compiled and minified via Gulp taskrunner |
| 5 | * @package: Give |
| 6 | * @subpackage: SCSS/Admin |
| 7 | * @copyright: Copyright (c) 2016, WordImpress |
| 8 | * @license: http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 9 | */ |
| 10 | /** |
| 11 | * Clearfix |
| 12 | */ |
| 13 | .give-clearfix { |
| 14 | *zoom: 1; } |
| 15 | .give-clearfix:before, .give-clearfix:after { |
| 16 | content: " "; |
| 17 | display: table; } |
| 18 | .give-clearfix:after { |
| 19 | clear: both; } |
| 20 | |
| 21 | /** |
| 22 | * Box Sizing |
| 23 | * https://github.com/timrogers/sass-box-sizing-mixin |
| 24 | */ |
| 25 | /** |
| 26 | * CSS3 Easing |
| 27 | */ |
| 28 | .give-item-label { |
| 29 | padding: .2em .4em .3em; |
| 30 | font-size: 11px; |
| 31 | line-height: 1; |
| 32 | color: #fff; |
| 33 | text-align: center; |
| 34 | white-space: nowrap; |
| 35 | vertical-align: baseline; |
| 36 | border-radius: .25em; } |
| 37 | .give-item-label:hover { |
| 38 | color: #fff; |
| 39 | text-decoration: none; } |
| 40 | |
| 41 | .give-item-label-gray, #give-payments-filter .give-payment-id { |
| 42 | background-color: #929292; } |
| 43 | |
| 44 | .give-item-label-orange { |
| 45 | background-color: #ffba00; } |
| 46 | |
| 47 | .give-item-label { |
| 48 | padding: .2em .4em .3em; |
| 49 | font-size: 11px; |
| 50 | line-height: 1; |
| 51 | color: #fff; |
| 52 | text-align: center; |
| 53 | white-space: nowrap; |
| 54 | vertical-align: baseline; |
| 55 | border-radius: .25em; } |
| 56 | .give-item-label:hover { |
| 57 | color: #fff; |
| 58 | text-decoration: none; } |
| 59 | |
| 60 | /** |
| 61 | * Give CSS Variables |
| 62 | */ |
| 63 | /*! Hint.css - v2.5.0 - 2017-04-23 |
| 64 | * http://kushagragour.in/lab/hint/ |
| 65 | * Copyright (c) 2017 Kushagra Gour */ |
| 66 | [class*=hint--] { |
| 67 | position: relative; |
| 68 | display: inline-block; } |
| 69 | |
| 70 | [class*=hint--]:after, [class*=hint--]:before { |
| 71 | position: absolute; |
| 72 | -webkit-transform: translate3d(0, 0, 0); |
| 73 | -moz-transform: translate3d(0, 0, 0); |
| 74 | transform: translate3d(0, 0, 0); |
| 75 | visibility: hidden; |
| 76 | opacity: 0; |
| 77 | z-index: 1000000; |
| 78 | pointer-events: none; |
| 79 | -webkit-transition: .3s ease; |
| 80 | -moz-transition: .3s ease; |
| 81 | transition: .3s ease; |
| 82 | -webkit-transition-delay: 0s; |
| 83 | -moz-transition-delay: 0s; |
| 84 | transition-delay: 0s; } |
| 85 | |
| 86 | [class*=hint--]:hover:after, [class*=hint--]:hover:before { |
| 87 | visibility: visible; |
| 88 | opacity: 1; |
| 89 | -webkit-transition-delay: .1s; |
| 90 | -moz-transition-delay: .1s; |
| 91 | transition-delay: .1s; } |
| 92 | |
| 93 | [class*=hint--]:before { |
| 94 | content: ''; |
| 95 | position: absolute; |
| 96 | background: 0 0; |
| 97 | border: 6px solid transparent; |
| 98 | z-index: 1000001; } |
| 99 | |
| 100 | [class*=hint--]:after { |
| 101 | background: #383838; |
| 102 | color: #fff; |
| 103 | padding: 8px 10px; |
| 104 | font-size: 12px; |
| 105 | font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; |
| 106 | line-height: 12px; |
| 107 | white-space: nowrap; |
| 108 | text-shadow: 0 -1px 0 #000; |
| 109 | box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3); } |
| 110 | |
| 111 | [class*=hint--][aria-label]:after { |
| 112 | content: attr(aria-label); } |
| 113 | |
| 114 | [class*=hint--][data-hint]:after { |
| 115 | content: attr(data-hint); } |
| 116 | |
| 117 | [aria-label='']:after, [aria-label='']:before, [data-hint='']:after, [data-hint='']:before { |
| 118 | display: none !important; } |
| 119 | |
| 120 | .hint--top-left:before, .hint--top-right:before, .hint--top:before { |
| 121 | border-top-color: #383838; } |
| 122 | |
| 123 | .hint--bottom-left:before, .hint--bottom-right:before, .hint--bottom:before { |
| 124 | border-bottom-color: #383838; } |
| 125 | |
| 126 | .hint--top:after, .hint--top:before { |
| 127 | bottom: 100%; |
| 128 | left: 50%; } |
| 129 | |
| 130 | .hint--top:before { |
| 131 | margin-bottom: -11px; |
| 132 | left: calc(50% - 6px); } |
| 133 | |
| 134 | .hint--top:after { |
| 135 | -webkit-transform: translateX(-50%); |
| 136 | -moz-transform: translateX(-50%); |
| 137 | transform: translateX(-50%); } |
| 138 | |
| 139 | .hint--top:hover:before { |
| 140 | -webkit-transform: translateY(-8px); |
| 141 | -moz-transform: translateY(-8px); |
| 142 | transform: translateY(-8px); } |
| 143 | |
| 144 | .hint--top:hover:after { |
| 145 | -webkit-transform: translateX(-50%) translateY(-8px); |
| 146 | -moz-transform: translateX(-50%) translateY(-8px); |
| 147 | transform: translateX(-50%) translateY(-8px); } |
| 148 | |
| 149 | .hint--bottom:after, .hint--bottom:before { |
| 150 | top: 100%; |
| 151 | left: 50%; } |
| 152 | |
| 153 | .hint--bottom:before { |
| 154 | margin-top: -11px; |
| 155 | left: calc(50% - 6px); } |
| 156 | |
| 157 | .hint--bottom:after { |
| 158 | -webkit-transform: translateX(-50%); |
| 159 | -moz-transform: translateX(-50%); |
| 160 | transform: translateX(-50%); } |
| 161 | |
| 162 | .hint--bottom:hover:before { |
| 163 | -webkit-transform: translateY(8px); |
| 164 | -moz-transform: translateY(8px); |
| 165 | transform: translateY(8px); } |
| 166 | |
| 167 | .hint--bottom:hover:after { |
| 168 | -webkit-transform: translateX(-50%) translateY(8px); |
| 169 | -moz-transform: translateX(-50%) translateY(8px); |
| 170 | transform: translateX(-50%) translateY(8px); } |
| 171 | |
| 172 | .hint--right:before { |
| 173 | border-right-color: #383838; |
| 174 | margin-left: -11px; |
| 175 | margin-bottom: -6px; } |
| 176 | |
| 177 | .hint--right:after { |
| 178 | margin-bottom: -14px; } |
| 179 | |
| 180 | .hint--right:after, .hint--right:before { |
| 181 | left: 100%; |
| 182 | bottom: 50%; } |
| 183 | |
| 184 | .hint--right:hover:after, .hint--right:hover:before { |
| 185 | -webkit-transform: translateX(8px); |
| 186 | -moz-transform: translateX(8px); |
| 187 | transform: translateX(8px); } |
| 188 | |
| 189 | .hint--left:before { |
| 190 | border-left-color: #383838; |
| 191 | margin-right: -11px; |
| 192 | margin-bottom: -6px; } |
| 193 | |
| 194 | .hint--left:after { |
| 195 | margin-bottom: -14px; } |
| 196 | |
| 197 | .hint--left:after, .hint--left:before { |
| 198 | right: 100%; |
| 199 | bottom: 50%; } |
| 200 | |
| 201 | .hint--left:hover:after, .hint--left:hover:before { |
| 202 | -webkit-transform: translateX(-8px); |
| 203 | -moz-transform: translateX(-8px); |
| 204 | transform: translateX(-8px); } |
| 205 | |
| 206 | .hint--top-left:after, .hint--top-left:before { |
| 207 | bottom: 100%; |
| 208 | left: 50%; } |
| 209 | |
| 210 | .hint--top-left:before { |
| 211 | margin-bottom: -11px; |
| 212 | left: calc(50% - 6px); } |
| 213 | |
| 214 | .hint--top-left:after { |
| 215 | -webkit-transform: translateX(-100%); |
| 216 | -moz-transform: translateX(-100%); |
| 217 | transform: translateX(-100%); |
| 218 | margin-left: 12px; } |
| 219 | |
| 220 | .hint--top-left:hover:before { |
| 221 | -webkit-transform: translateY(-8px); |
| 222 | -moz-transform: translateY(-8px); |
| 223 | transform: translateY(-8px); } |
| 224 | |
| 225 | .hint--top-left:hover:after { |
| 226 | -webkit-transform: translateX(-100%) translateY(-8px); |
| 227 | -moz-transform: translateX(-100%) translateY(-8px); |
| 228 | transform: translateX(-100%) translateY(-8px); } |
| 229 | |
| 230 | .hint--top-right:after, .hint--top-right:before { |
| 231 | bottom: 100%; |
| 232 | left: 50%; } |
| 233 | |
| 234 | .hint--top-right:before { |
| 235 | margin-bottom: -11px; |
| 236 | left: calc(50% - 6px); } |
| 237 | |
| 238 | .hint--top-right:after { |
| 239 | -webkit-transform: translateX(0); |
| 240 | -moz-transform: translateX(0); |
| 241 | transform: translateX(0); |
| 242 | margin-left: -12px; } |
| 243 | |
| 244 | .hint--top-right:hover:after, .hint--top-right:hover:before { |
| 245 | -webkit-transform: translateY(-8px); |
| 246 | -moz-transform: translateY(-8px); |
| 247 | transform: translateY(-8px); } |
| 248 | |
| 249 | .hint--bottom-left:after, .hint--bottom-left:before { |
| 250 | top: 100%; |
| 251 | left: 50%; } |
| 252 | |
| 253 | .hint--bottom-left:before { |
| 254 | margin-top: -11px; |
| 255 | left: calc(50% - 6px); } |
| 256 | |
| 257 | .hint--bottom-left:after { |
| 258 | -webkit-transform: translateX(-100%); |
| 259 | -moz-transform: translateX(-100%); |
| 260 | transform: translateX(-100%); |
| 261 | margin-left: 12px; } |
| 262 | |
| 263 | .hint--bottom-left:hover:before { |
| 264 | -webkit-transform: translateY(8px); |
| 265 | -moz-transform: translateY(8px); |
| 266 | transform: translateY(8px); } |
| 267 | |
| 268 | .hint--bottom-left:hover:after { |
| 269 | -webkit-transform: translateX(-100%) translateY(8px); |
| 270 | -moz-transform: translateX(-100%) translateY(8px); |
| 271 | transform: translateX(-100%) translateY(8px); } |
| 272 | |
| 273 | .hint--bottom-right:after, .hint--bottom-right:before { |
| 274 | top: 100%; |
| 275 | left: 50%; } |
| 276 | |
| 277 | .hint--bottom-right:before { |
| 278 | margin-top: -11px; |
| 279 | left: calc(50% - 6px); } |
| 280 | |
| 281 | .hint--bottom-right:after { |
| 282 | -webkit-transform: translateX(0); |
| 283 | -moz-transform: translateX(0); |
| 284 | transform: translateX(0); |
| 285 | margin-left: -12px; } |
| 286 | |
| 287 | .hint--bottom-right:hover:after, .hint--bottom-right:hover:before { |
| 288 | -webkit-transform: translateY(8px); |
| 289 | -moz-transform: translateY(8px); |
| 290 | transform: translateY(8px); } |
| 291 | |
| 292 | .hint--large:after, .hint--medium:after, .hint--small:after { |
| 293 | white-space: normal; |
| 294 | line-height: 1.4em; |
| 295 | word-wrap: break-word; } |
| 296 | |
| 297 | .hint--small:after { |
| 298 | width: 80px; } |
| 299 | |
| 300 | .hint--medium:after { |
| 301 | width: 150px; } |
| 302 | |
| 303 | .hint--large:after { |
| 304 | width: 300px; } |
| 305 | |
| 306 | .hint--error:after { |
| 307 | background-color: #b34e4d; |
| 308 | text-shadow: 0 -1px 0 #592726; } |
| 309 | |
| 310 | .hint--error.hint--top-left:before, .hint--error.hint--top-right:before, .hint--error.hint--top:before { |
| 311 | border-top-color: #b34e4d; } |
| 312 | |
| 313 | .hint--error.hint--bottom-left:before, .hint--error.hint--bottom-right:before, .hint--error.hint--bottom:before { |
| 314 | border-bottom-color: #b34e4d; } |
| 315 | |
| 316 | .hint--error.hint--left:before { |
| 317 | border-left-color: #b34e4d; } |
| 318 | |
| 319 | .hint--error.hint--right:before { |
| 320 | border-right-color: #b34e4d; } |
| 321 | |
| 322 | .hint--warning:after { |
| 323 | background-color: #c09854; |
| 324 | text-shadow: 0 -1px 0 #6c5328; } |
| 325 | |
| 326 | .hint--warning.hint--top-left:before, .hint--warning.hint--top-right:before, .hint--warning.hint--top:before { |
| 327 | border-top-color: #c09854; } |
| 328 | |
| 329 | .hint--warning.hint--bottom-left:before, .hint--warning.hint--bottom-right:before, .hint--warning.hint--bottom:before { |
| 330 | border-bottom-color: #c09854; } |
| 331 | |
| 332 | .hint--warning.hint--left:before { |
| 333 | border-left-color: #c09854; } |
| 334 | |
| 335 | .hint--warning.hint--right:before { |
| 336 | border-right-color: #c09854; } |
| 337 | |
| 338 | .hint--info:after { |
| 339 | background-color: #3986ac; |
| 340 | text-shadow: 0 -1px 0 #1a3c4d; } |
| 341 | |
| 342 | .hint--info.hint--top-left:before, .hint--info.hint--top-right:before, .hint--info.hint--top:before { |
| 343 | border-top-color: #3986ac; } |
| 344 | |
| 345 | .hint--info.hint--bottom-left:before, .hint--info.hint--bottom-right:before, .hint--info.hint--bottom:before { |
| 346 | border-bottom-color: #3986ac; } |
| 347 | |
| 348 | .hint--info.hint--left:before { |
| 349 | border-left-color: #3986ac; } |
| 350 | |
| 351 | .hint--info.hint--right:before { |
| 352 | border-right-color: #3986ac; } |
| 353 | |
| 354 | .hint--success:after { |
| 355 | background-color: #458746; |
| 356 | text-shadow: 0 -1px 0 #1a321a; } |
| 357 | |
| 358 | .hint--success.hint--top-left:before, .hint--success.hint--top-right:before, .hint--success.hint--top:before { |
| 359 | border-top-color: #458746; } |
| 360 | |
| 361 | .hint--success.hint--bottom-left:before, .hint--success.hint--bottom-right:before, .hint--success.hint--bottom:before { |
| 362 | border-bottom-color: #458746; } |
| 363 | |
| 364 | .hint--success.hint--left:before { |
| 365 | border-left-color: #458746; } |
| 366 | |
| 367 | .hint--success.hint--right:before { |
| 368 | border-right-color: #458746; } |
| 369 | |
| 370 | .hint--always:after, .hint--always:before { |
| 371 | opacity: 1; |
| 372 | visibility: visible; } |
| 373 | |
| 374 | .hint--always.hint--top:before { |
| 375 | -webkit-transform: translateY(-8px); |
| 376 | -moz-transform: translateY(-8px); |
| 377 | transform: translateY(-8px); } |
| 378 | |
| 379 | .hint--always.hint--top:after { |
| 380 | -webkit-transform: translateX(-50%) translateY(-8px); |
| 381 | -moz-transform: translateX(-50%) translateY(-8px); |
| 382 | transform: translateX(-50%) translateY(-8px); } |
| 383 | |
| 384 | .hint--always.hint--top-left:before { |
| 385 | -webkit-transform: translateY(-8px); |
| 386 | -moz-transform: translateY(-8px); |
| 387 | transform: translateY(-8px); } |
| 388 | |
| 389 | .hint--always.hint--top-left:after { |
| 390 | -webkit-transform: translateX(-100%) translateY(-8px); |
| 391 | -moz-transform: translateX(-100%) translateY(-8px); |
| 392 | transform: translateX(-100%) translateY(-8px); } |
| 393 | |
| 394 | .hint--always.hint--top-right:after, .hint--always.hint--top-right:before { |
| 395 | -webkit-transform: translateY(-8px); |
| 396 | -moz-transform: translateY(-8px); |
| 397 | transform: translateY(-8px); } |
| 398 | |
| 399 | .hint--always.hint--bottom:before { |
| 400 | -webkit-transform: translateY(8px); |
| 401 | -moz-transform: translateY(8px); |
| 402 | transform: translateY(8px); } |
| 403 | |
| 404 | .hint--always.hint--bottom:after { |
| 405 | -webkit-transform: translateX(-50%) translateY(8px); |
| 406 | -moz-transform: translateX(-50%) translateY(8px); |
| 407 | transform: translateX(-50%) translateY(8px); } |
| 408 | |
| 409 | .hint--always.hint--bottom-left:before { |
| 410 | -webkit-transform: translateY(8px); |
| 411 | -moz-transform: translateY(8px); |
| 412 | transform: translateY(8px); } |
| 413 | |
| 414 | .hint--always.hint--bottom-left:after { |
| 415 | -webkit-transform: translateX(-100%) translateY(8px); |
| 416 | -moz-transform: translateX(-100%) translateY(8px); |
| 417 | transform: translateX(-100%) translateY(8px); } |
| 418 | |
| 419 | .hint--always.hint--bottom-right:after, .hint--always.hint--bottom-right:before { |
| 420 | -webkit-transform: translateY(8px); |
| 421 | -moz-transform: translateY(8px); |
| 422 | transform: translateY(8px); } |
| 423 | |
| 424 | .hint--always.hint--left:after, .hint--always.hint--left:before { |
| 425 | -webkit-transform: translateX(-8px); |
| 426 | -moz-transform: translateX(-8px); |
| 427 | transform: translateX(-8px); } |
| 428 | |
| 429 | .hint--always.hint--right:after, .hint--always.hint--right:before { |
| 430 | -webkit-transform: translateX(8px); |
| 431 | -moz-transform: translateX(8px); |
| 432 | transform: translateX(8px); } |
| 433 | |
| 434 | .hint--rounded:after { |
| 435 | border-radius: 4px; } |
| 436 | |
| 437 | .hint--no-animate:after, .hint--no-animate:before { |
| 438 | -webkit-transition-duration: 0s; |
| 439 | -moz-transition-duration: 0s; |
| 440 | transition-duration: 0s; } |
| 441 | |
| 442 | .hint--bounce:after, .hint--bounce:before { |
| 443 | -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); |
| 444 | -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); |
| 445 | transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); } |
| 446 | |
| 447 | /*! |
| 448 | Chosen, a Select Box Enhancer for jQuery and Prototype |
| 449 | by Patrick Filler for Harvest, http://getharvest.com |
| 450 | |
| 451 | Version 1.8.3 |
| 452 | Full source at https://github.com/harvesthq/chosen |
| 453 | Copyright (c) 2011-2018 Harvest http://getharvest.com |
| 454 | |
| 455 | MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md |
| 456 | This file is generated by `grunt build`, do not edit it by hand. |
| 457 | */ |
| 458 | .chosen-container { |
| 459 | position: relative; |
| 460 | display: inline-block; |
| 461 | vertical-align: middle; |
| 462 | font-size: 13px; |
| 463 | -webkit-user-select: none; |
| 464 | -moz-user-select: none; |
| 465 | -ms-user-select: none; |
| 466 | user-select: none; } |
| 467 | |
| 468 | .chosen-container * { |
| 469 | -webkit-box-sizing: border-box; |
| 470 | box-sizing: border-box; } |
| 471 | |
| 472 | .chosen-container .chosen-drop { |
| 473 | position: absolute; |
| 474 | top: 100%; |
| 475 | z-index: 1010; |
| 476 | width: 100%; |
| 477 | border: 1px solid #aaa; |
| 478 | border-top: 0; |
| 479 | background: #fff; |
| 480 | -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); |
| 481 | box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); |
| 482 | display: none; } |
| 483 | |
| 484 | .chosen-container.chosen-with-drop .chosen-drop { |
| 485 | display: block; } |
| 486 | |
| 487 | .chosen-container a { |
| 488 | cursor: pointer; } |
| 489 | |
| 490 | .chosen-container .chosen-single .group-name, .chosen-container .search-choice .group-name { |
| 491 | margin-right: 4px; |
| 492 | overflow: hidden; |
| 493 | white-space: nowrap; |
| 494 | text-overflow: ellipsis; |
| 495 | font-weight: 400; |
| 496 | color: #999; } |
| 497 | |
| 498 | .chosen-container .chosen-single .group-name:after, .chosen-container .search-choice .group-name:after { |
| 499 | content: ":"; |
| 500 | padding-left: 2px; |
| 501 | vertical-align: top; } |
| 502 | |
| 503 | .chosen-container-single .chosen-single { |
| 504 | position: relative; |
| 505 | display: block; |
| 506 | overflow: hidden; |
| 507 | padding: 0 0 0 8px; |
| 508 | height: 25px; |
| 509 | border: 1px solid #aaa; |
| 510 | border-radius: 5px; |
| 511 | background-color: #fff; |
| 512 | background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4)); |
| 513 | background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%); |
| 514 | background-clip: padding-box; |
| 515 | -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1); |
| 516 | box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1); |
| 517 | color: #444; |
| 518 | text-decoration: none; |
| 519 | white-space: nowrap; |
| 520 | line-height: 24px; } |
| 521 | |
| 522 | .chosen-container-single .chosen-single input[type=text] { |
| 523 | cursor: pointer; |
| 524 | opacity: 0; |
| 525 | position: absolute; } |
| 526 | |
| 527 | .chosen-container-single .chosen-default { |
| 528 | color: #999; } |
| 529 | |
| 530 | .chosen-container-single .chosen-single span { |
| 531 | display: block; |
| 532 | overflow: hidden; |
| 533 | margin-right: 26px; |
| 534 | text-overflow: ellipsis; |
| 535 | white-space: nowrap; } |
| 536 | |
| 537 | .chosen-container-single .chosen-single-with-deselect span { |
| 538 | margin-right: 38px; } |
| 539 | |
| 540 | .chosen-container-single .chosen-single abbr { |
| 541 | position: absolute; |
| 542 | top: 6px; |
| 543 | right: 26px; |
| 544 | display: block; |
| 545 | width: 12px; |
| 546 | height: 12px; |
| 547 | background: url(chosen-sprite.png) -42px 1px no-repeat; |
| 548 | font-size: 1px; } |
| 549 | |
| 550 | .chosen-container-single .chosen-single abbr:hover { |
| 551 | background-position: -42px -10px; } |
| 552 | |
| 553 | .chosen-container-single.chosen-disabled .chosen-single abbr:hover { |
| 554 | background-position: -42px -10px; } |
| 555 | |
| 556 | .chosen-container-single .chosen-single div { |
| 557 | position: absolute; |
| 558 | top: 0; |
| 559 | right: 0; |
| 560 | display: block; |
| 561 | width: 18px; |
| 562 | height: 100%; } |
| 563 | |
| 564 | .chosen-container-single .chosen-single div b { |
| 565 | display: block; |
| 566 | width: 100%; |
| 567 | height: 100%; |
| 568 | background: url(chosen-sprite.png) no-repeat 0 2px; } |
| 569 | |
| 570 | .chosen-container-single .chosen-search { |
| 571 | position: relative; |
| 572 | z-index: 1010; |
| 573 | margin: 0; |
| 574 | padding: 3px 4px; |
| 575 | white-space: nowrap; } |
| 576 | |
| 577 | .chosen-container-single .chosen-search input[type=text] { |
| 578 | margin: 1px 0; |
| 579 | padding: 4px 20px 4px 5px; |
| 580 | width: 100%; |
| 581 | height: auto; |
| 582 | outline: 0; |
| 583 | border: 1px solid #aaa; |
| 584 | background: url(chosen-sprite.png) no-repeat 100% -20px; |
| 585 | font-size: 1em; |
| 586 | font-family: sans-serif; |
| 587 | line-height: normal; |
| 588 | border-radius: 0; } |
| 589 | |
| 590 | .chosen-container-single .chosen-drop { |
| 591 | margin-top: -1px; |
| 592 | border-radius: 0 0 4px 4px; |
| 593 | background-clip: padding-box; } |
| 594 | |
| 595 | .chosen-container-single.chosen-container-single-nosearch .chosen-search { |
| 596 | position: absolute; |
| 597 | clip: rect(0, 0, 0, 0); } |
| 598 | |
| 599 | .chosen-container .chosen-results { |
| 600 | color: #444; |
| 601 | position: relative; |
| 602 | overflow-x: hidden; |
| 603 | overflow-y: auto; |
| 604 | margin: 0 4px 4px 0; |
| 605 | padding: 0 0 0 4px; |
| 606 | max-height: 240px; |
| 607 | -webkit-overflow-scrolling: touch; } |
| 608 | |
| 609 | .chosen-container .chosen-results li { |
| 610 | display: none; |
| 611 | margin: 0; |
| 612 | padding: 5px 6px; |
| 613 | list-style: none; |
| 614 | line-height: 15px; |
| 615 | word-wrap: break-word; |
| 616 | -webkit-touch-callout: none; } |
| 617 | |
| 618 | .chosen-container .chosen-results li.active-result { |
| 619 | display: list-item; |
| 620 | cursor: pointer; } |
| 621 | |
| 622 | .chosen-container .chosen-results li.disabled-result { |
| 623 | display: list-item; |
| 624 | color: #ccc; |
| 625 | cursor: default; } |
| 626 | |
| 627 | .chosen-container .chosen-results li.highlighted { |
| 628 | background-color: #3875d7; |
| 629 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc)); |
| 630 | background-image: linear-gradient(#3875d7 20%, #2a62bc 90%); |
| 631 | color: #fff; } |
| 632 | |
| 633 | .chosen-container .chosen-results li.no-results { |
| 634 | color: #777; |
| 635 | display: list-item; |
| 636 | background: #f4f4f4; } |
| 637 | |
| 638 | .chosen-container .chosen-results li.group-result { |
| 639 | display: list-item; |
| 640 | font-weight: 700; |
| 641 | cursor: default; } |
| 642 | |
| 643 | .chosen-container .chosen-results li.group-option { |
| 644 | padding-left: 15px; } |
| 645 | |
| 646 | .chosen-container .chosen-results li em { |
| 647 | font-style: normal; |
| 648 | text-decoration: underline; } |
| 649 | |
| 650 | .chosen-container-multi .chosen-choices { |
| 651 | position: relative; |
| 652 | overflow: hidden; |
| 653 | margin: 0; |
| 654 | padding: 0 5px; |
| 655 | width: 100%; |
| 656 | height: auto; |
| 657 | border: 1px solid #aaa; |
| 658 | background-color: #fff; |
| 659 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff)); |
| 660 | background-image: linear-gradient(#eee 1%, #fff 15%); |
| 661 | cursor: text; } |
| 662 | |
| 663 | .chosen-container-multi .chosen-choices li { |
| 664 | float: left; |
| 665 | list-style: none; } |
| 666 | |
| 667 | .chosen-container-multi .chosen-choices li.search-field { |
| 668 | margin: 0; |
| 669 | padding: 0; |
| 670 | white-space: nowrap; } |
| 671 | |
| 672 | .chosen-container-multi .chosen-choices li.search-field input[type=text] { |
| 673 | margin: 1px 0; |
| 674 | padding: 0; |
| 675 | height: 25px; |
| 676 | outline: 0; |
| 677 | border: 0 !important; |
| 678 | background: 0 0 !important; |
| 679 | -webkit-box-shadow: none; |
| 680 | box-shadow: none; |
| 681 | color: #999; |
| 682 | font-size: 100%; |
| 683 | font-family: sans-serif; |
| 684 | line-height: normal; |
| 685 | border-radius: 0; |
| 686 | width: 25px; } |
| 687 | |
| 688 | .chosen-container-multi .chosen-choices li.search-choice { |
| 689 | position: relative; |
| 690 | margin: 3px 5px 3px 0; |
| 691 | padding: 3px 20px 3px 5px; |
| 692 | border: 1px solid #aaa; |
| 693 | max-width: 100%; |
| 694 | border-radius: 3px; |
| 695 | background-color: #eee; |
| 696 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee)); |
| 697 | background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); |
| 698 | background-size: 100% 19px; |
| 699 | background-repeat: repeat-x; |
| 700 | background-clip: padding-box; |
| 701 | -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); |
| 702 | box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); |
| 703 | color: #333; |
| 704 | line-height: 13px; |
| 705 | cursor: default; } |
| 706 | |
| 707 | .chosen-container-multi .chosen-choices li.search-choice span { |
| 708 | word-wrap: break-word; } |
| 709 | |
| 710 | .chosen-container-multi .chosen-choices li.search-choice .search-choice-close { |
| 711 | position: absolute; |
| 712 | top: 4px; |
| 713 | right: 3px; |
| 714 | display: block; |
| 715 | width: 12px; |
| 716 | height: 12px; |
| 717 | background: url(chosen-sprite.png) -42px 1px no-repeat; |
| 718 | font-size: 1px; } |
| 719 | |
| 720 | .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover { |
| 721 | background-position: -42px -10px; } |
| 722 | |
| 723 | .chosen-container-multi .chosen-choices li.search-choice-disabled { |
| 724 | padding-right: 5px; |
| 725 | border: 1px solid #ccc; |
| 726 | background-color: #e4e4e4; |
| 727 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee)); |
| 728 | background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); |
| 729 | color: #666; } |
| 730 | |
| 731 | .chosen-container-multi .chosen-choices li.search-choice-focus { |
| 732 | background: #d4d4d4; } |
| 733 | |
| 734 | .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close { |
| 735 | background-position: -42px -10px; } |
| 736 | |
| 737 | .chosen-container-multi .chosen-results { |
| 738 | margin: 0; |
| 739 | padding: 0; } |
| 740 | |
| 741 | .chosen-container-multi .chosen-drop .result-selected { |
| 742 | display: list-item; |
| 743 | color: #ccc; |
| 744 | cursor: default; } |
| 745 | |
| 746 | .chosen-container-active .chosen-single { |
| 747 | border: 1px solid #5897fb; |
| 748 | -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); |
| 749 | box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } |
| 750 | |
| 751 | .chosen-container-active.chosen-with-drop .chosen-single { |
| 752 | border: 1px solid #aaa; |
| 753 | border-bottom-right-radius: 0; |
| 754 | border-bottom-left-radius: 0; |
| 755 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff)); |
| 756 | background-image: linear-gradient(#eee 20%, #fff 80%); |
| 757 | -webkit-box-shadow: 0 1px 0 #fff inset; |
| 758 | box-shadow: 0 1px 0 #fff inset; } |
| 759 | |
| 760 | .chosen-container-active.chosen-with-drop .chosen-single div { |
| 761 | border-left: none; |
| 762 | background: 0 0; } |
| 763 | |
| 764 | .chosen-container-active.chosen-with-drop .chosen-single div b { |
| 765 | background-position: -18px 2px; } |
| 766 | |
| 767 | .chosen-container-active .chosen-choices { |
| 768 | border: 1px solid #5897fb; |
| 769 | -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); |
| 770 | box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } |
| 771 | |
| 772 | .chosen-container-active .chosen-choices li.search-field input[type=text] { |
| 773 | color: #222 !important; } |
| 774 | |
| 775 | .chosen-disabled { |
| 776 | opacity: 0.5 !important; |
| 777 | cursor: default; } |
| 778 | |
| 779 | .chosen-disabled .chosen-single { |
| 780 | cursor: default; } |
| 781 | |
| 782 | .chosen-disabled .chosen-choices .search-choice .search-choice-close { |
| 783 | cursor: default; } |
| 784 | |
| 785 | .chosen-rtl { |
| 786 | text-align: right; } |
| 787 | |
| 788 | .chosen-rtl .chosen-single { |
| 789 | overflow: visible; |
| 790 | padding: 0 8px 0 0; } |
| 791 | |
| 792 | .chosen-rtl .chosen-single span { |
| 793 | margin-right: 0; |
| 794 | margin-left: 26px; |
| 795 | direction: rtl; } |
| 796 | |
| 797 | .chosen-rtl .chosen-single-with-deselect span { |
| 798 | margin-left: 38px; } |
| 799 | |
| 800 | .chosen-rtl .chosen-single div { |
| 801 | right: auto; |
| 802 | left: 3px; } |
| 803 | |
| 804 | .chosen-rtl .chosen-single abbr { |
| 805 | right: auto; |
| 806 | left: 26px; } |
| 807 | |
| 808 | .chosen-rtl .chosen-choices li { |
| 809 | float: right; } |
| 810 | |
| 811 | .chosen-rtl .chosen-choices li.search-field input[type=text] { |
| 812 | direction: rtl; } |
| 813 | |
| 814 | .chosen-rtl .chosen-choices li.search-choice { |
| 815 | margin: 3px 5px 3px 0; |
| 816 | padding: 3px 5px 3px 19px; } |
| 817 | |
| 818 | .chosen-rtl .chosen-choices li.search-choice .search-choice-close { |
| 819 | right: auto; |
| 820 | left: 4px; } |
| 821 | |
| 822 | .chosen-rtl.chosen-container-single .chosen-results { |
| 823 | margin: 0 0 4px 4px; |
| 824 | padding: 0 4px 0 0; } |
| 825 | |
| 826 | .chosen-rtl .chosen-results li.group-option { |
| 827 | padding-right: 15px; |
| 828 | padding-left: 0; } |
| 829 | |
| 830 | .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div { |
| 831 | border-right: none; } |
| 832 | |
| 833 | .chosen-rtl .chosen-search input[type=text] { |
| 834 | padding: 4px 5px 4px 20px; |
| 835 | background: url(chosen-sprite.png) no-repeat -30px -20px; |
| 836 | direction: rtl; } |
| 837 | |
| 838 | .chosen-rtl.chosen-container-single .chosen-single div b { |
| 839 | background-position: 6px 2px; } |
| 840 | |
| 841 | .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b { |
| 842 | background-position: -12px 2px; } |
| 843 | |
| 844 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) { |
| 845 | .chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span, .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container-single .chosen-search input[type=text], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-rtl .chosen-search input[type=text] { |
| 846 | background-image: url(chosen-sprite@2x.png) !important; |
| 847 | background-size: 52px 37px !important; |
| 848 | background-repeat: no-repeat !important; } } |
| 849 | |
| 850 | /** |
| 851 | * Give Frontend Fonts SCSS |
| 852 | * |
| 853 | * Fonts are from icomoon and the src paths need to be relative to template directory. |
| 854 | * @package Give |
| 855 | * @subpackage SCSS/Frontend |
| 856 | * @copyright Copyright (c) 2016, WordImpress |
| 857 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 858 | */ |
| 859 | @font-face { |
| 860 | font-family: 'give-icomoon'; |
| 861 | src: url("../assets/fonts/icomoon.eot?kdnr3d"); |
| 862 | src: url("../assets/fonts/icomoon.eot?kdnr3d#iefix") format("embedded-opentype"), url("../assets/fonts/icomoon.woff?kdnr3d") format("woff"), url("../assets/fonts/icomoon.svg?kdnr3d#icomoon") format("svg"); |
| 863 | font-weight: normal; |
| 864 | font-style: normal; } |
| 865 | |
| 866 | [class^="give-icon-"], [class*=" give-icon-"] { |
| 867 | font-family: 'give-icomoon'; |
| 868 | speak: none; |
| 869 | font-style: normal; |
| 870 | font-weight: normal; |
| 871 | font-variant: normal; |
| 872 | text-transform: none; |
| 873 | line-height: 1; |
| 874 | -webkit-font-smoothing: antialiased; |
| 875 | -moz-osx-font-smoothing: grayscale; } |
| 876 | |
| 877 | .give-icon-lamp:before { |
| 878 | content: "\e603"; } |
| 879 | |
| 880 | .give-icon-heart:before { |
| 881 | content: "\e604"; } |
| 882 | |
| 883 | .give-icon-question:before { |
| 884 | content: "\e602"; } |
| 885 | |
| 886 | .give-icon-info:before { |
| 887 | content: "\e601"; } |
| 888 | |
| 889 | .give-icon-new-tab:before { |
| 890 | content: "\ea7e"; } |
| 891 | |
| 892 | .give-icon-alert:before { |
| 893 | content: "\f02d"; } |
| 894 | |
| 895 | .give-icon-help:before { |
| 896 | content: "\e606"; } |
| 897 | |
| 898 | .give-icon-spinner:before { |
| 899 | content: "\e605"; } |
| 900 | |
| 901 | .give-icon-spinner2:before { |
| 902 | content: "\e607"; } |
| 903 | |
| 904 | .give-icon-plus:before { |
| 905 | content: "\e040"; } |
| 906 | |
| 907 | .give-icon-minus:before { |
| 908 | content: "\e041"; } |
| 909 | |
| 910 | .give-icon-locked:before { |
| 911 | content: "\e600"; } |
| 912 | |
| 913 | .dashicons-give:before { |
| 914 | font-family: 'give-icomoon'; |
| 915 | speak: none; |
| 916 | font-style: normal; |
| 917 | font-weight: normal; |
| 918 | font-variant: normal; |
| 919 | text-transform: none; |
| 920 | line-height: 1; |
| 921 | -webkit-font-smoothing: antialiased; |
| 922 | -moz-osx-font-smoothing: grayscale; |
| 923 | content: "\e800"; } |
| 924 | |
| 925 | .fa-spin { |
| 926 | -webkit-animation: spin 1000ms infinite linear; |
| 927 | animation: spin 1000ms infinite linear; } |
| 928 | |
| 929 | @-webkit-keyframes spin { |
| 930 | 0% { |
| 931 | -webkit-transform: rotate(0deg); |
| 932 | transform: rotate(0deg); } |
| 933 | 100% { |
| 934 | -webkit-transform: rotate(359deg); |
| 935 | transform: rotate(359deg); } } |
| 936 | |
| 937 | @keyframes spin { |
| 938 | 0% { |
| 939 | -webkit-transform: rotate(0deg); |
| 940 | transform: rotate(0deg); } |
| 941 | 100% { |
| 942 | -webkit-transform: rotate(359deg); |
| 943 | transform: rotate(359deg); } } |
| 944 | |
| 945 | @font-face { |
| 946 | font-family: 'give-icomoon'; |
| 947 | font-weight: normal; |
| 948 | font-style: normal; } |
| 949 | |
| 950 | .give-metabox-tabs li .give-icon:before { |
| 951 | font-family: 'give-icomoon'; |
| 952 | src: url("../assets/fonts/icomoon.eot?kdnr3d"); |
| 953 | src: url("../assets/fonts/icomoon.eot?kdnr3d#iefix") format("embedded-opentype"), url("../assets/fonts/icomoon.woff?kdnr3d") format("woff"), url("../assets/fonts/icomoon.svg?kdnr3d#icomoon") format("svg"); |
| 954 | speak: none; |
| 955 | font-style: normal; |
| 956 | font-weight: normal; |
| 957 | font-variant: normal; |
| 958 | text-transform: none; |
| 959 | line-height: 1; |
| 960 | -webkit-font-smoothing: antialiased; |
| 961 | -moz-osx-font-smoothing: grayscale; |
| 962 | font-size: 12px; |
| 963 | vertical-align: top; |
| 964 | line-height: 20px; |
| 965 | margin: 0 5px 0 0; } |
| 966 | |
| 967 | .give-metabox-tabs li .give-icon-default:before { |
| 968 | content: "\e903"; } |
| 969 | |
| 970 | .give-metabox-tabs li .give-icon-heart:before { |
| 971 | content: "\e604"; } |
| 972 | |
| 973 | .give-metabox-tabs li .give-icon-target:before { |
| 974 | content: "\e901"; } |
| 975 | |
| 976 | .give-metabox-tabs li .give-icon-display:before { |
| 977 | content: "\e90c"; } |
| 978 | |
| 979 | .give-metabox-tabs li .give-icon-edit:before { |
| 980 | content: "\e902"; } |
| 981 | |
| 982 | .give-metabox-tabs li .give-icon-checklist:before { |
| 983 | position: relative; |
| 984 | top: 1px; |
| 985 | content: "\e900"; } |
| 986 | |
| 987 | .give-metabox-tabs li .give-icon-purse:before { |
| 988 | content: "\e8df"; } |
| 989 | |
| 990 | .give-metabox-tabs li .dashicons { |
| 991 | font-size: 14px; |
| 992 | width: 14px; |
| 993 | line-height: 20px; } |
| 994 | |
| 995 | .give-grid-row { |
| 996 | position: relative; |
| 997 | width: 100%; } |
| 998 | .give-grid-row [class^="give-grid-col"] { |
| 999 | float: left; |
| 1000 | margin: 0.5rem 1%; |
| 1001 | min-height: 0.125rem; } |
| 1002 | .give-grid-row::after { |
| 1003 | content: ""; |
| 1004 | display: table; |
| 1005 | clear: both; } |
| 1006 | |
| 1007 | .give-grid-col-1 { |
| 1008 | width: 6.33333%; } |
| 1009 | |
| 1010 | .give-grid-col-2 { |
| 1011 | width: 14.66667%; } |
| 1012 | |
| 1013 | .give-grid-col-3 { |
| 1014 | width: 23%; } |
| 1015 | |
| 1016 | .give-grid-col-4 { |
| 1017 | width: 31.33333%; } |
| 1018 | |
| 1019 | .give-grid-col-5 { |
| 1020 | width: 39.66667%; } |
| 1021 | |
| 1022 | .give-grid-col-6 { |
| 1023 | width: 48%; } |
| 1024 | |
| 1025 | .give-grid-col-7 { |
| 1026 | width: 56.33333%; } |
| 1027 | |
| 1028 | .give-grid-col-8 { |
| 1029 | width: 64.66667%; } |
| 1030 | |
| 1031 | .give-grid-col-9 { |
| 1032 | width: 73%; } |
| 1033 | |
| 1034 | .give-grid-col-10 { |
| 1035 | width: 81.33333%; } |
| 1036 | |
| 1037 | .give-grid-col-11 { |
| 1038 | width: 89.66667%; } |
| 1039 | |
| 1040 | .give-grid-col-12 { |
| 1041 | width: 98%; } |
| 1042 | |
| 1043 | @media only screen and (max-width: 33.75em) { |
| 1044 | .give-grid-row [class^="give-grid-col"] { |
| 1045 | width: 98%; } } |
| 1046 | |
| 1047 | /** |
| 1048 | * Give Forms SCSS |
| 1049 | * |
| 1050 | * @package Give |
| 1051 | * @subpackage SCSS/Admin |
| 1052 | * @copyright Copyright (c) 2016, WordImpress |
| 1053 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 1054 | */ |
| 1055 | /*------------------------------------ |
| 1056 | Forms CPT |
| 1057 | --------------------------------------*/ |
| 1058 | /* Hide conditional fields */ |
| 1059 | .cmb2-id--give-set-price, |
| 1060 | .cmb2-id--give-levels-header, |
| 1061 | .cmb2-id--give-levels-header + .cmb-repeat-group-wrap, |
| 1062 | .cmb2-id--give-display-style, |
| 1063 | .post-type-give_forms .tablenav #post-query-submit, |
| 1064 | .give-hidden, |
| 1065 | .cmb2-id--give-form-content, |
| 1066 | .cmb2-id--give-reveal-label, |
| 1067 | .cmb2-id--give-custom-amount-minimum, |
| 1068 | .cmb2-id--give-custom-amount-text, |
| 1069 | .cmb2-id--give-offline-checkout-notes, |
| 1070 | .cmb-type-levels-id, |
| 1071 | #_give_donation_levels_repeat .cmb-group-title, |
| 1072 | #_give_donation_levels_repeat .cmb-row > .cmb-remove-group-row, |
| 1073 | #_give_donation_levels_repeat .cmb-row > .handlediv { |
| 1074 | display: none; } |
| 1075 | |
| 1076 | /* Donation Levels Repeating Field */ |
| 1077 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list > .cmb-row .cmb2-radio-list label { |
| 1078 | font-size: 12px; } |
| 1079 | |
| 1080 | div.cmb-type-levels-repeater-header + div.cmb-repeat-group-wrap { |
| 1081 | padding: 0 !important; |
| 1082 | margin: 0 !important; |
| 1083 | min-width: 100%; |
| 1084 | max-width: 0; } |
| 1085 | |
| 1086 | .cmb2-id--give-levels-header { |
| 1087 | padding: 10px 12px 0 !important; |
| 1088 | margin: 0 !important; |
| 1089 | background: #F7F7F7; |
| 1090 | border-bottom: none !important; } |
| 1091 | .cmb2-id--give-levels-header .table-container { |
| 1092 | display: table; |
| 1093 | width: 100%; |
| 1094 | border-top: 1px solid #e9e9e9; |
| 1095 | border-bottom: 1px solid #e9e9e9; |
| 1096 | border-left: 1px solid #e9e9e9; } |
| 1097 | .cmb2-id--give-levels-header .table-container > .table-row { |
| 1098 | display: table-row; |
| 1099 | background: #FCFCFC; } |
| 1100 | .cmb2-id--give-levels-header .table-container > .table-row > .table-cell { |
| 1101 | display: table-cell; |
| 1102 | vertical-align: middle; |
| 1103 | padding: 10px 15px; |
| 1104 | border-right: 1px solid #e9e9e9; } |
| 1105 | .cmb2-id--give-levels-header .table-container > .table-row > .table-cell.col-id { |
| 1106 | display: none; } |
| 1107 | |
| 1108 | #_give_donation_levels_repeat { |
| 1109 | background: #F7F7F7; |
| 1110 | padding: 0 1px 20px 12px; |
| 1111 | box-sizing: border-box; } |
| 1112 | #_give_donation_levels_repeat .cmb-row, #_give_donation_levels_repeat .inside { |
| 1113 | margin: 0; } |
| 1114 | #_give_donation_levels_repeat .cmb-remove-field-row { |
| 1115 | margin: 3px 0 0; } |
| 1116 | #_give_donation_levels_repeat .cmb-remove-field-row .button { |
| 1117 | height: 25px; |
| 1118 | padding: 0 3px; } |
| 1119 | #_give_donation_levels_repeat .cmb-remove-field-row span.dashicons-no { |
| 1120 | line-height: 1.15em; } |
| 1121 | #_give_donation_levels_repeat .cmbhandle { |
| 1122 | display: none; } |
| 1123 | #_give_donation_levels_repeat .cmb-add-row { |
| 1124 | margin: 12px 0 0; } |
| 1125 | |
| 1126 | .give-time-field { |
| 1127 | width: 65px; } |
| 1128 | |
| 1129 | .give-money-field { |
| 1130 | width: 75px; |
| 1131 | margin-right: 0; |
| 1132 | margin-left: 0; } |
| 1133 | |
| 1134 | .give-money-symbol { |
| 1135 | border: 1px solid #DDD; |
| 1136 | background: #FCFCFC; |
| 1137 | margin: 0; |
| 1138 | font-size: 14px; |
| 1139 | padding: 5px 8px; } |
| 1140 | |
| 1141 | .give-money-symbol-before { |
| 1142 | border-right: 0; |
| 1143 | margin-right: -4px; } |
| 1144 | |
| 1145 | .give-money-symbol-after { |
| 1146 | margin-left: -5px; } |
| 1147 | |
| 1148 | .give_options_panel input[type="text"], |
| 1149 | .give_options_panel input[type="email"] { |
| 1150 | padding: 5px; |
| 1151 | width: 100%; } |
| 1152 | |
| 1153 | input.give-text_small, |
| 1154 | input.give-text-small { |
| 1155 | width: 100px !important; } |
| 1156 | |
| 1157 | input.give-text-medium, |
| 1158 | input.give-text_medium { |
| 1159 | width: 200px !important; } |
| 1160 | |
| 1161 | .give-underline { |
| 1162 | text-decoration: underline; } |
| 1163 | |
| 1164 | .postbox-container .cmb-row { |
| 1165 | margin: 0; } |
| 1166 | .postbox-container .cmb-row .cmb-th label { |
| 1167 | padding-left: 8px; } |
| 1168 | |
| 1169 | #give-bulk-donors div[id^="give-donor-"] { |
| 1170 | display: block; |
| 1171 | overflow: hidden; } |
| 1172 | |
| 1173 | @media only screen and (min-width: 851px) { |
| 1174 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list > .cmb-row { |
| 1175 | float: left; |
| 1176 | border-bottom: none; |
| 1177 | padding-right: 10px; } |
| 1178 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list > .cmb-row > .cmb-th { |
| 1179 | display: none; } |
| 1180 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list > .cmb-row > .cmb-td { |
| 1181 | float: left; |
| 1182 | width: 100%; } |
| 1183 | .cmb-type-give-default-radio-inline .cmb-td { |
| 1184 | margin-top: 5px; } } |
| 1185 | |
| 1186 | /* Smaller Resolution Desktops */ |
| 1187 | @media only screen and (min-width: 851px) and (max-width: 1201px) { |
| 1188 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list > .cmb-remove-field-row { |
| 1189 | width: 100%; |
| 1190 | padding-top: 0; } |
| 1191 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list > .cmb-type-text-money { |
| 1192 | width: 105px; } |
| 1193 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list input.cmb2-text-money { |
| 1194 | width: 65px; } |
| 1195 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list .give-multilevel-text-field { |
| 1196 | width: 160px; } |
| 1197 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list .cmb-type-radio-inline { |
| 1198 | margin-left: 20px; } |
| 1199 | .col-amount { |
| 1200 | width: 70px; } |
| 1201 | .col-text { |
| 1202 | width: 140px; } |
| 1203 | .col-sort { |
| 1204 | display: none !important; } |
| 1205 | .give-money-field { |
| 1206 | width: 55px; } } |
| 1207 | |
| 1208 | @media only screen and (min-width: 1201px) { |
| 1209 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list > .cmb-remove-field-row { |
| 1210 | float: right; } |
| 1211 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list > .cmb-row { |
| 1212 | padding-right: 20px; } |
| 1213 | #_give_donation_levels_repeat > .cmb-repeatable-grouping .cmb-field-list > .cmb-remove-field-row.cmb-row { |
| 1214 | padding-right: 0; } |
| 1215 | .col-amount { |
| 1216 | width: 93px; } |
| 1217 | .col-text { |
| 1218 | width: 195px; } |
| 1219 | .col-sort { |
| 1220 | width: 100px; } |
| 1221 | .give-multilevel-text-field { |
| 1222 | width: 205px; } } |
| 1223 | |
| 1224 | @media only screen and (max-width: 850px) { |
| 1225 | div.cmb-type-levels-repeater-header { |
| 1226 | display: none !important; } } |
| 1227 | |
| 1228 | /*Shortcode Input */ |
| 1229 | .shortcode-wrap { |
| 1230 | margin: 1px 14px 12px 11px; } |
| 1231 | .shortcode-wrap label { |
| 1232 | margin: 0 0 3px; |
| 1233 | display: block; |
| 1234 | cursor: default; } |
| 1235 | .shortcode-wrap .shortcode-input { |
| 1236 | margin: 0; |
| 1237 | width: 100%; } |
| 1238 | |
| 1239 | .cmb2-id--give-content-option, |
| 1240 | .cmb2-id--give-terms-option, |
| 1241 | .cmb2-id--give-offline-donation-enable-billing-fields-single, |
| 1242 | .cmb2-id--give-goal-option, |
| 1243 | .cmb2-id--give-customize-offline-donations { |
| 1244 | border-bottom: none !important; |
| 1245 | margin: 0 !important; } |
| 1246 | |
| 1247 | .cmb2-id--give-form-content, |
| 1248 | .cmb2-id--give-agree-label, |
| 1249 | .cmb2-id--give-offline-checkout-notes, |
| 1250 | .cmb2-id--give-set-goal, |
| 1251 | .cmb2-id--give-offline-donation-enable-billing-fields-single { |
| 1252 | border-top: 1px solid #e9e9e9 !important; } |
| 1253 | |
| 1254 | /*------------------------------------- |
| 1255 | Terms and Conditions Metabox |
| 1256 | ---------------------------------------*/ |
| 1257 | .cmb2-id--give-agree-label, |
| 1258 | .cmb2-id--give-agree-text { |
| 1259 | display: none; } |
| 1260 | |
| 1261 | /*------------------------------------- |
| 1262 | Dashboard Columns |
| 1263 | -------------------------------------*/ |
| 1264 | input.shortcode-input { |
| 1265 | width: 100%; } |
| 1266 | |
| 1267 | .price .give_price_range_low, |
| 1268 | .price .give_price_range_high, |
| 1269 | .price .give_price_range_sep { |
| 1270 | display: inline-block; } |
| 1271 | |
| 1272 | /*------------------------------------- |
| 1273 | ASIDE |
| 1274 | -------------------------------------*/ |
| 1275 | #side-sortables .cmb-th label:after { |
| 1276 | display: none; } |
| 1277 | |
| 1278 | #side-sortables .cmb2-id--give-show-register-form { |
| 1279 | padding: 10px 0 0 !important; } |
| 1280 | |
| 1281 | #side-sortables .cmb2-wrap > .cmb-field-list > .cmb-row { |
| 1282 | padding-top: 10px; } |
| 1283 | |
| 1284 | #side-sortables .cmb-row .cmb2-metabox-description { |
| 1285 | padding-bottom: 0; } |
| 1286 | |
| 1287 | .cmb2-metabox-description { |
| 1288 | font-size: 13px; |
| 1289 | line-height: 1.5; |
| 1290 | display: block; } |
| 1291 | |
| 1292 | .give-tooltip { |
| 1293 | margin: 0 3px; |
| 1294 | padding: 0; |
| 1295 | font-size: 14px; |
| 1296 | -moz-transition: 0.2s all linear; |
| 1297 | -o-transition: 0.2s all linear; |
| 1298 | transition: 0.2s all linear; |
| 1299 | color: rgba(51, 51, 51, 0.5); |
| 1300 | position: relative; |
| 1301 | top: 1px; } |
| 1302 | .give-tooltip:hover { |
| 1303 | color: #333; } |
| 1304 | |
| 1305 | #give-metabox-form-data .inside { |
| 1306 | margin: 0; |
| 1307 | padding: 0; } |
| 1308 | |
| 1309 | #give-metabox-form-data .give-metabox-panel-wrap { |
| 1310 | background: #fff; |
| 1311 | overflow: hidden; } |
| 1312 | |
| 1313 | #give-metabox-form-data .give_options_panel { |
| 1314 | display: none; |
| 1315 | padding-left: 170px; } |
| 1316 | #give-metabox-form-data .give_options_panel.active, |
| 1317 | .no-js #give-metabox-form-data .give_options_panel { |
| 1318 | display: block; } |
| 1319 | #give-metabox-form-data .give_options_panel .give-field-wrap { |
| 1320 | padding: 1em 20px 1em 162px; |
| 1321 | margin: 0; |
| 1322 | border-bottom: 1px solid #eee; } |
| 1323 | #give-metabox-form-data .give_options_panel .give-field-wrap > label, #give-metabox-form-data .give_options_panel .give-field-wrap > span.give-field-label { |
| 1324 | float: left; |
| 1325 | width: 135px; |
| 1326 | padding: 0; |
| 1327 | margin: 2px 0 0 -150px; |
| 1328 | line-height: 18px; |
| 1329 | font-size: 12px; |
| 1330 | font-weight: 400; } |
| 1331 | #give-metabox-form-data .give_options_panel .give-field-wrap .give-field-description { |
| 1332 | color: #aaaaaa; |
| 1333 | font-size: 12px; |
| 1334 | line-height: 18px; |
| 1335 | display: block; |
| 1336 | padding-top: 10px; |
| 1337 | font-style: italic; } |
| 1338 | #give-metabox-form-data .give_options_panel .give-field-wrap ul { |
| 1339 | margin: 0; } |
| 1340 | #give-metabox-form-data .give_options_panel .give-field-wrap .mce-container iframe, #give-metabox-form-data .give_options_panel .give-field-wrap textarea { |
| 1341 | min-height: 250px !important; } |
| 1342 | #give-metabox-form-data .give_options_panel .give-field-wrap .wp-editor-wrap { |
| 1343 | display: inline-block; |
| 1344 | width: 100%; } |
| 1345 | #give-metabox-form-data .give_options_panel .give-field-wrap:last-child { |
| 1346 | border-bottom: 0; } |
| 1347 | #give-metabox-form-data .give_options_panel textarea.give-field { |
| 1348 | width: 100%; } |
| 1349 | #give-metabox-form-data .give_options_panel .give-field-wrap:hover .give-field-row-actions { |
| 1350 | display: block; } |
| 1351 | #give-metabox-form-data .give_options_panel .give-field-wrap:last-child { |
| 1352 | border-bottom: 0; } |
| 1353 | #give-metabox-form-data .give_options_panel .give-inline-radio-fields li { |
| 1354 | display: inline-block; |
| 1355 | margin-right: 15px; } |
| 1356 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section { |
| 1357 | padding: 10px; |
| 1358 | background: #f5f5f5; } |
| 1359 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeatable-fields-section-wrapper { |
| 1360 | width: 100%; |
| 1361 | background-color: white; |
| 1362 | border-collapse: collapse; } |
| 1363 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row { |
| 1364 | border-bottom: 15px solid #f5f5f5; |
| 1365 | background-color: white; } |
| 1366 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-template { |
| 1367 | display: none; } |
| 1368 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row:last-child { |
| 1369 | border-bottom: 10px solid #f5f5f5; } |
| 1370 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-column { |
| 1371 | padding: 0; } |
| 1372 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-remove { |
| 1373 | float: right; |
| 1374 | width: 22px; |
| 1375 | height: 36px; |
| 1376 | padding: 0; |
| 1377 | display: block; |
| 1378 | text-align: center; |
| 1379 | line-height: 34px; |
| 1380 | font-size: 21px; |
| 1381 | font-weight: 300; |
| 1382 | cursor: pointer; } |
| 1383 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-remove:hover { |
| 1384 | background-color: red; |
| 1385 | color: white; |
| 1386 | width: 22px; |
| 1387 | height: 22px; |
| 1388 | border-radius: 30px; |
| 1389 | margin-top: 8px; |
| 1390 | line-height: 19px; } |
| 1391 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row-head { |
| 1392 | border-bottom: 1px solid #eee; |
| 1393 | cursor: move; } |
| 1394 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row-head h2 { |
| 1395 | text-align: left !important; } |
| 1396 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row.closed .toggle-indicator:before { |
| 1397 | content: "\f140"; } |
| 1398 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row .give-move .toggle-indicator:before { |
| 1399 | margin-left: 7px; } |
| 1400 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-add-repeater-field-section-row-wrap { |
| 1401 | background-color: #f5f5f5; } |
| 1402 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-add-repeater-field-section-row { |
| 1403 | margin: 5px 5px; } |
| 1404 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-field-wrap:last-child { |
| 1405 | border-bottom: 1px solid #eee; } |
| 1406 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-ui-placeholder-state-highlight { |
| 1407 | background-color: #68bb6c; } |
| 1408 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeater-field-name { |
| 1409 | border: 0 !important; |
| 1410 | padding: 0 !important; } |
| 1411 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeater-field-description { |
| 1412 | color: #aaaaaa; |
| 1413 | font-size: 12px; |
| 1414 | line-height: 18px; |
| 1415 | display: block; |
| 1416 | padding-bottom: 10px; |
| 1417 | font-style: italic; } |
| 1418 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .ui-sortable-helper { |
| 1419 | display: table !important; } |
| 1420 | #give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row.ui-sortable-helper { |
| 1421 | border-bottom: 0; } |
| 1422 | |
| 1423 | #_give_donation_levels_field .give-row:nth-of-type(2) .give-remove { |
| 1424 | display: none !important; } |
| 1425 | |
| 1426 | #give-metabox-form-data .give-metabox-tabs { |
| 1427 | margin: 0; |
| 1428 | max-width: 170px; |
| 1429 | float: left; |
| 1430 | line-height: 1em; |
| 1431 | padding: 0 0 10px; |
| 1432 | position: relative; |
| 1433 | background-color: #fafafa; |
| 1434 | border-right: 1px solid #eee; |
| 1435 | box-sizing: border-box; } |
| 1436 | #give-metabox-form-data .give-metabox-tabs:after { |
| 1437 | content: ""; |
| 1438 | display: block; |
| 1439 | width: 100%; |
| 1440 | height: 9999em; |
| 1441 | position: absolute; |
| 1442 | bottom: -9999em; |
| 1443 | left: 0; |
| 1444 | background-color: #fafafa; |
| 1445 | border-right: 1px solid #eee; } |
| 1446 | #give-metabox-form-data .give-metabox-tabs li { |
| 1447 | margin: 0; |
| 1448 | padding: 0; |
| 1449 | display: block; |
| 1450 | position: relative; } |
| 1451 | #give-metabox-form-data .give-metabox-tabs li a { |
| 1452 | margin: 0; |
| 1453 | padding: 10px; |
| 1454 | display: block; |
| 1455 | box-shadow: none; |
| 1456 | text-decoration: none; |
| 1457 | line-height: 20px !important; |
| 1458 | border-bottom: 1px solid #eee; |
| 1459 | overflow: hidden; } |
| 1460 | #give-metabox-form-data .give-metabox-tabs li a span.give-label { |
| 1461 | width: 122px; |
| 1462 | display: inline-block; } |
| 1463 | #give-metabox-form-data .give-metabox-tabs .give-metabox-sub-tabs li { |
| 1464 | background-color: #f1f1f1; } |
| 1465 | #give-metabox-form-data .give-metabox-tabs .give-metabox-sub-tabs li a { |
| 1466 | border-bottom-color: #e5e5e5; } |
| 1467 | #give-metabox-form-data .give-metabox-tabs li.active > a { |
| 1468 | color: #555; |
| 1469 | position: relative; |
| 1470 | background-color: #eee; } |
| 1471 | #give-metabox-form-data .give-metabox-tabs li.has-sub-fields.active > a { |
| 1472 | background-color: #ddd; } |
| 1473 | #give-metabox-form-data .give-metabox-tabs li.has-sub-fields:not(.active):hover ul.give-metabox-sub-tabs { |
| 1474 | display: block; |
| 1475 | position: absolute; |
| 1476 | bottom: 0; |
| 1477 | left: 166px; |
| 1478 | width: 170px; |
| 1479 | max-height: 250px; } |
| 1480 | |
| 1481 | @media only screen and (min-width: 851px) and (max-width: 1025px), (max-width: 550px) { |
| 1482 | #give-metabox-form-data ul.give-metabox-tabs { |
| 1483 | min-width: 40px; } |
| 1484 | #give-metabox-form-data ul.give-metabox-tabs li > a { |
| 1485 | text-align: center; } |
| 1486 | #give-metabox-form-data ul.give-metabox-tabs li > a:before { |
| 1487 | margin-right: 0; |
| 1488 | font-size: 15px; } |
| 1489 | #give-metabox-form-data ul.give-metabox-tabs li > a span.give-label { |
| 1490 | display: none; } |
| 1491 | #give-metabox-form-data ul.give-metabox-tabs li > a span.give-icon:before { |
| 1492 | margin: 0; } |
| 1493 | #give-metabox-form-data .give_options_panel { |
| 1494 | padding-left: 40px; } |
| 1495 | #give-metabox-form-data .give_options_panel .give-field-wrap { |
| 1496 | padding: 10px; } |
| 1497 | #give-metabox-form-data .give_options_panel .give-field-wrap span.give-field-label, #give-metabox-form-data .give_options_panel .give-field-wrap label { |
| 1498 | display: block; |
| 1499 | float: none; |
| 1500 | margin: 0 0 10px 0; |
| 1501 | font-size: 14px; |
| 1502 | width: 100%; } } |
| 1503 | |
| 1504 | #give-export-payments .give_forms_categories, |
| 1505 | #give-export-payments .give_forms_tags { |
| 1506 | min-width: 250px; |
| 1507 | margin: 0 0 10px 0; |
| 1508 | display: block; } |
| 1509 | #give-export-payments .give_forms_categories input, |
| 1510 | #give-export-payments .give_forms_tags input { |
| 1511 | color: #999; } |
| 1512 | |
| 1513 | #give-export-payments div.chosen-container:first-of-type { |
| 1514 | margin-top: 10px; } |
| 1515 | |
| 1516 | #give-export-payments div.chosen-container ul.chosen-choices { |
| 1517 | border: 1px solid #ddd; } |
| 1518 | #give-export-payments div.chosen-container ul.chosen-choices input.chosen-search-input { |
| 1519 | border: 1px solid #ddd; |
| 1520 | height: 20px; } |
| 1521 | |
| 1522 | #give-export-payments select { |
| 1523 | vertical-align: inherit; |
| 1524 | margin: 0; |
| 1525 | height: 26px; |
| 1526 | line-height: 26px; |
| 1527 | border: 1px solid #ddd; } |
| 1528 | |
| 1529 | /*------------------------------------- |
| 1530 | Chosen Overrides |
| 1531 | -------------------------------------*/ |
| 1532 | .chosen-container-single a.chosen-single { |
| 1533 | background: #FFF !important; } |
| 1534 | |
| 1535 | /*------------------------------------- |
| 1536 | Doc Links |
| 1537 | -------------------------------------*/ |
| 1538 | .give-docs-link { |
| 1539 | text-align: right; |
| 1540 | margin-right: 15px; } |
| 1541 | .give-docs-link a { |
| 1542 | color: #999; |
| 1543 | text-decoration: none; |
| 1544 | font-style: italic; } |
| 1545 | .give-docs-link a:hover { |
| 1546 | color: #0073aa; } |
| 1547 | .give-docs-link a span { |
| 1548 | font-style: normal; } |
| 1549 | |
| 1550 | /** |
| 1551 | * Give Add-ons SCSS |
| 1552 | * |
| 1553 | * @description Add-on Styles |
| 1554 | * @package Give |
| 1555 | * @subpackage SCSS/Admin |
| 1556 | * @copyright Copyright (c) 2016, WordImpress |
| 1557 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 1558 | */ |
| 1559 | .type-download { |
| 1560 | float: left; |
| 1561 | margin: 0 1em 1em 0 !important; |
| 1562 | padding: 0; |
| 1563 | vertical-align: top; |
| 1564 | width: 280px; |
| 1565 | text-decoration: none; |
| 1566 | color: inherit; |
| 1567 | border: 1px solid #ddd; |
| 1568 | display: block; |
| 1569 | min-height: 365px; |
| 1570 | overflow: hidden; |
| 1571 | background: #f5f5f5; |
| 1572 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 1573 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 1574 | -webkit-transition-property: border, background, color; |
| 1575 | transition-property: border, background, color; |
| 1576 | -webkit-transition-duration: .05s; |
| 1577 | transition-duration: .05s; |
| 1578 | -webkit-transition-timing-function: ease-in-out; |
| 1579 | transition-timing-function: ease-in-out; |
| 1580 | position: relative; } |
| 1581 | .type-download:hover { |
| 1582 | border: 1px solid #d1d1d1; } |
| 1583 | .type-download > .featured-img img { |
| 1584 | border-bottom: 1px solid #ddd; } |
| 1585 | .type-download .addon-content { |
| 1586 | *zoom: 1; |
| 1587 | padding: 15px 20px; } |
| 1588 | .type-download .addon-content:before, .type-download .addon-content:after { |
| 1589 | content: " "; |
| 1590 | display: table; } |
| 1591 | .type-download .addon-content:after { |
| 1592 | clear: both; } |
| 1593 | .type-download .addon-content .addon-heading { |
| 1594 | margin: 0 0 10px; } |
| 1595 | .type-download .addon-content .addon-heading a { |
| 1596 | outline: none; |
| 1597 | text-decoration: none; } |
| 1598 | .type-download .addon-footer-wrap { |
| 1599 | border-top: 1px solid #ddd; |
| 1600 | position: absolute; |
| 1601 | bottom: 2px; |
| 1602 | left: 0; |
| 1603 | width: 100%; |
| 1604 | background-color: #FFF; |
| 1605 | padding: 15px 20px; } |
| 1606 | |
| 1607 | .give-view-addons-all span.dashicons, .type-download span.dashicons { |
| 1608 | width: 16px; |
| 1609 | height: 16px; |
| 1610 | font-size: 14px; |
| 1611 | margin: 6px 0 0 0; } |
| 1612 | |
| 1613 | .give-view-addons-all span.dashicons { |
| 1614 | margin-left: 3px; } |
| 1615 | |
| 1616 | /** |
| 1617 | * Give Reports SCSS |
| 1618 | * |
| 1619 | * @description Payment History Styles |
| 1620 | * @package Give |
| 1621 | * @subpackage SCSS/Admin |
| 1622 | * @copyright Copyright (c) 2016, WordImpress |
| 1623 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 1624 | */ |
| 1625 | #give-dashboard-widgets-wrap .inside { |
| 1626 | padding-top: 0; |
| 1627 | padding-bottom: 0; |
| 1628 | /* counteract extra padding in Income Report graph */ } |
| 1629 | .give_forms_page_give-reports #give-dashboard-widgets-wrap .inside { |
| 1630 | padding-left: 0; } |
| 1631 | #give-dashboard-widgets-wrap .inside #give-graphs-filter { |
| 1632 | float: none; } |
| 1633 | |
| 1634 | #give-dashboard-widgets-wrap .postbox { |
| 1635 | margin-bottom: 10px; } |
| 1636 | |
| 1637 | #give-dashboard-widgets-wrap table.reports-table { |
| 1638 | clear: none; } |
| 1639 | |
| 1640 | #give-dashboard-widgets-wrap #give-date-range-options { |
| 1641 | float: left; } |
| 1642 | #give-dashboard-widgets-wrap #give-date-range-options > span { |
| 1643 | float: left; |
| 1644 | line-height: 30px; |
| 1645 | font-style: italic; |
| 1646 | padding: 0 5px 0 0; } |
| 1647 | |
| 1648 | #give-graphs-filter { |
| 1649 | float: right; } |
| 1650 | #give-graphs-filter .tablenav { |
| 1651 | margin: 0 0 0 17px; } |
| 1652 | #give-graphs-filter .tablenav .actions { |
| 1653 | padding: 0; } |
| 1654 | |
| 1655 | .give-graph .y1Axis { |
| 1656 | color: #66bb6a !important; } |
| 1657 | |
| 1658 | .give-graph .y2Axis { |
| 1659 | color: #546e7a !important; } |
| 1660 | |
| 1661 | body.give_forms_page_give-reports h1.nav-tab-wrapper, body.give_forms_page_give-reports h2.nav-tab-wrapper, body.give_forms_page_give-payment-history h1.nav-tab-wrapper, body.give_forms_page_give-payment-history h2.nav-tab-wrapper { |
| 1662 | margin-bottom: 10px; } |
| 1663 | |
| 1664 | body.give_forms_page_give-reports .actions, body.give_forms_page_give-payment-history .actions { |
| 1665 | padding-top: 0; } |
| 1666 | |
| 1667 | body.give_forms_page_give-reports .pagination-links, body.give_forms_page_give-payment-history .pagination-links { |
| 1668 | margin-left: 10px; } |
| 1669 | |
| 1670 | body.give_forms_page_give-reports p.donor-search, body.give_forms_page_give-payment-history p.donor-search { |
| 1671 | margin-right: 10px; } |
| 1672 | |
| 1673 | body.give_forms_page_give-reports .tablenav-right .tablenav-pages, body.give_forms_page_give-payment-history .tablenav-right .tablenav-pages { |
| 1674 | float: right; } |
| 1675 | |
| 1676 | body.give_forms_page_give-reports .tablenav-right #give-reports-view, body.give_forms_page_give-payment-history .tablenav-right #give-reports-view { |
| 1677 | margin-top: 0; } |
| 1678 | |
| 1679 | body.give_forms_page_give-reports .tablenav-right .actions, body.give_forms_page_give-payment-history .tablenav-right .actions { |
| 1680 | float: left; } |
| 1681 | |
| 1682 | body.give_forms_page_give-reports p.search-box, body.give_forms_page_give-payment-history p.search-box { |
| 1683 | float: left; } |
| 1684 | |
| 1685 | body.give_forms_page_give-reports .reports-table-nav.tablenav.top, body.give_forms_page_give-payment-history .reports-table-nav.tablenav.top { |
| 1686 | width: 100%; |
| 1687 | float: none; |
| 1688 | margin: 0 0 10px; } |
| 1689 | |
| 1690 | body.give_forms_page_give-reports .reports-forms-details-wrap.top, body.give_forms_page_give-payment-history .reports-forms-details-wrap.top { |
| 1691 | float: right; |
| 1692 | overflow: hidden; } |
| 1693 | body.give_forms_page_give-reports .reports-forms-details-wrap.top #give-reports-filter, body.give_forms_page_give-payment-history .reports-forms-details-wrap.top #give-reports-filter { |
| 1694 | float: left; } |
| 1695 | body.give_forms_page_give-reports .reports-forms-details-wrap.top > .actions, body.give_forms_page_give-payment-history .reports-forms-details-wrap.top > .actions { |
| 1696 | padding-right: 0; } |
| 1697 | |
| 1698 | body.give_forms_page_give-reports .tablenav.bottom, body.give_forms_page_give-payment-history .tablenav.bottom { |
| 1699 | margin-top: 10px; } |
| 1700 | |
| 1701 | body.give_forms_page_give-reports h2.reports-earnings-title, body.give_forms_page_give-payment-history h2.reports-earnings-title { |
| 1702 | margin: 7px 0 0; } |
| 1703 | |
| 1704 | body.give_forms_page_give-reports .reports-views-wrap, body.give_forms_page_give-payment-history .reports-views-wrap { |
| 1705 | padding: 3px 0 0; } |
| 1706 | |
| 1707 | body.give_forms_page_give-reports .wrap.give-reports-donors-wrap, body.give_forms_page_give-payment-history .wrap.give-reports-donors-wrap { |
| 1708 | margin-right: 0; |
| 1709 | margin-bottom: 10px; } |
| 1710 | |
| 1711 | body.give_forms_page_give-reports .widefat tbody td, body.give_forms_page_give-reports .widefat tbody th, body.give_forms_page_give-payment-history .widefat tbody td, body.give_forms_page_give-payment-history .widefat tbody th { |
| 1712 | padding-top: 12px; |
| 1713 | padding-bottom: 12px; } |
| 1714 | |
| 1715 | body.give_forms_page_give-reports table.export-options-table tbody td { |
| 1716 | padding: 20px 12px; |
| 1717 | vertical-align: top; } |
| 1718 | |
| 1719 | body.give_forms_page_give-reports table.export-options-table .give-export-form { |
| 1720 | position: relative; } |
| 1721 | body.give_forms_page_give-reports table.export-options-table .give-export-form .notice-wrap { |
| 1722 | background-color: transparent; |
| 1723 | padding: 12px 12px 4px; |
| 1724 | margin: 2px 0 -16px -11px; |
| 1725 | overflow: auto; } |
| 1726 | body.give_forms_page_give-reports table.export-options-table .give-export-form .notice-wrap .spinner { |
| 1727 | margin: -2px -12px 8px 0; } |
| 1728 | |
| 1729 | body.give_forms_page_give-reports table.export-options-table span#give-start-wrap input, body.give_forms_page_give-reports table.export-options-table span#give-end-wrap input { |
| 1730 | width: 100px; } |
| 1731 | |
| 1732 | #export-donor-options-wrap p { |
| 1733 | padding: 20px 0 0; |
| 1734 | margin: 0; |
| 1735 | font-weight: bold; } |
| 1736 | |
| 1737 | #export-donor-options-wrap ul { |
| 1738 | max-width: 900px; |
| 1739 | overflow: hidden; } |
| 1740 | #export-donor-options-wrap ul li { |
| 1741 | margin: 0; |
| 1742 | padding: 0 5px 5px 0; |
| 1743 | box-sizing: border-box; |
| 1744 | float: left; |
| 1745 | width: 33%; } |
| 1746 | |
| 1747 | #give-tools-recount-form .notice-wrap { |
| 1748 | position: relative; |
| 1749 | min-height: 25px; |
| 1750 | margin: 10px -12px -12px; |
| 1751 | background: #EFEFEF; |
| 1752 | padding: 10px 12px 12px; |
| 1753 | border-top: 1px solid #E5E5E5; } |
| 1754 | #give-tools-recount-form .notice-wrap .give-progress { |
| 1755 | position: absolute; |
| 1756 | top: 15px; } |
| 1757 | #give-tools-recount-form .notice-wrap .spinner { |
| 1758 | position: absolute; |
| 1759 | right: 14px; |
| 1760 | top: 13px; |
| 1761 | margin: 0; } |
| 1762 | #give-tools-recount-form .notice-wrap #give-batch-success { |
| 1763 | margin-bottom: 6px; } |
| 1764 | |
| 1765 | .recount-stats-controls form { |
| 1766 | display: inline; } |
| 1767 | |
| 1768 | .give-recount-stats-descriptions { |
| 1769 | margin: 8px 0 0; |
| 1770 | display: block; } |
| 1771 | .give-recount-stats-descriptions span { |
| 1772 | line-height: 24px; |
| 1773 | font-size: 13px; |
| 1774 | font-style: italic; |
| 1775 | font-weight: normal; |
| 1776 | color: #aaa; |
| 1777 | margin: 0; |
| 1778 | display: none; } |
| 1779 | |
| 1780 | .gateways-report-tablenav .actions.bulkactions { |
| 1781 | padding-right: 0; } |
| 1782 | |
| 1783 | table.give-table td { |
| 1784 | vertical-align: middle; } |
| 1785 | |
| 1786 | table.give-table td.row-title h3 { |
| 1787 | margin: 0 0 0.4em; |
| 1788 | font-size: 1.2em; } |
| 1789 | |
| 1790 | table.give-table td.row-title p { |
| 1791 | font-size: 13px; |
| 1792 | font-style: italic; |
| 1793 | font-weight: normal; |
| 1794 | color: #aaa; |
| 1795 | margin: 0; } |
| 1796 | |
| 1797 | #give-graphs-filter > .tablenav { |
| 1798 | height: auto; } |
| 1799 | |
| 1800 | #give-logs-filter .search-box { |
| 1801 | float: right; } |
| 1802 | |
| 1803 | #give-logs-filter .tablenav.top { |
| 1804 | float: left; |
| 1805 | clear: none; |
| 1806 | margin-top: 0; } |
| 1807 | |
| 1808 | /** |
| 1809 | * Give Admin Welcome SCSS |
| 1810 | * |
| 1811 | * @description Displays when user activates the plugin |
| 1812 | * @package Give |
| 1813 | * @subpackage SCSS/Admin |
| 1814 | * @copyright Copyright (c) 2016, WordImpress |
| 1815 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 1816 | */ |
| 1817 | .welcome-h1 { |
| 1818 | display: inline-block; |
| 1819 | margin-right: 15px !important; } |
| 1820 | |
| 1821 | .about-wrap h3 { |
| 1822 | margin: 1.5em 0 .6em; } |
| 1823 | |
| 1824 | .about-wrap img { |
| 1825 | border: none; } |
| 1826 | |
| 1827 | .give-badge { |
| 1828 | padding-top: 150px; |
| 1829 | height: 52px; |
| 1830 | width: 185px; |
| 1831 | color: #FFF; |
| 1832 | font-weight: bold; |
| 1833 | font-size: 14px; |
| 1834 | text-align: center; |
| 1835 | text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8); |
| 1836 | margin: 0 -5px; |
| 1837 | position: absolute; |
| 1838 | top: 0; |
| 1839 | right: 0; } |
| 1840 | |
| 1841 | .introduction { |
| 1842 | padding: 0 0 20px; |
| 1843 | margin: 0 0 20px; } |
| 1844 | |
| 1845 | .feature-section { |
| 1846 | margin-top: 40px; } |
| 1847 | .feature-section span.dashicons { |
| 1848 | width: 16px; |
| 1849 | height: 16px; |
| 1850 | font-size: 14px; |
| 1851 | margin: 6px 0 0 0; } |
| 1852 | .feature-section .feature-section-item { |
| 1853 | width: 48%; |
| 1854 | float: left; } |
| 1855 | .feature-section div.last-feature { |
| 1856 | margin-right: 0; |
| 1857 | margin-left: 4%; } |
| 1858 | |
| 1859 | [class^="dashboard_page_give-"] .about-text, [class*="dashboard_page_give-"] .about-text { |
| 1860 | min-height: 0; } |
| 1861 | |
| 1862 | .social-items-wrap { |
| 1863 | display: inline-block; } |
| 1864 | .social-items-wrap > div { |
| 1865 | display: inline-block; } |
| 1866 | .social-items-wrap .twitter-item-wrap { |
| 1867 | margin: 0 20px 10px 0; } |
| 1868 | |
| 1869 | .wp-person img { |
| 1870 | border-radius: 50%; } |
| 1871 | |
| 1872 | .wp-person a.web { |
| 1873 | margin: 17px 0 0; |
| 1874 | font-weight: bold; |
| 1875 | font-style: italic; } |
| 1876 | |
| 1877 | .newsletter-intro { |
| 1878 | font-size: 13px; |
| 1879 | font-style: italic; |
| 1880 | color: #777; } |
| 1881 | |
| 1882 | .give-newsletter-form-wrap { |
| 1883 | margin: 10px 0 20px -5px; |
| 1884 | max-width: 700px; } |
| 1885 | .give-newsletter-form-wrap td { |
| 1886 | padding: 3px; } |
| 1887 | .give-newsletter-form-wrap div.give-newsletter-confirmation { |
| 1888 | background: #fff; |
| 1889 | -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); |
| 1890 | box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); |
| 1891 | margin: 5px 10px 4px 5px; |
| 1892 | padding: 1px 12px; |
| 1893 | border-left: 4px solid #7ad03a; |
| 1894 | display: none; } |
| 1895 | .give-newsletter-form-wrap div.give-newsletter-confirmation > p { |
| 1896 | margin: 0.5em 0; |
| 1897 | padding: 2px; } |
| 1898 | |
| 1899 | /** |
| 1900 | * Give Logs SCSS |
| 1901 | * |
| 1902 | * @description Payment History Styles |
| 1903 | * @package Give |
| 1904 | * @subpackage SCSS/Admin |
| 1905 | * @copyright Copyright (c) 2016, WordImpress |
| 1906 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 1907 | */ |
| 1908 | #give_donor_export_form { |
| 1909 | margin: 0 0 5px; } |
| 1910 | |
| 1911 | #give-payments-filter .give-donation-status { |
| 1912 | display: inline-block; } |
| 1913 | |
| 1914 | .column-status .give-donation-status, .column-status .give-test-mode-transactions-label { |
| 1915 | display: inline-block; } |
| 1916 | |
| 1917 | .column-status .give-test-mode-transactions-label { |
| 1918 | margin: 0 5px; |
| 1919 | vertical-align: middle; } |
| 1920 | |
| 1921 | /** |
| 1922 | * Give Settings SCSS |
| 1923 | * |
| 1924 | * @package Give |
| 1925 | * @subpackage SCSS/Admin |
| 1926 | * @copyright Copyright (c) 2016, WordImpress |
| 1927 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 1928 | */ |
| 1929 | .give-settings-page .give-settings-heading-sep { |
| 1930 | font-size: 14px; |
| 1931 | line-height: 32px; |
| 1932 | width: 15px; } |
| 1933 | |
| 1934 | .give-settings-page .nav-tab-wrapper { |
| 1935 | margin-bottom: 5px; |
| 1936 | overflow: visible; } |
| 1937 | |
| 1938 | .give-settings-page .cmb2-wrap .cmb-type-checkbox input[type="checkbox"] { |
| 1939 | display: block; |
| 1940 | margin-bottom: 5px; } |
| 1941 | |
| 1942 | .give-settings-page div.give-submit-wrap { |
| 1943 | margin: 20px 0; } |
| 1944 | |
| 1945 | .give-settings-page .give_forms_page_give-payment-history .postbox .hndle { |
| 1946 | cursor: default; } |
| 1947 | |
| 1948 | .give-settings-page .give-input-field { |
| 1949 | width: 25em; } |
| 1950 | |
| 1951 | .give-settings-page table table input[type="text"] { |
| 1952 | width: 15em; } |
| 1953 | |
| 1954 | .give-settings-page .give-repeat-setting-field { |
| 1955 | margin: 10px 0; } |
| 1956 | |
| 1957 | .give-settings-page .give-remove-setting-field { |
| 1958 | width: 25px; |
| 1959 | height: 25px; |
| 1960 | padding: 0; |
| 1961 | text-align: center; |
| 1962 | line-height: 22px; |
| 1963 | font-size: 21px; |
| 1964 | font-weight: 300; |
| 1965 | cursor: pointer; |
| 1966 | margin-left: 20px; |
| 1967 | display: inline-block; } |
| 1968 | |
| 1969 | .give-settings-page .give-remove-setting-field:hover { |
| 1970 | background-color: red; |
| 1971 | color: white; |
| 1972 | border-radius: 30px; } |
| 1973 | |
| 1974 | .give-settings-page .give-forminp p:first-child .give-remove-setting-field { |
| 1975 | display: none; } |
| 1976 | |
| 1977 | .give-settings-page .export-options-table tr.give-import-option:nth-child(odd) { |
| 1978 | background: #f4f3f3; } |
| 1979 | .give-settings-page .export-options-table tr.give-import-option:nth-child(odd) th { |
| 1980 | vertical-align: middle; } |
| 1981 | |
| 1982 | .give-settings-page .export-options-table .give-import-dropdown:nth-child(2), |
| 1983 | .give-settings-page .export-options-table tr.give-import-option th:first-child { |
| 1984 | width: 250px; } |
| 1985 | |
| 1986 | .give-setting-tab-header { |
| 1987 | clear: both; |
| 1988 | overflow: hidden; |
| 1989 | margin: 30px 0; } |
| 1990 | .give-setting-tab-header h2 { |
| 1991 | margin-top: 8px; } |
| 1992 | .give-setting-tab-header p { |
| 1993 | margin-bottom: 0; } |
| 1994 | |
| 1995 | .give-radio-inline ul { |
| 1996 | margin-top: 0; } |
| 1997 | |
| 1998 | .give-radio-inline li { |
| 1999 | display: inline-block; |
| 2000 | margin: 0 0 0 15px; } |
| 2001 | |
| 2002 | .give-radio-inline li:first-child { |
| 2003 | margin-left: 0; } |
| 2004 | |
| 2005 | .give-tools-setting-page .bulkactions { |
| 2006 | overflow: visible; } |
| 2007 | |
| 2008 | .form-table td.give-radio-inline fieldset li > label { |
| 2009 | margin: 5px 0 0 !important; } |
| 2010 | |
| 2011 | p.give-field-description, |
| 2012 | div.give-field-description, |
| 2013 | .cmb2-metabox-description { |
| 2014 | color: #aaaaaa; |
| 2015 | font-style: italic; |
| 2016 | font-size: 13px !important; } |
| 2017 | |
| 2018 | .cmb-type-give-title label, |
| 2019 | .give-setting-tab-header h2 { |
| 2020 | float: left; |
| 2021 | display: inline-block; |
| 2022 | width: 220px; |
| 2023 | font-style: italic; |
| 2024 | color: #AAA; |
| 2025 | margin: 0; |
| 2026 | font-size: 14px; } |
| 2027 | |
| 2028 | .postbox-container #_give_donation_levels_repeat > .cmb-repeatable-grouping:not(:last-of-type) { |
| 2029 | border-bottom: 1px solid #e9e9e9; |
| 2030 | border-top: none; } |
| 2031 | |
| 2032 | .cmb-type-enabled-gateways .cmb-td > p:first-of-type { |
| 2033 | display: none; } |
| 2034 | |
| 2035 | .cmb-type-checkbox .cmb-td { |
| 2036 | width: 80%; } |
| 2037 | .cmb-type-checkbox .cmb-td label { |
| 2038 | font-size: 13px; } |
| 2039 | |
| 2040 | /* Responsive Settings Rows */ |
| 2041 | .give_settings .cmb2-wrap .cmb-row { |
| 2042 | display: table-row; } |
| 2043 | .give_settings .cmb2-wrap .cmb-row > .cmb-th, .give_settings .cmb2-wrap .cmb-row > .cmb-td { |
| 2044 | display: table-cell; |
| 2045 | float: none; } |
| 2046 | |
| 2047 | /* Custom Title Separators */ |
| 2048 | .cmb2-id-give-title label { |
| 2049 | font-style: italic; |
| 2050 | color: #AAA; |
| 2051 | cursor: default; } |
| 2052 | |
| 2053 | .cmb2-id-give-title > div.cmb-th { |
| 2054 | padding-bottom: 10px; } |
| 2055 | |
| 2056 | .cmb2-id-give-title > div.cmb-td { |
| 2057 | padding-bottom: 5px; } |
| 2058 | |
| 2059 | .give-payment-gatways-list li.ui-sortable-handle span.give-drag-handle { |
| 2060 | padding: 3px 4px 0 0; |
| 2061 | font-size: 15px; |
| 2062 | font-weight: normal; |
| 2063 | color: #bdbdbd; |
| 2064 | cursor: move; } |
| 2065 | .give-payment-gatways-list li.ui-sortable-handle span.give-drag-handle:hover { |
| 2066 | color: #333; } |
| 2067 | |
| 2068 | .give-email-tags-wrap { |
| 2069 | margin: 5px 0 0; } |
| 2070 | .give-email-tags-wrap code { |
| 2071 | font-style: normal; |
| 2072 | padding: 1px 2px; |
| 2073 | font-size: 12px; } |
| 2074 | .give-email-tags-wrap span { |
| 2075 | display: block; |
| 2076 | color: #AAA; |
| 2077 | font-style: italic; |
| 2078 | margin: 0 0 2px; |
| 2079 | font-size: 13px; } |
| 2080 | .give-email-tags-wrap .give_price_tag { |
| 2081 | display: none; } |
| 2082 | |
| 2083 | .give-settings-email-settings-section .tablenav { |
| 2084 | display: none; } |
| 2085 | |
| 2086 | .give-settings-email-settings-section .give-setting-tab-header-emails { |
| 2087 | margin: 0 0 20px; } |
| 2088 | .give-settings-email-settings-section .give-setting-tab-header-emails hr { |
| 2089 | display: none; } |
| 2090 | |
| 2091 | .give-settings-email-settings-section .tablenav.bottom + .give-setting-tab-header-emails { |
| 2092 | margin: 20px 0; } |
| 2093 | .give-settings-email-settings-section .tablenav.bottom + .give-setting-tab-header-emails hr { |
| 2094 | display: block; } |
| 2095 | |
| 2096 | .giveemailnotifications .check-column { |
| 2097 | padding: 13px 10px 0 20px !important; } |
| 2098 | |
| 2099 | .giveemailnotifications td.check-column input { |
| 2100 | display: none; } |
| 2101 | |
| 2102 | .giveemailnotifications th.check-column .give-email-notification-status { |
| 2103 | color: white; |
| 2104 | cursor: pointer; } |
| 2105 | .giveemailnotifications th.check-column .give-email-notification-status[data-edit="1"] i.dashicons { |
| 2106 | border-radius: 1em; |
| 2107 | padding: 2px; } |
| 2108 | |
| 2109 | .giveemailnotifications th.check-column .give-email-notification-enabled .dashicons-yes, |
| 2110 | .giveemailnotifications th.check-column .give-email-notification-disabled:hover .dashicons-no-alt { |
| 2111 | background: #46b450; } |
| 2112 | |
| 2113 | .giveemailnotifications th.check-column .give-email-notification-enabled .dashicons-lock { |
| 2114 | color: #46b450; } |
| 2115 | |
| 2116 | .giveemailnotifications th.check-column .give-email-notification-disabled .dashicons-no-alt, |
| 2117 | .giveemailnotifications th.check-column .give-email-notification-enabled:hover .dashicons-yes { |
| 2118 | background: #bbbbbb; } |
| 2119 | |
| 2120 | .giveemailnotifications th.check-column .give-email-notification-disabled .dashicons-lock { |
| 2121 | color: #bbbbbb; } |
| 2122 | |
| 2123 | .giveemailnotifications th.check-column .dashicons-no-alt:hover:before { |
| 2124 | content: "\f147" !important; } |
| 2125 | |
| 2126 | .giveemailnotifications th.check-column .dashicons-yes:hover:before { |
| 2127 | content: "\f335" !important; } |
| 2128 | |
| 2129 | .giveemailnotifications .spinner.is-active { |
| 2130 | margin: 0 0 0 2px; |
| 2131 | float: none; } |
| 2132 | |
| 2133 | #system-info-textarea { |
| 2134 | width: 800px; |
| 2135 | height: 600px; |
| 2136 | font-family: Menlo, Monaco, monospace; |
| 2137 | background: #FFF; |
| 2138 | white-space: pre; |
| 2139 | overflow: auto; |
| 2140 | display: block; |
| 2141 | /*rtl:ignore*/ |
| 2142 | direction: ltr; } |
| 2143 | |
| 2144 | #give-download-sysinfo { |
| 2145 | margin: 0; } |
| 2146 | |
| 2147 | #api .tablenav .actions { |
| 2148 | overflow: visible; } |
| 2149 | |
| 2150 | a.give-delete { |
| 2151 | color: #a00; } |
| 2152 | |
| 2153 | .give-settings-wrap-licenses .give-license-deactivate { |
| 2154 | margin: 1px 0 0 10px; |
| 2155 | height: 30px; } |
| 2156 | |
| 2157 | .give-settings-wrap-licenses .give-license-field { |
| 2158 | background: #FFF url("../images/close.png") no-repeat; |
| 2159 | background-position: 98.5% center; |
| 2160 | background-size: 18px; } |
| 2161 | |
| 2162 | .give-settings-wrap-licenses .give-license-active, .give-settings-wrap-licenses .give-license-active:focus { |
| 2163 | background-image: url("../images/tick.png"); |
| 2164 | background-color: #FFF; |
| 2165 | background-repeat: no-repeat; |
| 2166 | background-position: 98.5% center; |
| 2167 | outline: none; |
| 2168 | background-size: 16px; |
| 2169 | width: 100%; } |
| 2170 | |
| 2171 | /* Addon grid design */ |
| 2172 | .give-settings-page .give-settings-wrap-licenses { |
| 2173 | display: block; |
| 2174 | position: relative; |
| 2175 | float: left; |
| 2176 | width: 30.5%; |
| 2177 | min-height: 180px; |
| 2178 | margin: 20px 1% 20px 0; } |
| 2179 | |
| 2180 | .give-settings-page .give-license-key label { |
| 2181 | margin: 0 0 0 10px; |
| 2182 | padding: 10px 0; |
| 2183 | display: block; |
| 2184 | font-size: 14px; |
| 2185 | font-weight: 600; |
| 2186 | cursor: default; } |
| 2187 | |
| 2188 | .give-settings-page .give-license-block { |
| 2189 | margin: 0 10px; } |
| 2190 | |
| 2191 | .give-settings-page input[type="text"].give-license-field, |
| 2192 | .give-settings-page input[type="password"].give-license-field { |
| 2193 | width: 100%; } |
| 2194 | |
| 2195 | .give-settings-page .give-license-block input[type="submit"] { |
| 2196 | position: absolute; |
| 2197 | top: 3px; |
| 2198 | right: 10px; |
| 2199 | height: 24px; |
| 2200 | line-height: 22px; |
| 2201 | padding: 0 8px 1px; |
| 2202 | font-size: 11px; } |
| 2203 | |
| 2204 | .give-settings-page .give-license-status-notice { |
| 2205 | background: #fff; |
| 2206 | border-left: 4px solid #fff; |
| 2207 | -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); |
| 2208 | box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); |
| 2209 | margin: 5px 0 2px; |
| 2210 | padding: 1px 12px; } |
| 2211 | .give-settings-page .give-license-status-notice p { |
| 2212 | padding: 10px 0; |
| 2213 | margin: 0; } |
| 2214 | .give-settings-page .give-license-status-notice a { |
| 2215 | color: #444; |
| 2216 | cursor: pointer; } |
| 2217 | .give-settings-page .give-license-status-notice a:hover { |
| 2218 | text-decoration: none; } |
| 2219 | |
| 2220 | .give-settings-page .give-license-status-notice.give-license-expires-soon { |
| 2221 | border-color: #00a0d2; } |
| 2222 | |
| 2223 | .give-settings-page .give-license-status-notice.give-inactive, |
| 2224 | .give-settings-page .give-license-status-notice.give-license-expired { |
| 2225 | border-color: #e24e4e; } |
| 2226 | |
| 2227 | .give-settings-page .give-license-status-notice.give-license-error, |
| 2228 | .give-settings-page .give-license-status-notice.give-license-no_activations_left, |
| 2229 | .give-settings-page .give-license-status-notice.give-license-missing, |
| 2230 | .give-settings-page .give-license-status-notice.give-license-invalid, |
| 2231 | .give-settings-page .give-license-status-notice.give-license-site_inactive, |
| 2232 | .give-settings-page .give-license-status-notice.give-license-item_name_mismatch { |
| 2233 | border-color: orange; } |
| 2234 | |
| 2235 | .give-settings-page .give-license-status-notice.give-license-lifetime-notice, |
| 2236 | .give-settings-page .give-license-status-notice.give-license-expiration-date { |
| 2237 | border-color: #46b450; } |
| 2238 | |
| 2239 | .give-settings-page .give-license-status-notice.give-license-expires-soon a:hover, |
| 2240 | .give-settings-page .give-license-status-notice.give-license-expired a:hover { |
| 2241 | text-decoration: none; } |
| 2242 | |
| 2243 | /* Responsive fixes: Addon grid design */ |
| 2244 | @media screen and (max-width: 1100px) { |
| 2245 | .give-settings-page .give-settings-wrap-licenses { |
| 2246 | width: 45%; |
| 2247 | min-height: 150px; } } |
| 2248 | |
| 2249 | @media screen and (max-width: 600px) { |
| 2250 | .give-settings-page .give-settings-wrap-licenses { |
| 2251 | width: 100%; |
| 2252 | max-width: 320px; } } |
| 2253 | |
| 2254 | /* Tables */ |
| 2255 | .give-table thead th { |
| 2256 | padding: 8px 10px !important; } |
| 2257 | |
| 2258 | .give_settings .cmb-td hr + hr { |
| 2259 | display: none; } |
| 2260 | |
| 2261 | .post-type-give_forms .mce-container iframe, .post-type-give_forms .wp-editor-area { |
| 2262 | min-height: 400px; } |
| 2263 | |
| 2264 | .give-field-description { |
| 2265 | color: #aaaaaa; |
| 2266 | font-style: italic; |
| 2267 | margin: 0; |
| 2268 | padding-top: .5em; } |
| 2269 | |
| 2270 | h2.give-nav-tab-wrapper { |
| 2271 | overflow: hidden; |
| 2272 | height: 35px; } |
| 2273 | |
| 2274 | @media screen and (max-width: 600px) { |
| 2275 | .give-nav-tab-wrapper { |
| 2276 | position: relative; |
| 2277 | padding-top: 0 !important; } |
| 2278 | .give-nav-tab-wrapper > a { |
| 2279 | width: 100%; |
| 2280 | box-sizing: border-box; |
| 2281 | margin: 0; |
| 2282 | background-color: #ffffff; |
| 2283 | border: 1px solid #cccccc; } |
| 2284 | .give-nav-tab-wrapper > a:hover { |
| 2285 | border-bottom: 1px solid #ccc; } |
| 2286 | .give-nav-tab-wrapper div.give-sub-nav-tab-wrapper { |
| 2287 | position: absolute; |
| 2288 | top: 0; |
| 2289 | right: 0; } |
| 2290 | .give-nav-tab-wrapper div.give-sub-nav-tab-wrapper #give-show-sub-nav { |
| 2291 | height: 28px; |
| 2292 | width: 30px; |
| 2293 | border-radius: 0; |
| 2294 | margin: 0; } |
| 2295 | .give-nav-tab-wrapper div.give-sub-nav-tab-wrapper #give-show-sub-nav > span.dashicons { |
| 2296 | margin: 6px auto 0; |
| 2297 | display: block; } |
| 2298 | .give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab { |
| 2299 | top: 35px; |
| 2300 | right: 0; |
| 2301 | left: auto; } |
| 2302 | .give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a { |
| 2303 | background: #ffffff; } |
| 2304 | .give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a:hover { |
| 2305 | background: #e5e5e5; } |
| 2306 | .give-mobile-hidden { |
| 2307 | display: none; } } |
| 2308 | |
| 2309 | .give-sub-nav-tab-wrapper { |
| 2310 | position: relative; |
| 2311 | display: inline-block; |
| 2312 | z-index: 9999; |
| 2313 | float: left; } |
| 2314 | .give-sub-nav-tab-wrapper nav.give-sub-nav-tab { |
| 2315 | border: 1px solid #ccc; |
| 2316 | border-bottom: 0; |
| 2317 | position: absolute; |
| 2318 | top: 35px; |
| 2319 | right: 0; } |
| 2320 | .give-sub-nav-tab-wrapper nav.give-sub-nav-tab a { |
| 2321 | float: left; |
| 2322 | background: white; |
| 2323 | padding: 6px 10px; |
| 2324 | clear: both; |
| 2325 | text-decoration: none; |
| 2326 | border-bottom: 1px solid #ccc; |
| 2327 | min-width: 170px; |
| 2328 | color: #555; |
| 2329 | font-size: 14px; } |
| 2330 | .give-sub-nav-tab-wrapper nav.give-sub-nav-tab a:hover { |
| 2331 | background: #ffffff; } |
| 2332 | |
| 2333 | .give-sub-nav-tab-wrapper { |
| 2334 | display: none; } |
| 2335 | |
| 2336 | #give-show-sub-nav { |
| 2337 | text-decoration: none; |
| 2338 | padding: 3px 4px; |
| 2339 | border-bottom: 1px solid #ccc; |
| 2340 | line-height: 0; |
| 2341 | background: white; |
| 2342 | border-radius: 4px; |
| 2343 | margin-top: 5px; } |
| 2344 | #give-show-sub-nav > span.dashicons { |
| 2345 | font-size: 16px; |
| 2346 | height: 16px; |
| 2347 | width: 16px; } |
| 2348 | |
| 2349 | #give-show-sub-nav:hover, #give-show-sub-nav:active { |
| 2350 | outline: none; |
| 2351 | box-shadow: inset 0px 0px 4px #ddd; } |
| 2352 | |
| 2353 | .give-image-thumb { |
| 2354 | position: relative; |
| 2355 | margin-top: 14px; } |
| 2356 | .give-image-thumb span.give-delete-image-thumb { |
| 2357 | position: absolute; |
| 2358 | background: red; |
| 2359 | color: white; |
| 2360 | border-radius: 30px; |
| 2361 | left: -10px; |
| 2362 | top: -10px; |
| 2363 | cursor: pointer; } |
| 2364 | .give-image-thumb img { |
| 2365 | max-width: 250px; |
| 2366 | border: 4px solid white; } |
| 2367 | |
| 2368 | /** |
| 2369 | * Give Payment History SCSS |
| 2370 | * |
| 2371 | * @description Payment History Styles |
| 2372 | * @package Give |
| 2373 | * @subpackage SCSS/Admin |
| 2374 | * @copyright Copyright (c) 2016, WordImpress |
| 2375 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 2376 | */ |
| 2377 | .give-filters { |
| 2378 | clear: both; |
| 2379 | background: #f5f5f5; |
| 2380 | border: 1px solid #dfdfdf; |
| 2381 | padding: 12px 12px 0 12px; } |
| 2382 | .give-filters .give-donation-forms-filter .chosen-single { |
| 2383 | height: 28px; |
| 2384 | line-height: 28px; } |
| 2385 | .give-filters .chosen-container-single .chosen-single div b { |
| 2386 | background-position: 0 4px; } |
| 2387 | .give-filters .chosen-container-active.chosen-with-drop .chosen-single div b { |
| 2388 | background-position: -18px 6px; } |
| 2389 | .give-filters #give-payment-form-filter, .give-filters #give_donation_forms_filter { |
| 2390 | display: inline-block; |
| 2391 | width: 300px; } |
| 2392 | @media screen and (max-width: 782px) { |
| 2393 | .give-filters #give-payment-form-filter, .give-filters #give_donation_forms_filter { |
| 2394 | width: 100%; } } |
| 2395 | .give-filters #give_donation_forms_filter { |
| 2396 | width: 255px; } |
| 2397 | @media screen and (max-width: 782px) { |
| 2398 | .give-filters #give_donation_forms_filter { |
| 2399 | width: 100%; |
| 2400 | max-width: 100%; } } |
| 2401 | .give-filters:after { |
| 2402 | content: ""; |
| 2403 | display: table; |
| 2404 | clear: both; } |
| 2405 | |
| 2406 | .give-filter { |
| 2407 | display: block; |
| 2408 | margin-bottom: 12px; |
| 2409 | width: 100%; } |
| 2410 | .give-filter:after { |
| 2411 | content: ""; |
| 2412 | display: table; |
| 2413 | clear: both; } |
| 2414 | .give-filter label { |
| 2415 | display: block; |
| 2416 | margin-right: 4px; } |
| 2417 | .give-filter input { |
| 2418 | margin: 0; } |
| 2419 | .give-filter input[type="text"] { |
| 2420 | height: 28px; |
| 2421 | width: 100%; } |
| 2422 | .give-filter input[type="text"], |
| 2423 | .give-filter input[type="search"] { |
| 2424 | height: 28px; } |
| 2425 | .give-filter .button { |
| 2426 | height: 28px; |
| 2427 | line-height: 26px; |
| 2428 | margin: 0; |
| 2429 | padding: 0 10px 1px; } |
| 2430 | .give-filter select { |
| 2431 | width: 100%; } |
| 2432 | @media screen and (min-width: 783px) { |
| 2433 | .give-filter { |
| 2434 | float: left; |
| 2435 | margin-right: 18px; |
| 2436 | width: auto; } |
| 2437 | .give-filter label { |
| 2438 | display: inline-block; } |
| 2439 | .give-filter input[type="text"] { |
| 2440 | display: inline-block; |
| 2441 | width: 144px; } } |
| 2442 | |
| 2443 | .give-filter-search input[type="search"] { |
| 2444 | display: block; |
| 2445 | float: left; |
| 2446 | width: 68%; } |
| 2447 | |
| 2448 | .give-filter-search input[type="submit"] { |
| 2449 | display: block; |
| 2450 | float: right; |
| 2451 | width: 30%; } |
| 2452 | |
| 2453 | @media screen and (min-width: 783px) { |
| 2454 | .give-filter-search input[type="search"] { |
| 2455 | display: inline-block; |
| 2456 | margin-right: 4px; |
| 2457 | width: 144px; } |
| 2458 | .give-filter-search input[type="submit"] { |
| 2459 | display: inline-block; |
| 2460 | width: auto; } } |
| 2461 | |
| 2462 | @media screen and (min-width: 600px) { |
| 2463 | .give-filter-half { |
| 2464 | float: left; |
| 2465 | width: 49%; } |
| 2466 | .give-filter-half:last-child { |
| 2467 | float: right; } } |
| 2468 | |
| 2469 | @media screen and (min-width: 783px) { |
| 2470 | .give-filter-half { |
| 2471 | width: auto; } |
| 2472 | .give-filter-half:last-child { |
| 2473 | float: left; } |
| 2474 | .give-filter-half input[type="text"] { |
| 2475 | width: 96px; } } |
| 2476 | |
| 2477 | .give-clear-filters-button { |
| 2478 | margin-left: 8px; } |
| 2479 | |
| 2480 | .give-submit-wrap { |
| 2481 | clear: both; |
| 2482 | background: #f5f5f5; |
| 2483 | border: 1px solid #dfdfdf; |
| 2484 | margin: 8px 0; |
| 2485 | padding: 12px; |
| 2486 | font-size: 13px; |
| 2487 | line-height: 2.1em; } |
| 2488 | |
| 2489 | #give-payment-filters ul.subsubsub { |
| 2490 | margin-bottom: 8px; } |
| 2491 | |
| 2492 | #give-payments-advanced-filter ul.subsubsub { |
| 2493 | margin-bottom: 12px; } |
| 2494 | |
| 2495 | #give-payments-filter .tablenav.top { |
| 2496 | float: none; } |
| 2497 | #give-payments-filter .tablenav.top .bulkactions { |
| 2498 | margin-top: 1px; |
| 2499 | padding-top: 0; } |
| 2500 | |
| 2501 | #give-payments-filter .give-email-column-value { |
| 2502 | font-size: 14px; |
| 2503 | font-weight: bold; } |
| 2504 | |
| 2505 | #give-payments-filter #the-list .check-column input { |
| 2506 | margin-top: 1px; } |
| 2507 | |
| 2508 | #give-payments-filter .column-details { |
| 2509 | width: 50px; } |
| 2510 | |
| 2511 | #give-payments-filter .column-amount { |
| 2512 | width: 120px; } |
| 2513 | |
| 2514 | tr.status-refunded td { |
| 2515 | background: #cecece; |
| 2516 | border-top-color: #ccc; } |
| 2517 | |
| 2518 | .wp-list-table.forms th#date { |
| 2519 | width: 140px; } |
| 2520 | |
| 2521 | .give-mobile-link { |
| 2522 | line-height: 32px; |
| 2523 | vertical-align: middle; } |
| 2524 | |
| 2525 | .give-mobile-link img { |
| 2526 | max-width: 80%; |
| 2527 | height: auto; |
| 2528 | float: left; } |
| 2529 | |
| 2530 | .give-donation-status > span { |
| 2531 | display: inline-block; |
| 2532 | width: 12px; |
| 2533 | height: 12px; |
| 2534 | position: relative; |
| 2535 | top: 1px; |
| 2536 | margin: 0; |
| 2537 | padding: 0; |
| 2538 | border-radius: 50%; |
| 2539 | background: #888; |
| 2540 | line-height: 16px; } |
| 2541 | |
| 2542 | .give-donation-status.status-pending > span { |
| 2543 | background-color: #ffba00; } |
| 2544 | |
| 2545 | .give-donation-status.status-complete > span, .give-donation-status.status-publish > span { |
| 2546 | background-color: #7ad03a; } |
| 2547 | |
| 2548 | .give-donation-status.status-refunded > span { |
| 2549 | background-color: #777; } |
| 2550 | |
| 2551 | .give-donation-status.status-failed > span { |
| 2552 | background-color: #a00; } |
| 2553 | |
| 2554 | .give-donation-status.status-abandoned > span { |
| 2555 | background-color: #333; } |
| 2556 | |
| 2557 | .give-donation-status.status-revoked > span { |
| 2558 | background-color: #d9534f; } |
| 2559 | |
| 2560 | .give-donation-status.status-subscription > span, .give-donation-status.status-renewal > span, .give-donation-status.status-give_subscription > span { |
| 2561 | background-color: #5bc0de; } |
| 2562 | |
| 2563 | #test-payment-label { |
| 2564 | padding: .2em .4em .3em; |
| 2565 | font-size: 11px; |
| 2566 | line-height: 1; |
| 2567 | color: #fff; |
| 2568 | text-align: center; |
| 2569 | white-space: nowrap; |
| 2570 | vertical-align: baseline; |
| 2571 | border-radius: .25em; |
| 2572 | background-color: #ffba00; |
| 2573 | margin: 0 15px; |
| 2574 | vertical-align: middle; } |
| 2575 | #test-payment-label:hover { |
| 2576 | color: #fff; |
| 2577 | text-decoration: none; } |
| 2578 | |
| 2579 | #give-payments-filter .give-payment-id { |
| 2580 | padding: .2em .4em .3em; |
| 2581 | font-size: 11px; |
| 2582 | line-height: 1; |
| 2583 | color: #fff; |
| 2584 | text-align: center; |
| 2585 | white-space: nowrap; |
| 2586 | vertical-align: baseline; |
| 2587 | border-radius: .25em; |
| 2588 | font-weight: normal; } |
| 2589 | #give-payments-filter .give-payment-id:hover { |
| 2590 | color: #fff; |
| 2591 | text-decoration: none; } |
| 2592 | |
| 2593 | #give-payments-filter .column-details { |
| 2594 | padding-right: 30px; } |
| 2595 | |
| 2596 | #give-payments-filter .give-donation-status { |
| 2597 | display: inline-block; } |
| 2598 | |
| 2599 | #give-order-update .give-donation-status { |
| 2600 | display: inline-block; |
| 2601 | float: none; |
| 2602 | margin: 0 10px; |
| 2603 | position: relative; |
| 2604 | top: 3px; } |
| 2605 | |
| 2606 | .column-donation_form .donation-level-text-wrap { |
| 2607 | font-style: italic; |
| 2608 | display: block; } |
| 2609 | |
| 2610 | /*--------------------- |
| 2611 | Responsiveness |
| 2612 | ---------------------------*/ |
| 2613 | @media handheld, only screen and (max-width: 640px) { |
| 2614 | .wp-list-table.forms th { |
| 2615 | width: auto !important; } } |
| 2616 | |
| 2617 | .download_page_give-payment-history .ui-dialog .ui-dialog-titlebar-close span { |
| 2618 | margin-left: -8px; |
| 2619 | margin-top: -8px; } |
| 2620 | |
| 2621 | /* Payment Details |
| 2622 | -------------------------------------------------------------- */ |
| 2623 | .give-admin-box .label { |
| 2624 | font-weight: 600; } |
| 2625 | |
| 2626 | .give-admin-box-inside { |
| 2627 | margin: 0; |
| 2628 | padding: 3px 10px; |
| 2629 | clear: both; |
| 2630 | border-bottom: 1px solid #eee; } |
| 2631 | |
| 2632 | .give-admin-box-inside .strong { |
| 2633 | font-weight: 600; } |
| 2634 | |
| 2635 | .give-admin-box .right { |
| 2636 | float: right; } |
| 2637 | |
| 2638 | #give-order-update .inside, |
| 2639 | #give-order-details .inside { |
| 2640 | margin: 0; |
| 2641 | padding: 0; } |
| 2642 | |
| 2643 | #give-order-update input.give_datepicker { |
| 2644 | width: 180px; } |
| 2645 | |
| 2646 | #give-order-update input[type="number"].give-payment-time-hour, |
| 2647 | #give-order-update input[type="number"].give-payment-time-min { |
| 2648 | width: 50px; } |
| 2649 | |
| 2650 | .give-admin-box-inside:last-child { |
| 2651 | border-bottom: 0; } |
| 2652 | |
| 2653 | #give-edit-order-form .data-payment-key { |
| 2654 | word-break: break-all; } |
| 2655 | |
| 2656 | .give-order-update-box #major-publishing-actions .button-secondary { |
| 2657 | margin-right: 10px; } |
| 2658 | |
| 2659 | #give-donation-overview th { |
| 2660 | text-align: left; } |
| 2661 | |
| 2662 | #give-donation-overview .give-select-chosen { |
| 2663 | width: 97%; } |
| 2664 | |
| 2665 | #give-edit-order-form .row { |
| 2666 | margin-top: 10px; } |
| 2667 | |
| 2668 | #give-donation-overview ul, |
| 2669 | #give-order-address-country-wrap select, |
| 2670 | #give-donor-details .order-data-address input, |
| 2671 | #give-edit-order-form .column input, |
| 2672 | #give-donor-details .order-data-column p.data input { |
| 2673 | clear: both; |
| 2674 | display: block; } |
| 2675 | |
| 2676 | .give-order-data input.small-text { |
| 2677 | margin: 0; } |
| 2678 | |
| 2679 | #give-order-update span.label { |
| 2680 | display: inline; |
| 2681 | width: 50px; } |
| 2682 | |
| 2683 | .give-order-update-box .button-primary { |
| 2684 | margin-right: 0; } |
| 2685 | |
| 2686 | #give-edit-order-form .column .description { |
| 2687 | padding-right: 10px; } |
| 2688 | |
| 2689 | #give-edit-order-form .column, |
| 2690 | #give-donation-overview .row > ul > li, |
| 2691 | #give-donation-overview .inside > ul > li { |
| 2692 | display: inline-block; |
| 2693 | position: relative; |
| 2694 | vertical-align: top; } |
| 2695 | |
| 2696 | #give-donation-overview ul { |
| 2697 | font-size: 0; } |
| 2698 | #give-donation-overview ul li { |
| 2699 | font-size: 13px; } |
| 2700 | #give-donation-overview ul li.actions { |
| 2701 | text-align: right; |
| 2702 | min-width: 200px; } |
| 2703 | #give-donation-overview ul li.remove { |
| 2704 | text-align: right; } |
| 2705 | #give-donation-overview ul .row { |
| 2706 | padding: 12px; |
| 2707 | border-bottom: 1px solid #eee; } |
| 2708 | |
| 2709 | #give-order-data .data span { |
| 2710 | color: #666; |
| 2711 | font-weight: 600; } |
| 2712 | |
| 2713 | input.give-price-field { |
| 2714 | width: 80px; |
| 2715 | padding: 3px 5px; } |
| 2716 | |
| 2717 | .give_forms_page_give-payment-history.js .postbox .hndle { |
| 2718 | cursor: default; } |
| 2719 | |
| 2720 | #give-payment-notes textarea { |
| 2721 | min-height: 150px; } |
| 2722 | |
| 2723 | #give-payment-notes #give-add-payment-note { |
| 2724 | margin: 6px 0 15px; } |
| 2725 | |
| 2726 | #give-billing-details .column > div { |
| 2727 | margin: 0 0 10px; } |
| 2728 | |
| 2729 | #give-billing-details label { |
| 2730 | display: block; |
| 2731 | margin-bottom: 5px; } |
| 2732 | |
| 2733 | #give-billing-details .column-container { |
| 2734 | padding: 5px 0 10px; } |
| 2735 | |
| 2736 | #give-billing-details input[type="text"] { |
| 2737 | width: 98%; } |
| 2738 | |
| 2739 | #give-billing-details .chosen-container { |
| 2740 | width: 98% !important; } |
| 2741 | |
| 2742 | @media screen and (min-width: 1200px) { |
| 2743 | #give-edit-order-form .column { |
| 2744 | width: 33%; } |
| 2745 | #give-order-address .column { |
| 2746 | width: 49%; } |
| 2747 | #give-donation-overview.columns-4 li.actions { |
| 2748 | width: 25%; |
| 2749 | margin-top: 0; |
| 2750 | margin-right: 0; } } |
| 2751 | |
| 2752 | @media screen and (max-width: 1199px) { |
| 2753 | #give-edit-order-form .column { |
| 2754 | width: 49%; } } |
| 2755 | |
| 2756 | @media screen and (max-width: 782px) { |
| 2757 | .order-data-column input[type="email"] { |
| 2758 | padding: 6px 10px; } } |
| 2759 | |
| 2760 | #give-donor-details .inside, #give-donation-overview .inside { |
| 2761 | margin-top: 0; } |
| 2762 | |
| 2763 | .give_forms_page_give-payment-history #give-dashboard-widgets-wrap #side-sortables { |
| 2764 | padding-top: 0; } |
| 2765 | |
| 2766 | .give-select-chosen .spinner { |
| 2767 | position: absolute; |
| 2768 | right: 5px; |
| 2769 | top: 2px; |
| 2770 | z-index: 999; } |
| 2771 | |
| 2772 | .give-select-chosen-ajax .spinner { |
| 2773 | visibility: visible; } |
| 2774 | |
| 2775 | .give-select-chosen-ajax .chosen-search input[type="text"] { |
| 2776 | background-image: none !important; } |
| 2777 | |
| 2778 | .give-select-chosen-ajax.chosen-container-single .chosen-search input[type="text"] { |
| 2779 | background-image: none !important; } |
| 2780 | |
| 2781 | /** |
| 2782 | * Give Admin Dashboard SCSS |
| 2783 | * |
| 2784 | * @description Styles the Give dashboard widget |
| 2785 | * @package Give |
| 2786 | * @subpackage SCSS/Admin |
| 2787 | * @copyright Copyright (c) 2016, WordImpress |
| 2788 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 2789 | */ |
| 2790 | .give-dashboard-widget .give-dashboard-today { |
| 2791 | text-align: center; } |
| 2792 | .give-dashboard-widget .give-dashboard-today .give-dashboard-date-today { |
| 2793 | margin: 10px 0 0; |
| 2794 | padding: 0; } |
| 2795 | .give-dashboard-widget .give-dashboard-today .give-dashboard-happy-day { |
| 2796 | padding: 3px; |
| 2797 | margin: 0; } |
| 2798 | .give-dashboard-widget .give-dashboard-today .give-dashboard-today-earnings { |
| 2799 | font-size: 42px; |
| 2800 | color: #4ead61; |
| 2801 | font-weight: bold; |
| 2802 | margin: 15px 0 0; |
| 2803 | line-height: 1; } |
| 2804 | .give-dashboard-widget .give-dashboard-today .give-donations-today { |
| 2805 | font-size: 18px; |
| 2806 | font-weight: bold; |
| 2807 | margin: 0 0 30px; |
| 2808 | padding: 4px 0 1px; } |
| 2809 | .give-dashboard-widget .give-dashboard-today .give-last-seven { |
| 2810 | font-size: 14px; |
| 2811 | font-weight: bold; |
| 2812 | padding: 0; |
| 2813 | margin: 0 0 30px; } |
| 2814 | |
| 2815 | .give-dashboard-widget .give-table-stats { |
| 2816 | width: 100%; |
| 2817 | text-align: center; |
| 2818 | margin: 0; |
| 2819 | table-layout: fixed; |
| 2820 | border-top: 1px solid #ececec; |
| 2821 | border-spacing: 0; } |
| 2822 | .give-dashboard-widget .give-table-stats .give-dashboard-stat-total, .give-dashboard-widget .give-table-stats .give-dashboard-stat-total-label { |
| 2823 | padding: 0; |
| 2824 | margin: 0; } |
| 2825 | .give-dashboard-widget .give-table-stats .give-dashboard-stat-total { |
| 2826 | color: #4ead61; |
| 2827 | font-weight: bold; |
| 2828 | font-size: 16px; } |
| 2829 | |
| 2830 | #give_dashboard_sales > .inside { |
| 2831 | padding: 0; } |
| 2832 | |
| 2833 | #give_dashboard_sales .give-table-stats td { |
| 2834 | padding: 10px 0; } |
| 2835 | |
| 2836 | #give_dashboard_sales .give-table-stats td:first-of-type { |
| 2837 | border-right: 1px solid #ececec; } |
| 2838 | |
| 2839 | #give_dashboard_sales .give-table-stats tr#give-table-stats-tr-1 td { |
| 2840 | border-bottom: 1px solid #ececec; } |
| 2841 | |
| 2842 | #dashboard_right_now .give-forms-count:before { |
| 2843 | font-family: 'give-icomoon'; |
| 2844 | speak: none; |
| 2845 | font-style: normal; |
| 2846 | font-weight: normal; |
| 2847 | font-variant: normal; |
| 2848 | text-transform: none; |
| 2849 | line-height: 1; |
| 2850 | -webkit-font-smoothing: antialiased; |
| 2851 | -moz-osx-font-smoothing: grayscale; |
| 2852 | font-size: 18px; |
| 2853 | width: 18px; |
| 2854 | height: 18px; |
| 2855 | content: "\e800"; } |
| 2856 | |
| 2857 | /** |
| 2858 | * Give Forms SCSS |
| 2859 | * |
| 2860 | * @package Give |
| 2861 | * @subpackage SCSS/Admin |
| 2862 | * @copyright Copyright (c) 2016, WordImpress |
| 2863 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 2864 | */ |
| 2865 | .give_forms_page_give-donors { |
| 2866 | /* |
| 2867 | * Donor address metabox |
| 2868 | */ } |
| 2869 | .give_forms_page_give-donors .wrap > h2 { |
| 2870 | margin-bottom: 15px; } |
| 2871 | .give_forms_page_give-donors .nav-tab-wrapper .dashicons { |
| 2872 | position: relative; |
| 2873 | top: 2px; |
| 2874 | margin: 0 3px 0 0; } |
| 2875 | .give_forms_page_give-donors #give-donors-filter { |
| 2876 | position: relative; } |
| 2877 | .give_forms_page_give-donors #give-donors-filter p.search-box { |
| 2878 | margin: 0; } |
| 2879 | .give_forms_page_give-donors #give-donors-search-filter { |
| 2880 | display: block; |
| 2881 | overflow: hidden; } |
| 2882 | .give_forms_page_give-donors #give-donor-card-wrapper { |
| 2883 | margin-left: -1px; |
| 2884 | z-index: 2; |
| 2885 | min-height: 200px; } |
| 2886 | .give_forms_page_give-donors #give-donor-card-wrapper input { |
| 2887 | font-weight: normal; } |
| 2888 | .give_forms_page_give-donors #give-donor-card-wrapper .donor-section { |
| 2889 | border-bottom: 1px solid #eee; |
| 2890 | margin-bottom: 10px; } |
| 2891 | .give_forms_page_give-donors #give-donor-card-wrapper .donor-section table { |
| 2892 | margin-bottom: 0; } |
| 2893 | .give_forms_page_give-donors #give-donor-card-wrapper > div:first-child { |
| 2894 | padding-top: 20px; } |
| 2895 | .give_forms_page_give-donors #give-donor-card-wrapper > div:last-child { |
| 2896 | padding-bottom: 20px; |
| 2897 | border: none; } |
| 2898 | .give_forms_page_give-donors #give-donor-card-wrapper .avatar-wrap { |
| 2899 | padding: 0 15px 15px 0; |
| 2900 | text-align: center; |
| 2901 | float: left; } |
| 2902 | .give_forms_page_give-donors #give-donor-card-wrapper .avatar-wrap img { |
| 2903 | border-radius: 3px; } |
| 2904 | .give_forms_page_give-donors #give-donor-card-wrapper a.delete { |
| 2905 | text-decoration: none; |
| 2906 | color: #ff0000; |
| 2907 | margin-right: 5px; } |
| 2908 | .give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-since { |
| 2909 | margin: 10px 0; |
| 2910 | font-size: 16px; } |
| 2911 | .give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-id { |
| 2912 | display: inline-block; |
| 2913 | font-size: 24px; |
| 2914 | font-weight: 600; |
| 2915 | margin-right: 10px; } |
| 2916 | .give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-name-wrap { |
| 2917 | display: inline-block; } |
| 2918 | .give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-edit-link { |
| 2919 | margin-bottom: 15px; } |
| 2920 | .give_forms_page_give-donors .donor-main-wrapper { |
| 2921 | clear: both; |
| 2922 | margin: 0 0 20px; } |
| 2923 | @media (max-width: 655px) { |
| 2924 | .give_forms_page_give-donors .donor-main-wrapper { |
| 2925 | width: 100%; } } |
| 2926 | .give_forms_page_give-donors .donor-main-wrapper table { |
| 2927 | margin: 0; } |
| 2928 | .give_forms_page_give-donors .donor-main-wrapper input { |
| 2929 | width: 200px; } |
| 2930 | .give_forms_page_give-donors #donor-summary { |
| 2931 | padding: 0 20px; } |
| 2932 | .give_forms_page_give-donors #donor-summary:after { |
| 2933 | font-family: "dashicons"; |
| 2934 | content: "\f110"; |
| 2935 | position: absolute; |
| 2936 | top: 10px; |
| 2937 | right: 10px; |
| 2938 | font-size: 100px; |
| 2939 | color: #F0F0F0; |
| 2940 | z-index: 0; } |
| 2941 | .give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper { |
| 2942 | width: 202px; } |
| 2943 | .give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper span[data-key="line2"] { |
| 2944 | display: table; |
| 2945 | clear: both; } |
| 2946 | .give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper select { |
| 2947 | width: 200px; } |
| 2948 | .give_forms_page_give-donors #give-donor-card-wrapper .donor-info { |
| 2949 | min-height: 185px; } |
| 2950 | .give_forms_page_give-donors #give-donor-card-wrapper .info-wrapper { |
| 2951 | min-height: 125px; } |
| 2952 | .give_forms_page_give-donors .donor-info .donor-name { |
| 2953 | font-size: 24px; |
| 2954 | font-weight: 600; } |
| 2955 | .give_forms_page_give-donors #disconnect-donor, .give_forms_page_give-donors #view-user-profile { |
| 2956 | font-size: 12px; |
| 2957 | font-weight: normal; |
| 2958 | text-decoration: none; } |
| 2959 | .give_forms_page_give-donors #donor-edit-actions { |
| 2960 | text-align: center; |
| 2961 | margin-bottom: 20px; |
| 2962 | line-height: 28px; } |
| 2963 | .give_forms_page_give-donors #donor-edit-actions .button-secondary { |
| 2964 | margin-right: 10px; } |
| 2965 | .give_forms_page_give-donors #give-donor-card-wrapper .edit-item { |
| 2966 | display: none; } |
| 2967 | .give_forms_page_give-donors #give-donor-card-wrapper .give_user_search_results { |
| 2968 | left: 1px; |
| 2969 | top: 16px; } |
| 2970 | .give_forms_page_give-donors #give-donor-card-wrapper .give_user_search_results ul { |
| 2971 | width: 200px; } |
| 2972 | .give_forms_page_give-donors #donor-stats-wrapper { |
| 2973 | margin: 0 auto; |
| 2974 | text-align: center; |
| 2975 | padding: 15px; } |
| 2976 | .give_forms_page_give-donors #donor-stats-wrapper ul { |
| 2977 | margin: 0; |
| 2978 | padding: 0; |
| 2979 | overflow: hidden; } |
| 2980 | .give_forms_page_give-donors #donor-stats-wrapper ul li { |
| 2981 | width: 50%; |
| 2982 | float: left; |
| 2983 | line-height: 22px; |
| 2984 | font-size: 14px; |
| 2985 | margin: 0; } |
| 2986 | .give_forms_page_give-donors #donor-stats-wrapper a { |
| 2987 | text-decoration: none; } |
| 2988 | .give_forms_page_give-donors #donor-stats-wrapper .dashicons { |
| 2989 | color: #888; } |
| 2990 | .give_forms_page_give-donors #donor-tables-wrapper table { |
| 2991 | width: 100%; |
| 2992 | text-align: center; } |
| 2993 | .give_forms_page_give-donors #donor-tables-wrapper th { |
| 2994 | text-align: center; } |
| 2995 | .give_forms_page_give-donors #donor-tables-wrapper .donations tr > th:first-child, |
| 2996 | .give_forms_page_give-donors #donor-tables-wrapper .donations tr > td:first-child, |
| 2997 | .give_forms_page_give-donors #donor-tables-wrapper .emails tr > th:first-child, |
| 2998 | .give_forms_page_give-donors #donor-tables-wrapper .emails tr > td:first-child { |
| 2999 | text-align: left; } |
| 3000 | .give_forms_page_give-donors #donor-tables-wrapper .donations tr > td:only-child { |
| 3001 | text-align: center; } |
| 3002 | .give_forms_page_give-donors #donor-notes-wrapper { |
| 3003 | min-height: 50px; } |
| 3004 | .give_forms_page_give-donors .donor-notes-header span, .give_forms_page_give-donors .donor-notes-header img { |
| 3005 | font-weight: 600; |
| 3006 | line-height: 30px; |
| 3007 | vertical-align: middle; } |
| 3008 | .give_forms_page_give-donors .donor-note-input { |
| 3009 | width: 100%; |
| 3010 | margin-bottom: 5px; } |
| 3011 | .give_forms_page_give-donors #give-donor-notes div:nth-of-type(even) { |
| 3012 | background-color: #f9f9f9; } |
| 3013 | .give_forms_page_give-donors #give-donor-notes .donor-note-wrapper { |
| 3014 | border-bottom: 1px solid #f9f9f9; |
| 3015 | min-height: 38px; |
| 3016 | padding: 0; } |
| 3017 | .give_forms_page_give-donors #give-donor-notes .donor-note-wrapper .note-content-wrap { |
| 3018 | padding: 10px 12px; |
| 3019 | line-height: 20px; |
| 3020 | font-size: 14px; } |
| 3021 | .give_forms_page_give-donors #give-donor-notes .give-no-donor-notes { |
| 3022 | text-align: center; |
| 3023 | padding: 20px; } |
| 3024 | .give_forms_page_give-donors .donor-note-wrapper span { |
| 3025 | display: block; } |
| 3026 | .give_forms_page_give-donors .delete-donor { |
| 3027 | text-align: center; } |
| 3028 | .give_forms_page_give-donors .give-lock-block { |
| 3029 | margin-left: -25px; |
| 3030 | text-decoration: none; |
| 3031 | font-size: 14px; |
| 3032 | margin-right: 3px; } |
| 3033 | .give_forms_page_give-donors .give-lock-block i { |
| 3034 | color: #000000; |
| 3035 | font-size: 14px; } |
| 3036 | .give_forms_page_give-donors #donor-address-wrapper .give-no-address-message { |
| 3037 | margin: 0.5rem 1%; |
| 3038 | line-height: 3.4em; } |
| 3039 | .give_forms_page_give-donors #donor-address-wrapper .add-new-address { |
| 3040 | margin: 0.5rem 1% !important; } |
| 3041 | .give_forms_page_give-donors #donor-address-wrapper .add-new-address-form-hidden { |
| 3042 | position: absolute; |
| 3043 | right: 13px; |
| 3044 | left: 13px; |
| 3045 | top: 0; |
| 3046 | visibility: hidden; } |
| 3047 | .give_forms_page_give-donors #donor-address-wrapper .all-address .address { |
| 3048 | min-height: 146px; |
| 3049 | border: 1px solid #dad9d9; |
| 3050 | padding: 9px; |
| 3051 | border-radius: 5px; |
| 3052 | background-color: white; } |
| 3053 | .give_forms_page_give-donors #donor-address-wrapper .all-address .address .address-number-label { |
| 3054 | color: gray; |
| 3055 | cursor: default; } |
| 3056 | .give_forms_page_give-donors #donor-address-wrapper .all-address .address a { |
| 3057 | text-decoration: none; } |
| 3058 | |
| 3059 | /** |
| 3060 | * Give Admin Buttons SCSS |
| 3061 | * |
| 3062 | * @package Give |
| 3063 | * @subpackage SCSS/Admin |
| 3064 | * @copyright Copyright (c) 2016, WordImpress |
| 3065 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 3066 | */ |
| 3067 | /*=Give Shortcode Button |
| 3068 | --------------------------------------*/ |
| 3069 | @media screen and (max-width: 782px) { |
| 3070 | #wp-content-media-buttons a.give-thickbox { |
| 3071 | padding: 6px 14px; |
| 3072 | line-height: normal; |
| 3073 | font-size: 14px; |
| 3074 | height: auto; } |
| 3075 | .wp-media-buttons span#give-media-button { |
| 3076 | margin-top: 0 !important; |
| 3077 | margin-left: 2px !important; } } |
| 3078 | |
| 3079 | /*=Button in shortcode tinymce dialog |
| 3080 | --------------------------------------*/ |
| 3081 | .mce-primary.mce-give-primary button { |
| 3082 | padding-right: 10px; |
| 3083 | padding-left: 10px; } |
| 3084 | |
| 3085 | /*=Admin Buttons w/ Icons |
| 3086 | --------------------------------------*/ |
| 3087 | /* extends .wp-core-ui .button */ |
| 3088 | .wp-core-ui .give-admin-button { |
| 3089 | padding-left: 7px; |
| 3090 | padding-right: 7px; } |
| 3091 | |
| 3092 | /* matches style of Add Media and Give Shortcodes buttons */ |
| 3093 | .give-admin-button-icon { |
| 3094 | display: inline-block; |
| 3095 | width: 18px; |
| 3096 | height: 18px; |
| 3097 | vertical-align: text-top; |
| 3098 | margin: 0 2px; |
| 3099 | /* specific DashIcon styles */ } |
| 3100 | .give-admin-button-icon:before { |
| 3101 | font: 400 18px/1 dashicons; |
| 3102 | speak: none; |
| 3103 | -webkit-font-smoothing: antialiased; |
| 3104 | -moz-osx-font-smoothing: grayscale; } |
| 3105 | .give-admin-button-icon-update:before { |
| 3106 | content: "\f463"; } |
| 3107 | |
| 3108 | /* =Primary button in shortcode tinymce dialog |
| 3109 | -------------------------------------------------------------- */ |
| 3110 | .mce-primary.mce-sc-primary button { |
| 3111 | padding-right: 10px; |
| 3112 | padding-left: 10px; } |
| 3113 | |
| 3114 | .mce-sc-popup a { |
| 3115 | text-decoration: underline; } |
| 3116 | |
| 3117 | .mce-sc-popup p { |
| 3118 | margin-bottom: 1em; } |
| 3119 | .mce-sc-popup p.strong { |
| 3120 | font-weight: 600; } |
| 3121 | .mce-sc-popup p.no-margin { |
| 3122 | margin-bottom: 0; } |
| 3123 | .mce-sc-popup p.margin-top { |
| 3124 | margin-top: 1em; } |
| 3125 | |
| 3126 | .mce-sc-popup .mce-listbox button { |
| 3127 | text-overflow: ellipsis; |
| 3128 | overflow: hidden !important; } |
| 3129 | |
| 3130 | /* =Shortcode button above wp_editor |
| 3131 | -------------------------------------------------------------- */ |
| 3132 | @media screen and (max-width: 782px) { |
| 3133 | .wp-media-buttons button.sc-button span { |
| 3134 | width: 18px !important; } } |
| 3135 | |
| 3136 | .wp-media-buttons button.sc-button { |
| 3137 | outline: none; |
| 3138 | padding-left: 5px; |
| 3139 | margin-right: 0; } |
| 3140 | .wp-media-buttons button.sc-button:active { |
| 3141 | margin-bottom: 5px; } |
| 3142 | |
| 3143 | button.sc-button:after { |
| 3144 | position: relative; |
| 3145 | display: inline-block; |
| 3146 | top: -1px; |
| 3147 | content: ''; |
| 3148 | width: 0; |
| 3149 | height: 0; |
| 3150 | border-top: 6px solid #777; |
| 3151 | border-right: 4px solid transparent; |
| 3152 | border-left: 4px solid transparent; |
| 3153 | margin: 0 3px 0 6px; } |
| 3154 | |
| 3155 | button.sc-button.active:after { |
| 3156 | top: -2px; |
| 3157 | border-top: 0; |
| 3158 | border-bottom: 6px solid #32373c; } |
| 3159 | |
| 3160 | /* =Shortcode button dropdown menu |
| 3161 | -------------------------------------------------------------- */ |
| 3162 | .sc-wrap { |
| 3163 | position: relative; |
| 3164 | display: inline-block; |
| 3165 | margin-right: 5px; } |
| 3166 | |
| 3167 | div.sc-menu { |
| 3168 | display: none; |
| 3169 | position: absolute; |
| 3170 | top: 100%; |
| 3171 | left: 0; |
| 3172 | min-width: 100%; |
| 3173 | max-height: 410px; |
| 3174 | font-size: 14px; |
| 3175 | box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); |
| 3176 | background: #fff; |
| 3177 | border: 1px solid rgba(0, 0, 0, 0.15); |
| 3178 | overflow: auto; |
| 3179 | overflow-x: hidden; |
| 3180 | padding: 5px 0; |
| 3181 | margin: -2px 0 0; |
| 3182 | z-index: 1002; } |
| 3183 | |
| 3184 | div.sc-shortcode { |
| 3185 | display: block; |
| 3186 | white-space: nowrap; |
| 3187 | cursor: pointer; |
| 3188 | padding: 6px 12px; |
| 3189 | margin-bottom: 2px; } |
| 3190 | div.sc-shortcode:hover { |
| 3191 | color: #fff; } |
| 3192 | |
| 3193 | /* =Shortcode tinymce dialog backdrop |
| 3194 | -------------------------------------------------------------- */ |
| 3195 | #mce-modal-block.mce-reset.mce-fade.mce-in { |
| 3196 | opacity: 0.7; |
| 3197 | filter: alpha(opacity=70); } |
| 3198 | |
| 3199 | /** |
| 3200 | * Give System Info SCSS |
| 3201 | * |
| 3202 | * @description System Info Styles |
| 3203 | * @package Give |
| 3204 | * @subpackage SCSS/Admin |
| 3205 | * @copyright Copyright (c) 2016, WordImpress |
| 3206 | * @license https://opensource.org/licenses/gpl-3.0/ GNU Public License |
| 3207 | * |
| 3208 | * The following code is a derivative work of the code from the WooCommerce |
| 3209 | * plugin, which is licensed GPLv3. This code therefore is also licensed under |
| 3210 | * the terms of the GNU Public License, version 3. |
| 3211 | * |
| 3212 | * Copyright (c) 2015 WooThemes |
| 3213 | * Copyright (c) 2016 WordImpress, LLC |
| 3214 | */ |
| 3215 | .give-status-table { |
| 3216 | margin-bottom: 1em; } |
| 3217 | .give-status-table h2 { |
| 3218 | font-size: 14px; |
| 3219 | margin: 0; } |
| 3220 | .give-status-table tr:nth-child(2n) th, |
| 3221 | .give-status-table tr:nth-child(2n) td { |
| 3222 | background: #fcfcfc; } |
| 3223 | .give-status-table th { |
| 3224 | font-weight: 700; |
| 3225 | padding: 9px; } |
| 3226 | .give-status-table td:first-child { |
| 3227 | width: 33%; } |
| 3228 | .give-status-table td.help { |
| 3229 | width: 1em; } |
| 3230 | .give-status-table td { |
| 3231 | padding: 9px; |
| 3232 | font-size: 1.1em; } |
| 3233 | .give-status-table td mark { |
| 3234 | background: transparent none; } |
| 3235 | .give-status-table td mark.yes { |
| 3236 | color: #7ad03a; } |
| 3237 | .give-status-table td mark.no { |
| 3238 | color: #999; } |
| 3239 | .give-status-table td mark.error { |
| 3240 | color: #a00; } |
| 3241 | .give-status-table td ul { |
| 3242 | margin: 0; } |
| 3243 | |
| 3244 | /* System info download header */ |
| 3245 | .wrap div.give-debug-report-wrapper { |
| 3246 | margin-bottom: 5px; } |
| 3247 | .wrap div.give-debug-report-wrapper p { |
| 3248 | font-size: 18px; |
| 3249 | margin: 1em 0 0.7em; |
| 3250 | padding: 0; } |
| 3251 | .wrap div.give-debug-report-wrapper .give-debug-report-actions { |
| 3252 | margin: 0 0 1.7em; } |
| 3253 | .wrap div.give-debug-report-wrapper .give-debug-report-actions .js-give-debug-report-button { |
| 3254 | margin-right: 10px; } |
| 3255 | .wrap div.give-debug-report-wrapper .give-debug-report-actions .dashicons { |
| 3256 | font-size: 16px; |
| 3257 | position: relative; |
| 3258 | top: 4px; |
| 3259 | left: -2px; } |
| 3260 | |
| 3261 | .give-debug-report { |
| 3262 | display: none; |
| 3263 | margin: 10px 0; |
| 3264 | padding: 0; |
| 3265 | position: relative; } |
| 3266 | .give-debug-report textarea { |
| 3267 | font-family: monospace; |
| 3268 | width: 100%; |
| 3269 | margin: 0; |
| 3270 | height: 300px; |
| 3271 | padding: 20px; |
| 3272 | -moz-border-radius: 0; |
| 3273 | -webkit-border-radius: 0; |
| 3274 | border-radius: 0; |
| 3275 | resize: none; |
| 3276 | font-size: 12px; |
| 3277 | line-height: 20px; |
| 3278 | outline: 0; } |
| 3279 | |
| 3280 | .give-progress { |
| 3281 | height: 15px; |
| 3282 | width: 95%; |
| 3283 | border-radius: 4px; |
| 3284 | overflow: hidden; |
| 3285 | background-color: whitesmoke; } |
| 3286 | .give-progress > div { |
| 3287 | height: 100%; |
| 3288 | width: 0; } |
| 3289 | |
| 3290 | .admin-color-fresh .give-progress div, .give-progress div { |
| 3291 | background: #0073aa; } |
| 3292 | |
| 3293 | .admin-color-light .give-progress div { |
| 3294 | background: #888; } |
| 3295 | |
| 3296 | .admin-color-blue .give-progress div { |
| 3297 | background: #096484; } |
| 3298 | |
| 3299 | .admin-color-coffee .give-progress div { |
| 3300 | background: #c7a589; } |
| 3301 | |
| 3302 | .admin-color-ectoplasm .give-progress div { |
| 3303 | background: #a3b745; } |
| 3304 | |
| 3305 | .admin-color-midnight .give-progress div { |
| 3306 | background: #e14d43; } |
| 3307 | |
| 3308 | .admin-color-sunrise .give-progress div { |
| 3309 | background: #dd823b; } |
| 3310 | |
| 3311 | /** |
| 3312 | * Spinner |
| 3313 | */ |
| 3314 | .give-spinner-wrapper { |
| 3315 | position: absolute; |
| 3316 | left: 0; |
| 3317 | right: 0; |
| 3318 | bottom: 0; |
| 3319 | top: 0; |
| 3320 | background: rgba(245, 245, 245, 0.57); |
| 3321 | z-index: 1; |
| 3322 | display: none; } |
| 3323 | .give-spinner-wrapper.is-active { |
| 3324 | display: inline-block; } |
| 3325 | .give-spinner-wrapper .aligncenter { |
| 3326 | position: absolute; |
| 3327 | top: 50%; |
| 3328 | left: 50%; |
| 3329 | margin: 10px 10px 0 0; } |
| 3330 | |
| 3331 | .give-spinner.spinner.is-active { |
| 3332 | margin: 0 0 0 2px; |
| 3333 | float: none; } |
| 3334 | |
| 3335 | /** |
| 3336 | * Give Updates Panel SCSS |
| 3337 | * |
| 3338 | * @description Updates Panel Styles |
| 3339 | * @package Give |
| 3340 | * @subpackage SCSS/Admin |
| 3341 | * @copyright Copyright (c) 2017, WordImpress |
| 3342 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 3343 | */ |
| 3344 | #give-updates-h1 { |
| 3345 | padding-top: 0; } |
| 3346 | |
| 3347 | .give-update-panel-content p { |
| 3348 | font-size: 16px; } |
| 3349 | |
| 3350 | #give-updates .dashicons-no-alt { |
| 3351 | color: red; } |
| 3352 | |
| 3353 | #give-updates .dashicons-yes { |
| 3354 | color: green; } |
| 3355 | |
| 3356 | #give-db-updates .spinner { |
| 3357 | margin-top: 0; } |
| 3358 | |
| 3359 | body.give_forms_page_give-updates .give-run-update-containt .give-run-update-button { |
| 3360 | margin-right: 10px; } |
| 3361 | |
| 3362 | #give-plugin-updates .panel-content table tr { |
| 3363 | display: block; } |
| 3364 | |
| 3365 | /** |
| 3366 | * Give Blank Slate |
| 3367 | * |
| 3368 | * @package Give |
| 3369 | * @subpackage SCSS/Admin |
| 3370 | * @copyright Copyright (c) 2016, WordImpress |
| 3371 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 3372 | */ |
| 3373 | .give-blank-slate { |
| 3374 | background: white; |
| 3375 | border: 1px solid #e5e5e5; |
| 3376 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 3377 | margin: 0 auto; |
| 3378 | padding: 40px; |
| 3379 | text-align: center; } |
| 3380 | .give-blank-slate :last-child { |
| 3381 | margin-bottom: 0; } |
| 3382 | .give-blank-slate__heading, .give-blank-slate__message, .give-blank-slate__cta, .give-blank-slate__help { |
| 3383 | margin: 0 0 10px; } |
| 3384 | .give-blank-slate__image { |
| 3385 | display: block; |
| 3386 | height: 80px; |
| 3387 | margin: 0 auto 10px; |
| 3388 | width: auto; } |
| 3389 | .give-blank-slate__help { |
| 3390 | color: #666; |
| 3391 | font-style: italic; } |
| 3392 | .give-blank-slate__help a { |
| 3393 | display: inline-block; |
| 3394 | text-decoration: underline; } |
| 3395 | |
| 3396 | .give-blank-slate a.give-blank-slate__cta { |
| 3397 | display: inline-block; |
| 3398 | font-size: 1.2em; |
| 3399 | height: auto; |
| 3400 | margin: 0 0 10px; |
| 3401 | padding: .75em 1.5em; } |
| 3402 | |
| 3403 | /** |
| 3404 | * Give Donations Importer |
| 3405 | * |
| 3406 | * @description Payment History Styles |
| 3407 | * @package Give |
| 3408 | * @subpackage SCSS/Admin |
| 3409 | * @copyright Copyright (c) 2017, WordImpress |
| 3410 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 3411 | */ |
| 3412 | .give-tools-setting-page-import h1.handle { |
| 3413 | padding: 15px 0 0; } |
| 3414 | |
| 3415 | .give-tools-setting-page-import .give-progress-steps { |
| 3416 | width: 100%; |
| 3417 | padding: 0 0 24px; |
| 3418 | margin-left: 0; |
| 3419 | list-style: none outside; |
| 3420 | overflow: hidden; |
| 3421 | display: -webkit-inline-flex; |
| 3422 | display: -ms-inline-flexbox; |
| 3423 | display: inline-flex; } |
| 3424 | .give-tools-setting-page-import .give-progress-steps li { |
| 3425 | width: 25%; |
| 3426 | float: left; |
| 3427 | padding: 0 0 1.2em; |
| 3428 | margin: 0; |
| 3429 | text-align: center; |
| 3430 | position: relative; |
| 3431 | border-bottom: 4px solid #ccc; |
| 3432 | line-height: 1.4em; } |
| 3433 | .give-tools-setting-page-import .give-progress-steps li.active { |
| 3434 | border-color: #4ead61; |
| 3435 | color: #4ead61; } |
| 3436 | .give-tools-setting-page-import .give-progress-steps li.active:before { |
| 3437 | border-color: #4ead61; |
| 3438 | color: #4ead61; |
| 3439 | background: #4ead61; } |
| 3440 | .give-tools-setting-page-import .give-progress-steps li::before { |
| 3441 | content: ''; |
| 3442 | border: 4px solid #ccc; |
| 3443 | border-radius: 100%; |
| 3444 | width: 10px; |
| 3445 | height: 10px; |
| 3446 | position: absolute; |
| 3447 | bottom: 0; |
| 3448 | left: 50%; |
| 3449 | margin-left: -6px; |
| 3450 | margin-bottom: -10px; |
| 3451 | background: #fff; } |
| 3452 | |
| 3453 | .give-tools-setting-page-import .step-4 h2 { |
| 3454 | text-align: center; |
| 3455 | font-size: 20px !important; } |
| 3456 | |
| 3457 | .give-tools-setting-page-import .step-4 p { |
| 3458 | text-align: center; } |
| 3459 | |
| 3460 | .give-tools-setting-page-import .button-secondary.step-4, .give-tools-setting-page-import .give-image-thumb { |
| 3461 | display: none; } |
| 3462 | |
| 3463 | .give-tools-setting-page-import h2#give-import-title { |
| 3464 | background: #f3f3f3; |
| 3465 | font-size: 15px; |
| 3466 | font-weight: 600; |
| 3467 | margin: -8px -22px 11px; |
| 3468 | padding: 12px 22px; } |
| 3469 | |
| 3470 | .give-tools-setting-page-import table.step-2 h2#give-import-title { |
| 3471 | font-size: small; |
| 3472 | font-weight: inherit; } |
| 3473 | |
| 3474 | .give-tools-setting-page-import table.step-2 .give-import-donation-required-fields-title { |
| 3475 | font-size: 18px; |
| 3476 | font-weight: 600; |
| 3477 | margin: 0px; } |
| 3478 | |
| 3479 | .give-tools-setting-page-import table.step-2 .give-import-donation-required-fields { |
| 3480 | white-space: nowrap; |
| 3481 | overflow: hidden; } |
| 3482 | .give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li { |
| 3483 | display: inline-block; |
| 3484 | margin: 0 10% 0 0; } |
| 3485 | .give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li span.give-import-donation-required-symbol { |
| 3486 | border-radius: 1em; |
| 3487 | vertical-align: middle; |
| 3488 | padding: 2px; |
| 3489 | background: #46b450; |
| 3490 | color: white; } |
| 3491 | .give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li span.dashicons-no-alt { |
| 3492 | background: #bbbbbb; } |
| 3493 | |
| 3494 | .give-import-core-settings .give-progress-steps li { |
| 3495 | width: 33.33%; } |
| 3496 | |
| 3497 | .give-import-core-settings .step-3 h2 { |
| 3498 | text-align: center; |
| 3499 | font-size: 20px !important; } |
| 3500 | |
| 3501 | .give-import-core-settings .step-3 p { |
| 3502 | text-align: center; } |
| 3503 | |
| 3504 | form.give-import-form table.widefat { |
| 3505 | border: none; } |
| 3506 | |
| 3507 | .wrap .give-importer-h1 { |
| 3508 | margin: 0; |
| 3509 | padding: 20px 0; } |
| 3510 | |
| 3511 | /*# sourceMappingURL=../sourcemaps/give-admin.css.map */ |
| 3512 |