| 1 |
#convertkit-bulk-edit { |
| 2 |
display: none; |
| 3 |
} |
| 4 |
|
| 5 |
#convertkit-quick-edit { |
| 6 |
display: none; |
| 7 |
} |
| 8 |
|
| 9 |
.convertkit-bulk-quick-edit > div { |
| 10 |
display: grid; |
| 11 |
grid-template-columns: auto 36px; |
| 12 |
column-gap: 10px; |
| 13 |
align-items: end; |
| 14 |
margin: 0 0 5px 0; |
| 15 |
} |
| 16 |
|
| 17 |
.convertkit-bulk-quick-edit > div label { |
| 18 |
display: grid; |
| 19 |
grid-template-columns: 78px auto; |
| 20 |
margin: 0; |
| 21 |
} |
| 22 |
|
| 23 |
.convertkit-bulk-quick-edit > div label select { |
| 24 |
width: 100%; |
| 25 |
max-width: 100%; |
| 26 |
} |
| 27 |
|
| 28 |
.convertkit-bulk-quick-edit > div label span.title.convertkit-icon-form { |
| 29 |
background: url(../images/block-icon-form.svg) 0% 50% no-repeat; |
| 30 |
background-size: 20px 20px; |
| 31 |
text-indent: 24px; |
| 32 |
} |
| 33 |
|
| 34 |
.convertkit-bulk-quick-edit > div label span.title.convertkit-icon-tag { |
| 35 |
background: url(../images/tag.svg) 0% 50% no-repeat; |
| 36 |
background-size: 20px 20px; |
| 37 |
text-indent: 24px; |
| 38 |
} |
| 39 |
|
| 40 |
.convertkit-bulk-quick-edit > div label span.title.convertkit-icon-restrict-content { |
| 41 |
background: url(../images/members.svg) 0% 50% no-repeat; |
| 42 |
background-size: 20px 20px; |
| 43 |
text-indent: 24px; |
| 44 |
} |
| 45 |
|
| 46 |
@media screen and (max-width: 782px) { |
| 47 |
|
| 48 |
.convertkit-bulk-quick-edit > div label { |
| 49 |
display: block; |
| 50 |
} |
| 51 |
|
| 52 |
.convertkit-bulk-quick-edit > div button { |
| 53 |
width: 40px; |
| 54 |
height: 40px; |
| 55 |
} |
| 56 |
} |
| 57 |
|