Skip to content

Commit

Permalink
Merge branch '1.3' into 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
robbieaverill committed Aug 2, 2019
2 parents 2b2091a + 8f71df6 commit f0aa1ae
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 15 deletions.
2 changes: 1 addition & 1 deletion client/dist/js/TinyMCE_sslink.js

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

2 changes: 1 addition & 1 deletion client/dist/js/vendor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/dist/styles/bundle.css

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class TinymceInlineToolbar {
top = selection.bottom + iframeRect.top + scrollY + topOffset;
}

if (typeof top === 'undefined') {
if (top === 0) {
top = scrollY + blockedTop + buffer;
}

Expand Down
15 changes: 4 additions & 11 deletions client/src/styles/legacy/_tree.scss
Original file line number Diff line number Diff line change
Expand Up @@ -356,21 +356,14 @@
background: #FFF;
border: 1px solid silver;
box-shadow: 0 0 10px #CCC;
&.col-2{
width:180px * 2; // 2x the size of the original ul
li {
width:50%;
}
&.vakata-col-2{
column-count: 2;
}
&.col-3{
width:180px * 3; // 3x the size of the original ul
li {
width:33%;
}
&.vakata-col-3{
column-count: 3;
}
li {
min-width:180px;
float:left;
a {
@include hide-text-overflow;
}
Expand Down
2 changes: 2 additions & 0 deletions lang/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,5 @@ en:
MemberListCaution: 'Caution: Removing members from this list will remove them from all groups and the database'
TABROLES: Roles
Users: Users
SilverStripe\CMS\Controllers\CMSMain:
SAVE: Save

0 comments on commit f0aa1ae

Please sign in to comment.