PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.0.0
Forumax – AI Powered Advanced Community Forum Plugin v2.0.0
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / assets / frontend / css / bbpc.css

bbpc.css in Forumax – AI Powered Advanced Community Forum Plugin 2.0.0, at assets/frontend/css/bbpc.css

294 lines 6.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 :root {
2 --bbpc_brand_color: var(--bbpc_brand_color_opt,#0866ff);
3 --border_on_white: #e6edf0;
4 --border_on_highlight: #e6edf0;
5 --body_bg: #fff;
6 --bs-white : #fff;
7 --white_op20: rgba(255, 255, 255, 0.2);
8 --black_25: #f9f9f9;
9 --black_50: #f2f2f2;
10 --black_75: #eeeeee;
11 --black_100: #d6d9dc;
12 --black_150: #c8ccd0;
13 --black_200: #bbc0c4;
14 --black_300: #9fa6ad;
15 --black_350: #9199a1;
16 --black_400: #848d95;
17 --black_500: #6a737c;
18 --black_600: #535a60;
19 --black_700: #3c4146;
20 --black_750: #2f3337;
21 --black_800: #242729;
22 --black_900: #0c0d0e;
23 --bs_sm: 0 1px 2px rgb(0 0 0 / 5%), 0 1px 4px rgb(0 0 0 / 5%), 0 2px 8px rgb(0 0 0 / 5%);
24 --bs_md: 0 1px 3px rgb(0 0 0 / 6%), 0 2px 6px rgb(0 0 0 / 6%), 0 3px 8px rgb(0 0 0 / 9%);
25 --bs_lg: 0 1px 4px rgb(0 0 0 / 9%), 0 3px 8px rgb(0 0 0 / 9%), 0 4px 13px rgb(0 0 0 / 13%);
26 }
27
28 /**
29 * BBP Core plugin main css file
30 */
31 .bbpc-attachment-lightbox {
32 position: fixed;
33 top: 0;
34 left: 0;
35 right: 0;
36 bottom: 0;
37 background: rgba(0, 0, 0, 0.8);
38 z-index: 9999;
39 width: 100%;
40 margin: auto;
41 padding: 100px 0;
42 display: flex;
43 justify-content: center;
44 align-items: center;
45 box-sizing: border-box;
46 }
47
48 .bbpc-attachment-lightbox-inner {
49 position: relative;
50 max-width: 85%;
51 display: flex;
52 align-items: center;
53 }
54
55 .bbpc-attachment-lightbox > .bbpc-attachment-lightbox-inner > span {
56 color: white;
57 font-size: 23px;
58 line-height: 22px;
59 background: red;
60 display: block;
61 height: 28px;
62 border-radius: 19px;
63 width: 28px;
64 text-align: center;
65 top: -15px;
66 right: -15px;
67 bottom: 100%;
68 z-index: 9999999999;
69 position: absolute;
70 cursor: pointer;
71 }
72
73 /* Voting button CSS */
74 .bbpc-agree-disagree-buttons button {
75 background: #f0f8ff;
76 border: 1px solid #cee1ef;
77 padding: 0px 15px;
78 height: 45px;
79 color: #333;
80 font-weight: 600;
81 transition: all 0.3s;
82 border-right: none;
83 box-sizing: border-box;
84 display: inline-block;
85 line-height: 9px !important;
86 border-top-right-radius: 0;
87 border-bottom-right-radius: 0;
88 }
89
90 .bbpc-agree-disagree-buttons button.active:hover:not(.active) {
91 background: #f0f8ff;
92 border-color: #cee1ef;
93 }
94
95 .bbpc-agree-disagree-buttons button.active {
96 background: var(--bbpc_brand_color);
97 color: #fff;
98 }
99
100 .bbpc-agree-disagree-buttons span.bbpc-reactions-btn-counter {
101 font-size: 16px;
102 background: #ffffff;
103 border: 1px solid #c0cad2;
104 padding: 0 15px;
105 margin-right: 10px;
106 color: #333;
107 font-weight: 600;
108 transition: all 0.3s;
109 display: inline-block;
110 line-height: 43px;
111 border-left-color: #d5d5d5;
112 width: 42px;
113 text-align: center;
114 border-top-right-radius: 5px;
115 border-bottom-right-radius: 5px;
116 }
117
118 /* Voting layout css */
119 .bbpc-voting-liked-wrap {
120 display: grid;
121 grid-template-columns: auto auto;
122 grid-gap: 10px;
123 }
124
125 .bbpc-voting-liked-wrap .bbpc-voting-liked a {
126 color: #333;
127 font-weight: 600;
128 text-decoration: none;
129 text-transform: capitalize;
130 margin: 5px 0 12px;
131 display: block;
132 padding: 10px;
133 background: #f0f8ff;
134 border: #cee1ef 1px solid !important;
135 box-sizing: border-box;
136 }
137
138 span.bbpc-agree-disagree-counter-wrap {
139 margin: 18px 0 5px;
140 display: block;
141 }
142
143 span.bbpc-agree-disagree-counter-wrap .fa-thumbs-up {
144 color: green;
145 font-size: 20px;
146 }
147
148 span.bbpc-agree-disagree-counter-wrap .fa-thumbs-down {
149 color: red;
150 font-size: 20px;
151 }
152
153 .bbpc-voting-liked::after,
154 .bbpc-voting-liked-wrap::after {
155 content: '';
156 display: block;
157 clear: both;
158 }
159
160 .bbpc-voting-liked-wrap.single-topic-wrap {
161 grid-template-columns: auto;
162 }
163
164 #bbp-user-body .bbpc-no-voting-wrap:not(:last-child) {
165 display: none;
166 }
167
168 .bbpc-no-voting-wrap {
169 background: #f1f1f1;
170 padding: 10px 15px;
171 font-weight: 500 !important;
172 font-size: 16px !important;
173 }
174
175 .bbpc-footer-actions {
176 padding-top: 20px;
177 margin-bottom: 10px;
178 display: flex;
179 flex-direction: column;
180 gap: 15px;
181 }
182
183 @media screen and (max-width: 768px) {
184 .bbpc-footer-actions,
185 .bbpc-voting-liked-wrap {
186 grid-template-columns: auto;
187 grid-gap: 5px;
188 justify-content: end;
189 position: unset;
190 display: flow-root;
191 }
192
193 .bbpc-agree-disagree-buttons {
194 display: grid;
195 grid-template-columns: auto auto;
196 grid-gap: 5px;
197 }
198 }
199
200 .bbpc-agree-disagree-buttons button {
201 position: relative;
202 }
203
204 .bbpc-agree-disagree-buttons button .bbpc-preloader::before {
205 content: "";
206 position: absolute;
207 top: 0;
208 left: 0;
209 width: 100%;
210 height: 100%;
211 opacity: 0.8;
212 z-index: 9999;
213 background: aliceblue;
214 }
215
216 .bbpc-agree-disagree-buttons button .bbpc-preloader::after {
217 content: "";
218 position: absolute;
219 top: 20px;
220 left: 32px;
221 transform: translate(-50%, -50%);
222 border: 5px solid #969696;
223 border-top: 5px solid #bc002b;
224 border-radius: 50%;
225 width: 30px;
226 height: 30px;
227 animation: geo_spin 1s linear infinite;
228 z-index: 10000;
229 right: 0px;
230 margin: auto;
231 text-align: center;
232 background: #ffffff;
233 }
234
235 @keyframes geo_spin {
236 0% {
237 transform: translate(-50%, -50%) rotate(0deg);
238 }
239 100% {
240 transform: translate(-50%, -50%) rotate(360deg);
241 }
242 }
243
244 .bbpc-voting-heading {
245 font-size: 20px;
246 display: block;
247 margin: 0 0 15px;
248 font-weight: 500;
249 }
250
251 /** === FORUM Info CSS === **/
252 .bbpc-widget-forum-info {
253 table {
254 img {
255 display: inline;
256 }
257 tr td:last-child {
258 text-align: right;
259 }
260 }
261 }
262
263 .show_subscribe {
264 .icon_action {
265 font-family: ElegantIcons;
266 font-style: normal;
267 vertical-align: middle;
268
269 &::before {
270 content: "\e012";
271 }
272 }
273 }
274
275 .bbpc-widget-forum-info tr i {
276 vertical-align: middle;
277 margin-right: 5px;
278 }
279
280 .bbp__success-subscribe .is-subscribed a.subscription-toggle {
281 background: transparent !important;
282 color: #4c4cf1 !important;
283 margin: 0;
284 padding: 0 !important;
285 }
286
287 .bbp__success-subscribe.alert {
288 border: 1px solid #94e3a1;
289 text-align: center;
290 }
291
292 .image-details .media-modal-content .search-form button{
293 transform: scaleX(1);
294 }