Editions in jitsi popover styles
This commit is contained in:
parent
3bf8b7fbe2
commit
70861465e1
|
@ -23,4 +23,20 @@
|
||||||
td:nth-child(n-1) {
|
td:nth-child(n-1) {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__icon {
|
||||||
|
margin-right: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__download
|
||||||
|
{
|
||||||
|
@extend .connection-info__icon;
|
||||||
|
color: $downloadConnectionIconColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__upload
|
||||||
|
{
|
||||||
|
@extend .connection-info__icon;
|
||||||
|
color: $uploadConnectionIconColor;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -19,35 +19,6 @@
|
||||||
margin-top: -10px;
|
margin-top: -10px;
|
||||||
margin-bottom: 35px;
|
margin-bottom: 35px;
|
||||||
|
|
||||||
&__title {
|
|
||||||
text-align: left;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__content {
|
|
||||||
padding: em(5) em(10);
|
|
||||||
font-size: em(14);
|
|
||||||
white-space:pre-wrap;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__icon {
|
|
||||||
margin-right: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__green
|
|
||||||
{
|
|
||||||
@extend .jitsipopover__icon;
|
|
||||||
color: #4abd04;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__orange
|
|
||||||
{
|
|
||||||
@extend .jitsipopover__icon;
|
|
||||||
color: #ffa800;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__menu-padding {
|
&__menu-padding {
|
||||||
height: 35px;
|
height: 35px;
|
||||||
width: 100px;
|
width: 100px;
|
||||||
|
@ -62,33 +33,18 @@
|
||||||
margin: 10px auto;
|
margin: 10px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__clear {
|
> .arrow {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: block;
|
display: block;
|
||||||
|
left: 50%;
|
||||||
|
bottom: -5px;
|
||||||
|
margin-left: -5px;
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
|
border-top-color: $popoverBg;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
}
|
|
||||||
|
|
||||||
> .arrow {
|
|
||||||
border-width: 5px 2.5px 0 2.5px;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -5px;
|
|
||||||
@extend .jitsipopover__clear;
|
|
||||||
border-bottom-width: 0;
|
|
||||||
border-top-color: $popoverBg;
|
|
||||||
bottom: -5px;
|
|
||||||
|
|
||||||
|
|
||||||
&:after {
|
|
||||||
border-width: 5px;
|
border-width: 5px;
|
||||||
content: " ";
|
|
||||||
bottom: 1px;
|
|
||||||
margin-left: -5px;
|
|
||||||
@extend .jitsipopover__clear;
|
|
||||||
border-bottom-width: 0;
|
border-bottom-width: 0;
|
||||||
border-top-color: $popoverBg;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,3 @@
|
||||||
/**
|
|
||||||
* Theme
|
|
||||||
*/
|
|
||||||
@import 'themes/main';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Style variables
|
* Style variables
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,6 +22,12 @@ $primaryButtonFontWeight: 400;
|
||||||
|
|
||||||
$buttonShadowColor: #192d4f;
|
$buttonShadowColor: #192d4f;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Connection indicator
|
||||||
|
**/
|
||||||
|
$downloadConnectionIconColor: #4abd04;
|
||||||
|
$uploadConnectionIconColor: #ffa800;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dialog colors
|
* Dialog colors
|
||||||
**/
|
**/
|
||||||
|
|
|
@ -80,10 +80,10 @@ ConnectionIndicator.prototype.generateText = function () {
|
||||||
packetLoss = "N/A";
|
packetLoss = "N/A";
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
packetLoss = "<span class='jitsipopover__green'>↓</span>" +
|
packetLoss = "<span class='connection-info__download'>↓</span>" +
|
||||||
(this.packetLoss.download !== null ?
|
(this.packetLoss.download !== null ?
|
||||||
this.packetLoss.download : "N/A") +
|
this.packetLoss.download : "N/A") +
|
||||||
"% <span class='jitsipopover__orange'>↑</span>" +
|
"% <span class='connection-info__upload'>↑</span>" +
|
||||||
(this.packetLoss.upload !== null? this.packetLoss.upload : "N/A") +
|
(this.packetLoss.upload !== null? this.packetLoss.upload : "N/A") +
|
||||||
"%";
|
"%";
|
||||||
}
|
}
|
||||||
|
@ -104,8 +104,8 @@ ConnectionIndicator.prototype.generateText = function () {
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class='jitsipopover__green'>↓</span>${downloadBitrate}
|
<span class='connection-info__download'>↓</span>${downloadBitrate}
|
||||||
<span class='jitsipopover__orange'>↑</span>${uploadBitrate}
|
<span class='connection-info__upload'>↑</span>${uploadBitrate}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -242,9 +242,9 @@ ConnectionIndicator.prototype.generateText = function () {
|
||||||
"<span data-i18n='connectionindicator.bandwidth'>" +
|
"<span data-i18n='connectionindicator.bandwidth'>" +
|
||||||
translate("connectionindicator.bandwidth") + "</span>" +
|
translate("connectionindicator.bandwidth") + "</span>" +
|
||||||
"</td><td>" +
|
"</td><td>" +
|
||||||
"<span class='jitsipopover__green'>↓</span>" +
|
"<span class='connection-info__download'>↓</span>" +
|
||||||
downloadBandwidth +
|
downloadBandwidth +
|
||||||
" <span class='jitsipopover__orange'>↑</span>" +
|
" <span class='connection-info__upload'>↑</span>" +
|
||||||
uploadBandwidth + "</td></tr>";
|
uploadBandwidth + "</td></tr>";
|
||||||
|
|
||||||
result += transport + "</table>";
|
result += transport + "</table>";
|
||||||
|
|
Loading…
Reference in New Issue