| 1 |
.wp-block-form-input .is-input-hidden { |
| 2 |
display: flex; |
| 3 |
position: relative; |
| 4 |
font-size: 0.85em; |
| 5 |
opacity: 0.3; |
| 6 |
border: 1px dashed; |
| 7 |
padding: 0.5em; |
| 8 |
box-sizing: border-box; |
| 9 |
background: repeating-linear-gradient(45deg, transparent, transparent 5px, currentColor 5px, currentColor 6px); |
| 10 |
justify-content: center; |
| 11 |
align-items: center; |
| 12 |
} |
| 13 |
.wp-block-form-input .is-input-hidden::after { |
| 14 |
content: attr(data-message); |
| 15 |
} |
| 16 |
.wp-block-form-input.is-selected .is-input-hidden { |
| 17 |
opacity: 1; |
| 18 |
background: none; |
| 19 |
} |