| @@ -1,58 +1,50 @@ | ||
| 1 | -@charset "UTF-8"; | |
| 2 | -/* | |
| 3 | -The MIT License (MIT) | |
| 4 | - | |
| 5 | -Copyright © 2011–2015 thoughtbot, inc. | |
| 6 | - | |
| 7 | -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | |
| 8 | -documentation files (the “Software”), to deal in the Software without restriction, including without limitation the | |
| 9 | -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit | |
| 10 | -persons to whom the Software is furnished to do so, subject to the following conditions: | |
| 11 | - | |
| 12 | -The above copyright notice and this permission notice shall be included in all copies or substantial | |
| 13 | -portions of the Software. | |
| 14 | - | |
| 15 | -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE | |
| 16 | -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | |
| 17 | -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | |
| 18 | -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
| 19 | - | |
| 20 | -https://github.com/thoughtbot/bourbon | |
| 21 | -*/ | |
| 1 | +/** | |
| 2 | + * $gray color functions: | |
| 3 | + * | |
| 4 | + * color.adjust( $gray, $lightness: 10% ) | |
| 5 | + * color.adjust( $gray, $lightness: 20% ) | |
| 6 | + * color.adjust( $gray, $lightness: 30% ) | |
| 7 | + * color.adjust( $gray, $lightness: -10% ) | |
| 8 | + * color.adjust( $gray, $lightness: -20% ) | |
| 9 | + * color.adjust( $gray, $lightness: -30% ) | |
| 10 | + * | |
| 11 | + * See wordpress.com/design-handbook/colors/ for more info. | |
| 12 | + */ | |
| 22 | 13 | :root { |
| 23 | 14 | --font-title-large: 36px; |
| 24 | 15 | --font-title-small: 24px; |
| 25 | 16 | --font-body: 16px; |
| 26 | 17 | --font-label: 12px; |
| 27 | - --jp-black: #000000; | |
| 18 | + --jp-black: #000; | |
| 28 | 19 | --jp-black-80: #2c3338; |
| 29 | - --jp-white: #ffffff; | |
| 20 | + --jp-white: #fff; | |
| 30 | 21 | --jp-white-off: #f9f9f6; |
| 31 | 22 | --jp-gray: #dcdcde; |
| 32 | - --jp-gray-0: #F6F7F7; | |
| 23 | + --jp-gray-0: #f6f7f7; | |
| 33 | 24 | --jp-gray-5: #dcdcde; |
| 34 | 25 | --jp-gray-10: #c3c4c7; |
| 35 | - --jp-gray-20: #A7AAAD; | |
| 26 | + --jp-gray-20: #a7aaad; | |
| 36 | 27 | --jp-gray-30: #8c8f94; |
| 37 | - --jp-gray-40: #787C82; | |
| 28 | + --jp-gray-40: #787c82; | |
| 38 | 29 | --jp-gray-50: #646970; |
| 39 | - --jp-gray-60: #50575E; | |
| 30 | + --jp-gray-60: #50575e; | |
| 40 | 31 | --jp-gray-70: #3c434a; |
| 41 | - --jp-gray-80: #2C3338; | |
| 32 | + --jp-gray-80: #2c3338; | |
| 42 | 33 | --jp-gray-90: #1d2327; |
| 43 | 34 | --jp-gray-100: #101517; |
| 44 | 35 | --jp-gray-off: #e2e2df; |
| 45 | 36 | --jp-yellow-5: #f5e6b3; |
| 46 | 37 | --jp-yellow-10: #f2cf75; |
| 38 | + --jp-yellow-40: #c08c00; | |
| 47 | 39 | --jp-orange-20: #faa754; |
| 48 | 40 | --jp-blue-5: #ced9f2; |
| 49 | - --jp-red-0: #F7EBEC; | |
| 50 | - --jp-red-50: #D63638; | |
| 51 | - --jp-red-60: #B32D2E; | |
| 52 | - --jp-red-80: #8A2424; | |
| 41 | + --jp-red-0: #f7ebec; | |
| 42 | + --jp-red-50: #d63638; | |
| 43 | + --jp-red-60: #b32d2e; | |
| 44 | + --jp-red-80: #8a2424; | |
| 53 | 45 | --jp-red: #d63639; |
| 54 | - --jp-pink: #C9356E; | |
| 46 | + --jp-pink: #c9356e; | |
| 55 | 47 | --jp-green-0: #f0f2eb; |
| 56 | 48 | --jp-green-5: #d0e6b8; |
| 57 | 49 | --jp-green-10: #9dd977; |
| 58 | 50 | --jp-green-20: #64ca43; |
| @@ -64,8 +56,9 @@ | ||
| 64 | 56 | --jp-green-80: #004515; |
| 65 | 57 | --jp-green-90: #003010; |
| 66 | 58 | --jp-green-100: #001c09; |
| 67 | 59 | --jp-green: #069e08; |
| 60 | + --jp-green-mint: #d3f6d5; | |
| 68 | 61 | --jp-green-primary: var(--jp-green-40); |
| 69 | 62 | --jp-green-secondary: var(--jp-green-30); |
| 70 | 63 | --jp-border-radius: 4px; |
| 71 | 64 | --jp-border-radius-rna: 8px; |
| @@ -77,14 +70,10 @@ | ||
| 77 | 70 | --jp-modal-radius: 8px; |
| 78 | 71 | --jp-button-padding: 8px; |
| 79 | 72 | --jp-button-radius: 4px; |
| 80 | 73 | --jp-gap: 16px; |
| 81 | - --jp-highlight: #3858e9; | |
| 82 | 74 | } |
| 83 | 75 | |
| 84 | -#jetpack_summary_widget { | |
| 85 | - /* Widget settings */ | |
| 86 | -} | |
| 87 | 76 | #jetpack_summary_widget * { |
| 88 | 77 | box-sizing: border-box; |
| 89 | 78 | } |
| 90 | 79 | #jetpack_summary_widget h2.hndle span { |
| @@ -100,12 +89,15 @@ | ||
| 100 | 89 | } |
| 101 | 90 | #jetpack_summary_widget pre.stats-widget-error { |
| 102 | 91 | overflow: scroll; |
| 103 | 92 | } |
| 104 | -#jetpack_summary_widget .js-toggle-stats_dashboard_widget_control .toggle-indicator:before { | |
| 93 | +#jetpack_summary_widget { | |
| 94 | + /* Widget settings */ | |
| 95 | +} | |
| 96 | +#jetpack_summary_widget .js-toggle-stats_dashboard_widget_control .toggle-indicator::before { | |
| 105 | 97 | content: "\f111"; |
| 106 | 98 | display: inline-block; |
| 107 | - font: normal 20px/1 dashicons; | |
| 99 | + font: 400 20px/1 dashicons; | |
| 108 | 100 | } |
| 109 | 101 | #jetpack_summary_widget .inside { |
| 110 | 102 | margin: 0; |
| 111 | 103 | padding: 0; |
| @@ -121,9 +113,8 @@ | ||
| 121 | 113 | #jetpack_summary_widget .inside #dashboard_stats { |
| 122 | 114 | box-sizing: border-box; |
| 123 | 115 | width: 100%; |
| 124 | 116 | padding: 0 10px; |
| 125 | - /* Widget graph contents */ | |
| 126 | 117 | } |
| 127 | 118 | #jetpack_summary_widget .inside #dashboard_stats.is-loading { |
| 128 | 119 | display: none; |
| 129 | 120 | } |
| @@ -132,8 +123,11 @@ | ||
| 132 | 123 | } |
| 133 | 124 | #jetpack_summary_widget .inside #dashboard_stats #stats-graph { |
| 134 | 125 | margin: 0; |
| 135 | 126 | } |
| 127 | +#jetpack_summary_widget .inside #dashboard_stats { | |
| 128 | + /* Widget graph contents */ | |
| 129 | +} | |
| 136 | 130 | #jetpack_summary_widget .inside #dashboard_stats #stat-chart { |
| 137 | 131 | background: none !important; |
| 138 | 132 | } |
| 139 | 133 | #jetpack_summary_widget .inside #dashboard_stats #stats-info { |
| @@ -295,9 +289,9 @@ | ||
| 295 | 289 | padding: 1em 1.5em 1em 1.5em; |
| 296 | 290 | } |
| 297 | 291 | #jetpack_summary_widget footer h3 { |
| 298 | 292 | font-size: 1em; |
| 299 | - font-weight: normal; | |
| 293 | + font-weight: 400; | |
| 300 | 294 | margin: 0 0 0.25em 0; |
| 301 | 295 | padding: 0; |
| 302 | 296 | } |
| 303 | 297 | #jetpack_summary_widget footer p.blocked-count { |