PluginProbe
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts / 2.3.1
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts v2.3.1
2.7.7 2.7.6 2.7.5 2.7.4 trunk 1.3 2.0.4 2.0.6 2.1.91 2.2.4 2.2.7 2.2.9 2.3.1 2.3.10 2.4.10 2.4.2 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.6.0 2.6.1 2.7.0 All 28 releases
insert-php / admin / assets / css / revisions.css

revisions.css in Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts 2.3.1, at admin/assets/css/revisions.css

109 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 prefixes:
3 .winp-rev- for revisions page
4 .winp-rbox- for revisions metabox (it used on pages revisions and edit)
5 */
6 /* REVISIONS PAGE*/
7 .winp-rev-header {
8 margin-bottom: 20px;
9 }
10 .winp-rev-title {
11 font-size: 18px;
12 min-width: 4rem;
13 }
14 .winp-rev-changed {
15 border: 1px solid #ee8;
16 background: #ffffe0;
17 }
18 .winp-rev-caption {
19 padding: 11px 11px;
20 margin: 0;
21 font-size: 16px;
22 font-weight: normal;
23 }
24 .winp-rev-compare-col,
25 .winp-rev-compare-middle-col,
26 .winp-rev-compare-middle-col {
27 display: block;
28 float: left;
29 }
30 .winp-rev-compare-col {
31 width: 47%;
32 }
33 .winp-rev-compare-middle-col {
34 width: 6%;
35 min-height: 1px;
36 }
37 .winp-rev-diff-header .revisions-controls {
38 height: auto;
39 padding-top: 0;
40 }
41 .winp-diff-section {
42 margin-bottom: 20px;
43 }
44 /*
45 swap diff highlights for left and right panel
46 'cause left panel only displayed
47 */
48 .CodeMirror-merge-l-chunk {
49 background: #ffffe0;
50 }
51 .CodeMirror-merge-l-chunk-start {
52 border-top: 1px solid #ee8;
53 }
54 .CodeMirror-merge-l-chunk-end {
55 border-bottom: 1px solid #ee8;
56 }
57 .CodeMirror-merge-l-connect {
58 fill: #ffffe0;
59 stroke: #ee8;
60 stroke-width: 1px;
61 }
62 .CodeMirror-merge-r-chunk {
63 background: #eef;
64 }
65 .CodeMirror-merge-r-chunk-start {
66 border-top: 1px solid #88e;
67 }
68 .CodeMirror-merge-r-chunk-end {
69 border-bottom: 1px solid #88e;
70 }
71 .CodeMirror-merge-r-connect {
72 fill: #eef;
73 stroke: #88e;
74 stroke-width: 1px;
75 }
76 /* METABOX */
77 .snippet-revisions th {
78 font-weight: 600;
79 }
80 .winp-rbox-no-items {
81 text-align: center;
82 }
83 #WINP_RevisionsMetaBox {
84 display: block;
85 }
86 #WINP_RevisionsMetaBox button,
87 #WINP_RevisionsMetaBox h2,
88 #WINP_RevisionsMetaBox div.inside table {
89 opacity: 0.4;
90 }
91 #WINP_RevisionsMetaBox p.winp-purchase-button {
92 position: absolute;
93 z-index: 1;
94 left: 40%;
95 left: calc(100%/2 - 120px);
96 top: 20%;
97 }
98 #WINP_RevisionsMetaBox .revisions-actionbar {
99 padding-top: 10px;
100 }
101 #WINP_RevisionsMetaBox.hide-if-js {
102 display: none;
103 }
104 /* EDITOR PAGE */
105 /* hide default revision control in metabox "save"*/
106 .post-type-wbcr-snippets .misc-pub-revisions {
107 display: none;
108 }
109