align left issues popovers

stable
Juanfran 2016-10-03 10:07:59 +02:00
parent cd9f693f81
commit dc31a883d0
2 changed files with 6 additions and 5 deletions

View File

@ -8,7 +8,8 @@
$arrow-top: '', $arrow-top: '',
$arrow-left: '', $arrow-left: '',
$arrow-bottom: '', $arrow-bottom: '',
$arrow-height: 15px $arrow-height: 15px,
$align: 'center'
) { ) {
@include font-type(light); @include font-type(light);
@include font-size(small); @include font-size(small);
@ -25,7 +26,7 @@
top: #{$top}; top: #{$top};
width: $width; width: $width;
z-index: 99; z-index: 99;
text-align: center; text-align: $align;
a { a {
@include font-size(small); @include font-size(small);
border-bottom: 1px solid $grayer; border-bottom: 1px solid $grayer;

View File

@ -84,7 +84,7 @@
position: relative; position: relative;
transition: background .2s ease-in; transition: background .2s ease-in;
.pop-type { .pop-type {
@include popover(150px, '', 30px, '', ''); @include popover(150px, 30px, 30px, '', '', 0, '', '', '', 15px, 'left');
} }
} }
.severity-data { .severity-data {
@ -95,7 +95,7 @@
position: relative; position: relative;
transition: background .2s ease-in; transition: background .2s ease-in;
.pop-severity { .pop-severity {
@include popover(150px, '', 30px, '', ''); @include popover(150px, 30px, 30px, '', '', 0, '', '', '', 15px, 'left');
} }
} }
.priority-data { .priority-data {
@ -106,7 +106,7 @@
position: relative; position: relative;
transition: background .2s ease-in; transition: background .2s ease-in;
.pop-priority { .pop-priority {
@include popover(150px, '', 30px, '', ''); @include popover(150px, 30px, 30px, '', '', 0, '', '', '', 15px, 'left');
} }
} }
} }