addons.scss
9 years ago
blank-slate.scss
8 years ago
buttons.scss
9 years ago
dashboard.scss
10 years ago
donors.scss
8 years ago
fonts.scss
9 years ago
forms.scss
8 years ago
give-admin.scss
8 years ago
grids.scss
8 years ago
importer.scss
8 years ago
logs.scss
10 years ago
payment-history.scss
8 years ago
reports.scss
8 years ago
settings.scss
8 years ago
shortcodes.scss
9 years ago
system-info.scss
8 years ago
updates.scss
8 years ago
util.scss
8 years ago
welcome.scss
9 years ago
buttons.scss
63 lines
| 1 | /** |
| 2 | * Give Admin Buttons SCSS |
| 3 | * |
| 4 | * @package Give |
| 5 | * @subpackage SCSS/Admin |
| 6 | * @copyright Copyright (c) 2016, WordImpress |
| 7 | * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 8 | */ |
| 9 | |
| 10 | /*=Give Shortcode Button |
| 11 | --------------------------------------*/ |
| 12 | |
| 13 | @media screen and (max-width: 782px) { |
| 14 | #wp-content-media-buttons a.give-thickbox { |
| 15 | padding: 6px 14px; |
| 16 | line-height: normal; |
| 17 | font-size: 14px; |
| 18 | height: auto; |
| 19 | } |
| 20 | .wp-media-buttons span#give-media-button { |
| 21 | margin-top: 0 !important; |
| 22 | margin-left: 2px !important; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | /*=Button in shortcode tinymce dialog |
| 27 | --------------------------------------*/ |
| 28 | |
| 29 | .mce-primary.mce-give-primary button { |
| 30 | padding-right: 10px; |
| 31 | padding-left: 10px; |
| 32 | } |
| 33 | |
| 34 | /*=Admin Buttons w/ Icons |
| 35 | --------------------------------------*/ |
| 36 | |
| 37 | /* extends .wp-core-ui .button */ |
| 38 | .wp-core-ui .give-admin-button { |
| 39 | padding-left: 7px; |
| 40 | padding-right: 7px; |
| 41 | } |
| 42 | |
| 43 | /* matches style of Add Media and Give Shortcodes buttons */ |
| 44 | .give-admin-button-icon { |
| 45 | display: inline-block; |
| 46 | width: 18px; |
| 47 | height: 18px; |
| 48 | vertical-align: text-top; |
| 49 | margin: 0 2px; |
| 50 | |
| 51 | &:before { |
| 52 | font: 400 18px/1 dashicons; |
| 53 | speak: none; |
| 54 | -webkit-font-smoothing: antialiased; |
| 55 | -moz-osx-font-smoothing: grayscale; |
| 56 | } |
| 57 | |
| 58 | /* specific DashIcon styles */ |
| 59 | &-update:before { |
| 60 | content: "\f463"; |
| 61 | } |
| 62 | } |
| 63 |