PluginProbe ʕ •ᴥ•ʔ
Disable Admin Notices – Hide Dashboard Notifications / trunk
Disable Admin Notices – Hide Dashboard Notifications vtrunk
1.4.5 trunk 1.0.0 1.0.2 1.0.3 1.0.5 1.0.6 1.1.1 1.1.3 1.1.4 1.2.0 1.2.2 1.2.3 1.2.4 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4
disable-admin-notices / libs / factory / templates / assets / css / components.less
disable-admin-notices / libs / factory / templates / assets / css Last commit date
libs 1 year ago clearfy-base.css 1 year ago clearfy-base.css.map 4 years ago clearfy-base.less 3 years ago components.css 1 year ago components.css.map 1 year ago components.less 1 year ago page-setup.css 1 year ago page-setup.css.map 4 years ago page-setup.less 3 years ago
components.less
153 lines
1 /**
2 * Page components
3 * @author Alex Kovalev <alex.kovalevv@gmail.com>
4 * @copyright Alex Kovalev 30.09.2017
5 */
6
7 #WBCR {
8 .card-ribbon(@bgColor:#f7dea9, @color:#67532f) {
9 position: absolute;
10 bottom: 60px;
11 right: 0;
12 height: 30px;
13 width: 120px;
14 border-radius: 3px 0 0 3px;
15 background-color: @bgColor;
16 color: @color;
17 text-align: center;
18 font-size: 12px;
19 font-weight: 600;
20 line-height: 2.4;
21 text-transform: uppercase;
22 z-index: 1;
23 }
24
25 .wbc-factory-templates-000-components {
26 padding: 0 20px 20px;
27 text-align: left;
28
29 .plugin-card {
30 position: relative;
31 display: inline-block;
32 width: 32.7%;
33 height: 250px;
34 margin-left: 0;
35 margin-right: 0;
36 text-align: left;
37 float: none;
38 vertical-align: top;
39
40 &:first-child {
41 margin-left: 0;
42 }
43
44 .plugin-card-bottom {
45 position: absolute;
46 bottom: 0;
47 right: 0;
48 left: 0;
49 }
50
51 .plugin-card-top {
52 min-height: 163px;
53 }
54
55 .desc, .name {
56 margin-right: 0 !important;
57 }
58
59 .name {
60 h3 {
61 font-size: 17px;
62 margin-top: 0 !important;
63 }
64 }
65
66 .install-now {
67 float: right;
68 }
69
70 .delete-now {
71 float: right;
72 margin-left: 5px;
73
74 .dashicons, .dashicons-before:before {
75 font-size: 16px !important;
76 line-height: 1.5 !important;
77 color: #62696f;
78 }
79 }
80
81 a.open-plugin-details-modal {
82 color: #5c5d5f;
83 text-decoration: none;
84 font-weight: 600;
85 font-size: 15px;
86 }
87
88 // Premium
89 .plugin-card-premium-ribbon {
90 .card-ribbon();
91 }
92
93 // Free
94 .plugin-card-free-ribbon {
95 .card-ribbon(#cccccc, #6b6b6b);
96 }
97
98 // Freemium
99 .plugin-card-freemium-ribbon {
100 .card-ribbon(#cae2b3, #546742);
101 }
102
103 &.premium {
104 border-color: #e8d7b2;
105 background-color: #fff9eb;
106 }
107
108 &.plugin-status-deactive {
109 background-color: #f1f1f1;
110 //background-color: #f9f2f1;
111
112 a.open-plugin-details-modal {
113 color: #ababab;
114 text-decoration: none;
115 font-weight: 600;
116 font-size: 15px;
117 }
118
119 .plugin-icon {
120 opacity: 0.3;
121 }
122
123 .desc {
124 color: #afafaf;
125 }
126
127 &.premium {
128 background-color: #f9f2f1;
129 }
130 }
131 }
132 }
133 }
134
135 @media screen and (max-width: 1750px) {
136 #WBCR {
137 .wbc-factory-templates-000-components {
138 .plugin-card {
139 width: 49%;
140 }
141 }
142 }
143 }
144
145 @media screen and (max-width: 1350px) {
146 #WBCR {
147 .wbc-factory-templates-000-components {
148 .plugin-card {
149 width: 100%;
150 }
151 }
152 }
153 }