-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from ltfschoen/feature/csv-ajax-filter
Feature / Search and Filter Data Uploaded from CSV with Pagination
- Loading branch information
Showing
21 changed files
with
371 additions
and
43 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,3 +1,107 @@ | ||
// Place all the styles related to the Products controller here. | ||
// They will automatically be included in application.css. | ||
// You can use Sass (SCSS) here: http://sass-lang.com/ | ||
|
||
body { | ||
background-color: #000000; | ||
font-family: Verdana, Helvetica, Arial; | ||
font-size: 14px; | ||
} | ||
|
||
a img { | ||
border: none; | ||
} | ||
|
||
a { | ||
color: #0000FF; | ||
} | ||
|
||
.clear { | ||
clear: both; | ||
height: 0; | ||
overflow: hidden; | ||
} | ||
|
||
#container { | ||
width: 75%; | ||
margin: 0 auto; | ||
background-color: #FFF; | ||
padding: 20px 40px; | ||
border: solid 1px black; | ||
margin-top: 20px; | ||
} | ||
|
||
#flash_notice, #flash_error, #flash_alert { | ||
padding: 5px 8px; | ||
margin: 10px 0; | ||
} | ||
|
||
#flash_notice { | ||
background-color: #CFC; | ||
border: solid 1px #6C6; | ||
} | ||
|
||
#flash_error, #flash_alert { | ||
background-color: #FCC; | ||
border: solid 1px #C66; | ||
} | ||
|
||
.fieldWithErrors { | ||
display: inline; | ||
} | ||
|
||
.error_messages { | ||
width: 400px; | ||
border: 2px solid #CF0000; | ||
padding: 0px; | ||
padding-bottom: 12px; | ||
margin-bottom: 20px; | ||
background-color: #f0f0f0; | ||
font-size: 12px; | ||
} | ||
|
||
.error_messages h2 { | ||
text-align: left; | ||
font-weight: bold; | ||
padding: 5px 10px; | ||
font-size: 12px; | ||
margin: 0; | ||
background-color: #c00; | ||
color: #fff; | ||
} | ||
|
||
.error_messages p { | ||
margin: 8px 10px; | ||
} | ||
|
||
.error_messages ul { | ||
margin: 0; | ||
} | ||
|
||
table.pretty { | ||
border-collapse: collapse; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.pretty td, .pretty th { | ||
padding: 4px 10px; | ||
border: solid 1px #AAA; | ||
} | ||
|
||
.pretty .price { | ||
text-align: right; | ||
} | ||
|
||
.pretty th .current { | ||
padding-right: 12px; | ||
background-repeat: no-repeat; | ||
background-position: right center; | ||
} | ||
|
||
.pretty th .asc { | ||
background-image: asset-data-url("up_arrow.gif"); | ||
} | ||
|
||
.pretty th .desc { | ||
background-image: asset-data-url("down_arrow.gif"); | ||
} |
Oops, something went wrong.