Update styles for popover

pull/1007/head
Ilya Daynatovich 8 years ago
parent a91deca6cd
commit b7fccf5040
  1. 1
      css/_base.scss
  2. 7
      css/_variables.scss
  3. 9
      css/_videolayout_default.scss
  4. 8
      css/themes/_light.scss
  5. 1
      lang/main.json
  6. 1
      modules/UI/UI.js

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

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

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

@ -43,4 +43,10 @@ $labelFontWeight: 400;
$hintFontSize: em(13, 14);
$linkFontColor: #3572b0;
$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;

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

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

Loading…
Cancel
Save