codeclimate-styles 0.7.7 → 0.7.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/stylesheets/cc/styles/_mixins.scss +0 -1
- data/assets/stylesheets/cc/styles/modules/_forms.scss +1 -6
- data/assets/stylesheets/cc/styles/modules/_lists.scss +3 -3
- data/assets/stylesheets/cc/styles/modules/_misc.scss +1 -1
- data/assets/stylesheets/cc/styles/modules/_tables.scss +1 -1
- data/lib/cc/styles/version.rb +1 -1
- metadata +2 -3
- data/assets/stylesheets/cc/styles/mixins/_ff_mask_image.scss +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7f6850525eab5083a67f3bb33319c50323503a9
|
4
|
+
data.tar.gz: 3336244cb51656ef5717a8cfd08dd63a22ea608e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b907fe5939877a43007ac31c3890cd06543c8ae090b26f2263df09429b6acfd83aacb0b4e5b541dd4135c5fbf93fd55c54d64aa2060f713ef4546e76066cebee
|
7
|
+
data.tar.gz: 2972619ddad35eadce09687721faf1506d080697ddc556f9f892534006b5e78cb7be66c7acb70131246fc6572a8bc663606979784634409fa653b3b66ed320b0
|
@@ -125,21 +125,16 @@ form.form--search
|
|
125
125
|
position: relative;
|
126
126
|
|
127
127
|
&::before {
|
128
|
-
@include ff-mask-image(image-url("cc/styles/icons/search_solid.svg"));
|
129
128
|
background: $grayscale-slate;
|
130
129
|
content: " ";
|
131
130
|
height: 39px;
|
132
131
|
left: 11px;
|
132
|
+
mask-image: image-url("cc/styles/icons/search_solid.svg");
|
133
133
|
mask-position: center;
|
134
134
|
mask-repeat: no-repeat;
|
135
135
|
mask-size: 100% auto;
|
136
136
|
position: absolute;
|
137
137
|
width: 15px;
|
138
|
-
|
139
|
-
// Afer 01-05-2017 this can be removed & replaced with simply `mask-image`.
|
140
|
-
@-moz-document url-prefix() {
|
141
|
-
background-position: center 11px;
|
142
|
-
}
|
143
138
|
}
|
144
139
|
|
145
140
|
input[type=search] {
|
@@ -162,19 +162,19 @@ ul.icon-menu
|
|
162
162
|
|
163
163
|
.icon-menu__item--icon-add {
|
164
164
|
a::before {
|
165
|
-
|
165
|
+
mask-image: image-url("cc/styles/icons/add_linear.svg");
|
166
166
|
}
|
167
167
|
}
|
168
168
|
|
169
169
|
.icon-menu__item--icon-add-collaborator {
|
170
170
|
a::before {
|
171
|
-
|
171
|
+
mask-image: image-url("cc/styles/icons/add_collaborator_linear.svg");
|
172
172
|
}
|
173
173
|
}
|
174
174
|
|
175
175
|
.icon-menu__item--icon-settings {
|
176
176
|
a::before {
|
177
|
-
|
177
|
+
mask-image: image-url("cc/styles/icons/settings_linear.svg");
|
178
178
|
}
|
179
179
|
}
|
180
180
|
|
@@ -80,10 +80,10 @@ table.table.table--sortable
|
|
80
80
|
position: relative;
|
81
81
|
|
82
82
|
&::before {
|
83
|
-
@include ff-mask-image(image-url("cc/styles/icons/nubbin_arrow.svg"));
|
84
83
|
background-color: $grayscale-deep;
|
85
84
|
bottom: 0;
|
86
85
|
content: "";
|
86
|
+
mask-image: image-url("cc/styles/icons/nubbin_arrow.svg");
|
87
87
|
mask-position: right center;
|
88
88
|
mask-repeat: no-repeat;
|
89
89
|
mask-size: 100% auto;
|
data/lib/cc/styles/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: codeclimate-styles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code Climate
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-12-
|
11
|
+
date: 2017-12-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Foundational stylesheets for Code Climate properties
|
14
14
|
email:
|
@@ -72,7 +72,6 @@ files:
|
|
72
72
|
- assets/stylesheets/cc/styles/_colors.scss
|
73
73
|
- assets/stylesheets/cc/styles/_mixins.scss
|
74
74
|
- assets/stylesheets/cc/styles/_modules.scss
|
75
|
-
- assets/stylesheets/cc/styles/mixins/_ff_mask_image.scss
|
76
75
|
- assets/stylesheets/cc/styles/mixins/_transitions.scss
|
77
76
|
- assets/stylesheets/cc/styles/modules/_buttons.scss
|
78
77
|
- assets/stylesheets/cc/styles/modules/_code.scss
|
@@ -1,9 +0,0 @@
|
|
1
|
-
// Afer 01-05-2017 this can be removed & replaced with simply `mask-image`.
|
2
|
-
// See https://github.com/codeclimate/app/issues/3449
|
3
|
-
@mixin ff-mask-image($img) {
|
4
|
-
mask-image: $img;
|
5
|
-
|
6
|
-
@-moz-document url-prefix() {
|
7
|
-
background: $img 0 0 no-repeat transparent;
|
8
|
-
}
|
9
|
-
}
|