material_design 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/material_design/navigation.css +18 -1
- data/app/views/material_design/navigation/_navigation_drawer.html.erb +2 -2
- data/app/views/material_design/navigation/navigation_drawer/_section_header.html.erb +5 -3
- data/lib/material_design/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 669c625ce3fa049af4f76b1490712d69b3e882bfc1830fa73bda8a17b01e3f56
|
4
|
+
data.tar.gz: 9d2a9cd2d3acf313fdae0d309628aa7239230a650a283894c65a35adeb9fb5d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4dc6b2ef2e3db66dd8f2dd3fa043d1d03dfa3a58f4ca17e7df0ed405c4db9a94c2c5709f26e73451c80fcb105c763d771c861520fa6880e45f17c3df8c95963b
|
7
|
+
data.tar.gz: 98b8ee6138b5d186e6ab608f9aae8350d241bec11e81e84018f81991c168c0b544952529662ed8605436ec3efb74cb33d36712eddc97d8b15a08fe19eee11cfc
|
@@ -12,6 +12,9 @@
|
|
12
12
|
@media (prefers-color-scheme: dark) {
|
13
13
|
background: var(--md-sys-dark-surface-container-low);
|
14
14
|
}
|
15
|
+
@media (max-width: 840px) {
|
16
|
+
display: none;
|
17
|
+
}
|
15
18
|
}
|
16
19
|
|
17
20
|
.navigation-drawer__headline {
|
@@ -43,7 +46,21 @@
|
|
43
46
|
}
|
44
47
|
|
45
48
|
.navigation-drawer__nav_item:hover {
|
46
|
-
|
49
|
+
@media (prefers-color-scheme: light) {
|
50
|
+
background: var(--md-sys-light-secondary-container);
|
51
|
+
}
|
52
|
+
@media (prefers-color-scheme: dark) {
|
53
|
+
background: var(--md-sys-dark-secondary-container);
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
.navigation-drawer__nav_item.active {
|
58
|
+
@media (prefers-color-scheme: light) {
|
59
|
+
background: var(--md-sys-light-secondary-container);
|
60
|
+
}
|
61
|
+
@media (prefers-color-scheme: dark) {
|
62
|
+
background: var(--md-sys-dark-secondary-container);
|
63
|
+
}
|
47
64
|
}
|
48
65
|
|
49
66
|
.navigation-drawer__state-layer {
|
@@ -3,10 +3,10 @@
|
|
3
3
|
<% locals[:sections].each do |section| %>
|
4
4
|
<%= render "material_design/navigation/navigation_drawer/section_header", locals: { section_header: section[:header] } %>
|
5
5
|
<% section[:nav_items].each do |nav_item| %>
|
6
|
-
<%= link_to nav_item[:href], class: "navigation-drawer__nav_item" do %>
|
6
|
+
<%= link_to nav_item[:href], class: "navigation-drawer__nav_item#{current_page?(nav_item[:href]) ? ' active' : ''}" do %>
|
7
7
|
<div class="navigation-drawer__state-layer">
|
8
8
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18Z" fill="
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18Z" fill="currentcolor "/>
|
10
10
|
</svg>
|
11
11
|
<div style="flex: 1 0 0;">
|
12
12
|
<%= render "material_design/typography/label_large", locals: { label: nav_item[:label] } %>
|
@@ -1,3 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
<% if locals[:section_header] %>
|
2
|
+
<div class="navigation-drawer__secion-header">
|
3
|
+
<%= render "material_design/typography/title_small", locals: { title: locals[:section_header] } %>
|
4
|
+
</div>
|
5
|
+
<% end %>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: material_design
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eduardo Yutaka Nakanishi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|