This repository has been archived by the owner on May 7, 2021. It is now read-only.
forked from pmuir/patternfly-sass
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Dependencies are now living under the lib folder (like upstream) * FontAwesome and Bootstrap are included from gems (unlike upstream) * Dropped dependency on rails-assets-* gems * Bower dependencies are now production dependencies (like upstream) * Improved rakefile task dependencies * NPM packaging not supported yet
- Loading branch information
Showing
90 changed files
with
3,682 additions
and
259 deletions.
There are no files selected for viewing
This file contains 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 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,4 +1,3 @@ | ||
source 'https://rubygems.org' | ||
source "https://rails-assets.org" | ||
|
||
gemspec |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
288 changes: 288 additions & 0 deletions
288
assets/fonts/patternfly/glyphicons-halflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains 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 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 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,42 @@ | ||
.form-search .combobox-container, | ||
.form-inline .combobox-container { | ||
display: inline-block; | ||
margin-bottom: 0; | ||
vertical-align: top; | ||
} | ||
.form-search .combobox-container .input-group-addon, | ||
.form-inline .combobox-container .input-group-addon { | ||
width: auto; | ||
} | ||
.combobox-selected .caret { | ||
display: none; | ||
} | ||
/* :not doesn't work in IE8 */ | ||
.combobox-container:not(.combobox-selected) .glyphicon-remove { | ||
display: none; | ||
} | ||
.typeahead-long { | ||
max-height: 300px; | ||
overflow-y: auto; | ||
} | ||
.control-group.error .combobox-container .add-on { | ||
color: #B94A48; | ||
border-color: #B94A48; | ||
} | ||
.control-group.error .combobox-container .caret { | ||
border-top-color: #B94A48; | ||
} | ||
.control-group.warning .combobox-container .add-on { | ||
color: #C09853; | ||
border-color: #C09853; | ||
} | ||
.control-group.warning .combobox-container .caret { | ||
border-top-color: #C09853; | ||
} | ||
.control-group.success .combobox-container .add-on { | ||
color: #468847; | ||
border-color: #468847; | ||
} | ||
.control-group.success .combobox-container .caret { | ||
border-top-color: #468847; | ||
} |
Oops, something went wrong.