From b6cf1fbec41a73739a526f03559be7957a19428b Mon Sep 17 00:00:00 2001
From: Bruno Dias
Date: Tue, 17 Nov 2015 17:20:05 -0300
Subject: [PATCH] FS-8542 [verto_communicator] - fixed the tooltips of video
controls...
The problem was caused by a tooltip component. It appends the tooltip elements
in the , and when you hover them, it will lose the 'hover' of the video control elements.
ui.bootstrap was updated to version 0.14.3.
---
html5/verto/verto_communicator/bower.json | 2 +-
.../verto_communicator/src/css/verto.css | 8 +--
.../src/partials/video_call.html | 58 +++++++++++--------
.../src/vertoApp/vertoApp.module.js | 1 +
4 files changed, 41 insertions(+), 28 deletions(-)
diff --git a/html5/verto/verto_communicator/bower.json b/html5/verto/verto_communicator/bower.json
index 6a05c29a06..2bbb0bf6b0 100644
--- a/html5/verto/verto_communicator/bower.json
+++ b/html5/verto/verto_communicator/bower.json
@@ -42,7 +42,7 @@
"jquery-cookie": "~1.4.1",
"jquery-json": "~2.5.1",
"datatables": "~1.10.8",
- "angular-bootstrap": "~0.13.3",
+ "angular-bootstrap": "~0.14.3",
"bootstrap-material-design": "~0.3.0"
},
"resolutions": {
diff --git a/html5/verto/verto_communicator/src/css/verto.css b/html5/verto/verto_communicator/src/css/verto.css
index d307eecdaf..f0d25ae2cb 100644
--- a/html5/verto/verto_communicator/src/css/verto.css
+++ b/html5/verto/verto_communicator/src/css/verto.css
@@ -595,10 +595,6 @@ body .modal-body .btn-group .btn.active {
transition-delay:0s;
}
-#incall .video-hover-buttons .btn-group {
- margin: 0;
-}
-
#incall .video-hover-buttons .btn-group .dropdown-menu {
height: 200px;
overflow: auto;
@@ -766,6 +762,10 @@ body .modal-body .btn-group .btn.active {
transition: all 0.5s ease;
}
+.tooltip-inner {
+ padding: 8px 8px;
+ background-color: #000;
+}
#sidebar-wrapper {
right: 360px;
diff --git a/html5/verto/verto_communicator/src/partials/video_call.html b/html5/verto/verto_communicator/src/partials/video_call.html
index da339e4878..b3d5f1894c 100644
--- a/html5/verto/verto_communicator/src/partials/video_call.html
+++ b/html5/verto/verto_communicator/src/partials/video_call.html
@@ -2,23 +2,30 @@
-
diff --git a/html5/verto/verto_communicator/src/vertoApp/vertoApp.module.js b/html5/verto/verto_communicator/src/vertoApp/vertoApp.module.js
index 966a7c1f7e..e2bf3c89d1 100644
--- a/html5/verto/verto_communicator/src/vertoApp/vertoApp.module.js
+++ b/html5/verto/verto_communicator/src/vertoApp/vertoApp.module.js
@@ -15,6 +15,7 @@
'cgPrompt',
'720kb.tooltips',
'ui.gravatar',
+ 'ui.bootstrap',
'directive.g+signin',
]);