-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a stable grid in editor and so many others
Added a gridsistem inside the editor. Cleanup the codebase. Added phpunit structure Init the column resize sistem. Added gulp SCSS compilation. For #1 #2 #3
- Loading branch information
andreilupu
committed
Sep 13, 2016
1 parent
50867bd
commit 48b2c64
Showing
29 changed files
with
6,784 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,6 @@ wp-content/plugins/hello.php | |
/sitemap.xml | ||
/sitemap.xml.gz | ||
|
||
.sass-cache | ||
node_modules | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
language: php | ||
|
||
notifications: | ||
email: | ||
on_success: never | ||
on_failure: change | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
php: | ||
- 5.3 | ||
- 5.6 | ||
|
||
env: | ||
- WP_VERSION=latest WP_MULTISITE=0 | ||
- WP_VERSION=3.0.1 WP_MULTISITE=0 | ||
- WP_VERSION=3.4 WP_MULTISITE=0 | ||
|
||
matrix: | ||
include: | ||
- php: 5.3 | ||
env: WP_VERSION=latest WP_MULTISITE=1 | ||
|
||
before_script: | ||
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION | ||
|
||
script: phpunit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
/** | ||
* All of the CSS for your admin-specific functionality should be | ||
* included in this file. | ||
*/ | ||
/** All of the CSS for your admin-specific functionality should be included in this file. */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.row.gridable-mceItem { background: #ebebeb; border-top: 1px solid #333; border-bottom: 1px solid #333; } | ||
|
||
.col.gridable-mceItem { background: #e3e3e3; border-left: 1px solid #333; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } | ||
|
||
.col.gridable-mceItem:last-child { border-right: 1px solid #333; } | ||
|
||
[data-gridable-row] { display: -ms-flexbox; display: flex; -ms-flex-flow: row wrap; flex-flow: row wrap; } | ||
|
||
[data-sh-col-attr-size] { -ms-flex: 0 0 100%; flex: 0 0 100%; } | ||
|
||
[data-sh-col-attr-size="2"] { -ms-flex-preferred-size: 16.66667%; flex-basis: 16.66667%; } | ||
|
||
[data-sh-col-attr-size="4"] { -ms-flex-preferred-size: 33.33333%; flex-basis: 33.33333%; } | ||
|
||
[data-sh-col-attr-size="6"] { -ms-flex-preferred-size: 50%; flex-basis: 50%; } | ||
|
||
[data-sh-col-attr-size="8"] { -ms-flex-preferred-size: 66.66667%; flex-basis: 66.66667%; } | ||
|
||
[data-sh-col-attr-size="10"] { -ms-flex-preferred-size: 83.33333%; flex-basis: 83.33333%; } | ||
|
||
[data-sh-col-attr-size="12"] { -ms-flex-preferred-size: 100%; flex-basis: 100%; } | ||
|
||
[data-sh-col-attr-size] { box-sizing: border-box; background: #EEE; padding: 10px; } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.