Skip to content

Commit

Permalink
PR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stratoula committed Oct 14, 2020
1 parent f2e3c5f commit fddb5d0
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
1 change: 1 addition & 0 deletions src/plugins/timelion/public/_app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
display: flex;
align-items: flex-start;
margin-top: $euiSize;
margin-bottom: $euiSize;
}

.timApp__expression {
Expand Down
8 changes: 4 additions & 4 deletions src/plugins/timelion/public/directives/_form.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
$warningColor: '#BD271E';
$timAppWarningColor: '#BD271E';
$timAppTextAreaBgColor: #FBFCFD;

.form-control {
@include euiFontSizeS;
Expand Down Expand Up @@ -41,7 +42,7 @@ select.form-control {
margin-bottom: $euiSize;
padding: $euiSizeXS $euiSizeS;
color: $euiColorDarkestShade;
border-left: solid 2px $warningColor;
border-left: solid 2px $timAppWarningColor;
font-size: $euiSizeM;
}

Expand Down Expand Up @@ -79,9 +80,8 @@ select.form-control {
font-size: $euiSize;
line-height: 1.5;
color: $euiColorDarkestShade;
background-color: $euiColorLightestShade;
background-color: $timAppTextAreaBgColor;
border: 1px solid $euiColorLightShade;
border-radius: $euiSizeXS;
transition: border-color .1s linear;
margin-bottom: $euiSize;
}
1 change: 0 additions & 1 deletion src/plugins/timelion/public/directives/cells/_cells.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
text-align: center;
width: $euiSizeL;
height: $euiSizeL;
line-height: $euiSizeL;
border-radius: $euiSizeL / 2;
border: $euiBorderThin;
background-color: $euiColorLightestShade;
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/timelion/public/directives/cells/cells.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
tooltip-append-to-body="1"
aria-label="{{ ::'timelion.cells.actions.removeAriaLabel' | i18n: { defaultMessage: 'Remove chart' } }}"
>
<span class="fa fa-remove"></span>
<icon type="'cross'"></icon>
</button>
<button
class="timCell__action"
Expand All @@ -35,7 +35,7 @@
aria-label="{{ ::'timelion.cells.actions.reorderAriaLabel' | i18n: { defaultMessage: 'Drag to reorder' } }}"
tabindex="-1"
>
<span class="fa fa-arrows"></span>
<icon type="'grab'"></icon>
</button>
<button
class="timCell__action"
Expand All @@ -44,7 +44,7 @@
tooltip-append-to-body="1"
aria-label="{{ ::'timelion.cells.actions.fullscreenAriaLabel' | i18n: { defaultMessage: 'Full screen chart' } }}"
>
<span class="fa fa-expand"></span>
<icon type="'expandMini'"></icon>
</button>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
tooltip-append-to-body="1"
aria-label="{{ ::'timelion.fullscreen.exitAriaLabel' | i18n: { defaultMessage: 'Exit full screen' } }}"
>
<span class="fa fa-compress"></span>
<icon type="'minimize'"></icon>
</button>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

<button
ng-click="opts.dontShowHelp()"
style="color: #006BB4"
class="timHelp__links"
>
{{translations.dontShowHelpButtonLabel}}
</button>
Expand Down Expand Up @@ -596,7 +596,7 @@

<button
ng-click="opts.dontShowHelp()"
style="color: #006BB4"
class="timHelp__links"
>
{{translations.dontShowHelpButtonLabel}}
</button>
Expand Down

0 comments on commit fddb5d0

Please sign in to comment.