From 7d2f578b4057c9e1991370dd3f5a3bb09612b37c Mon Sep 17 00:00:00 2001
From: Shashwat Srivastava <darklrd@gmail.com>
Date: Fri, 4 Mar 2016 01:42:17 +0530
Subject: [PATCH] Issue #2292783 by samwilson, duckydan, Media Crumb: Issue in
 Bootstrap theme

---
 themes/dark/dark.css   | 8 +++++++-
 themes/light/light.css | 8 +++++++-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/themes/dark/dark.css b/themes/dark/dark.css
index e2affd4..2f9aaf9 100644
--- a/themes/dark/dark.css
+++ b/themes/dark/dark.css
@@ -10,7 +10,6 @@
 *html #drupalchat {
   display: none;
 }
-
 #drupalchat-wrapper {
   bottom: 0;
   height: 29px;
@@ -19,6 +18,13 @@
   right: 0;
   z-index: 9999; /*--Keeps the panel on top of all other elements--*/
 }
+#drupalchat-wrapper *,
+#drupalchat-wrapper *:before,
+#drupalchat-wrapper *:after {
+  -webkit-box-sizing: content-box;
+     -moz-box-sizing: content-box;
+          box-sizing: content-box;
+}
 #drupalchat {
   /*background: #333333;
   border: 1px solid #1D1D1D;*/
diff --git a/themes/light/light.css b/themes/light/light.css
index b39125a..5b93e75 100644
--- a/themes/light/light.css
+++ b/themes/light/light.css
@@ -10,7 +10,6 @@
 *html #drupalchat {
   display: none;
 }
-
 #drupalchat-wrapper {
   bottom: 0;
   height: 29px;
@@ -19,6 +18,13 @@
   right: 0;
   z-index: 9999; /*--Keeps the panel on top of all other elements--*/
 }
+#drupalchat-wrapper *,
+#drupalchat-wrapper *:before,
+#drupalchat-wrapper *:after {
+  -webkit-box-sizing: content-box;
+     -moz-box-sizing: content-box;
+          box-sizing: content-box;
+}
 #drupalchat {
   /*background: #e5e5e5;*/
   /*border: 1px solid #b5b5b5;*/
-- 
GitLab