plugin-search.css
4 years ago
plugin-search.js
6 years ago
psh-128.png
2 years ago
psh-256.png
2 years ago
psh.svg
2 years ago
plugin-search.css
85 lines
| 1 | .plugin-card-jetpack-plugin-search h3 { |
| 2 | margin: 0 0 4px 0; |
| 3 | } |
| 4 | |
| 5 | .plugin-card-jetpack-plugin-search .column-name, |
| 6 | .plugin-card-jetpack-plugin-search .column-description { |
| 7 | margin-right: 20px; |
| 8 | } |
| 9 | |
| 10 | .plugin-card-jetpack-plugin-search .action-links { |
| 11 | overflow: auto; |
| 12 | position: static; |
| 13 | } |
| 14 | |
| 15 | @media screen and (max-width: 1100px) and (min-width: 782px), (max-width: 480px) { |
| 16 | .plugin-card-jetpack-plugin-search .action-links { |
| 17 | margin-left: 0; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | .plugin-card-jetpack-plugin-search .plugin-action-buttons { |
| 22 | margin: 0; |
| 23 | width: 100%; |
| 24 | text-align: left; |
| 25 | white-space: nowrap; |
| 26 | } |
| 27 | |
| 28 | .plugin-card-jetpack-plugin-search .plugin-action-buttons .jetpack-plugin-search__primary { |
| 29 | background: #069e08; |
| 30 | border-color: #00a523; |
| 31 | color: #fff; |
| 32 | box-shadow: 0 1px 0 #c5e2c3; |
| 33 | } |
| 34 | |
| 35 | .plugin-card-jetpack-plugin-search .plugin-action-buttons .jetpack-plugin-search__primary:hover { |
| 36 | background: #00a523; |
| 37 | border-color: #008b1d; |
| 38 | color: #fff; |
| 39 | } |
| 40 | |
| 41 | .plugin-card-jetpack-plugin-search .plugin-card-bottom { |
| 42 | display: none; |
| 43 | } |
| 44 | |
| 45 | .jetpack-plugin-search__bottom { |
| 46 | display: flex; |
| 47 | align-items: center; |
| 48 | align-content: space-between; |
| 49 | clear: both; |
| 50 | padding: 12px 20px; |
| 51 | background-color: #f6f7f7; |
| 52 | border-top: 1px solid #dcdcde; |
| 53 | overflow: hidden; |
| 54 | } |
| 55 | |
| 56 | .jetpack-plugin-search__text { |
| 57 | flex: 1; |
| 58 | margin: 0 24px 0 16px; |
| 59 | } |
| 60 | |
| 61 | @media screen and (max-width: 1100px) and (min-width: 782px), (max-width: 480px) { |
| 62 | .plugin-card-jetpack-plugin-search .plugin-action-buttons li { |
| 63 | display: block; |
| 64 | } |
| 65 | .plugin-card-jetpack-plugin-search .plugin-action-buttons li button { |
| 66 | margin-right: 0; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | /* Hides the link to dismiss cards when it's in action links are before being moved to bottom row*/ |
| 71 | .action-links .jetpack-plugin-search__dismiss { |
| 72 | display: none; |
| 73 | } |
| 74 | |
| 75 | .jetpack-plugin-search__bottom .jetpack-plugin-search__dismiss { |
| 76 | color: #484848; |
| 77 | font-style: italic; |
| 78 | text-decoration: underline; |
| 79 | cursor: pointer; |
| 80 | } |
| 81 | |
| 82 | .jetpack-plugin-search__dismiss:hover { |
| 83 | color: #646970; |
| 84 | } |
| 85 |