Skip to content

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
fix(css): Fix style change for ACF 5.9
  • Loading branch information
Log1x committed Aug 26, 2020
1 parent d18797f commit b0c9f15
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
13 changes: 10 additions & 3 deletions assets/css/acf.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
.postbox-container {
@apply .w-full .float-none .m-0;

.postbox-header {
@apply .hidden;
}

.meta-box-sortables {
@apply .min-h-0 .h-full .min-w-full;

Expand Down Expand Up @@ -111,8 +115,12 @@
@apply .empty .animation-spin .animation-1s .animation-infinite .animation-linear .absolute .block .w-5 .h-5 .border-solid .border-2 .border-current .text-brand .rounded-full .border-r-transparent .border-t-transparent !important;

@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

top: calc(50% - (config('theme.spacing.4') / 2));
Expand All @@ -134,4 +142,3 @@
}
}
}

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"precss": "^4.0.0",
"tailwindcss": "^1.1.4",
"tailwindcss-animations": "^1.0.0",
"tailwindcss-border-styles": "^1.0.1",
"tailwindcss-spinner": "^1.0.0",
"tailwindcss-typography": "^2.2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Modern ACF Options
* Plugin URI: https://github.com/log1x/modern-acf-options
* Description: Modern styling for ACF Theme Options.
* Version: 1.0.2
* Version: 1.0.3
* Author: Brandon Nifong
* Author URI: https://github.com/log1x
* Licence: MIT
Expand Down
2 changes: 1 addition & 1 deletion public/css/acf.css

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

2 changes: 1 addition & 1 deletion public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"/css/acf.css": "/css/acf.css?id=6f46af5268c3208e7029"
"/css/acf.css": "/css/acf.css?id=e50895ede84f40ab49fc"
}
7 changes: 7 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6271,6 +6271,13 @@ tailwindcss-animations@^1.0.0:
dependencies:
lodash "^4.17.15"

tailwindcss-border-styles@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/tailwindcss-border-styles/-/tailwindcss-border-styles-1.0.1.tgz#d254734cabff116af0c6974457eceb4620f3d7cc"
integrity sha512-sG5o00EcoNEKulrCbe/2uBGAL6hO4BeQpUYvdsk0S4elouEACzD0LWMoH8ZIrBu2PD016N4sdioIqFHe/upDZg==
dependencies:
lodash "^4.17.15"

tailwindcss-spinner@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/tailwindcss-spinner/-/tailwindcss-spinner-1.0.0.tgz#5769793e6ce2bab2ce25ad3efeefb64e788bd255"
Expand Down

0 comments on commit b0c9f15

Please sign in to comment.