PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 2.0.1
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v2.0.1
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 2.3.3 All 194 releases
convertkit / resources / backend / css / tinymce.css

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

66 lines 1.4 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-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