Skip to content

Commit

Permalink
version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Aug 29, 2016
1 parent 8bc1444 commit 9104edb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
8 changes: 8 additions & 0 deletions changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
[
{
"version": "1.0.1",
"downloadUrl": "https://github.com/engram-design/SuperTable/archive/1.0.1.zip",
"date": "2016-08-30T00:15:00+10:00",
"notes": [
"[Fixed] Minor layout fix for Matrix-ST-Matrix in Safari."
]
},
{
"version": "1.0.0",
"downloadUrl": "https://github.com/engram-design/SuperTable/archive/1.0.0.zip",
Expand Down
2 changes: 1 addition & 1 deletion supertable/SuperTablePlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function getName()

public function getVersion()
{
return '1.0.0';
return '1.0.1';
}

public function getSchemaVersion()
Expand Down
5 changes: 5 additions & 0 deletions supertable/resources/css/SuperTableConfigurator.css
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ body.rtl .supertable-configurator .stc-settings {
/* This actually applies to all Matrix fields everywhere, but testing hasn't proved any issues yet... */
.matrix-configurator > .field > .input {
overflow-x: auto;

/* Safari Fix */
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}


Expand Down

0 comments on commit 9104edb

Please sign in to comment.