tailwindcss-rails 2.2.0 → 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -0
- data/lib/generators/tailwindcss/mailer/templates/layout.html.erb.tt +13 -0
- data/lib/generators/tailwindcss/mailer/templates/layout.text.erb.tt +1 -0
- data/lib/generators/tailwindcss/scaffold/templates/_form.html.erb.tt +1 -1
- data/lib/tailwindcss/upstream.rb +1 -1
- data/lib/tailwindcss/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d6f6d4c54c2a684218a2458df175a28e582d6f7c560dcc9b737b960a67b4a04
|
4
|
+
data.tar.gz: 255838f5cd52454d18b0b134159619501063c527c5f150e0b7fee438e9569bed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d032bf128d662b2433bcd7dbc829217d7d6098472d0234aa891d7fb27ba6fbc9d92ddc0a38549688bafa41c361f2c45c4694ecfc7d881aece7960e44c26ffc0a
|
7
|
+
data.tar.gz: 7fb5882e288279b5ca2e0dda626421df6528506fe57e0ccec8e24b074a2863fa3193a700096981c478a9044a97115cce8e3703a7fd63b20e1cf6f606bcbad13a
|
data/README.md
CHANGED
@@ -192,6 +192,12 @@ The inline version also works:
|
|
192
192
|
<section class="bg-[url('image.svg')]">Has the image as it's background</section>
|
193
193
|
```
|
194
194
|
|
195
|
+
### Conflict with pre-existing asset pipeline stylesheets
|
196
|
+
|
197
|
+
If you get a warning `Unrecognized at-rule or error parsing at-rule ‘@tailwind’.` in the browser console after installation, you incorrectly double-process `application.tailwind.css`. This is a misconfiguration, even though the styles will be fully effective in many cases. The file `application.tailwind.css` is installed when running `rails tailwindcss:install` and is placed alongside the common `application.css` in `app/assets/stylesheets`. Because the `application.css` in a newly generated Rails app includes a `require_tree .` directive, the asset pipeline incorrectly processes `application.tailwind.css`, where it should be taken care of by `tailwindcss`. The asset pipeline ignores TailwindCSS's at-directives, and the browser can't process them.
|
198
|
+
|
199
|
+
To fix the warning, you can either remove the `application.css`, if you don't plan to use the asset pipeline for stylesheets, and instead rely on TailwindCSS completely for styles. This is what this installer assumes. Else, if you do want to keep using the asset pipeline in parallel, make sure to remove the `require_tree .` line from the `application.css`.
|
200
|
+
|
195
201
|
## License
|
196
202
|
|
197
203
|
Tailwind for Rails is released under the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -0,0 +1 @@
|
|
1
|
+
<%%= yield %>
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<div class="my-5">
|
16
16
|
<% if attribute.password_digest? -%>
|
17
17
|
<%%= form.label :password %>
|
18
|
-
<%%= form.password_field :password %>
|
18
|
+
<%%= form.password_field :password, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
|
19
19
|
</div>
|
20
20
|
|
21
21
|
<div class="my-5">
|
data/lib/tailwindcss/upstream.rb
CHANGED
data/lib/tailwindcss/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tailwindcss-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -56,6 +56,8 @@ files:
|
|
56
56
|
- lib/generators/tailwindcss/controller/controller_generator.rb
|
57
57
|
- lib/generators/tailwindcss/controller/templates/view.html.erb.tt
|
58
58
|
- lib/generators/tailwindcss/mailer/mailer_generator.rb
|
59
|
+
- lib/generators/tailwindcss/mailer/templates/layout.html.erb.tt
|
60
|
+
- lib/generators/tailwindcss/mailer/templates/layout.text.erb.tt
|
59
61
|
- lib/generators/tailwindcss/mailer/templates/view.html.erb.tt
|
60
62
|
- lib/generators/tailwindcss/mailer/templates/view.text.erb.tt
|
61
63
|
- lib/generators/tailwindcss/scaffold/scaffold_generator.rb
|