Skip to content

Commit 8ee4670

Browse files
committed
Make dialog boxes left-aligned (Fixes #80)
1 parent 0ff837d commit 8ee4670

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

code-input.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,7 @@ code-input .code-input_dialog-container {
137137
left: 0;
138138
width: 100%;
139139
height: 0;
140+
141+
/* Dialog boxes' text is left-aligned */
142+
text-align: left;
140143
}

code-input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ var codeInput = {
427427
* Exposed child pre element where syntax-highlighted code is outputted.
428428
* Contains this.codeElement as its only child.
429429
*/
430-
preElement = null;
430+
preElement = null
431431
/**
432432
* Exposed child pre element's child code element where syntax-highlighted code is outputted.
433433
* Has this.preElement as its parent.

0 commit comments

Comments
 (0)