Skip to content

Commit a3ff664

Browse files
committed
Updates to comply with SASS requirements
1 parent e412f2e commit a3ff664

13 files changed

+23
-23
lines changed

dist/css/bubble/zebra_tooltips.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
max-width: 250px;
1616
padding: 15px;
1717
position: relative;
18-
_width: expression(document.body.clientWidth > 250px ? '250px': 'auto');
18+
_width: expression(document.body.clientWidth > 250px ? "250px": "auto");
1919
border: 2px solid #fff
2020
}
2121
.Zebra_Tooltip .Zebra_Tooltip_Message.Zebra_Tooltip_Has_Close {

dist/css/bubble/zebra_tooltips.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/bubble/zebra_tooltips.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ $zt_max_width: 250px;
5454
.Zebra_Tooltip_Arrow {
5555
position: absolute;
5656
width: $zt_arrow_width;
57-
height: $zt_arrow_width / 2;
57+
height: calc($zt_arrow_width / 2);
5858
overflow: hidden;
5959

6060
&.Zebra_Tooltip_Arrow_Bottom {
@@ -88,7 +88,7 @@ $zt_max_width: 250px;
8888
div {
8989
position: absolute;
9090
border-style: solid;
91-
border-width: (($zt_arrow_width / 2) - ($zt_border_width * 2));
91+
border-width: (calc($zt_arrow_width / 2) - ($zt_border_width * 2));
9292
width: 0;
9393
height: 0;
9494
left: ($zt_border_width * 2);
@@ -97,7 +97,7 @@ $zt_max_width: 250px;
9797
_filter: chroma(color=pink);
9898

9999
&.Zebra_Tooltip_Arrow_Border {
100-
border-width: ($zt_arrow_width / 2);
100+
border-width: calc($zt_arrow_width / 2);
101101
@if variable-exists(zt_box_shadow) { box-shadow: $zt_box_shadow; }
102102
left: 0;
103103
}

dist/css/default/zebra_tooltips.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
max-width: 250px;
1616
padding: 10px;
1717
position: relative;
18-
_width: expression(document.body.clientWidth > 250px ? '250px': 'auto');
18+
_width: expression(document.body.clientWidth > 250px ? "250px": "auto");
1919
border: 0 solid #000
2020
}
2121
.Zebra_Tooltip .Zebra_Tooltip_Message.Zebra_Tooltip_Has_Close {

dist/css/default/zebra_tooltips.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/default/zebra_tooltips.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ $zt_max_width: 250px;
4949
.Zebra_Tooltip_Arrow {
5050
position: absolute;
5151
width: $zt_arrow_width;
52-
height: $zt_arrow_width / 2;
52+
height: calc($zt_arrow_width / 2);
5353
overflow: hidden;
5454

5555
&.Zebra_Tooltip_Arrow_Bottom {
@@ -83,7 +83,7 @@ $zt_max_width: 250px;
8383
div {
8484
position: absolute;
8585
border-style: solid;
86-
border-width: (($zt_arrow_width / 2) - ($zt_border_width * 2));
86+
border-width: (calc($zt_arrow_width / 2) - ($zt_border_width * 2));
8787
width: 0;
8888
height: 0;
8989
left: ($zt_border_width * 2);
@@ -92,7 +92,7 @@ $zt_max_width: 250px;
9292
_filter: chroma(color=pink);
9393

9494
&.Zebra_Tooltip_Arrow_Border {
95-
border-width: ($zt_arrow_width / 2);
95+
border-width: calc($zt_arrow_width / 2);
9696
@if variable-exists(zt_box_shadow) { box-shadow: $zt_box_shadow; }
9797
left: 0;
9898
}

dist/css/mariner/zebra_tooltips.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
padding: 15px;
1717
position: relative;
1818
text-align: left;
19-
_width: expression(document.body.clientWidth > 250px ? '250px': 'auto');
19+
_width: expression(document.body.clientWidth > 250px ? "250px": "auto");
2020
border: 4px solid #317cc5
2121
}
2222
.Zebra_Tooltip .Zebra_Tooltip_Message.Zebra_Tooltip_Has_Close {

dist/css/mariner/zebra_tooltips.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/mariner/zebra_tooltips.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ $zt_max_width: 250px;
5454
.Zebra_Tooltip_Arrow {
5555
position: absolute;
5656
width: $zt_arrow_width;
57-
height: $zt_arrow_width / 2;
57+
height: calc($zt_arrow_width / 2);
5858
overflow: hidden;
5959

6060
&.Zebra_Tooltip_Arrow_Bottom {
@@ -88,7 +88,7 @@ $zt_max_width: 250px;
8888
div {
8989
position: absolute;
9090
border-style: solid;
91-
border-width: (($zt_arrow_width / 2) - ($zt_border_width * 2));
91+
border-width: (calc($zt_arrow_width / 2) - ($zt_border_width * 2));
9292
width: 0;
9393
height: 0;
9494
left: ($zt_border_width * 2);
@@ -97,7 +97,7 @@ $zt_max_width: 250px;
9797
_filter: chroma(color=pink);
9898

9999
&.Zebra_Tooltip_Arrow_Border {
100-
border-width: ($zt_arrow_width / 2);
100+
border-width: calc($zt_arrow_width / 2);
101101
@if variable-exists(zt_box_shadow) { box-shadow: $zt_box_shadow; }
102102
left: 0;
103103
}

dist/css/milan/zebra_tooltips.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
max-width: 250px;
1515
padding: 10px;
1616
position: relative;
17-
_width: expression(document.body.clientWidth > 250px ? '250px': 'auto');
17+
_width: expression(document.body.clientWidth > 250px ? "250px": "auto");
1818
border: 2px solid #f1d031
1919
}
2020
.Zebra_Tooltip .Zebra_Tooltip_Message.Zebra_Tooltip_Has_Close {

dist/css/milan/zebra_tooltips.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)