-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
146 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.DS_Store | ||
.sass-cache |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,25 @@ | ||
table.report-grid { | ||
tr { | ||
/* Odd row colouration */ | ||
&.odd { | ||
background-color: #eeeeee; | ||
border: none; | ||
} | ||
/* Workflow related styling */ | ||
&.overdue { | ||
border-left: solid 8px $colour-range-1-a; | ||
} | ||
&.overdue-soon { | ||
border-left: solid 8px $colour-range-1-b; | ||
} | ||
} | ||
/* Sizing of thumbnails in image columns */ | ||
.single img { | ||
width: 100px; | ||
margin: 2px; | ||
} | ||
.multi img { | ||
width: 50px; | ||
margin: 1px; | ||
} | ||
} |
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,5 @@ | ||
/* Accessible colour ranges from colorbrewer */ | ||
$colour-range-1-a: #d7191c; | ||
$colour-range-1-b: #fdae61; | ||
$colour-range-1-c: #abd9e9; | ||
$colour-range-1-d: #2c7bb6; |
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,5 @@ | ||
/* Theme extension to the default_site.css file which provides Bootstrap 3 optimised style output */ | ||
@import "common/variables"; | ||
@import "bootstrap-3/variables"; | ||
@import "common/report-grid"; | ||
@import "bootstrap-3/form-controls"; |
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,5 @@ | ||
/* Theme extension to the default_site.css file which provides the default Indicia style output */ | ||
@import "common/variables"; | ||
@import "generic/variables"; | ||
@import "common/report-grid"; | ||
@import "generic/form-controls"; |