During registration a specific email will be required. Only gmail.com.
Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the Support.
Glowing Froala Editor Xenforo 2.x

Glowing Froala Editor Xenforo 2.x

Meta

Admin
Reputation: 100%
Joined
Nov 1, 2020
Messages
299
Reaction score
37
đồng
643 K
Phiên bản XF hỗ trợ
XF 2.2; 2.3
Khung soạn thảo thêm chút màu cho đặc sắc như đang áp dụng trên diễn đàn Aetot. Các bạn thêm code sau:
Compatibility on 2.2 check (do not have a 2.1 install to confirm compatibility):
CSS:
/* GLOWING EDITOR */
@-webkit-keyframes glow {
to {
border-color: #626262;
-webkit-box-shadow: 0 0 4px #626262;
-moz-box-shadow: 0 0 4px #626262;
box-shadow: 0 0 4px #626262;
}
}
.fr-box.fr-basic {
&.is-focused {
-webkit-animation: glow 1.0s infinite alternate;
-webkit-transition: border 1.0s linear, box-shadow 1.0s linear;
-moz-transition: border 1.0s linear, box-shadow 1.0s linear;
transition: border 1.0s linear, box-shadow 1.0s linear;
}
}

Add the following to your extra.less template for a glowing border around your Forala editor when the focus is set while users are typing.

On 2.3:
1729922951708.webp


Changing the color from #626262 to #00ff0c for a neon green color that might work better on darker styles for gaming sites.
Glowing Froala Editor Xenforo 2x-2.gif


Update for RGB effect
 

Attachments

  • Glowing Froala Editor Xenforo 2x-1.gif
    Glowing Froala Editor Xenforo 2x-1.gif
    40.4 KB · Views: 95
Last edited:
Back
Top Bottom