-
Notifications
You must be signed in to change notification settings - Fork 42
SRCH-3876: Remove therubyracer. Use cssbuilding-rails gem and less node package instead #1261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
18fb55d
SRCH-3876: remove therubyracer gem
stevenbarragan 849f817
feat: setup cssbundling-rails gem
stevenbarragan c2cce3c
refactor: transpile some small Less files to css
stevenbarragan f82c021
fix: NameError at compilation
stevenbarragan 6679cdc
refactor: add less-rails-bootstrap gem less files
stevenbarragan 244e256
feat: add script to process all Less entry files
stevenbarragan 811d16f
feat: watch Less files for changes
stevenbarragan 044f463
docs: add bin/dev command to README
stevenbarragan a8b7a8b
chore: remove mini_racer gem
stevenbarragan 05c38d6
chore: remove the less-loader node package
stevenbarragan 7adef98
test: Fix codeclimate issues
stevenbarragan 842681e
chore: remove "less-rails-boostrap" form Gemfile
stevenbarragan ade32af
bug: Set up sprockets AssetUrlProcessor
stevenbarragan 650c978
document: assets precopilation for production
stevenbarragan 2c05df3
style: remove sites/ie.css.less file
stevenbarragan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
web: unset PORT && bin/rails server | ||
css: yarn run watch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "application/index"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
/* | ||
*= require shared/_ie_lte9 | ||
*/ | ||
/* csslint important:false */ | ||
|
||
.placeholder { | ||
color: #aaa !important; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "searches/index"; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,22 @@ | ||
/* | ||
*= require searches/ie | ||
*/ | ||
/* csslint ids:false, important:false, outline-none:false */ | ||
|
||
#search-bar #search-button { | ||
font: 0/0 a; | ||
} | ||
|
||
a:focus { | ||
outline: 3px solid #EDB864 !important; | ||
} | ||
|
||
#search .pagination a, #search .pagination span { | ||
border: 2px solid transparent; | ||
outline: 0; | ||
} | ||
|
||
#search .pagination a:focus, #search .pagination span:focus { | ||
border-color: #EDB864; | ||
} | ||
|
||
.icon { | ||
margin-top: -1px; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
/* | ||
*= require searches/ie_lt9 | ||
*/ | ||
@media (min-width: 768px) { | ||
.show-menu .menu { | ||
right: -200px; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
/* | ||
*= depend_on sites/_variables | ||
*/ | ||
@import 'sites/_bootstrap.less'; | ||
|
||
@import 'sites/modules/_layouts.less'; | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "sites/index"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
/* | ||
*= require sites/ie | ||
*/ | ||
.fa { | ||
stevenbarragan marked this conversation as resolved.
Show resolved
Hide resolved
|
||
display: inline-block; | ||
} | ||
|
||
.fa-calendar-black { | ||
background-clip: padding-box; | ||
padding: 2px; | ||
} | ||
|
||
.fa-reorder-black { | ||
background-clip: padding-box; | ||
padding: 3px; | ||
vertical-align: middle; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.