playbook_ui 13.32.0.pre.alpha.PLAY14143267 → 13.32.0.pre.alpha.PLAY14143271
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/dist/chunks/_typeahead.js +32 -33673
- data/dist/chunks/_weekday_stacked.js +54 -12975
- data/dist/chunks/lazysizes.js +1 -611
- data/dist/chunks/pb_form_validation.js +1 -60
- data/dist/chunks/vendor.js +1 -6
- data/dist/playbook-doc.js +630 -67840
- data/dist/playbook-rails-react-bindings.js +1 -97
- data/dist/playbook-rails.js +1 -408
- data/dist/playbook.css +2 -61394
- data/dist/reset.css +1 -62
- data/lib/playbook/version.rb +1 -1
- metadata +1 -1
data/dist/reset.css
CHANGED
@@ -1,62 +1 @@
|
|
1
|
-
|
2
|
-
/* Headings */
|
3
|
-
/* Standard Font Weights */
|
4
|
-
/* Non_Standard Font Weights */
|
5
|
-
/*=====================================
|
6
|
-
Base colors should not be documented.
|
7
|
-
Only document color use.
|
8
|
-
|
9
|
-
Colors -----------------------------*/
|
10
|
-
/* Specialty Gradient -----------------*/
|
11
|
-
/* Interface colors -------------------*/
|
12
|
-
/* Main colors ------------------------*/
|
13
|
-
/*=====================================
|
14
|
-
|
15
|
-
Background colors ------------------*/
|
16
|
-
/* Card colors ------------------*/
|
17
|
-
/* Active colors ----------------------*/
|
18
|
-
/* Hover colors -----------------------*/
|
19
|
-
/* Focus colors -----------------------*/
|
20
|
-
/* Border colors ----------------------*/
|
21
|
-
/* Shadow colors ----------------------*/
|
22
|
-
/* Text colors ------------------------*/
|
23
|
-
/* Data colors ------------------------*/
|
24
|
-
/* Status colors ----------------------*/
|
25
|
-
/* Link colors ------------------------*/
|
26
|
-
/* Product colors ---------------------*/
|
27
|
-
/* Category colors ---------------------*/
|
28
|
-
* {
|
29
|
-
box-sizing: border-box;
|
30
|
-
margin: 0;
|
31
|
-
padding: 0;
|
32
|
-
}
|
33
|
-
*:before, *:after {
|
34
|
-
box-sizing: border-box;
|
35
|
-
}
|
36
|
-
html {
|
37
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
38
|
-
height: 100vh;
|
39
|
-
overflow-x: hidden;
|
40
|
-
}
|
41
|
-
body {
|
42
|
-
font-family: "Power Centra", "Helvetica Neue", Helvetica, Arial, sans_serif;
|
43
|
-
font-size: 15.5px;
|
44
|
-
line-height: 1.5;
|
45
|
-
background-color: #F3F7FB;
|
46
|
-
height: 100%;
|
47
|
-
letter-spacing: 0.003em;
|
48
|
-
font-weight: 400;
|
49
|
-
font-style: normal;
|
50
|
-
text-rendering: optimizeLegibility;
|
51
|
-
-moz-font-feature-settings: "liga" on;
|
52
|
-
color: #242B42;
|
53
|
-
margin: 0 !important;
|
54
|
-
padding: 0 !important;
|
55
|
-
box-sizing: border-box;
|
56
|
-
min-height: 100vh;
|
57
|
-
padding: 50px;
|
58
|
-
}
|
59
|
-
a {
|
60
|
-
text-decoration: none;
|
61
|
-
color: #0056CF;
|
62
|
-
}
|
1
|
+
*{box-sizing:border-box;margin:0;padding:0}*:before,*:after{box-sizing:border-box}html{-webkit-tap-highlight-color:rgba(0,0,0,0);height:100vh;overflow-x:hidden}body{font-family:Power Centra,Helvetica Neue,Helvetica,Arial,sans_serif;font-size:15.5px;line-height:1.5;background-color:#f3f7fb;height:100%;letter-spacing:.003em;font-weight:400;font-style:normal;text-rendering:optimizeLegibility;-moz-font-feature-settings:"liga" on;color:#242b42;margin:0!important;padding:0!important;box-sizing:border-box;min-height:100vh;padding:50px}a{text-decoration:none;color:#0056cf}
|
data/lib/playbook/version.rb
CHANGED