PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 2.2.3
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v2.2.3
3.4.2 3.4.1 3.4.0 3.3.9 3.3.8 3.3.7 3.3.6 3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 All 195 releases
convertkit / resources / backend / css / tinymce.css

tinymce.css in Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages 2.2.3, at resources/backend/css/tinymce.css

70 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * TinyMCE and QuickTag Modals
3 */
4 #convertkit-modal-body #convertkit-modal-body-body {
5 /* Scroll inner contents so that modal height doesn't need to exceed screen resolution. */
6 overflow-y: auto;
7 }
8 .convertkit-option {
9 display: grid;
10 grid-template-areas: "left right";
11 grid-template-columns: 150px auto;
12 grid-column-gap: 5px;
13 grid-row-gap: 5px;
14 justify-items: start;
15 text-align: left;
16 padding: 10px 15px;
17 border-width: 1px 0;
18 border-style: solid;
19 border-top: none;
20 border-bottom-color: #dfdfdf;
21 background-color: #f5f5f5;
22 -webkit-box-sizing: border-box;
23 -moz-box-sizing: border-box;
24 box-sizing: border-box;
25 }
26 .convertkit-option:nth-child(odd) {
27 background-color: #fcfcfc;
28 }
29 .convertkit-option div.left {
30 width: 100%;
31 grid-area: left;
32 -webkit-box-sizing: border-box;
33 -moz-box-sizing: border-box;
34 box-sizing: border-box;
35 }
36 .convertkit-option div.left *:not(input) {
37 line-height: 27px;
38 }
39 .convertkit-option div.right {
40 width: 100%;
41 line-height: 27px;
42 grid-area: right;
43 -webkit-box-sizing: border-box;
44 -moz-box-sizing: border-box;
45 box-sizing: border-box;
46 }
47 .convertkit-option input,
48 .convertkit-option select {
49 border: 1px solid #8c8f94;
50 }
51 .convertkit-option p {
52 white-space: normal;
53 }
54
55 /**
56 * Ensures consistent styling applied to 'Select color' button
57 * provided by WordPress' color picker across TinyMCE and QuickTag modals
58 */
59 .convertkit-option .wp-color-result-text {
60 background: #f6f7f7;
61 border-radius: 0 2px 2px 0;
62 border-left: 1px solid #c3c4c7;
63 color: #50575e;
64 display: block;
65 line-height: 2.54545455;
66 padding: 0 6px;
67 font-size: 11px;
68 text-align: center;
69 }
70