| 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 |
.convertkit-option p { |
| 48 |
white-space: normal; |
| 49 |
} |
| 50 |
|
| 51 |
/** |
| 52 |
* Ensures consistent styling applied to 'Select color' button |
| 53 |
* provided by WordPress' color picker across TinyMCE and QuickTag modals |
| 54 |
*/ |
| 55 |
.convertkit-option .wp-color-result-text { |
| 56 |
background: #f6f7f7; |
| 57 |
border-radius: 0 2px 2px 0; |
| 58 |
border-left: 1px solid #c3c4c7; |
| 59 |
color: #50575e; |
| 60 |
display: block; |
| 61 |
line-height: 2.54545455; |
| 62 |
padding: 0 6px; |
| 63 |
font-size: 11px; |
| 64 |
text-align: center; |
| 65 |
} |
| 66 |
|