Releasing 3.26.1

This commit is contained in:
James Barnsley
2018-09-21 12:00:52 +12:00
parent 99c0aa69e4
commit 22e5c1ca9c
8 changed files with 22 additions and 20 deletions

View File

@ -12,7 +12,7 @@ from handlers import WebsocketHandler, HttpHandler
from core import IrisCore
logger = logging.getLogger(__name__)
__version__ = '3.26.0'
__version__ = '3.26.1'
##
# Core extension class

File diff suppressed because one or more lines are too long

View File

@ -5889,9 +5889,9 @@ main header {
.debug-info-section:first-child {
padding-top: 0; }
.has-tooltip {
.tooltip {
position: relative; }
.has-tooltip .tooltip {
.tooltip__content {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
@ -5911,9 +5911,9 @@ main header {
z-index: 97;
white-space: nowrap;
text-align: left; }
.has-tooltip .tooltip:first-letter {
.tooltip__content:first-letter {
text-transform: uppercase; }
.has-tooltip .tooltip:after {
.tooltip__content:after {
content: '';
display: block;
width: 6px;
@ -5925,21 +5925,23 @@ main header {
position: absolute;
bottom: -3px;
left: 9px; }
.light-theme .has-tooltip .tooltip {
.light-theme .tooltip__content {
background: #383734;
color: #FFFFFF; }
.light-theme .has-tooltip .tooltip:after {
.light-theme .tooltip__content:after {
background: #383734; }
.has-tooltip:hover .tooltip {
.touch .tooltip:not(.touchable) .tooltip__content {
display: none; }
.tooltip:hover .tooltip__content {
opacity: 1;
bottom: 35px; }
.has-tooltip.right-tooltip .tooltip {
.tooltip--right .tooltip__content {
left: auto;
right: -5px; }
.has-tooltip.right-tooltip .tooltip:after {
.tooltip--right .tooltip__content:after {
right: 9px;
left: auto; }
.has-tooltip.large-tooltip .tooltip {
.tooltip--large .tooltip__content {
padding: 8px 12px;
font-size: 12px;
line-height: 14px;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -98,8 +98,8 @@
// Release details
// These are automatically injected to built HTML
var build = "1537480288";
var version = "3.26.0";
var build = "1537487995";
var version = "3.26.1";
// Construct the script tag
var js = document.createElement("script");