shipyard-framework 0.3.8 → 0.3.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/stylesheets/shipyard/components/_forms.sass +17 -11
- data/lib/shipyard-framework/version.rb +1 -1
- data/styleguide/Gemfile.lock +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81c1f04d38253055bc768970e7bd4cab221962cd
|
4
|
+
data.tar.gz: b6cde186407073f394509616e6a58b8922a2917c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7a09476a9799f56ba4b2baa2fb680c438f683afb0aa75c293584f855bd5de9421c1ac31de0ef7d5e5f640ad92158aa629f311e665a180bf17543a38de078b22
|
7
|
+
data.tar.gz: a937446bb6a8d0a0e7eb32c3e5a6e9ecd7182d4fc0e80057e1e0b8e8426b9dd5c45367e7834bbb8fc1da398b1c84f63fdc72f022515302b39fb5668c8823ca63
|
@@ -95,24 +95,30 @@
|
|
95
95
|
|
96
96
|
&-required
|
97
97
|
position: relative
|
98
|
+
&::before,
|
99
|
+
&::after
|
100
|
+
position: absolute
|
101
|
+
&::before
|
102
|
+
top: 6px
|
103
|
+
right: 6px
|
104
|
+
z-index: 1
|
105
|
+
content: "*"
|
106
|
+
line-height: 18px
|
107
|
+
font-weight: $bold
|
108
|
+
color: darken($purple, 13%)
|
109
|
+
+when('error')
|
110
|
+
color: #fff
|
98
111
|
&::after
|
99
112
|
top: 2px
|
100
113
|
right: 2px
|
101
|
-
content: "
|
114
|
+
content: ""
|
102
115
|
display: block
|
103
|
-
line-height: 0
|
104
|
-
text-align: left
|
105
|
-
text-indent: 3px
|
106
|
-
font-weight: $bold
|
107
|
-
position: absolute
|
108
|
-
+width-height(0px)
|
109
116
|
border-radius: 0 3px 0 0
|
110
|
-
color: darken($purple, 13%)
|
111
117
|
border: 12px solid transparent
|
112
|
-
|
113
|
-
border-
|
118
|
+
background: $border-color-light
|
119
|
+
border-left-color: #fff
|
120
|
+
border-bottom-color: #fff
|
114
121
|
+when('error')
|
115
|
-
color: #fff
|
116
122
|
border-top-color: $red
|
117
123
|
border-right-color: $red
|
118
124
|
|
data/styleguide/Gemfile.lock
CHANGED