Update styles for popover

This commit is contained in:
Ilya Daynatovich 2016-10-13 16:15:20 +03:00
parent a91deca6cd
commit b7fccf5040
6 changed files with 23 additions and 4 deletions

View File

@ -184,6 +184,7 @@ form {
} }
.link { .link {
cursor: pointer;
color: $linkFontColor; color: $linkFontColor;
@include transition(color .1s ease-out); @include transition(color .1s ease-out);

View File

@ -1,3 +1,8 @@
/**
* Theme
*/
@import 'themes/main';
/** /**
* Style variables * Style variables
*/ */
@ -28,10 +33,10 @@ $tooltipBg: rgba(0,0,0, 0.7);
// Toolbar // Toolbar
$toolbarSelectBackground: rgba(0, 0, 0, .6); $toolbarSelectBackground: rgba(0, 0, 0, .6);
$toolbarBadgeBackground: #165ECC; $toolbarBadgeBackground: #165ECC;
$toolbarBadgeColor: #FFFFFF; $toolbarBadgeColor: #FFFFFF;
$toolbarToggleBackground: #12499C; $toolbarToggleBackground: #12499C;
$splitterToolbarButtonLeftMargin: 0px;
// Main controls // Main controls
$inputSemiBackground: rgba(132, 132, 132, .8); $inputSemiBackground: rgba(132, 132, 132, .8);

View File

@ -275,8 +275,13 @@
.connection_info, .connection_info > table .connection_info, .connection_info > table
{ {
text-align: left; text-align: left;
font-size: 11px; font-size: 12px;
color: #ffffff; font-weight: 400;
color: $auiDialogColor;
td {
padding: 5px 0;
}
} }
#localVideoContainer>span.status:hover, #localVideoContainer>span.status:hover,

View File

@ -43,4 +43,10 @@ $labelFontWeight: 400;
$hintFontSize: em(13, 14); $hintFontSize: em(13, 14);
$linkFontColor: #3572b0; $linkFontColor: #3572b0;
$linkHoverFontColor: darken(#3572b0, 10%); $linkHoverFontColor: darken(#3572b0, 10%);
$dropdownColor: #333; $dropdownColor: #333;
// Popover colors
$popoverArrowBorderColor: rgba(0, 0, 0, 0.25);
$popoverArrowBorderColorFallback: #999999;
$popoverBorderColor: rgba(0, 0, 0, 0.2);
$popoverBorderColorFallback: #cccccc;

View File

@ -151,6 +151,7 @@
}, },
"connectionindicator": "connectionindicator":
{ {
"header": "Connection data",
"bitrate": "Bitrate:", "bitrate": "Bitrate:",
"packetloss": "Packet loss:", "packetloss": "Packet loss:",
"resolution": "Resolution:", "resolution": "Resolution:",

View File

@ -758,6 +758,7 @@ UI.getRemoteVideoType = function (jid) {
UI.connectionIndicatorShowMore = function(id) { UI.connectionIndicatorShowMore = function(id) {
VideoLayout.showMore(id); VideoLayout.showMore(id);
return false;
}; };
// FIXME check if someone user this // FIXME check if someone user this