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
fonts.scss
75 lines
| 1 | @font-face { |
| 2 | font-family: 'give-icomoon'; |
| 3 | font-weight: normal; |
| 4 | font-style: normal; |
| 5 | } |
| 6 | |
| 7 | @mixin admin_fonts() { |
| 8 | font-family: 'give-icomoon'; |
| 9 | src: url('../assets/fonts/icomoon.eot?kdnr3d'); |
| 10 | src: url('../assets/fonts/icomoon.eot?kdnr3d#iefix') format('embedded-opentype'), |
| 11 | url('../assets/fonts/icomoon.woff?kdnr3d') format('woff'), |
| 12 | url('../assets/fonts/icomoon.svg?kdnr3d#icomoon') format('svg'); |
| 13 | speak: none; |
| 14 | font-style: normal; |
| 15 | font-weight: normal; |
| 16 | font-variant: normal; |
| 17 | text-transform: none; |
| 18 | line-height: 1; |
| 19 | |
| 20 | // Better Font Rendering |
| 21 | -webkit-font-smoothing: antialiased; |
| 22 | -moz-osx-font-smoothing: grayscale; |
| 23 | } |
| 24 | |
| 25 | // --------------------------------- |
| 26 | // Donation form vertical tab icons. |
| 27 | // --------------------------------- |
| 28 | .give-metabox-tabs li { |
| 29 | |
| 30 | .give-icon:before { |
| 31 | @include admin_fonts(); |
| 32 | font-size: 12px; |
| 33 | vertical-align: top; |
| 34 | line-height: 20px; |
| 35 | margin: 0 5px 0 0; |
| 36 | } |
| 37 | |
| 38 | .give-icon-default:before { |
| 39 | content: "\e903"; |
| 40 | } |
| 41 | |
| 42 | //Donation options tab. |
| 43 | .give-icon-heart:before { |
| 44 | content: "\e604"; //this is a wp dashicon heart. |
| 45 | } |
| 46 | //Goal tab. |
| 47 | .give-icon-target:before { |
| 48 | content: "\e901"; |
| 49 | } |
| 50 | //Form display tab. |
| 51 | .give-icon-display:before { |
| 52 | content: "\e90c"; |
| 53 | } |
| 54 | //Form content tab. |
| 55 | .give-icon-edit:before { |
| 56 | content: "\e902"; |
| 57 | } |
| 58 | //Form terms tab. |
| 59 | .give-icon-checklist:before { |
| 60 | position: relative; |
| 61 | top: 1px; |
| 62 | content: "\e900"; |
| 63 | } |
| 64 | //Form offline donations tab. |
| 65 | .give-icon-purse:before { |
| 66 | content: "\e8df"; |
| 67 | } |
| 68 | |
| 69 | .dashicons { |
| 70 | font-size:14px; |
| 71 | width:14px; |
| 72 | line-height: 20px; |
| 73 | } |
| 74 | |
| 75 | } |