| 1 |
.interface-complementary-area__fill:has(.spspc-shortcode-portal) { |
| 2 |
display: flex; |
| 3 |
flex-direction: column; |
| 4 |
} |
| 5 |
.spspc-shortcode-portal { |
| 6 |
background: #fff; |
| 7 |
border-bottom: 1px solid #ccc; |
| 8 |
flex-shrink: 0; |
| 9 |
} |
| 10 |
|
| 11 |
.spspc-shortcode-panel { |
| 12 |
display: flex; |
| 13 |
flex-direction: column; |
| 14 |
gap: 12px; |
| 15 |
padding: 16px; |
| 16 |
|
| 17 |
.spspc-shortcode-panel__intro { |
| 18 |
margin: 0; |
| 19 |
font: 400 13px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; |
| 20 |
color: #3d434b; |
| 21 |
} |
| 22 |
|
| 23 |
.spspc-shortcode-panel__link { |
| 24 |
color: #1a74e4; |
| 25 |
font-weight: 500; |
| 26 |
text-decoration: underline; |
| 27 |
|
| 28 |
&:hover, |
| 29 |
&:focus { |
| 30 |
color: #1565c0; |
| 31 |
border: none; |
| 32 |
box-shadow: none; |
| 33 |
} |
| 34 |
} |
| 35 |
|
| 36 |
.spspc-shortcode-panel__chip { |
| 37 |
display: flex; |
| 38 |
align-items: center; |
| 39 |
gap: 8px; |
| 40 |
width: 100%; |
| 41 |
padding: 8px 16px; |
| 42 |
background: #e7dff0; |
| 43 |
border: 1px solid #e0d0f1; |
| 44 |
border-radius: 2px; |
| 45 |
color: #3d434b; |
| 46 |
font: 400 14px/20px Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; |
| 47 |
cursor: pointer; |
| 48 |
text-align: left; |
| 49 |
box-shadow: none; |
| 50 |
transition: all .3s ease-in-out; |
| 51 |
|
| 52 |
&:hover, |
| 53 |
&:focus { |
| 54 |
background: #e0d0f1; |
| 55 |
outline: none; |
| 56 |
} |
| 57 |
} |
| 58 |
|
| 59 |
.spspc-shortcode-panel__code { |
| 60 |
white-space: nowrap; |
| 61 |
overflow: hidden; |
| 62 |
text-overflow: ellipsis; |
| 63 |
} |
| 64 |
|
| 65 |
.spspc-shortcode-panel__copy { |
| 66 |
display: inline-flex; |
| 67 |
flex-shrink: 0; |
| 68 |
width: 18px; |
| 69 |
height: 18px; |
| 70 |
color: #3d434b; |
| 71 |
|
| 72 |
&-text { |
| 73 |
color: green; |
| 74 |
} |
| 75 |
} |
| 76 |
} |
| 77 |
|