| 1 |
/** |
| 2 |
* TinyMCE and QuickTag Modals |
| 3 |
*/ |
| 4 |
.convertkit-option { |
| 5 |
display: grid; |
| 6 |
grid-template-areas: "left right"; |
| 7 |
grid-template-columns: 120px auto; |
| 8 |
grid-column-gap: 5px; |
| 9 |
grid-row-gap: 5px; |
| 10 |
justify-items: start; |
| 11 |
text-align: left; |
| 12 |
padding: 10px 15px; |
| 13 |
border-width: 1px 0; |
| 14 |
border-style: solid; |
| 15 |
border-top: none; |
| 16 |
border-bottom-color: #dfdfdf; |
| 17 |
background-color: #f5f5f5; |
| 18 |
-webkit-box-sizing: border-box; |
| 19 |
-moz-box-sizing: border-box; |
| 20 |
box-sizing: border-box; |
| 21 |
} |
| 22 |
.convertkit-option:nth-child(odd) { |
| 23 |
background-color: #fcfcfc; |
| 24 |
} |
| 25 |
.convertkit-option div.left { |
| 26 |
width: 100%; |
| 27 |
grid-area: left; |
| 28 |
-webkit-box-sizing: border-box; |
| 29 |
-moz-box-sizing: border-box; |
| 30 |
box-sizing: border-box; |
| 31 |
} |
| 32 |
.convertkit-option div.left *:not(input) { |
| 33 |
line-height: 27px; |
| 34 |
} |
| 35 |
.convertkit-option div.right { |
| 36 |
width: 100%; |
| 37 |
line-height: 27px; |
| 38 |
grid-area: right; |
| 39 |
-webkit-box-sizing: border-box; |
| 40 |
-moz-box-sizing: border-box; |
| 41 |
box-sizing: border-box; |
| 42 |
} |
| 43 |
.convertkit-option input, |
| 44 |
.convertkit-option select { |
| 45 |
border: 1px solid #8c8f94; |
| 46 |
} |
| 47 |
|