stipe 0.0.5.7.3 → 0.0.5.7.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.
- data/readme.md +3 -0
- data/stylesheets/stipe/forms/_extends.scss +31 -3
- metadata +1 -1
data/readme.md
CHANGED
@@ -17,6 +17,9 @@ Stipe is a Compass Extension, so Compass is a dependency. You will need to inclu
|
|
17
17
|
* BUG FIX
|
18
18
|
* nth-child buttons: need to remove the left margin for mobile breakpoint
|
19
19
|
|
20
|
+
###0.0.5.7.4
|
21
|
+
* Updated `_forms.scss` to support legacy versions of extends
|
22
|
+
|
20
23
|
###0.0.5.7.3
|
21
24
|
* Removed sass-globbing dependency in stipe itself
|
22
25
|
|
@@ -1,41 +1,69 @@
|
|
1
|
+
// Deprecated Notice!
|
2
|
+
// Extends that are not prefixed with `stipe_` are deprecated and will be removed from future updates
|
3
|
+
|
4
|
+
|
1
5
|
// input fields
|
2
6
|
// ------------------------------------------------------------
|
3
7
|
%stipe_input_fields {
|
4
8
|
@include input_fields;
|
5
9
|
}
|
6
10
|
|
11
|
+
%input_fields {
|
12
|
+
@include input_fields;
|
13
|
+
}
|
14
|
+
|
7
15
|
// disabled input fields
|
8
16
|
// ------------------------------------------------------------
|
9
17
|
%stipe_disabled_inputs {
|
10
18
|
@include disabled_inputs;
|
11
19
|
}
|
12
20
|
|
13
|
-
|
21
|
+
%disabled_inputs {
|
22
|
+
@include disabled_inputs;
|
23
|
+
}
|
24
|
+
|
25
|
+
// form labels
|
14
26
|
// ------------------------------------------------------------
|
15
27
|
%stipe_form_labels {
|
16
28
|
@include form_labels;
|
17
29
|
}
|
18
30
|
|
31
|
+
%form_labels {
|
32
|
+
@include form_labels;
|
33
|
+
}
|
34
|
+
|
19
35
|
// default error
|
20
36
|
// ------------------------------------------------------------
|
21
37
|
%stipe_fail {
|
22
38
|
@include fail;
|
23
39
|
}
|
24
40
|
|
41
|
+
%fail {
|
42
|
+
@include fail;
|
43
|
+
}
|
44
|
+
|
25
45
|
// instructional text
|
26
46
|
// ------------------------------------------------------------
|
27
47
|
%stipe_instructional {
|
28
48
|
@include instructional;
|
29
49
|
}
|
30
50
|
|
51
|
+
%instructional {
|
52
|
+
@include instructional;
|
53
|
+
}
|
54
|
+
|
31
55
|
// inline form alert UI
|
32
56
|
// ------------------------------------------------------------
|
33
57
|
%stipe_inline_alert {
|
34
58
|
@include inline_alert;
|
35
59
|
}
|
36
60
|
|
61
|
+
%inline_alert {
|
62
|
+
@include inline_alert;
|
63
|
+
}
|
64
|
+
|
37
65
|
|
38
|
-
// notification alerts / panels
|
66
|
+
// notification alerts / panels
|
39
67
|
// ------------------------------------------------------------
|
40
68
|
// these extend need to be refactored for use
|
41
69
|
// see mixin as well
|
@@ -56,7 +84,7 @@
|
|
56
84
|
// these extend need to be refactored for use
|
57
85
|
|
58
86
|
|
59
|
-
// form text
|
87
|
+
// form text
|
60
88
|
// ------------------------------------------------------------
|
61
89
|
// These all need to be refacotred to see if they are really necessary
|
62
90
|
// %note {
|