inuit-rails 6.0.0.beta.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.bowerrc +3 -0
- data/.document +5 -0
- data/.gitignore +55 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bower.json +19 -0
- data/inuit-rails.gemspec +24 -0
- data/lib/inuit-rails.rb +2 -0
- data/lib/inuit-rails/rails.rb +1 -0
- data/lib/inuit-rails/rails/engine.rb +6 -0
- data/lib/inuit-rails/rails/version.rb +5 -0
- data/vendor/assets/stylesheets/inuitcss/LICENSE +13 -0
- data/vendor/assets/stylesheets/inuitcss/circle.yml +17 -0
- data/vendor/assets/stylesheets/inuitcss/components/_example.components.buttons.scss +170 -0
- data/vendor/assets/stylesheets/inuitcss/elements/_elements.headings.scss +47 -0
- data/vendor/assets/stylesheets/inuitcss/elements/_elements.images.scss +28 -0
- data/vendor/assets/stylesheets/inuitcss/elements/_elements.page.scss +22 -0
- data/vendor/assets/stylesheets/inuitcss/elements/_elements.tables.scss +11 -0
- data/vendor/assets/stylesheets/inuitcss/example.main.scss +154 -0
- data/vendor/assets/stylesheets/inuitcss/generic/_generic.box-sizing.scss +22 -0
- data/vendor/assets/stylesheets/inuitcss/generic/_generic.normalize.scss +461 -0
- data/vendor/assets/stylesheets/inuitcss/generic/_generic.reset.scss +53 -0
- data/vendor/assets/stylesheets/inuitcss/generic/_generic.shared.scss +36 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.block.scss +63 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.box.scss +48 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.crop.scss +99 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.flag.scss +214 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.layout.scss +247 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.list-bare.scss +13 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.list-inline.scss +53 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.media.scss +152 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.pack.scss +90 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.ratio.scss +85 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.tables.scss +74 -0
- data/vendor/assets/stylesheets/inuitcss/objects/_objects.wrapper.scss +51 -0
- data/vendor/assets/stylesheets/inuitcss/settings/_example.settings.config.scss +24 -0
- data/vendor/assets/stylesheets/inuitcss/settings/_example.settings.global.scss +9 -0
- data/vendor/assets/stylesheets/inuitcss/settings/_settings.core.scss +93 -0
- data/vendor/assets/stylesheets/inuitcss/tools/_tools.clearfix.scss +19 -0
- data/vendor/assets/stylesheets/inuitcss/tools/_tools.font-size.scss +44 -0
- data/vendor/assets/stylesheets/inuitcss/tools/_tools.hidden.scss +15 -0
- data/vendor/assets/stylesheets/inuitcss/tools/_tools.rem.scss +48 -0
- data/vendor/assets/stylesheets/inuitcss/utilities/_utilities.clearfix.scss +11 -0
- data/vendor/assets/stylesheets/inuitcss/utilities/_utilities.headings.scss +36 -0
- data/vendor/assets/stylesheets/inuitcss/utilities/_utilities.hide.scss +21 -0
- data/vendor/assets/stylesheets/inuitcss/utilities/_utilities.print.scss +90 -0
- data/vendor/assets/stylesheets/inuitcss/utilities/_utilities.spacing.scss +57 -0
- data/vendor/assets/stylesheets/inuitcss/utilities/_utilities.widths.scss +167 -0
- data/vendor/assets/stylesheets/sass-mq/_mq.scss +287 -0
- data/vendor/assets/stylesheets/sass-mq/show-breakpoints.gif +0 -0
- metadata +144 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4c86eb71182660e982274c7a42709605e8d0bbff
|
4
|
+
data.tar.gz: 35f1273e0c43c19e54e34098c657fa37682c80a5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bf1b8490579815e34111179152cae1f2bd9b8bcb16d681054b20a160469e3fad40090660ee333e7463ed19b234eb12e93c659d8fa021b936e1de4e2ba447e521
|
7
|
+
data.tar.gz: ef95adbc197b8e0bbcb21534308b56d60b44f30afae62932c9f39675fff65ab541de1cd50a14634fd2372283db8938f4c15a69bd6a72887e84db793461d4a68e
|
data/.bowerrc
ADDED
data/.document
ADDED
data/.gitignore
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
# rcov generated
|
2
|
+
coverage
|
3
|
+
coverage.data
|
4
|
+
|
5
|
+
# rdoc generated
|
6
|
+
rdoc
|
7
|
+
|
8
|
+
# yard generated
|
9
|
+
doc
|
10
|
+
.yardoc
|
11
|
+
|
12
|
+
# bundler
|
13
|
+
.bundle
|
14
|
+
|
15
|
+
# jeweler generated
|
16
|
+
pkg
|
17
|
+
|
18
|
+
# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
|
19
|
+
#
|
20
|
+
# * Create a file at ~/.gitignore
|
21
|
+
# * Include files you want ignored
|
22
|
+
# * Run: git config --global core.excludesfile ~/.gitignore
|
23
|
+
#
|
24
|
+
# After doing this, these files will be ignored in all your git projects,
|
25
|
+
# saving you from having to 'pollute' every project you touch with them
|
26
|
+
#
|
27
|
+
# Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
|
28
|
+
#
|
29
|
+
# For MacOS:
|
30
|
+
#
|
31
|
+
#.DS_Store
|
32
|
+
|
33
|
+
# For TextMate
|
34
|
+
#*.tmproj
|
35
|
+
#tmtags
|
36
|
+
|
37
|
+
# For emacs:
|
38
|
+
#*~
|
39
|
+
#\#*
|
40
|
+
#.\#*
|
41
|
+
|
42
|
+
# For vim:
|
43
|
+
#*.swp
|
44
|
+
|
45
|
+
# For redcar:
|
46
|
+
#.redcar
|
47
|
+
|
48
|
+
# For rubinius:
|
49
|
+
#*.rbc
|
50
|
+
vendor/assets/stylesheets/**/*.json
|
51
|
+
vendor/assets/stylesheets/**/*.md
|
52
|
+
vendor/assets/stylesheets/**/*.gitignore
|
53
|
+
vendor/assets/stylesheets/**/*.bower.json
|
54
|
+
|
55
|
+
Gemfile.lock
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at dan@dangarland.co.uk. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Dan Garland
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Inuit::Rails
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/inuit/rails`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'inuit-rails'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install inuit-rails
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/inuit-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "inuit/rails"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/bower.json
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"name": "inuit-rails",
|
3
|
+
"version": "6.0.0",
|
4
|
+
"homepage": "https://github.com/dmgarland/inuit-rails",
|
5
|
+
"authors": [
|
6
|
+
"Dan Garland <dan@dangarland.co.uk>"
|
7
|
+
],
|
8
|
+
"description": "Inuit CSS framework",
|
9
|
+
"main": "inuit.scss",
|
10
|
+
"license": "MIT",
|
11
|
+
"ignore": [
|
12
|
+
"**/.*",
|
13
|
+
"node_modules",
|
14
|
+
"bower_components"
|
15
|
+
],
|
16
|
+
"dependencies": {
|
17
|
+
"inuitcss": "~6.0.0"
|
18
|
+
}
|
19
|
+
}
|
data/inuit-rails.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'inuit-rails/rails/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "inuit-rails"
|
8
|
+
spec.version = Inuit::Rails::VERSION
|
9
|
+
spec.authors = ["Dan Garland"]
|
10
|
+
spec.email = ["dan@dangarland.co.uk"]
|
11
|
+
|
12
|
+
spec.summary = %q{A Rails engine that permits the use of the inuit css framework within a Rails application.}
|
13
|
+
spec.homepage = "https://github.com/dmgarland/inuit-rails"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
24
|
+
end
|
data/lib/inuit-rails.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'inuit-rails/rails/engine'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
Copyright 2016 Harry Roberts
|
2
|
+
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
you may not use this file except in compliance with the License.
|
5
|
+
You may obtain a copy of the License at
|
6
|
+
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
See the License for the specific language governing permissions and
|
13
|
+
limitations under the License.
|
@@ -0,0 +1,17 @@
|
|
1
|
+
machine:
|
2
|
+
node:
|
3
|
+
version: 4.4.7
|
4
|
+
ruby:
|
5
|
+
version: 2.3.1
|
6
|
+
dependencies:
|
7
|
+
pre:
|
8
|
+
- npm install npm -g
|
9
|
+
- gem install sass true
|
10
|
+
- npm install
|
11
|
+
test:
|
12
|
+
override:
|
13
|
+
- sass example.main.scss test/example.main.css --sourcemap=none
|
14
|
+
- true-cli test/tests.scss
|
15
|
+
- npm rebuild node-sass
|
16
|
+
- node-sass example.main.scss -o test/
|
17
|
+
- npm test
|
@@ -0,0 +1,170 @@
|
|
1
|
+
/* ==========================================================================
|
2
|
+
#BUTTONS
|
3
|
+
========================================================================== */
|
4
|
+
|
5
|
+
/**
|
6
|
+
* This is an example component. Extend inuitcss by building your own components
|
7
|
+
* that make up your UI. Component classes are prefixed with a `c-`.
|
8
|
+
*/
|
9
|
+
|
10
|
+
/**
|
11
|
+
* 1. Allow us to style box model properties.
|
12
|
+
* 2. Line different sized buttons up a little nicer.
|
13
|
+
* 3. Make buttons inherit font styles (often necessary when styling `input`s as
|
14
|
+
* buttons).
|
15
|
+
* 4. Reset/normalize some styles.
|
16
|
+
* 5. Force all button-styled elements to appear clickable.
|
17
|
+
*/
|
18
|
+
|
19
|
+
.c-btn {
|
20
|
+
display: inline-block; /* [1] */
|
21
|
+
vertical-align: middle; /* [2] */
|
22
|
+
font: inherit; /* [3] */
|
23
|
+
text-align: center; /* [4] */
|
24
|
+
margin: 0; /* [4] */
|
25
|
+
cursor: pointer; /* [5] */
|
26
|
+
padding: $inuit-global-spacing-unit-small $inuit-global-spacing-unit;
|
27
|
+
transition: $global-transition;
|
28
|
+
border-radius: $global-radius;
|
29
|
+
}
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
/* Style variants
|
36
|
+
========================================================================== */
|
37
|
+
|
38
|
+
.c-btn--primary {
|
39
|
+
background-color: #4a8ec2;
|
40
|
+
|
41
|
+
&,
|
42
|
+
&:hover,
|
43
|
+
&:active,
|
44
|
+
&:focus {
|
45
|
+
text-decoration: none; /* [4] */
|
46
|
+
color: #fff;
|
47
|
+
}
|
48
|
+
|
49
|
+
&:hover,
|
50
|
+
&:focus {
|
51
|
+
background-color: #3774a2;
|
52
|
+
}
|
53
|
+
|
54
|
+
}
|
55
|
+
|
56
|
+
.c-btn--secondary {
|
57
|
+
background-color: #2f4054;
|
58
|
+
|
59
|
+
&,
|
60
|
+
&:hover,
|
61
|
+
&:active,
|
62
|
+
&:focus {
|
63
|
+
text-decoration: none;
|
64
|
+
color: #fff;
|
65
|
+
}
|
66
|
+
|
67
|
+
&:hover,
|
68
|
+
&:focus {
|
69
|
+
background-color: #1d2733;
|
70
|
+
}
|
71
|
+
|
72
|
+
}
|
73
|
+
|
74
|
+
.c-btn--tertiary {
|
75
|
+
background-color: #fff;
|
76
|
+
color: #4a8ec2;
|
77
|
+
|
78
|
+
&,
|
79
|
+
&:hover,
|
80
|
+
&:active,
|
81
|
+
&:focus {
|
82
|
+
text-decoration: none;
|
83
|
+
color: #4a8ec2;
|
84
|
+
}
|
85
|
+
|
86
|
+
&:hover,
|
87
|
+
&:focus {
|
88
|
+
color: #3774a2;
|
89
|
+
}
|
90
|
+
|
91
|
+
}
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
/* Size variants
|
98
|
+
========================================================================== */
|
99
|
+
|
100
|
+
.c-btn--small {
|
101
|
+
padding: inuit-rem($inuit-global-spacing-unit-tiny) inuit-rem($inuit-global-spacing-unit-small);
|
102
|
+
}
|
103
|
+
|
104
|
+
.c-btn--large {
|
105
|
+
padding: inuit-rem($inuit-global-spacing-unit) inuit-rem($inuit-global-spacing-unit-large);
|
106
|
+
}
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
/* Ghost buttons
|
113
|
+
========================================================================== */
|
114
|
+
|
115
|
+
/**
|
116
|
+
* Ghost buttons have see-through backgrounds and are bordered.
|
117
|
+
*/
|
118
|
+
|
119
|
+
$btn-ghost-border-width: 2px;
|
120
|
+
|
121
|
+
.c-btn--ghost {
|
122
|
+
border: $btn-ghost-border-width solid currentColor;
|
123
|
+
padding: ($inuit-global-spacing-unit-small - $btn-ghost-border-width) ($inuit-global-spacing-unit - $btn-ghost-border-width);
|
124
|
+
|
125
|
+
&,
|
126
|
+
&:hover,
|
127
|
+
&:active,
|
128
|
+
&:focus {
|
129
|
+
background: none;
|
130
|
+
}
|
131
|
+
|
132
|
+
&.c-btn--small {
|
133
|
+
padding: ($inuit-global-spacing-unit-tiny - $btn-ghost-border-width) ($inuit-global-spacing-unit-small - $btn-ghost-border-width);
|
134
|
+
}
|
135
|
+
|
136
|
+
&.c-btn--large {
|
137
|
+
padding: ($inuit-global-spacing-unit - $btn-ghost-border-width) ($inuit-global-spacing-unit-large - $btn-ghost-border-width);
|
138
|
+
}
|
139
|
+
|
140
|
+
&.c-btn--primary {
|
141
|
+
color: #4a8ec2;
|
142
|
+
|
143
|
+
&:hover,
|
144
|
+
&:focus {
|
145
|
+
color: #3774a2;
|
146
|
+
}
|
147
|
+
|
148
|
+
}
|
149
|
+
|
150
|
+
&.c-btn--secondary {
|
151
|
+
color: #2f4054;
|
152
|
+
|
153
|
+
&:hover,
|
154
|
+
&:focus {
|
155
|
+
color: #1d2733;
|
156
|
+
}
|
157
|
+
|
158
|
+
}
|
159
|
+
|
160
|
+
&.c-btn--tertiary {
|
161
|
+
color: #fff;
|
162
|
+
|
163
|
+
&:hover,
|
164
|
+
&:focus {
|
165
|
+
color: #fff;
|
166
|
+
}
|
167
|
+
|
168
|
+
}
|
169
|
+
|
170
|
+
}
|