PluginProbe
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts / 2.7.0
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts v2.7.0
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 / snippets-table.less

snippets-table.less in Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts 2.7.0, at admin/assets/css/snippets-table.less

166 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 #winp-snippet-library {
2 .wbcr-inp-enable-snippet-button,
3 .wbcr-inp-delete-snippet-button {
4 .dashicons {
5 margin-top: 4px;
6 }
7 }
8
9 .wbcr-inp-snippet-type-label {
10 display: inline-block;
11 padding: 3px 8px 6px;
12 border-radius: 3px;
13 font-weight: bold;
14 text-align: center;
15
16 &.wbcr-inp-type-PHP {
17 background: #777bb3;
18 color: #ffffff;
19 }
20
21 &.wbcr-inp-type-Text {
22 background: #4CAF50;
23 color: #fffffd;
24 }
25
26 &.wbcr-inp-type-Universal {
27 background: #607D8B;
28 color: #ffffff;
29 }
30
31 &.wbcr-inp-type-CSS {
32 background: #1572b6;
33 color: #ffffff;
34 }
35
36 &.wbcr-inp-type-JS {
37 background: #f7df1e;
38 color: #655b0e;
39 }
40
41 &.wbcr-inp-type-HTML {
42 background: #e44d26;
43 color: #fffffd;
44 }
45
46 &.wbcr-inp-type-Advert {
47 background: #26aa5d;
48 color: #fffffd;
49 }
50 }
51 }
52
53 .winp-snippet-library {
54 .winp-upsell-container {
55 max-width: 640px;
56 margin: 60px auto;
57 padding: 0 20px;
58 }
59
60 .winp-upsell-card {
61 background: #fff;
62 border: 1px solid #e5e7eb;
63 border-radius: 12px;
64 padding: 40px;
65 text-align: center;
66 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
67 }
68
69 .winp-upsell-icon {
70 width: 64px;
71 height: 64px;
72 background: #6366f1;
73 border-radius: 12px;
74 display: inline-flex;
75 align-items: center;
76 justify-content: center;
77 margin-bottom: 24px;
78
79 .dashicons {
80 font-size: 32px;
81 width: 32px;
82 height: 32px;
83 color: #fff;
84 }
85 }
86
87 .winp-upsell-title {
88 font-size: 24px;
89 font-weight: 600;
90 margin: 0 0 8px 0;
91 color: #111827;
92 }
93
94 .winp-upsell-badge {
95 font-size: 14px;
96 color: #9ca3af;
97 margin: 0 0 20px 0;
98 font-weight: 500;
99 }
100
101 .winp-upsell-description {
102 font-size: 16px;
103 color: #6b7280;
104 line-height: 1.6;
105 margin: 0 0 32px 0;
106 }
107
108 .winp-upsell-button {
109 background: #6366f1 !important;
110 border-color: #6366f1 !important;
111 color: #fff !important;
112 padding: 14px 40px !important;
113 font-size: 18px !important;
114 font-weight: 600;
115 text-decoration: none;
116 display: inline-block;
117 border-radius: 6px;
118 box-shadow: none !important;
119 text-shadow: none !important;
120 height: auto !important;
121 line-height: normal !important;
122
123 &:hover,
124 &:focus {
125 background: #5558e3 !important;
126 border-color: #5558e3 !important;
127 color: #fff !important;
128 }
129 }
130
131 table.snippets {
132 .column-type {
133 width: 120px;
134 }
135
136 .column-preview {
137 width: 130px;
138 }
139
140 .column-datetime {
141 width: 130px;
142 }
143
144 .column-insert, .column-delete {
145 width: 100px;
146 }
147 }
148 }
149
150 #winp-library-buy-button {
151 background-color: #fdc018;
152 border-color: #e7b017;
153 color: white;
154 text-transform: uppercase;
155 border-radius: 1px;
156 padding: 10px 30px;
157
158 span {
159 //position: relative;
160 bottom: 13px;
161 }
162
163 span:hover {
164 color: #f3f4ef;
165 }
166 }