Skip to content

Commit

Permalink
fixes #1558
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed Oct 5, 2017
1 parent 95198fd commit bcdf287
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ If you want to integrate Kirki in your theme or plugin, please read the instruct
* Fix: Typography controls were not properly saving some sub-values [#1521](https://github.com/aristath/kirki/issues/1521), [#1560](https://github.com/aristath/kirki/issues/1560)
* Fix: Undefined index in the code control [#1567](https://github.com/aristath/kirki/issues/1567)
* Fix: CSS Output fo multicolor fields [#1564](https://github.com/aristath/kirki/issues/1564)
* Fix: LTR for code controls [#1558](https://github.com/aristath/kirki/issues/1558)
* Fix: Other code cleanup.
* Fix: Updated google-fonts.

Expand Down
4 changes: 4 additions & 0 deletions controls/code/code.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion controls/code/code.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions controls/code/code.scss
Original file line number Diff line number Diff line change
Expand Up @@ -499,3 +499,10 @@ div.CodeMirror-dragcursors {
span.CodeMirror-selectedtext {
background: none;
}

.rtl {
.customize-control-kirki-code .CodeMirror {
text-align: left;
direction: ltr;
}
}
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ If you want to integrate Kirki in your theme or plugin, please read the instruct
* Fix: Typography controls were not properly saving some sub-values [#1521](https://github.com/aristath/kirki/issues/1521), [#1560](https://github.com/aristath/kirki/issues/1560)
* Fix: Undefined index in the code control [#1567](https://github.com/aristath/kirki/issues/1567)
* Fix: CSS Output fo multicolor fields [#1564](https://github.com/aristath/kirki/issues/1564)
* Fix: LTR for code controls [#1558](https://github.com/aristath/kirki/issues/1558)
* Fix: Other code cleanup.
* Fix: Updated google-fonts.

Expand Down

0 comments on commit bcdf287

Please sign in to comment.