PluginProbe ʕ •ᴥ•ʔ
Robin Image Optimizer – Unlimited Image Optimization, WebP & AVIF / trunk
Robin Image Optimizer – Unlimited Image Optimization, WebP & AVIF vtrunk
2.0.5 trunk 1.3.7 1.4.0 1.4.1 1.4.2 1.4.6 1.5.0 1.5.3 1.5.6 1.5.8 1.6.5 1.6.6 1.6.9 1.7.0 1.7.4 1.8.1 1.8.2 1.9.0 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4
robin-image-optimizer / libs / factory / templates / assets / css / components.less
robin-image-optimizer / libs / factory / templates / assets / css Last commit date
libs 5 months ago clearfy-base.css 5 months ago clearfy-base.css.map 4 years ago clearfy-base.less 6 months ago components.css 5 months ago components.css.map 1 year ago components.less 6 months ago license-manager.css 6 months ago page-setup.css 5 months ago page-setup.css.map 4 years ago page-setup.less 3 years ago
components.less
151 lines
1 /**
2 * Page components
3 */
4
5 #WBCR {
6 .card-ribbon(@bgColor:#f7dea9, @color:#67532f) {
7 position: absolute;
8 bottom: 60px;
9 right: 0;
10 height: 30px;
11 width: 120px;
12 border-radius: 3px 0 0 3px;
13 background-color: @bgColor;
14 color: @color;
15 text-align: center;
16 font-size: 12px;
17 font-weight: 600;
18 line-height: 2.4;
19 text-transform: uppercase;
20 z-index: 1;
21 }
22
23 .wbc-factory-templates-000-components {
24 padding: 0 20px 20px;
25 text-align: left;
26
27 .plugin-card {
28 position: relative;
29 display: inline-block;
30 width: 32.7%;
31 height: 250px;
32 margin-left: 0;
33 margin-right: 0;
34 text-align: left;
35 float: none;
36 vertical-align: top;
37
38 &:first-child {
39 margin-left: 0;
40 }
41
42 .plugin-card-bottom {
43 position: absolute;
44 bottom: 0;
45 right: 0;
46 left: 0;
47 }
48
49 .plugin-card-top {
50 min-height: 163px;
51 }
52
53 .desc, .name {
54 margin-right: 0 !important;
55 }
56
57 .name {
58 h3 {
59 font-size: 17px;
60 margin-top: 0 !important;
61 }
62 }
63
64 .install-now {
65 float: right;
66 }
67
68 .delete-now {
69 float: right;
70 margin-left: 5px;
71
72 .dashicons, .dashicons-before:before {
73 font-size: 16px !important;
74 line-height: 1.5 !important;
75 color: #62696f;
76 }
77 }
78
79 a.open-plugin-details-modal {
80 color: #5c5d5f;
81 text-decoration: none;
82 font-weight: 600;
83 font-size: 15px;
84 }
85
86 // Premium
87 .plugin-card-premium-ribbon {
88 .card-ribbon();
89 }
90
91 // Free
92 .plugin-card-free-ribbon {
93 .card-ribbon(#cccccc, #6b6b6b);
94 }
95
96 // Freemium
97 .plugin-card-freemium-ribbon {
98 .card-ribbon(#cae2b3, #546742);
99 }
100
101 &.premium {
102 border-color: #e8d7b2;
103 background-color: #fff9eb;
104 }
105
106 &.plugin-status-deactive {
107 background-color: #f1f1f1;
108 //background-color: #f9f2f1;
109
110 a.open-plugin-details-modal {
111 color: #ababab;
112 text-decoration: none;
113 font-weight: 600;
114 font-size: 15px;
115 }
116
117 .plugin-icon {
118 opacity: 0.3;
119 }
120
121 .desc {
122 color: #afafaf;
123 }
124
125 &.premium {
126 background-color: #f9f2f1;
127 }
128 }
129 }
130 }
131 }
132
133 @media screen and (max-width: 1750px) {
134 #WBCR {
135 .wbc-factory-templates-000-components {
136 .plugin-card {
137 width: 49%;
138 }
139 }
140 }
141 }
142
143 @media screen and (max-width: 1350px) {
144 #WBCR {
145 .wbc-factory-templates-000-components {
146 .plugin-card {
147 width: 100%;
148 }
149 }
150 }
151 }