PluginProbe
Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code / 5.5.3
Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code v5.5.3
5.5.3 3.1.0 3.2.0 3.2.1 3.3.0 3.4.0 3.4.1 3.4.2 3.4.3 3.5.0 3.5.1 3.5.2 3.6.0 3.7.0 3.8.0 3.8.1 3.8.2 3.8.3 4.0.0 4.0.2 4.0.3 4.0.4 4.0.5 4.1.0 4.1.1 All 78 releases
copy-the-code / includes / assets / css / style.css

style.css in Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code 5.5.3, at includes/assets/css/style.css

35 lines 611 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .ctc-block-copy {
2 transition: all ease-in-out 0.2s;
3 }
4
5 .ctc-block-content > p:last-child {
6 margin-bottom: 0;
7 }
8
9 .ctc-with-icon {
10 display: inline-flex;
11 align-items: center;
12 gap: 10px;
13 }
14
15 .ctc-with-icon .check-icon {
16 display: none;
17 }
18
19 .copied .ctc-with-icon .copy-icon {
20 display: none;
21 }
22
23 .copied .ctc-with-icon .check-icon {
24 display: block;
25 }
26
27 /* Prevent giant copy icons when blocks/shortcodes are inside table cells. */
28 table .ctc-with-icon svg,
29 table .ctc-block-copy svg {
30 width: 16px !important;
31 height: 16px !important;
32 max-width: 16px !important;
33 max-height: 16px !important;
34 flex-shrink: 0;
35 }