crossbar 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.hound.yml +4 -0
- data/app/assets/stylesheets/base/_b-all.scss +6 -6
- data/app/assets/stylesheets/base/functions/{_colors.scss → _b-colors.scss} +0 -0
- data/app/assets/stylesheets/base/functions/{_list-attributes.scss → _b-list-attributes.scss} +0 -0
- data/app/assets/stylesheets/base/variables/{_colors.scss → _b-colors.scss} +0 -0
- data/app/assets/stylesheets/base/variables/{_fonts.scss → _b-fonts.scss} +0 -0
- data/app/assets/stylesheets/base/variables/{_inputs.scss → _b-inputs.scss} +0 -0
- data/app/assets/stylesheets/base/variables/{_variables.scss → _b-variables.scss} +1 -1
- data/lib/crossbar/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebda7954a4259416d234468456ce57210b7860c3
|
4
|
+
data.tar.gz: a1eb6b9b21329835e6739aa9cbf3fee83bd05b1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b81801884d1806971237e557928d1eb0797e1d4d785845e3db6522d8499963d97117086eb47764b545dfc8dc6492c1aaa74c60bfa8f7de3fa8de85a256fe33f0
|
7
|
+
data.tar.gz: ca14d38b2ae5c4fa0ac8dcc63ceb0dd867613a11b0dacfdf4773e7c566ca1fd0ecada009457562af9adc57a0225aa552b38db7e79176b3851bd8406da803be06
|
data/.hound.yml
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
@import 'base/vendor/normalize.css';
|
3
3
|
|
4
4
|
// Functions
|
5
|
-
@import 'functions/colors';
|
6
|
-
@import 'functions/list-attributes';
|
5
|
+
@import 'functions/b-colors';
|
6
|
+
@import 'functions/b-list-attributes';
|
7
7
|
|
8
8
|
// Variables
|
9
|
-
@import 'variables/colors';
|
10
|
-
@import 'variables/fonts';
|
11
|
-
@import 'variables/inputs';
|
12
|
-
@import 'variables/variables';
|
9
|
+
@import 'variables/b-colors';
|
10
|
+
@import 'variables/b-fonts';
|
11
|
+
@import 'variables/b-inputs';
|
12
|
+
@import 'variables/b-variables';
|
13
13
|
|
14
14
|
// Mixins
|
15
15
|
|
File without changes
|
data/app/assets/stylesheets/base/functions/{_list-attributes.scss → _b-list-attributes.scss}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -149,7 +149,7 @@ $base-form-text-input-border-color: $black-26;
|
|
149
149
|
$base-form-text-input-border-color-hover: $black-54;
|
150
150
|
$base-form-text-input-border-color-focus: $base-accent-color;
|
151
151
|
$base-form-text-input-border-radius: 0;
|
152
|
-
$base-form-text-input-box-shadow:
|
152
|
+
$base-form-text-input-box-shadow: none;
|
153
153
|
$base-form-text-input-color: $base-font-color;
|
154
154
|
$base-form-text-input-margin: 0 0 $base-spacing-half;
|
155
155
|
$base-form-text-input-padding: $base-spacing-half;
|
data/lib/crossbar/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: crossbar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- makabde
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -107,13 +107,13 @@ files:
|
|
107
107
|
- app/assets/stylesheets/base/_b-table.scss
|
108
108
|
- app/assets/stylesheets/base/_b-typography.scss
|
109
109
|
- app/assets/stylesheets/base/extends/.keep
|
110
|
-
- app/assets/stylesheets/base/functions/
|
111
|
-
- app/assets/stylesheets/base/functions/
|
110
|
+
- app/assets/stylesheets/base/functions/_b-colors.scss
|
111
|
+
- app/assets/stylesheets/base/functions/_b-list-attributes.scss
|
112
112
|
- app/assets/stylesheets/base/mixins/.keep
|
113
|
-
- app/assets/stylesheets/base/variables/
|
114
|
-
- app/assets/stylesheets/base/variables/
|
115
|
-
- app/assets/stylesheets/base/variables/
|
116
|
-
- app/assets/stylesheets/base/variables/
|
113
|
+
- app/assets/stylesheets/base/variables/_b-colors.scss
|
114
|
+
- app/assets/stylesheets/base/variables/_b-fonts.scss
|
115
|
+
- app/assets/stylesheets/base/variables/_b-inputs.scss
|
116
|
+
- app/assets/stylesheets/base/variables/_b-variables.scss
|
117
117
|
- app/assets/stylesheets/base/vendor/normalize.css
|
118
118
|
- app/assets/stylesheets/layout/_l-all.scss
|
119
119
|
- app/assets/stylesheets/modules/_m-all.scss
|