@anydigital/bricks 0.27.0-alpha.3 → 0.27.0-alpha.4
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.
- package/assets/breakout.css +1 -0
- package/assets/bricks.css +24 -1
- package/bricks.gemspec +1 -1
- package/package.json +1 -1
- package/src/_classless.css +8 -0
- package/src/breakout.css +1 -0
- package/src/bricks.css +1 -1
- /package/src/{_refactor/_prism.css → _prism.css} +0 -0
package/assets/breakout.css
CHANGED
package/assets/bricks.css
CHANGED
|
@@ -35,6 +35,14 @@ body {
|
|
|
35
35
|
pre {
|
|
36
36
|
padding: 1rem 1.5rem;
|
|
37
37
|
padding-inline-end: 2rem;
|
|
38
|
+
|
|
39
|
+
code {
|
|
40
|
+
padding: 0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@media screen and (max-width: 767px) {
|
|
44
|
+
border-radius: 0;
|
|
45
|
+
}
|
|
38
46
|
}
|
|
39
47
|
|
|
40
48
|
/* @import "./_prose"; */
|
|
@@ -84,6 +92,7 @@ pre {
|
|
|
84
92
|
overflow-x: auto;
|
|
85
93
|
-webkit-overflow-scrolling: touch; /* Smooth scroll for iOS */
|
|
86
94
|
|
|
95
|
+
th,
|
|
87
96
|
td {
|
|
88
97
|
padding-inline-start: 0;
|
|
89
98
|
}
|
|
@@ -140,7 +149,21 @@ pre {
|
|
|
140
149
|
}
|
|
141
150
|
}
|
|
142
151
|
|
|
143
|
-
/*
|
|
152
|
+
/* Prism.js */
|
|
153
|
+
|
|
154
|
+
.token.treeview-part {
|
|
155
|
+
.entry-line {
|
|
156
|
+
width: 2.5em !important;
|
|
157
|
+
opacity: 25%;
|
|
158
|
+
}
|
|
159
|
+
.entry-name:last-child {
|
|
160
|
+
opacity: 50%;
|
|
161
|
+
|
|
162
|
+
&::before {
|
|
163
|
+
display: none !important;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
144
167
|
|
|
145
168
|
/* @import "./_util"; */
|
|
146
169
|
|
package/bricks.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "bricks"
|
|
5
|
-
spec.version = "0.27.0-alpha.
|
|
5
|
+
spec.version = "0.27.0-alpha.4"
|
|
6
6
|
spec.authors = ["Anton Staroverov"]
|
|
7
7
|
|
|
8
8
|
spec.summary = "Framework-agnostic CSS utilities and single-file Liquid 'bricks' for modern web development."
|
package/package.json
CHANGED
package/src/_classless.css
CHANGED
package/src/breakout.css
CHANGED
package/src/bricks.css
CHANGED
|
File without changes
|