rtl
11 years ago
class.related-posts-customize.php
3 years ago
jetpack-related-posts.php
3 years ago
readme.md
3 years ago
related-posts-customizer.js
6 years ago
related-posts-rtl.css
3 years ago
related-posts.css
3 years ago
related-posts.js
3 years ago
related-posts.css
328 lines
| 1 | /** |
| 2 | * Jetpack related posts |
| 3 | */ |
| 4 | |
| 5 | /** |
| 6 | * The Gutenberg block |
| 7 | */ |
| 8 | |
| 9 | .jp-related-posts-i2__row { |
| 10 | display: flex; |
| 11 | margin-top: 1.5rem; |
| 12 | } |
| 13 | |
| 14 | .jp-related-posts-i2__row:first-child { |
| 15 | margin-top: 0; |
| 16 | } |
| 17 | |
| 18 | .jp-related-posts-i2__post { |
| 19 | flex-grow: 1; |
| 20 | flex-basis: 0; |
| 21 | margin: 0 10px; |
| 22 | display: flex; |
| 23 | flex-direction: column; |
| 24 | padding-left: 0; |
| 25 | } |
| 26 | |
| 27 | .jp-related-posts-i2__row[data-post-count="3"] .jp-related-posts-i2__post { |
| 28 | max-width: calc(33% - 20px); |
| 29 | } |
| 30 | |
| 31 | .jp-related-posts-i2__row[data-post-count="2"] .jp-related-posts-i2__post, |
| 32 | .jp-related-posts-i2__row[data-post-count="1"] .jp-related-posts-i2__post { |
| 33 | max-width: calc(50% - 20px); |
| 34 | } |
| 35 | |
| 36 | .jp-related-posts-i2__post-heading, .jp-related-posts-i2__post-img-link, |
| 37 | .jp-related-posts-i2__post-date, .jp-related-posts-i2__post-context, |
| 38 | .jp-related-posts-i2__post-author { |
| 39 | flex-direction: row; |
| 40 | display: block; |
| 41 | } |
| 42 | |
| 43 | .jp-related-posts-i2__post-heading { |
| 44 | margin: 0.5rem 0; |
| 45 | font-size: 1rem; |
| 46 | line-height: 1.2em; |
| 47 | } |
| 48 | |
| 49 | .jp-related-posts-i2__post-link { |
| 50 | display: block; |
| 51 | width: 100%; |
| 52 | line-height: 1.2em; |
| 53 | } |
| 54 | |
| 55 | .jp-related-posts-i2__post-img-link { |
| 56 | order: -1; |
| 57 | } |
| 58 | .jp-related-posts-i2__post-img-link img { |
| 59 | width: 100%; |
| 60 | } |
| 61 | |
| 62 | /* List view */ |
| 63 | |
| 64 | .jp-relatedposts-i2[data-layout="list"] .jp-related-posts-i2__row{ |
| 65 | margin-top: 0; |
| 66 | display: block; |
| 67 | } |
| 68 | |
| 69 | .jp-relatedposts-i2[data-layout="list"] .jp-related-posts-i2__post { |
| 70 | max-width: none; |
| 71 | margin: 0; |
| 72 | } |
| 73 | |
| 74 | .jp-relatedposts-i2[data-layout="list"].jp-related-posts-i2__post-img-link { |
| 75 | margin-top: 1rem; |
| 76 | } |
| 77 | |
| 78 | /* Breakpoints */ |
| 79 | @media only screen and (max-width: 640px) { |
| 80 | .jp-related-posts-i2__row { |
| 81 | margin-top: 0; |
| 82 | display: block; |
| 83 | } |
| 84 | .jp-related-posts-i2__row[data-post-count] .jp-related-posts-i2__post { |
| 85 | max-width: none; |
| 86 | margin: 0; |
| 87 | margin-top: 1rem; |
| 88 | } |
| 89 | .jp-related-posts-i2__post-img-link { |
| 90 | margin-top: 1rem; |
| 91 | } |
| 92 | .jp-related-posts-i2__post-img-link img { |
| 93 | width: 350px; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | /* Container */ |
| 98 | |
| 99 | #jp-relatedposts { |
| 100 | display: none; |
| 101 | padding-top: 1em; |
| 102 | margin: 1em 0; |
| 103 | position: relative; |
| 104 | clear: both; |
| 105 | } |
| 106 | |
| 107 | .jp-relatedposts:after { |
| 108 | content: ''; |
| 109 | display: block; |
| 110 | clear: both; |
| 111 | } |
| 112 | |
| 113 | /* Headline above related posts section, labeled "Related" */ |
| 114 | |
| 115 | #jp-relatedposts h3.jp-relatedposts-headline { |
| 116 | margin: 0 0 1em 0; |
| 117 | display: inline-block; |
| 118 | float: left; |
| 119 | font-size: 9pt; |
| 120 | font-weight: bold; |
| 121 | font-family: inherit; |
| 122 | } |
| 123 | |
| 124 | #jp-relatedposts h3.jp-relatedposts-headline em:before { |
| 125 | content: ""; |
| 126 | display: block; |
| 127 | width: 100%; |
| 128 | min-width: 30px; |
| 129 | border-top: 1px solid #dcdcde; |
| 130 | border-top: 1px solid rgba(0,0,0,.2); |
| 131 | margin-bottom: 1em; |
| 132 | } |
| 133 | |
| 134 | #jp-relatedposts h3.jp-relatedposts-headline em { |
| 135 | font-style: normal; |
| 136 | font-weight: bold; |
| 137 | } |
| 138 | |
| 139 | /* Related posts items (wrapping items) */ |
| 140 | |
| 141 | #jp-relatedposts .jp-relatedposts-items { |
| 142 | clear: left; |
| 143 | } |
| 144 | |
| 145 | #jp-relatedposts .jp-relatedposts-items-visual { |
| 146 | margin-right: -20px; |
| 147 | } |
| 148 | |
| 149 | /* Related posts item */ |
| 150 | |
| 151 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post { |
| 152 | float: left; |
| 153 | width: 33%; |
| 154 | margin: 0 0 1em; /* Needs to be same as the main outer wrapper for Related Posts */ |
| 155 | box-sizing: border-box; |
| 156 | -moz-box-sizing: border-box; |
| 157 | -webkit-box-sizing: border-box; |
| 158 | } |
| 159 | |
| 160 | #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post { |
| 161 | padding-right: 20px; |
| 162 | filter: alpha(opacity=80); |
| 163 | -moz-opacity: .8; |
| 164 | opacity: .8; |
| 165 | } |
| 166 | |
| 167 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4), |
| 168 | #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4) { |
| 169 | clear: both; |
| 170 | } |
| 171 | |
| 172 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a { |
| 173 | text-decoration: underline; |
| 174 | } |
| 175 | |
| 176 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover { |
| 177 | filter: alpha(opacity=100); |
| 178 | -moz-opacity: 1; |
| 179 | opacity: 1; |
| 180 | } |
| 181 | |
| 182 | /* Related posts item content */ |
| 183 | |
| 184 | #jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title, |
| 185 | #jp-relatedposts .jp-relatedposts-items p, |
| 186 | #jp-relatedposts .jp-relatedposts-items time { |
| 187 | font-size: 14px; |
| 188 | line-height: 20px; |
| 189 | margin: 0; |
| 190 | } |
| 191 | #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs { |
| 192 | position:relative; |
| 193 | } |
| 194 | #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay { |
| 195 | position:absolute; |
| 196 | top:0; |
| 197 | bottom:0; |
| 198 | left:0; |
| 199 | right:0; |
| 200 | display:block; |
| 201 | border-bottom: 0; |
| 202 | } |
| 203 | |
| 204 | #jp-relatedposts .jp-relatedposts-items p, |
| 205 | #jp-relatedposts .jp-relatedposts-items time { |
| 206 | margin-bottom: 0; |
| 207 | } |
| 208 | |
| 209 | #jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title { |
| 210 | text-transform: none; |
| 211 | margin: 0; |
| 212 | font-family: inherit; |
| 213 | display: block; |
| 214 | max-width: 100%; |
| 215 | } |
| 216 | |
| 217 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a { |
| 218 | font-size: inherit; |
| 219 | font-weight: normal; |
| 220 | text-decoration: none; |
| 221 | filter: alpha(opacity=100); |
| 222 | -moz-opacity: 1; |
| 223 | opacity: 1; |
| 224 | } |
| 225 | |
| 226 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover { |
| 227 | text-decoration: underline; |
| 228 | } |
| 229 | |
| 230 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img, |
| 231 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span { |
| 232 | display: block; |
| 233 | max-width: 90%; |
| 234 | overflow: hidden; |
| 235 | text-overflow: ellipsis; |
| 236 | } |
| 237 | |
| 238 | #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img, |
| 239 | #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post span { |
| 240 | height: auto; |
| 241 | max-width: 100%; |
| 242 | } |
| 243 | |
| 244 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date, |
| 245 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context { |
| 246 | opacity: .6; |
| 247 | } |
| 248 | |
| 249 | /* Hide the date by default, but leave the element there if a theme wants to use css to make it visible. */ |
| 250 | .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date { |
| 251 | display: none; |
| 252 | } |
| 253 | |
| 254 | /* Behavior when there are thumbnails in visual mode */ |
| 255 | #jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt { |
| 256 | display: none; |
| 257 | } |
| 258 | |
| 259 | /* Behavior when there are no thumbnails in visual mode */ |
| 260 | #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt { |
| 261 | overflow: hidden; |
| 262 | } |
| 263 | #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs span { |
| 264 | margin-bottom: 1em; |
| 265 | } |
| 266 | |
| 267 | /* List Layout */ |
| 268 | #jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post { |
| 269 | clear: both; |
| 270 | width: 100%; |
| 271 | } |
| 272 | |
| 273 | #jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img { |
| 274 | float: left; |
| 275 | overflow: hidden; |
| 276 | max-width: 33%; |
| 277 | margin-right: 3%; |
| 278 | } |
| 279 | |
| 280 | #jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title { |
| 281 | display: inline-block; |
| 282 | max-width: 63%; |
| 283 | } |
| 284 | |
| 285 | /* |
| 286 | * Responsive |
| 287 | */ |
| 288 | |
| 289 | @media only screen and (max-width: 640px) { |
| 290 | |
| 291 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post { |
| 292 | width: 50%; |
| 293 | } |
| 294 | |
| 295 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n) { |
| 296 | clear: left; |
| 297 | } |
| 298 | |
| 299 | #jp-relatedposts .jp-relatedposts-items-visual { |
| 300 | margin-right: 20px; |
| 301 | } |
| 302 | } |
| 303 | |
| 304 | @media only screen and (max-width: 320px) { |
| 305 | |
| 306 | #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post { |
| 307 | width: 100%; |
| 308 | clear: both; |
| 309 | margin: 0 0 1em; |
| 310 | } |
| 311 | |
| 312 | #jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img, |
| 313 | #jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title { |
| 314 | float: none; |
| 315 | max-width: 100%; |
| 316 | margin-right: 0; |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | /* |
| 321 | * Hide the related post section in the print view of a post |
| 322 | */ |
| 323 | |
| 324 | @media print { |
| 325 | .jp-relatedposts { |
| 326 | display:none !important; |
| 327 | } |
| 328 | } |