scidea-hsfc-theme 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +2 -0
- data/MIT-LICENSE +7 -0
- data/README.md +6 -0
- data/Rakefile +2 -0
- data/app/assets/images/hsfc/hsfc-logo.png +0 -0
- data/app/assets/stylesheets/hsfc/_config.scss +12 -0
- data/app/assets/stylesheets/hsfc/admin/main.scss +35 -0
- data/app/assets/stylesheets/hsfc/admin/pages/admin_index.scss +8 -0
- data/app/assets/stylesheets/hsfc/admin/pages/dashboard.scss +3 -0
- data/app/assets/stylesheets/hsfc/admin/pages/edit_user.scss +3 -0
- data/app/assets/stylesheets/hsfc/admin/pages/manage_seminar_applications.scss +8 -0
- data/app/assets/stylesheets/hsfc/admin/pages/manage_seminar_records.scss +3 -0
- data/app/assets/stylesheets/hsfc/admin/pages/print/reports.scss +3 -0
- data/app/assets/stylesheets/hsfc/admin/pages/reports.scss +3 -0
- data/app/assets/stylesheets/hsfc/admin/pages/search_results.scss +0 -0
- data/app/assets/stylesheets/hsfc/admin/pages/users_show.scss +3 -0
- data/app/assets/stylesheets/hsfc/main.scss +37 -0
- data/app/assets/stylesheets/hsfc/pages/answer_guide.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/certificates.scss +4 -0
- data/app/assets/stylesheets/hsfc/pages/course_detail.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/courses_and_exercises.scss +7 -0
- data/app/assets/stylesheets/hsfc/pages/credit_certificates.scss +7 -0
- data/app/assets/stylesheets/hsfc/pages/dashboard.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/discussion.scss +6 -0
- data/app/assets/stylesheets/hsfc/pages/exercise.scss +6 -0
- data/app/assets/stylesheets/hsfc/pages/group_posts_edit.scss +7 -0
- data/app/assets/stylesheets/hsfc/pages/group_profile.scss +9 -0
- data/app/assets/stylesheets/hsfc/pages/groups.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/groups_edit.scss +8 -0
- data/app/assets/stylesheets/hsfc/pages/groups_index.scss +5 -0
- data/app/assets/stylesheets/hsfc/pages/groups_membership_mgmt.scss +6 -0
- data/app/assets/stylesheets/hsfc/pages/home.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/member_profile.scss +7 -0
- data/app/assets/stylesheets/hsfc/pages/orders_new.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/print/reports.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/print/sco_response.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/profile.scss +8 -0
- data/app/assets/stylesheets/hsfc/pages/reports.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/results.scss +4 -0
- data/app/assets/stylesheets/hsfc/pages/seminar_application.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/seminars.scss +14 -0
- data/app/assets/stylesheets/hsfc/pages/terms_and_conditions.scss +11 -0
- data/app/assets/stylesheets/hsfc/pages/topics.scss +3 -0
- data/app/assets/stylesheets/hsfc/pages/user_profile.scss +3 -0
- data/app/assets/stylesheets/hsfc/print.scss +17 -0
- data/lib/scidea/hsfc/theme/engine.rb +8 -0
- data/lib/scidea/hsfc/theme/version.rb +7 -0
- data/lib/scidea/hsfc/theme.rb +7 -0
- data/lib/scidea-hsfc-theme.rb +1 -0
- metadata +105 -0
data/CHANGELOG
ADDED
data/MIT-LICENSE
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) 2012 Scitent, Inc., except for the Heart and Stroke Foundation of Canada logo for which all rights are reserved.
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
data/Rakefile
ADDED
Binary file
|
@@ -0,0 +1,12 @@
|
|
1
|
+
@import url('https://fonts.googleapis.com/css?family=Lato&v1'); //FONTS @import LINK SEEMS TO NEED TO BE AT THIS LEVEL IN ORDER TO WORK.
|
2
|
+
@import "base/config";
|
3
|
+
|
4
|
+
// Branding
|
5
|
+
$site-logo: 'hsfc/hsfc-logo.png';
|
6
|
+
|
7
|
+
// Import all the CSS3 and utility mixins that compass provides
|
8
|
+
@import "compass";
|
9
|
+
|
10
|
+
// Need to import global custom mixins after config variables are set, as the mixins use the variables
|
11
|
+
@import "base/mixins";
|
12
|
+
|
@@ -0,0 +1,35 @@
|
|
1
|
+
//***************************************************************************************************
|
2
|
+
// Setup
|
3
|
+
//***************************************************************************************************/
|
4
|
+
|
5
|
+
@import "base/admin/config";
|
6
|
+
@import "base/base";
|
7
|
+
|
8
|
+
/****************************************************************************************************
|
9
|
+
== Template Layout Skeleton (dimensions, position, background, border, etc.)
|
10
|
+
*****************************************************************************************************/
|
11
|
+
|
12
|
+
@import "base/admin/template";
|
13
|
+
|
14
|
+
/****************************************************************************************************
|
15
|
+
== Reusable classes and components
|
16
|
+
*****************************************************************************************************/
|
17
|
+
|
18
|
+
@import "base/components/icons";
|
19
|
+
|
20
|
+
@import "base/admin/components/tables";
|
21
|
+
|
22
|
+
@import "base/admin/components/forms";
|
23
|
+
|
24
|
+
@import "base/admin/components/buttons";
|
25
|
+
|
26
|
+
@import "base/components/swfupload";
|
27
|
+
|
28
|
+
@import "base/admin/components/user_messages";
|
29
|
+
|
30
|
+
|
31
|
+
/****************************************************************************************************
|
32
|
+
== Template Region Content
|
33
|
+
*****************************************************************************************************/
|
34
|
+
|
35
|
+
@import "base/admin/content";
|
@@ -0,0 +1,8 @@
|
|
1
|
+
@import "base/admin/config";
|
2
|
+
@import "base/admin/components/pagination";
|
3
|
+
@import "base/admin/components/tabs";
|
4
|
+
@import "base/admin/components/edit_multiple";
|
5
|
+
@import "base/admin/components/expandable_table_row";
|
6
|
+
@import "base/components/simpledropdown_menu";
|
7
|
+
|
8
|
+
@import "base/admin/pages/admin_index";
|
@@ -0,0 +1,8 @@
|
|
1
|
+
@import "base/admin/config";
|
2
|
+
@import "base/components/jquery_ui/core";
|
3
|
+
@import "base/components/jquery_ui/button";
|
4
|
+
@import "base/components/jquery_ui/icons";
|
5
|
+
@import "base/components/jquery_ui/resizeable";
|
6
|
+
@import "base/components/jquery_ui/dialog";
|
7
|
+
|
8
|
+
@import "base/admin/pages/manage_seminar_applications";
|
File without changes
|
@@ -0,0 +1,37 @@
|
|
1
|
+
//***************************************************************************************************
|
2
|
+
// Setup
|
3
|
+
//***************************************************************************************************/
|
4
|
+
|
5
|
+
@import "config";
|
6
|
+
@import "base/base";
|
7
|
+
|
8
|
+
/****************************************************************************************************
|
9
|
+
== Template Layout Skeleton (dimensions, position, background, border, etc.)
|
10
|
+
*****************************************************************************************************/
|
11
|
+
|
12
|
+
@import "base/template";
|
13
|
+
|
14
|
+
/****************************************************************************************************
|
15
|
+
== Reusable classes and components
|
16
|
+
*****************************************************************************************************/
|
17
|
+
|
18
|
+
@import "base/components/icons";
|
19
|
+
|
20
|
+
@import "base/components/tables";
|
21
|
+
|
22
|
+
@import "base/components/forms";
|
23
|
+
|
24
|
+
@import "base/components/buttons";
|
25
|
+
|
26
|
+
@import "base/components/swfupload";
|
27
|
+
|
28
|
+
@import "base/components/user_messages";
|
29
|
+
|
30
|
+
@import "base/components/tooltip";
|
31
|
+
|
32
|
+
|
33
|
+
/****************************************************************************************************
|
34
|
+
== Template Region Content
|
35
|
+
*****************************************************************************************************/
|
36
|
+
|
37
|
+
@import "base/content";
|
@@ -0,0 +1,17 @@
|
|
1
|
+
/*
|
2
|
+
* print styles
|
3
|
+
* inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/
|
4
|
+
*/
|
5
|
+
@media print {
|
6
|
+
* { background: transparent !important; color: #444 !important; text-shadow: none !important; }
|
7
|
+
a, a:visited { color: #444 !important; text-decoration: underline; }
|
8
|
+
a:after { content: " (" attr(href) ")"; }
|
9
|
+
abbr:after { content: " (" attr(title) ")"; }
|
10
|
+
.ir a:after { content: ""; } /* Don't show links for images */
|
11
|
+
pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
|
12
|
+
thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
|
13
|
+
tr, img { page-break-inside: avoid; }
|
14
|
+
@page { margin: 0.5cm; }
|
15
|
+
p, h2, h3 { orphans: 3; widows: 3; }
|
16
|
+
h2, h3{ page-break-after: avoid; }
|
17
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'scidea/hsfc/theme'
|
metadata
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: scidea-hsfc-theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Phoenix Team
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-03-22 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: scidea
|
16
|
+
requirement: &20222600 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *20222600
|
25
|
+
description: Custom Scitent Scidea theme assets for onlinehsfc.org.
|
26
|
+
email:
|
27
|
+
- phoenix@scitent.com
|
28
|
+
executables: []
|
29
|
+
extensions: []
|
30
|
+
extra_rdoc_files: []
|
31
|
+
files:
|
32
|
+
- app/assets/stylesheets/hsfc/main.scss
|
33
|
+
- app/assets/stylesheets/hsfc/print.scss
|
34
|
+
- app/assets/stylesheets/hsfc/admin/main.scss
|
35
|
+
- app/assets/stylesheets/hsfc/admin/pages/print/reports.scss
|
36
|
+
- app/assets/stylesheets/hsfc/admin/pages/manage_seminar_records.scss
|
37
|
+
- app/assets/stylesheets/hsfc/admin/pages/search_results.scss
|
38
|
+
- app/assets/stylesheets/hsfc/admin/pages/edit_user.scss
|
39
|
+
- app/assets/stylesheets/hsfc/admin/pages/reports.scss
|
40
|
+
- app/assets/stylesheets/hsfc/admin/pages/admin_index.scss
|
41
|
+
- app/assets/stylesheets/hsfc/admin/pages/users_show.scss
|
42
|
+
- app/assets/stylesheets/hsfc/admin/pages/dashboard.scss
|
43
|
+
- app/assets/stylesheets/hsfc/admin/pages/manage_seminar_applications.scss
|
44
|
+
- app/assets/stylesheets/hsfc/_config.scss
|
45
|
+
- app/assets/stylesheets/hsfc/pages/profile.scss
|
46
|
+
- app/assets/stylesheets/hsfc/pages/group_posts_edit.scss
|
47
|
+
- app/assets/stylesheets/hsfc/pages/print/reports.scss
|
48
|
+
- app/assets/stylesheets/hsfc/pages/print/sco_response.scss
|
49
|
+
- app/assets/stylesheets/hsfc/pages/groups_edit.scss
|
50
|
+
- app/assets/stylesheets/hsfc/pages/groups_index.scss
|
51
|
+
- app/assets/stylesheets/hsfc/pages/reports.scss
|
52
|
+
- app/assets/stylesheets/hsfc/pages/answer_guide.scss
|
53
|
+
- app/assets/stylesheets/hsfc/pages/certificates.scss
|
54
|
+
- app/assets/stylesheets/hsfc/pages/terms_and_conditions.scss
|
55
|
+
- app/assets/stylesheets/hsfc/pages/group_profile.scss
|
56
|
+
- app/assets/stylesheets/hsfc/pages/exercise.scss
|
57
|
+
- app/assets/stylesheets/hsfc/pages/orders_new.scss
|
58
|
+
- app/assets/stylesheets/hsfc/pages/groups.scss
|
59
|
+
- app/assets/stylesheets/hsfc/pages/course_detail.scss
|
60
|
+
- app/assets/stylesheets/hsfc/pages/courses_and_exercises.scss
|
61
|
+
- app/assets/stylesheets/hsfc/pages/results.scss
|
62
|
+
- app/assets/stylesheets/hsfc/pages/seminars.scss
|
63
|
+
- app/assets/stylesheets/hsfc/pages/dashboard.scss
|
64
|
+
- app/assets/stylesheets/hsfc/pages/member_profile.scss
|
65
|
+
- app/assets/stylesheets/hsfc/pages/topics.scss
|
66
|
+
- app/assets/stylesheets/hsfc/pages/seminar_application.scss
|
67
|
+
- app/assets/stylesheets/hsfc/pages/home.scss
|
68
|
+
- app/assets/stylesheets/hsfc/pages/groups_membership_mgmt.scss
|
69
|
+
- app/assets/stylesheets/hsfc/pages/discussion.scss
|
70
|
+
- app/assets/stylesheets/hsfc/pages/user_profile.scss
|
71
|
+
- app/assets/stylesheets/hsfc/pages/credit_certificates.scss
|
72
|
+
- app/assets/images/hsfc/hsfc-logo.png
|
73
|
+
- lib/scidea-hsfc-theme.rb
|
74
|
+
- lib/scidea/hsfc/theme/engine.rb
|
75
|
+
- lib/scidea/hsfc/theme/version.rb
|
76
|
+
- lib/scidea/hsfc/theme.rb
|
77
|
+
- MIT-LICENSE
|
78
|
+
- README.md
|
79
|
+
- Rakefile
|
80
|
+
- CHANGELOG
|
81
|
+
homepage: https://github.com/phoenix-scitent/scidea-hsfc-theme
|
82
|
+
licenses: []
|
83
|
+
post_install_message:
|
84
|
+
rdoc_options: []
|
85
|
+
require_paths:
|
86
|
+
- lib
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
88
|
+
none: false
|
89
|
+
requirements:
|
90
|
+
- - ! '>='
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
|
+
none: false
|
95
|
+
requirements:
|
96
|
+
- - ! '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
requirements: []
|
100
|
+
rubyforge_project:
|
101
|
+
rubygems_version: 1.8.10
|
102
|
+
signing_key:
|
103
|
+
specification_version: 3
|
104
|
+
summary: Custom Scidea theme for onlinehsfc.org
|
105
|
+
test_files: []
|