| 1 |
/*!***********************************************************************************************************************************************************************************************************************************************!*\ |
| 2 |
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/forums/editor.scss ***! |
| 3 |
\***********************************************************************************************************************************************************************************************************************************************/ |
| 4 |
:root { |
| 5 |
--rob: "Roboto", sans-serif; |
| 6 |
--great: "Great Vibes", cursive; |
| 7 |
--bg_gradient: linear-gradient(45deg, #F5FDFF, #FEEFEC); |
| 8 |
--bbpc_brand_color: var(--bbpc_brand_color_opt,#0866ff); |
| 9 |
--h_title: #1d2746; |
| 10 |
--p_color: #6b707f; |
| 11 |
--bs-white: #fff; |
| 12 |
--black_25: #f9f9f9; |
| 13 |
--black_50: #f2f2f2; |
| 14 |
--black_75: #eeeeee; |
| 15 |
--black_90: #e0e6f0; |
| 16 |
--black_100: #d6d9dc; |
| 17 |
--black_150: #c8ccd0; |
| 18 |
--black_200: #bbc0c4; |
| 19 |
--black_300: #9fa6ad; |
| 20 |
--black_350: #9199a1; |
| 21 |
--black_400: #848d95; |
| 22 |
--black_500: #6a737c; |
| 23 |
--black_600: #535a60; |
| 24 |
--black_700: #3c4146; |
| 25 |
--black_750: #2f3337; |
| 26 |
--black_800: #242729; |
| 27 |
--black_900: #0c0d0e; |
| 28 |
--bbpc_color: #078669; |
| 29 |
--baseColor2: #4a6ee0; |
| 30 |
--bs_white: #fff; |
| 31 |
} |
| 32 |
|
| 33 |
/*font Variables*/ |
| 34 |
|
| 35 |
/**=== Functions ===**/ |
| 36 |
|
| 37 |
.col-md-offset-right-1, |
| 38 |
.col-lg-offset-right-1 { |
| 39 |
margin-right: 8.33333333%; |
| 40 |
} |
| 41 |
|
| 42 |
.communities-boxes { |
| 43 |
display: flex; |
| 44 |
flex-wrap: wrap; |
| 45 |
margin: 0 -30px; |
| 46 |
gap: 30px; |
| 47 |
} |
| 48 |
|
| 49 |
@media (max-width: 1025px) { |
| 50 |
.communities-boxes { |
| 51 |
margin: 0 -10px; |
| 52 |
} |
| 53 |
} |
| 54 |
|
| 55 |
@media (max-width: 992px) { |
| 56 |
.communities-boxes { |
| 57 |
flex-wrap: wrap; |
| 58 |
justify-content: center; |
| 59 |
width: calc(100% + 30px); |
| 60 |
} |
| 61 |
} |
| 62 |
|
| 63 |
@media (max-width: 420px) { |
| 64 |
.communities-boxes { |
| 65 |
width: calc(100% + 15px); |
| 66 |
} |
| 67 |
} |
| 68 |
|
| 69 |
.communities-boxes .com-box { |
| 70 |
text-align: center; |
| 71 |
margin-bottom: 57px; |
| 72 |
width: 20%; |
| 73 |
flex: 0 0 200px; |
| 74 |
} |
| 75 |
|
| 76 |
@media (max-width: 1200px) { |
| 77 |
.communities-boxes .com-box { |
| 78 |
flex: 0 0 165px; |
| 79 |
} |
| 80 |
} |
| 81 |
|
| 82 |
@media (max-width: 991px) { |
| 83 |
.communities-boxes .com-box { |
| 84 |
flex: 0 0 180px; |
| 85 |
} |
| 86 |
} |
| 87 |
|
| 88 |
@media (max-width: 768px) { |
| 89 |
.communities-boxes .com-box { |
| 90 |
flex: 0 0 185px; |
| 91 |
} |
| 92 |
} |
| 93 |
|
| 94 |
@media (max-width: 426px) { |
| 95 |
.communities-boxes .com-box { |
| 96 |
flex: 0 0 170px; |
| 97 |
margin-bottom: 30px; |
| 98 |
} |
| 99 |
} |
| 100 |
|
| 101 |
.communities-boxes .com-box .icon-container { |
| 102 |
border-radius: 6px; |
| 103 |
background: var(--bs-white); |
| 104 |
box-shadow: 0 40px 70px 0 rgba(2, 47, 57, 0.1); |
| 105 |
display: flex; |
| 106 |
align-items: center; |
| 107 |
justify-content: center; |
| 108 |
height: 100px; |
| 109 |
width: 100px; |
| 110 |
margin: 0 auto 20px; |
| 111 |
} |
| 112 |
|
| 113 |
.communities-boxes .com-box .icon-container img { |
| 114 |
width: 40px; |
| 115 |
height: 40px; |
| 116 |
-o-object-fit: cover; |
| 117 |
object-fit: cover; |
| 118 |
} |
| 119 |
|
| 120 |
.communities-boxes .com-box .com-box-content .title { |
| 121 |
font-size: 20px; |
| 122 |
line-height: 26px; |
| 123 |
font-weight: 500; |
| 124 |
color: var(--black_800); |
| 125 |
margin-bottom: 5px; |
| 126 |
transition: all 0.3s ease-in-out; |
| 127 |
letter-spacing: normal; |
| 128 |
margin-top: 10px; |
| 129 |
} |
| 130 |
|
| 131 |
.communities-boxes .com-box .com-box-content .title a { |
| 132 |
color: var(--black_800); |
| 133 |
} |
| 134 |
|
| 135 |
.communities-boxes .com-box .com-box-content .title a:hover { |
| 136 |
color: var(--bbpc_brand_color); |
| 137 |
text-decoration: none; |
| 138 |
} |
| 139 |
|
| 140 |
.communities-boxes .com-box .com-box-content .title:hover { |
| 141 |
color: var(--bbpc_brand_color); |
| 142 |
} |
| 143 |
|
| 144 |
.communities-boxes .com-box .com-box-content .total-post { |
| 145 |
color: var(--p_color); |
| 146 |
font-size: 14px; |
| 147 |
margin-top: 0; |
| 148 |
} |
| 149 |
|
| 150 |
.more-communities { |
| 151 |
padding: 22px 0; |
| 152 |
border-top: 1px solid #e8ecee; |
| 153 |
border-bottom: 1px solid #e8ecee; |
| 154 |
} |
| 155 |
|
| 156 |
.more-communities .collapse-wrap, |
| 157 |
.more-communities .forumax-collapse-wrap { |
| 158 |
margin-top: 80px; |
| 159 |
display: none; |
| 160 |
} |
| 161 |
|
| 162 |
.more-communities .collapse-btn-wrap, |
| 163 |
.more-communities .forumax-collapse-btn-wrap { |
| 164 |
text-align: center; |
| 165 |
display: table; |
| 166 |
color: var(--black_600); |
| 167 |
font-weight: 500; |
| 168 |
margin: auto; |
| 169 |
} |
| 170 |
|
| 171 |
.more-communities .collapse-btn-wrap:hover, |
| 172 |
.more-communities .forumax-collapse-btn-wrap:hover { |
| 173 |
text-decoration: none; |
| 174 |
color: var(--black_800); |
| 175 |
} |
| 176 |
|
| 177 |
.more-communities .collapse-btn-wrap svg, |
| 178 |
.more-communities .forumax-collapse-btn-wrap svg { |
| 179 |
position: relative; |
| 180 |
vertical-align: middle; |
| 181 |
display: inline; |
| 182 |
} |
| 183 |
|
| 184 |
.more-communities .collapse-btn-wrap .icon_plus path, |
| 185 |
.more-communities .collapse-btn-wrap .icon_plus line, |
| 186 |
.more-communities .collapse-btn-wrap .icon_minus path, |
| 187 |
.more-communities .collapse-btn-wrap .icon_minus line, |
| 188 |
.more-communities .forumax-collapse-btn-wrap .icon_plus path, |
| 189 |
.more-communities .forumax-collapse-btn-wrap .icon_plus line, |
| 190 |
.more-communities .forumax-collapse-btn-wrap .icon_minus path, |
| 191 |
.more-communities .forumax-collapse-btn-wrap .icon_minus line { |
| 192 |
stroke: var(--bbpc_brand_color); |
| 193 |
} |
| 194 |
|
| 195 |
.more-communities .collapse-btn-wrap .icon_minus, |
| 196 |
.more-communities .forumax-collapse-btn-wrap .icon_minus { |
| 197 |
display: none; |
| 198 |
} |
| 199 |
|
| 200 |
.more-communities .collapse-btn-wrap.active .icon_plus, |
| 201 |
.more-communities .forumax-collapse-btn-wrap.active .icon_plus { |
| 202 |
display: none; |
| 203 |
} |
| 204 |
|
| 205 |
.more-communities .collapse-btn-wrap.active .icon_minus, |
| 206 |
.more-communities .forumax-collapse-btn-wrap.active .icon_minus { |
| 207 |
display: initial; |
| 208 |
} |
| 209 |
|
| 210 |
body.body_dark .communities-boxes .com-box .com-box-content .title a { |
| 211 |
color: #fff; |
| 212 |
} |
| 213 |
|
| 214 |
body.body_dark .communities-boxes .com-box .com-box-content .title a:hover { |
| 215 |
color: var(--bbpc_brand_color); |
| 216 |
} |
| 217 |
|
| 218 |
body.body_dark .communities-boxes .com-box .com-box-content .total-post { |
| 219 |
color: #8b8b8b; |
| 220 |
} |
| 221 |
|
| 222 |
body.body_dark .more-communities { |
| 223 |
border-color: #272727; |
| 224 |
} |
| 225 |
|
| 226 |
body.body_dark .single-forum-post-widget .post-info div { |
| 227 |
color: #848d95; |
| 228 |
} |
| 229 |
|
| 230 |
body.body_dark .single-forum-post-widget .post-info .post-category a { |
| 231 |
color: #848d95; |
| 232 |
} |
| 233 |
|
| 234 |
body.body_dark .single-forum-post-widget .post-info .post-category a:hover { |
| 235 |
color: var(--bbpc_brand_color); |
| 236 |
} |
| 237 |
|
| 238 |
body.body_dark .community-area .nav-tabs .nav-item button.active { |
| 239 |
color: #fff; |
| 240 |
} |
| 241 |
|
| 242 |
/** === Widgets === **/ |
| 243 |
|
| 244 |
.widget_display_stats dl dt { |
| 245 |
float: left; |
| 246 |
clear: left; |
| 247 |
margin: 0 0 10px; |
| 248 |
font-weight: 500; |
| 249 |
} |
| 250 |
|
| 251 |
.widget_display_stats dl dd { |
| 252 |
float: right; |
| 253 |
margin: 0; |
| 254 |
} |
| 255 |
|
| 256 |
.widget_display_replies li:before { |
| 257 |
font-family: eleganticons; |
| 258 |
content: "w"; |
| 259 |
font-size: 15px !important; |
| 260 |
margin: 0 12px 0 0 !important; |
| 261 |
padding: 0px !important; |
| 262 |
line-height: 23px; |
| 263 |
} |
| 264 |
|
| 265 |
.widget_display_topics li div { |
| 266 |
color: var(--black_400); |
| 267 |
} |
| 268 |
|
| 269 |
.widget_display_topics li::before { |
| 270 |
font-family: eleganticons; |
| 271 |
content: "b"; |
| 272 |
margin: -3px 12px 0 0; |
| 273 |
font-size: 15px; |
| 274 |
color: var(--black_800); |
| 275 |
position: absolute; |
| 276 |
left: 0; |
| 277 |
top: 0; |
| 278 |
} |
| 279 |
|
| 280 |
.widget_display_topics .bbp-forum-title, |
| 281 |
.widget_display_replies .bbp-forum-title { |
| 282 |
display: inline-block; |
| 283 |
line-height: 1.36; |
| 284 |
color: var(--black_900); |
| 285 |
} |
| 286 |
|
| 287 |
.widget_display_topics li { |
| 288 |
padding-left: 30px; |
| 289 |
} |
| 290 |
|
| 291 |
.widget_display_topics li, |
| 292 |
.widget_display_replies li { |
| 293 |
position: relative; |
| 294 |
margin-bottom: 10px; |
| 295 |
padding-bottom: 10px; |
| 296 |
border-bottom: 1px solid #e5e7e9; |
| 297 |
font-size: 16px; |
| 298 |
} |
| 299 |
|
| 300 |
.widget_display_topics li time, |
| 301 |
.widget_display_replies li time { |
| 302 |
color: var(--black_400); |
| 303 |
display: block; |
| 304 |
font-size: 14px; |
| 305 |
} |
| 306 |
|
| 307 |
.widget_display_topics li div, |
| 308 |
.widget_display_replies li div { |
| 309 |
font-size: 14px; |
| 310 |
} |
| 311 |
|
| 312 |
.widget_display_topics li a, |
| 313 |
.widget_display_replies li a { |
| 314 |
color: var(--black_800); |
| 315 |
} |
| 316 |
|
| 317 |
.widget_display_topics li a .bbp-author-avatar img, |
| 318 |
.widget_display_replies li a .bbp-author-avatar img { |
| 319 |
border-radius: 50px !important; |
| 320 |
} |
| 321 |
|
| 322 |
.widget_display_replies li .bbp-author-avatar { |
| 323 |
margin-right: 5px; |
| 324 |
} |
| 325 |
|
| 326 |
.widget_display_topics li a:hover, |
| 327 |
.widget_display_replies li a:hover { |
| 328 |
color: var(--bbpc_brand_color); |
| 329 |
} |
| 330 |
|
| 331 |
.bbp-logged-in .avatar { |
| 332 |
float: left; |
| 333 |
margin: 0 15px 0 0; |
| 334 |
border-radius: 99%; |
| 335 |
} |
| 336 |
|
| 337 |
.bbp-logged-in h4 { |
| 338 |
font-weight: normal; |
| 339 |
font-size: 18px; |
| 340 |
clear: none; |
| 341 |
margin: 0 0 5px; |
| 342 |
} |
| 343 |
|
| 344 |
.bbp-logged-in h4 a { |
| 345 |
color: #333; |
| 346 |
font-weight: 500; |
| 347 |
} |
| 348 |
|
| 349 |
.bbp-logged-in a.button.logout-link:hover, |
| 350 |
.bbp-logged-in h4 a:hover { |
| 351 |
color: var(--bbpc_brand_color); |
| 352 |
} |
| 353 |
|
| 354 |
.bbp-logged-in a.button.logout-link:hover, |
| 355 |
.bbp-logged-in a.button.logout-link { |
| 356 |
color: #666; |
| 357 |
} |
| 358 |
|
| 359 |
.forum-post-content .content img { |
| 360 |
max-width: 100%; |
| 361 |
height: auto; |
| 362 |
} |
| 363 |
|
| 364 |
ul.bbp-topics-widget.newness img { |
| 365 |
border-radius: 50%; |
| 366 |
margin: 5px; |
| 367 |
} |
| 368 |
|
| 369 |
.bbp-submit-wrapper { |
| 370 |
float: left; |
| 371 |
margin-top: 0; |
| 372 |
} |
| 373 |
|
| 374 |
.forum-post-content .forum-post-btm .taxonomy.forum-post-cat { |
| 375 |
display: flex; |
| 376 |
} |
| 377 |
|
| 378 |
.bbp-topic-reply-link { |
| 379 |
padding: 6px 20px; |
| 380 |
font-weight: 400; |
| 381 |
border-radius: 2px; |
| 382 |
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.18s ease-in-out; |
| 383 |
background: #fff; |
| 384 |
border: 1px solid #d0d8dc; |
| 385 |
color: var(--black_800); |
| 386 |
height: 26px; |
| 387 |
font-size: 12px; |
| 388 |
line-height: 26px; |
| 389 |
} |
| 390 |
|
| 391 |
.comment-content .bbp-topic-reply-link:hover { |
| 392 |
background: #fff; |
| 393 |
border: 1px solid var(--black_800); |
| 394 |
color: var(--black_800); |
| 395 |
} |
| 396 |
|
| 397 |
.page-numbers { |
| 398 |
cursor: pointer !important; |
| 399 |
} |
| 400 |
|
| 401 |
.pagination-wrapper .page-numbers.next { |
| 402 |
display: flex; |
| 403 |
align-items: center; |
| 404 |
justify-content: center; |
| 405 |
padding-bottom: 2px; |
| 406 |
} |
| 407 |
|
| 408 |
.post-header .support-total-info li a { |
| 409 |
font-weight: 400; |
| 410 |
} |
| 411 |
|
| 412 |
.post-header .support-total-info li a { |
| 413 |
color: #6b707f; |
| 414 |
} |
| 415 |
|
| 416 |
.post-header .support-total-info li a.open-data.loading { |
| 417 |
color: var(--black_800); |
| 418 |
font-weight: 500; |
| 419 |
} |
| 420 |
|
| 421 |
#tagList { |
| 422 |
padding-left: 40px; |
| 423 |
} |
| 424 |
|
| 425 |
.userlist { |
| 426 |
padding-left: 15px; |
| 427 |
} |
| 428 |
|
| 429 |
.post-header .category-menu .all-users a { |
| 430 |
position: relative; |
| 431 |
} |
| 432 |
|
| 433 |
.post-header .category-menu .all-users a .count { |
| 434 |
background: #ebedf0; |
| 435 |
border-radius: 10px; |
| 436 |
color: #838793; |
| 437 |
font-size: 12px; |
| 438 |
margin-left: 5px; |
| 439 |
padding: 1px 5px 0; |
| 440 |
top: 8px; |
| 441 |
width: auto; |
| 442 |
height: auto; |
| 443 |
} |
| 444 |
|
| 445 |
.bbpc-forums-skeleton { |
| 446 |
display: grid; |
| 447 |
grid-template-columns: repeat(3, 1fr); |
| 448 |
gap: 20px; |
| 449 |
padding: 20px; |
| 450 |
} |
| 451 |
|
| 452 |
.bbpc-forums-skeleton__card { |
| 453 |
background: #f0f0f0; |
| 454 |
border-radius: 8px; |
| 455 |
padding: 16px; |
| 456 |
animation: bbpc-forums-shimmer 1.5s infinite ease-in-out; |
| 457 |
} |
| 458 |
|
| 459 |
.bbpc-forums-skeleton__image { |
| 460 |
width: 100%; |
| 461 |
height: 60px; |
| 462 |
background: #e0e0e0; |
| 463 |
border-radius: 6px; |
| 464 |
margin-bottom: 12px; |
| 465 |
} |
| 466 |
|
| 467 |
.bbpc-forums-skeleton__title { |
| 468 |
width: 70%; |
| 469 |
height: 16px; |
| 470 |
background: #e0e0e0; |
| 471 |
border-radius: 4px; |
| 472 |
margin-bottom: 8px; |
| 473 |
} |
| 474 |
|
| 475 |
.bbpc-forums-skeleton__meta { |
| 476 |
width: 40%; |
| 477 |
height: 12px; |
| 478 |
background: #e0e0e0; |
| 479 |
border-radius: 4px; |
| 480 |
} |
| 481 |
|
| 482 |
@keyframes bbpc-forums-shimmer { |
| 483 |
0%, 100% { |
| 484 |
opacity: 1; |
| 485 |
} |
| 486 |
50% { |
| 487 |
opacity: 0.5; |
| 488 |
} |
| 489 |
} |
| 490 |
|
| 491 |
.bbpc-color-label { |
| 492 |
margin-bottom: 4px; |
| 493 |
font-weight: 500; |
| 494 |
} |
| 495 |
|
| 496 |
.bbpc-pro-gated { |
| 497 |
position: relative; |
| 498 |
overflow: visible !important; |
| 499 |
padding: 10px 12px; |
| 500 |
border: 1px solid #e2e2e2; |
| 501 |
border-radius: 6px; |
| 502 |
background: rgba(0, 0, 0, 0.02); |
| 503 |
margin-bottom: 8px; |
| 504 |
} |
| 505 |
|
| 506 |
.bbpc-pro-gated .components-base-control { |
| 507 |
pointer-events: none; |
| 508 |
opacity: 0.55; |
| 509 |
overflow: visible !important; |
| 510 |
} |
| 511 |
|
| 512 |
.bbpc-pro-gated .components-base-control__field { |
| 513 |
overflow: visible !important; |
| 514 |
} |
| 515 |
|
| 516 |
.bbpc-pro-watermark { |
| 517 |
position: absolute; |
| 518 |
top: -8px; |
| 519 |
right: 8px; |
| 520 |
z-index: 2; |
| 521 |
display: inline-block; |
| 522 |
padding: 2px 8px; |
| 523 |
font-size: 9px; |
| 524 |
font-weight: 700; |
| 525 |
line-height: 16px; |
| 526 |
color: #fff; |
| 527 |
background: linear-gradient(135deg, #6366f1, #8b5cf6); |
| 528 |
border-radius: 4px; |
| 529 |
text-transform: uppercase; |
| 530 |
letter-spacing: 1px; |
| 531 |
pointer-events: none; |
| 532 |
-webkit-user-select: none; |
| 533 |
-moz-user-select: none; |
| 534 |
user-select: none; |
| 535 |
box-shadow: 0 1px 3px rgba(99, 102, 241, 0.4); |
| 536 |
} |
| 537 |
|
| 538 |
/*# sourceMappingURL=index.css.map*/ |