purecss-sass 2.1.0 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0802601ddf5a4754bfe7bb1e2edf0bcfb32b37d41ee532436f147406124cf64
4
- data.tar.gz: f00830ccf7f1e59ac5bd7358ea5ab99677cfc454cf51dfbfb32c1f868b8af7d2
3
+ metadata.gz: ae0f24d1009fa1927b31413ac9f02e4ee77ff3ca5a70e9fa49b6faf9cd5ec7dc
4
+ data.tar.gz: 1f0a83979bed6aa912619b15af78e8747107ffc377520d5248b9a86c0acc63d2
5
5
  SHA512:
6
- metadata.gz: eaad20e07cdae60bcb0a548171ce58a503a20aa6ec1881608b588ac32743a60ea1f5b6e770874d568538de3f85c8140a82e46584c03a21908182fd1f06437c69
7
- data.tar.gz: e8b573ed4d703e2932e2d35ce4692f24a0caeecf8a61cb11812d5a4117258be83ab5a77c9893ae2670d0b8de69d9f58c9a496e7e7216384180b1809516a3717b
6
+ metadata.gz: 67e35c9b4aeb82f499efd6edd41d6255396bc54043a105a0bfcd664288d82d3cec22d95ca812cad79e3d767097286a9c4577fb07be968642026e3b7cbf6d36bc
7
+ data.tar.gz: 58208093b54eb737856a30a63a6119be99d43e88894da75b923d07bd1ffe664bfddb30d5df03daa8a46f47a89ee8d2e2cfd099825a49efad7abcf9d439ac37bc
@@ -6,7 +6,7 @@ jobs:
6
6
  strategy:
7
7
  fail-fast: false
8
8
  matrix:
9
- ruby: [2.6, 2.7, '3.0']
9
+ ruby: ['2.6', '2.7', '3.0', '3.1']
10
10
  name: Ruby ${{ matrix.ruby }}
11
11
  steps:
12
12
  - name: Checkout
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## 3.0.0 (2022-10-27)
2
+
3
+ - Update assets to match upstream version
4
+
5
+ Framework version: Pure v3.0.0
6
+
7
+ ## 2.2.0 (2022-10-20)
8
+
9
+ - Update assets to match upstream version
10
+
11
+ Framework version: Pure v2.2.0
12
+
1
13
  ## 2.1.0 (2022-03-15)
2
14
 
3
15
  - Update assets to match upstream version
@@ -1,5 +1,5 @@
1
1
  module Purecss
2
2
  module Sass
3
- VERSION = '2.1.0'.freeze
3
+ VERSION = '3.0.0'.freeze
4
4
  end
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "purecss-sass",
3
- "version": "2.1.0",
3
+ "version": "3.0.0",
4
4
  "description": "Pure CSS framework, converted to Sass and ready to use in Sass powered applications",
5
5
  "keywords": [
6
6
  "pure",
@@ -1,11 +1,11 @@
1
1
  /*!
2
- Pure v2.1.0
2
+ Pure v3.0.0
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/pure-css/pure/blob/master/LICENSE
6
6
  */
7
7
  /*!
8
- normalize.css v | MIT License | git.io/normalize
8
+ normalize.css v | MIT License | https://necolas.github.io/normalize.css/
9
9
  Copyright (c) Nicolas Gallagher and Jonathan Neal
10
10
  */
11
11
  /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
@@ -65,7 +65,6 @@ h1 {
65
65
  */
66
66
 
67
67
  hr {
68
- -webkit-box-sizing: content-box;
69
68
  box-sizing: content-box;
70
69
 
71
70
  /* 1 */
@@ -265,7 +264,6 @@ fieldset {
265
264
  */
266
265
 
267
266
  legend {
268
- -webkit-box-sizing: border-box;
269
267
  box-sizing: border-box;
270
268
 
271
269
  /* 1 */
@@ -308,7 +306,6 @@ textarea {
308
306
  */
309
307
 
310
308
  [type="checkbox"], [type="radio"] {
311
- -webkit-box-sizing: border-box;
312
309
  box-sizing: border-box;
313
310
 
314
311
  /* 1 */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.1.0
2
+ Pure v3.0.0
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/pure-css/pure/blob/master/LICENSE
@@ -15,10 +15,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE
15
15
  cursor: pointer;
16
16
  -webkit-user-drag: none;
17
17
  -webkit-user-select: none;
18
- -moz-user-select: none;
19
- -ms-user-select: none;
20
18
  user-select: none;
21
- -webkit-box-sizing: border-box;
22
19
  box-sizing: border-box;
23
20
 
24
21
  &::-moz-focus-inner {
@@ -69,32 +66,27 @@ https://github.com/pure-css/pure/blob/master/LICENSE
69
66
  }
70
67
 
71
68
  .pure-button-hover {
72
- background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.1)));
73
69
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
74
70
  }
75
71
 
76
72
  .pure-button {
77
73
  &:hover {
78
- background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.1)));
79
74
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
80
75
  }
81
76
 
82
77
  &:focus {
83
- background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.1)));
84
78
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
85
79
  outline: 0;
86
80
  }
87
81
  }
88
82
 
89
83
  .pure-button-active {
90
- -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
91
84
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
92
85
  border-color: #000;
93
86
  }
94
87
 
95
88
  .pure-button {
96
89
  &:active {
97
- -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
98
90
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
99
91
  border-color: #000;
100
92
  }
@@ -104,7 +96,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE
104
96
  background-image: none;
105
97
  opacity: 0.40;
106
98
  cursor: not-allowed;
107
- -webkit-box-shadow: none;
108
99
  box-shadow: none;
109
100
  pointer-events: none;
110
101
  }
@@ -115,7 +106,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE
115
106
  background-image: none;
116
107
  opacity: 0.40;
117
108
  cursor: not-allowed;
118
- -webkit-box-shadow: none;
119
109
  box-shadow: none;
120
110
  pointer-events: none;
121
111
 
@@ -124,7 +114,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE
124
114
  background-image: none;
125
115
  opacity: 0.40;
126
116
  cursor: not-allowed;
127
- -webkit-box-shadow: none;
128
117
  box-shadow: none;
129
118
  pointer-events: none;
130
119
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.1.0
2
+ Pure v3.0.0
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/pure-css/pure/blob/master/LICENSE
@@ -18,11 +18,9 @@ so we can ignore the csslint warning.
18
18
  padding: 0.5em 0.6em;
19
19
  display: inline-block;
20
20
  border: 1px solid #ccc;
21
- -webkit-box-shadow: inset 0 1px 3px #ddd;
22
21
  box-shadow: inset 0 1px 3px #ddd;
23
22
  border-radius: 4px;
24
23
  vertical-align: middle;
25
- -webkit-box-sizing: border-box;
26
24
  box-sizing: border-box;
27
25
  }
28
26
  }
@@ -31,11 +29,9 @@ so we can ignore the csslint warning.
31
29
  padding: 0.5em 0.6em;
32
30
  display: inline-block;
33
31
  border: 1px solid #ccc;
34
- -webkit-box-shadow: inset 0 1px 3px #ddd;
35
32
  box-shadow: inset 0 1px 3px #ddd;
36
33
  border-radius: 4px;
37
34
  vertical-align: middle;
38
- -webkit-box-sizing: border-box;
39
35
  box-sizing: border-box;
40
36
  }
41
37
 
@@ -44,10 +40,8 @@ so we can ignore the csslint warning.
44
40
  padding: 0.5em 0.6em;
45
41
  display: inline-block;
46
42
  border: 1px solid #ccc;
47
- -webkit-box-shadow: inset 0 1px 3px #ddd;
48
43
  box-shadow: inset 0 1px 3px #ddd;
49
44
  border-radius: 4px;
50
- -webkit-box-sizing: border-box;
51
45
  box-sizing: border-box;
52
46
  }
53
47
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.1.0
2
+ Pure v3.0.0
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/pure-css/pure/blob/master/LICENSE
@@ -613,3 +613,247 @@ https://github.com/pure-css/pure/blob/master/LICENSE
613
613
  width: 100%;
614
614
  }
615
615
  }
616
+
617
+ @media screen and (min-width: 160em) {
618
+ .pure-u-xxxl-1, .pure-u-xxxl-1-1, .pure-u-xxxl-1-2, .pure-u-xxxl-1-3, .pure-u-xxxl-2-3, .pure-u-xxxl-1-4, .pure-u-xxxl-3-4, .pure-u-xxxl-1-5, .pure-u-xxxl-2-5, .pure-u-xxxl-3-5, .pure-u-xxxl-4-5, .pure-u-xxxl-5-5, .pure-u-xxxl-1-6, .pure-u-xxxl-5-6, .pure-u-xxxl-1-8, .pure-u-xxxl-3-8, .pure-u-xxxl-5-8, .pure-u-xxxl-7-8, .pure-u-xxxl-1-12, .pure-u-xxxl-5-12, .pure-u-xxxl-7-12, .pure-u-xxxl-11-12, .pure-u-xxxl-1-24, .pure-u-xxxl-2-24, .pure-u-xxxl-3-24, .pure-u-xxxl-4-24, .pure-u-xxxl-5-24, .pure-u-xxxl-6-24, .pure-u-xxxl-7-24, .pure-u-xxxl-8-24, .pure-u-xxxl-9-24, .pure-u-xxxl-10-24, .pure-u-xxxl-11-24, .pure-u-xxxl-12-24, .pure-u-xxxl-13-24, .pure-u-xxxl-14-24, .pure-u-xxxl-15-24, .pure-u-xxxl-16-24, .pure-u-xxxl-17-24, .pure-u-xxxl-18-24, .pure-u-xxxl-19-24, .pure-u-xxxl-20-24, .pure-u-xxxl-21-24, .pure-u-xxxl-22-24, .pure-u-xxxl-23-24, .pure-u-xxxl-24-24 {
619
+ display: inline-block;
620
+ letter-spacing: normal;
621
+ word-spacing: normal;
622
+ vertical-align: top;
623
+ text-rendering: auto;
624
+ }
625
+
626
+ .pure-u-xxxl-1-24 {
627
+ width: 4.1667%;
628
+ }
629
+
630
+ .pure-u-xxxl-1-12, .pure-u-xxxl-2-24 {
631
+ width: 8.3333%;
632
+ }
633
+
634
+ .pure-u-xxxl-1-8, .pure-u-xxxl-3-24 {
635
+ width: 12.5000%;
636
+ }
637
+
638
+ .pure-u-xxxl-1-6, .pure-u-xxxl-4-24 {
639
+ width: 16.6667%;
640
+ }
641
+
642
+ .pure-u-xxxl-1-5 {
643
+ width: 20%;
644
+ }
645
+
646
+ .pure-u-xxxl-5-24 {
647
+ width: 20.8333%;
648
+ }
649
+
650
+ .pure-u-xxxl-1-4, .pure-u-xxxl-6-24 {
651
+ width: 25%;
652
+ }
653
+
654
+ .pure-u-xxxl-7-24 {
655
+ width: 29.1667%;
656
+ }
657
+
658
+ .pure-u-xxxl-1-3, .pure-u-xxxl-8-24 {
659
+ width: 33.3333%;
660
+ }
661
+
662
+ .pure-u-xxxl-3-8, .pure-u-xxxl-9-24 {
663
+ width: 37.5000%;
664
+ }
665
+
666
+ .pure-u-xxxl-2-5 {
667
+ width: 40%;
668
+ }
669
+
670
+ .pure-u-xxxl-5-12, .pure-u-xxxl-10-24 {
671
+ width: 41.6667%;
672
+ }
673
+
674
+ .pure-u-xxxl-11-24 {
675
+ width: 45.8333%;
676
+ }
677
+
678
+ .pure-u-xxxl-1-2, .pure-u-xxxl-12-24 {
679
+ width: 50%;
680
+ }
681
+
682
+ .pure-u-xxxl-13-24 {
683
+ width: 54.1667%;
684
+ }
685
+
686
+ .pure-u-xxxl-7-12, .pure-u-xxxl-14-24 {
687
+ width: 58.3333%;
688
+ }
689
+
690
+ .pure-u-xxxl-3-5 {
691
+ width: 60%;
692
+ }
693
+
694
+ .pure-u-xxxl-5-8, .pure-u-xxxl-15-24 {
695
+ width: 62.5000%;
696
+ }
697
+
698
+ .pure-u-xxxl-2-3, .pure-u-xxxl-16-24 {
699
+ width: 66.6667%;
700
+ }
701
+
702
+ .pure-u-xxxl-17-24 {
703
+ width: 70.8333%;
704
+ }
705
+
706
+ .pure-u-xxxl-3-4, .pure-u-xxxl-18-24 {
707
+ width: 75%;
708
+ }
709
+
710
+ .pure-u-xxxl-19-24 {
711
+ width: 79.1667%;
712
+ }
713
+
714
+ .pure-u-xxxl-4-5 {
715
+ width: 80%;
716
+ }
717
+
718
+ .pure-u-xxxl-5-6, .pure-u-xxxl-20-24 {
719
+ width: 83.3333%;
720
+ }
721
+
722
+ .pure-u-xxxl-7-8, .pure-u-xxxl-21-24 {
723
+ width: 87.5000%;
724
+ }
725
+
726
+ .pure-u-xxxl-11-12, .pure-u-xxxl-22-24 {
727
+ width: 91.6667%;
728
+ }
729
+
730
+ .pure-u-xxxl-23-24 {
731
+ width: 95.8333%;
732
+ }
733
+
734
+ .pure-u-xxxl-1, .pure-u-xxxl-1-1, .pure-u-xxxl-5-5, .pure-u-xxxl-24-24 {
735
+ width: 100%;
736
+ }
737
+ }
738
+
739
+ @media screen and (min-width: 240em) {
740
+ .pure-u-x4k-1, .pure-u-x4k-1-1, .pure-u-x4k-1-2, .pure-u-x4k-1-3, .pure-u-x4k-2-3, .pure-u-x4k-1-4, .pure-u-x4k-3-4, .pure-u-x4k-1-5, .pure-u-x4k-2-5, .pure-u-x4k-3-5, .pure-u-x4k-4-5, .pure-u-x4k-5-5, .pure-u-x4k-1-6, .pure-u-x4k-5-6, .pure-u-x4k-1-8, .pure-u-x4k-3-8, .pure-u-x4k-5-8, .pure-u-x4k-7-8, .pure-u-x4k-1-12, .pure-u-x4k-5-12, .pure-u-x4k-7-12, .pure-u-x4k-11-12, .pure-u-x4k-1-24, .pure-u-x4k-2-24, .pure-u-x4k-3-24, .pure-u-x4k-4-24, .pure-u-x4k-5-24, .pure-u-x4k-6-24, .pure-u-x4k-7-24, .pure-u-x4k-8-24, .pure-u-x4k-9-24, .pure-u-x4k-10-24, .pure-u-x4k-11-24, .pure-u-x4k-12-24, .pure-u-x4k-13-24, .pure-u-x4k-14-24, .pure-u-x4k-15-24, .pure-u-x4k-16-24, .pure-u-x4k-17-24, .pure-u-x4k-18-24, .pure-u-x4k-19-24, .pure-u-x4k-20-24, .pure-u-x4k-21-24, .pure-u-x4k-22-24, .pure-u-x4k-23-24, .pure-u-x4k-24-24 {
741
+ display: inline-block;
742
+ letter-spacing: normal;
743
+ word-spacing: normal;
744
+ vertical-align: top;
745
+ text-rendering: auto;
746
+ }
747
+
748
+ .pure-u-x4k-1-24 {
749
+ width: 4.1667%;
750
+ }
751
+
752
+ .pure-u-x4k-1-12, .pure-u-x4k-2-24 {
753
+ width: 8.3333%;
754
+ }
755
+
756
+ .pure-u-x4k-1-8, .pure-u-x4k-3-24 {
757
+ width: 12.5000%;
758
+ }
759
+
760
+ .pure-u-x4k-1-6, .pure-u-x4k-4-24 {
761
+ width: 16.6667%;
762
+ }
763
+
764
+ .pure-u-x4k-1-5 {
765
+ width: 20%;
766
+ }
767
+
768
+ .pure-u-x4k-5-24 {
769
+ width: 20.8333%;
770
+ }
771
+
772
+ .pure-u-x4k-1-4, .pure-u-x4k-6-24 {
773
+ width: 25%;
774
+ }
775
+
776
+ .pure-u-x4k-7-24 {
777
+ width: 29.1667%;
778
+ }
779
+
780
+ .pure-u-x4k-1-3, .pure-u-x4k-8-24 {
781
+ width: 33.3333%;
782
+ }
783
+
784
+ .pure-u-x4k-3-8, .pure-u-x4k-9-24 {
785
+ width: 37.5000%;
786
+ }
787
+
788
+ .pure-u-x4k-2-5 {
789
+ width: 40%;
790
+ }
791
+
792
+ .pure-u-x4k-5-12, .pure-u-x4k-10-24 {
793
+ width: 41.6667%;
794
+ }
795
+
796
+ .pure-u-x4k-11-24 {
797
+ width: 45.8333%;
798
+ }
799
+
800
+ .pure-u-x4k-1-2, .pure-u-x4k-12-24 {
801
+ width: 50%;
802
+ }
803
+
804
+ .pure-u-x4k-13-24 {
805
+ width: 54.1667%;
806
+ }
807
+
808
+ .pure-u-x4k-7-12, .pure-u-x4k-14-24 {
809
+ width: 58.3333%;
810
+ }
811
+
812
+ .pure-u-x4k-3-5 {
813
+ width: 60%;
814
+ }
815
+
816
+ .pure-u-x4k-5-8, .pure-u-x4k-15-24 {
817
+ width: 62.5000%;
818
+ }
819
+
820
+ .pure-u-x4k-2-3, .pure-u-x4k-16-24 {
821
+ width: 66.6667%;
822
+ }
823
+
824
+ .pure-u-x4k-17-24 {
825
+ width: 70.8333%;
826
+ }
827
+
828
+ .pure-u-x4k-3-4, .pure-u-x4k-18-24 {
829
+ width: 75%;
830
+ }
831
+
832
+ .pure-u-x4k-19-24 {
833
+ width: 79.1667%;
834
+ }
835
+
836
+ .pure-u-x4k-4-5 {
837
+ width: 80%;
838
+ }
839
+
840
+ .pure-u-x4k-5-6, .pure-u-x4k-20-24 {
841
+ width: 83.3333%;
842
+ }
843
+
844
+ .pure-u-x4k-7-8, .pure-u-x4k-21-24 {
845
+ width: 87.5000%;
846
+ }
847
+
848
+ .pure-u-x4k-11-12, .pure-u-x4k-22-24 {
849
+ width: 91.6667%;
850
+ }
851
+
852
+ .pure-u-x4k-23-24 {
853
+ width: 95.8333%;
854
+ }
855
+
856
+ .pure-u-x4k-1, .pure-u-x4k-1-1, .pure-u-x4k-5-5, .pure-u-x4k-24-24 {
857
+ width: 100%;
858
+ }
859
+ }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.1.0
2
+ Pure v3.0.0
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/pure-css/pure/blob/master/LICENSE
@@ -7,76 +7,16 @@ https://github.com/pure-css/pure/blob/master/LICENSE
7
7
  /*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/
8
8
 
9
9
  .pure-g {
10
- letter-spacing: -0.31em;
11
-
12
- /* Webkit: collapse white-space between units */
13
- text-rendering: optimizespeed;
14
-
15
- /* Webkit: fixes text-rendering: optimizeLegibility */
16
-
17
- /*
18
- Sets the font stack to fonts known to work properly with the above letter
19
- and word spacings. See: https://github.com/pure-css/pure/issues/41/
20
-
21
- The following font stack makes Pure Grids work on all known environments.
22
-
23
- * FreeSans: Ships with many Linux distros, including Ubuntu
24
-
25
- * Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and
26
- Arial to get picked up by the browser, even though neither is available
27
- in Chrome OS.
28
-
29
- * Droid Sans: Ships with all versions of Android.
30
-
31
- * Helvetica, Arial, sans-serif: Common font stack on OS X and Windows.
32
- */
33
- font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
34
-
35
- /* Use flexbox when possible to avoid `letter-spacing` side-effects. */
36
- display: -webkit-box;
37
- display: -ms-flexbox;
38
10
  display: flex;
39
- -webkit-box-orient: horizontal;
40
- -webkit-box-direction: normal;
41
- -ms-flex-flow: row wrap;
42
11
  flex-flow: row wrap;
43
12
 
44
13
  /* Prevents distributing space between rows */
45
- -ms-flex-line-pack: start;
46
14
  align-content: flex-start;
47
15
  }
48
16
 
49
- /* IE10 display: -ms-flexbox (and display: flex in IE 11) does not work inside a table; fall back to block and rely on font hack */
50
- @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
51
- table .pure-g {
52
- display: block;
53
- }
54
- }
55
-
56
- /* Opera as of 12 on Windows needs word-spacing.
57
- The ".opera-only" selector is used to prevent actual prefocus styling
58
- and is not required in markup.
59
- */
60
-
61
- .opera-only :-o-prefocus, .pure-g {
62
- word-spacing: -0.43em;
63
- }
64
-
65
17
  .pure-u {
66
18
  display: inline-block;
67
- letter-spacing: normal;
68
- word-spacing: normal;
69
19
  vertical-align: top;
70
- text-rendering: auto;
71
- }
72
-
73
- /*
74
- Resets the font family back to the OS/browser's default sans-serif font,
75
- this the same font stack that Normalize.css sets for the `body`.
76
- */
77
-
78
- .pure-g [class*="pure-u"] {
79
- font-family: sans-serif;
80
20
  }
81
21
 
82
22
  .pure-u-1, .pure-u-1-1, .pure-u-1-2, .pure-u-1-3, .pure-u-2-3, .pure-u-1-4, .pure-u-3-4, .pure-u-1-5, .pure-u-2-5, .pure-u-3-5, .pure-u-4-5, .pure-u-5-5, .pure-u-1-6, .pure-u-5-6, .pure-u-1-8, .pure-u-3-8, .pure-u-5-8, .pure-u-7-8, .pure-u-1-12, .pure-u-5-12, .pure-u-7-12, .pure-u-11-12, .pure-u-1-24, .pure-u-2-24, .pure-u-3-24, .pure-u-4-24, .pure-u-5-24, .pure-u-6-24, .pure-u-7-24, .pure-u-8-24, .pure-u-9-24, .pure-u-10-24, .pure-u-11-24, .pure-u-12-24, .pure-u-13-24, .pure-u-14-24, .pure-u-15-24, .pure-u-16-24, .pure-u-17-24, .pure-u-18-24, .pure-u-19-24, .pure-u-20-24, .pure-u-21-24, .pure-u-22-24, .pure-u-23-24, .pure-u-24-24 {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.1.0
2
+ Pure v3.0.0
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/pure-css/pure/blob/master/LICENSE
@@ -7,7 +7,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE
7
7
  /*csslint adjoining-classes: false, box-model:false*/
8
8
 
9
9
  .pure-menu {
10
- -webkit-box-sizing: border-box;
11
10
  box-sizing: border-box;
12
11
  }
13
12
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.1.0
2
+ Pure v3.0.0
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/pure-css/pure/blob/master/LICENSE
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: purecss-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitriy Tarasov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-15 00:00:00.000000000 Z
11
+ date: 2022-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sassc
@@ -132,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
132
132
  - !ruby/object:Gem::Version
133
133
  version: '0'
134
134
  requirements: []
135
- rubygems_version: 3.2.32
135
+ rubygems_version: 3.3.7
136
136
  signing_key:
137
137
  specification_version: 4
138
138
  summary: Pure CSS framework, converted to Sass