Skip to content

Commit

Permalink
Merge pull request #151 from yahoo/fix-prefixes
Browse files Browse the repository at this point in the history
Removing dot from prefixes
  • Loading branch information
src-code committed Apr 8, 2015
2 parents 8ac5866 + ed05b51 commit 8d533d0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = [
type: 'pattern',
id: 'animation',
name: 'Animation',
prefix: '.Anim-',
prefix: 'Anim-',
properties: ['animation'],
allowCustom: true,
allowSuffixToValue: true
Expand All @@ -33,7 +33,7 @@ module.exports = [
type: 'pattern',
id: 'animation-delay',
name: 'Animation delay',
prefix: '.Animdel-',
prefix: 'Animdel-',
properties: ['animation-delay'],
allowCustom: true,
allowSuffixToValue: true
Expand All @@ -42,7 +42,7 @@ module.exports = [
type: 'pattern',
id: 'animation-direction',
name: 'Animation direction',
prefix: '.Animdir-',
prefix: 'Animdir-',
properties: ['animation-direction'],
allowCustom: true,
allowSuffixToValue: false,
Expand All @@ -57,7 +57,7 @@ module.exports = [
type: 'pattern',
id: 'animation-duration',
name: 'Animation duration',
prefix: '.Animdur-',
prefix: 'Animdur-',
properties: ['animation-duration'],
allowCustom: true,
allowSuffixToValue: true
Expand All @@ -66,7 +66,7 @@ module.exports = [
type: 'pattern',
id: 'animation-fill-mode',
name: 'Animation fill mode',
prefix: '.Animfm-',
prefix: 'Animfm-',
properties: ['animation-fill-mode'],
allowCustom: true,
allowSuffixToValue: false,
Expand All @@ -81,7 +81,7 @@ module.exports = [
type: 'pattern',
id: 'animation-iteration-count',
name: 'Animation iteration count',
prefix: '.Animic-',
prefix: 'Animic-',
properties: ['animation-iteration-count'],
allowCustom: true,
allowSuffixToValue: true,
Expand All @@ -93,7 +93,7 @@ module.exports = [
type: 'pattern',
id: 'animation-name',
name: 'Animation name',
prefix: '.Animn-',
prefix: 'Animn-',
properties: ['animation-name'],
allowCustom: true,
allowSuffixToValue: true,
Expand All @@ -105,7 +105,7 @@ module.exports = [
type: 'pattern',
id: 'animation-play-state',
name: 'Animation play state',
prefix: '.Animps-',
prefix: 'Animps-',
properties: ['animation-play-state'],
allowCustom: false,
allowSuffixToValue: false,
Expand All @@ -118,7 +118,7 @@ module.exports = [
type: 'pattern',
id: 'animation-timing-function',
name: 'Animation timing function',
prefix: '.Animtf-',
prefix: 'Animtf-',
properties: ['animation-timing-function'],
allowCustom: true,
allowSuffixToValue: false,
Expand Down Expand Up @@ -1950,7 +1950,7 @@ module.exports = [
type: 'pattern',
id: 'transform',
name: 'Transform',
prefix: '.Trf-',
prefix: 'Trf-',
properties: ['transform'],
allowCustom: true,
allowSuffixToValue: false
Expand Down

0 comments on commit 8d533d0

Please sign in to comment.