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 / snippets-table.less

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

117 lines 1.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 width: 30px;
15 text-align: center;
16
17 &.wbcr-inp-type-php {
18 background: #777bb3;
19 color: #ffffff;
20 }
21
22 &.wbcr-inp-type-text {
23 background: #4CAF50;
24 color: #fffffd;
25 }
26
27 &.wbcr-inp-type-universal {
28 background: #607D8B;
29 color: #ffffff;
30 }
31
32 &.wbcr-inp-type-css {
33 background: #1572b6;
34 color: #ffffff;
35 }
36
37 &.wbcr-inp-type-js {
38 background: #f7df1e;
39 color: #655b0e;
40 }
41
42 &.wbcr-inp-type-html {
43 background: #e44d26;
44 color: #fffffd;
45 }
46 }
47 }
48
49 .winp-snippet-library {
50 p.winp-icon {
51 padding: 10px 0 50px 0;
52 margin-right: 30px;
53
54 span {
55 font-size: 5em;
56 color: #c5ccd2;
57 }
58 }
59
60 p.winp-header-modal {
61 font-size: 28px;
62 color: #717880;
63 }
64
65 p.winp-title-modal {
66 font-size: 14px;
67 color: #b3b7ba;
68 padding-bottom: 20px;
69 }
70
71 .winp-more-padding {
72 padding-top: 100px;
73 }
74
75 /*.wbcr-inp-snippet-description {
76 width: 90%;
77 white-space: nowrap;
78 overflow: hidden;
79 text-overflow: ellipsis;
80 }*/
81
82 table.snippets {
83 .column-type {
84 width: 80px;
85 }
86
87 .column-preview {
88 width: 130px;
89 }
90
91 .column-datetime {
92 width: 130px;
93 }
94
95 .column-insert, .column-delete {
96 width: 100px;
97 }
98 }
99 }
100
101 #winp-library-buy-button {
102 background-color: #fdc018;
103 border-color: #e7b017;
104 color: white;
105 text-transform: uppercase;
106 border-radius: 1px;
107 padding: 10px 30px;
108
109 span {
110 //position: relative;
111 bottom: 13px;
112 }
113
114 span:hover {
115 color: #f3f4ef;
116 }
117 }