| 1 |
/** |
| 2 |
* Colors |
| 3 |
*/ |
| 4 |
/** |
| 5 |
* SCSS Variables. |
| 6 |
* |
| 7 |
* Please use variables from this sheet to ensure consistency across the UI. |
| 8 |
* Don't add to this sheet unless you're pretty sure the value will be reused in many places. |
| 9 |
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI. |
| 10 |
*/ |
| 11 |
/** |
| 12 |
* Fonts & basic variables. |
| 13 |
*/ |
| 14 |
/** |
| 15 |
* Typography |
| 16 |
*/ |
| 17 |
/** |
| 18 |
* Grid System. |
| 19 |
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/ |
| 20 |
*/ |
| 21 |
/** |
| 22 |
* Radius scale. |
| 23 |
*/ |
| 24 |
/** |
| 25 |
* Elevation scale. |
| 26 |
*/ |
| 27 |
/** |
| 28 |
* Dimensions. |
| 29 |
*/ |
| 30 |
/** |
| 31 |
* Mobile specific styles |
| 32 |
*/ |
| 33 |
/** |
| 34 |
* Editor styles. |
| 35 |
*/ |
| 36 |
/** |
| 37 |
* Block & Editor UI. |
| 38 |
*/ |
| 39 |
/** |
| 40 |
* Block paddings. |
| 41 |
*/ |
| 42 |
/** |
| 43 |
* React Native specific. |
| 44 |
* These variables do not appear to be used anywhere else. |
| 45 |
*/ |
| 46 |
.block-editor-block-list__block[data-type="core/more"] { |
| 47 |
max-width: 100%; |
| 48 |
text-align: center; |
| 49 |
margin-top: 28px; |
| 50 |
margin-bottom: 28px; |
| 51 |
} |
| 52 |
|
| 53 |
.wp-block-more { |
| 54 |
display: block; |
| 55 |
text-align: center; |
| 56 |
white-space: nowrap; |
| 57 |
} |
| 58 |
.wp-block-more .rich-text { |
| 59 |
position: relative; |
| 60 |
font-size: 13px; |
| 61 |
text-transform: uppercase; |
| 62 |
font-weight: var(--wpds-typography-font-weight-emphasis, 600); |
| 63 |
font-family: -apple-system, system-ui, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| 64 |
color: #757575; |
| 65 |
display: inline-flex; |
| 66 |
white-space: nowrap; |
| 67 |
text-align: center; |
| 68 |
background: #fff; |
| 69 |
padding: 10px 36px; |
| 70 |
} |
| 71 |
.wp-block-more::before { |
| 72 |
content: ""; |
| 73 |
position: absolute; |
| 74 |
top: 50%; |
| 75 |
left: 0; |
| 76 |
right: 0; |
| 77 |
border-top: 3px dashed #ccc; |
| 78 |
} |