Add ONLINE Status for AI Chatbot

Add an online status for the bot. This could be a small green dot maybe flashing.
here are some examples



or like chatting with text online

1 Like

Hi @Sina :wave:

Thanks a lot for the idea! Let’s see if it gets traction with others :slightly_smiling_face:

1 Like

Hey there, @Sina :wave:

Our devs shared a custom solution for this case:

[class*="window__HeaderContainer-sc"]:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: #0f0;
  position: absolute;
  left: 47px;
  bottom: 6px;
  z-index: 999;
  border: 2px solid rgba(162, 51, 5, 0.75);
}

[class*="window__HeaderContainer-sc"] 
[class*="window-header__Title-sc"]:after {
  content: "Online";
  display: block;
  font-size: 10px;
  color: #fff;
}

This code should be added to the Custom CSS field on the General tab of your widget’s settings :slightly_smiling_face:

3 Likes

Hi @Max
wow, thats great and works fine ! :100: :ok_hand: :clap:

1 Like