trusty-festivity-extension 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +33 -0
- data/README.md +2 -0
- data/Rakefile +110 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/app/assets/images/pct-black.png +0 -0
- data/app/assets/images/skins/pghkids/footer.png +0 -0
- data/app/assets/images/skins/pghkids/footer_mobile.png +0 -0
- data/app/assets/images/skins/pghkids/frog.png +0 -0
- data/app/assets/images/skins/pghkids/frog_mobile.png +0 -0
- data/app/assets/images/skins/pghkids/header.png +0 -0
- data/app/assets/images/skins/pghkids/header_mobile.png +0 -0
- data/app/assets/images/skins/pghkids/seafoam.jpg +0 -0
- data/app/assets/javascripts/admin/festivity_admin.js +22 -0
- data/app/assets/javascripts/admin/pages/ajax_image_uploader.js +29 -0
- data/app/assets/javascripts/admin/pages/page_bindings.js +94 -0
- data/app/assets/javascripts/admin/pages/performances.js +59 -0
- data/app/assets/javascripts/admin/sites/categories.js +74 -0
- data/app/assets/javascripts/admin/sites/category_types.js +63 -0
- data/app/assets/javascripts/admin/sites/site_bindings.js +4 -0
- data/app/assets/javascripts/ajaxupload.js +1 -0
- data/app/assets/javascripts/bootstrap-sprockets.js +12 -0
- data/app/assets/javascripts/bootstrap.js +2306 -0
- data/app/assets/javascripts/bootstrap.min.js +7 -0
- data/app/assets/javascripts/bootstrap/affix.js +162 -0
- data/app/assets/javascripts/bootstrap/alert.js +94 -0
- data/app/assets/javascripts/bootstrap/button.js +116 -0
- data/app/assets/javascripts/bootstrap/carousel.js +237 -0
- data/app/assets/javascripts/bootstrap/collapse.js +211 -0
- data/app/assets/javascripts/bootstrap/dropdown.js +161 -0
- data/app/assets/javascripts/bootstrap/modal.js +324 -0
- data/app/assets/javascripts/bootstrap/popover.js +113 -0
- data/app/assets/javascripts/bootstrap/scrollspy.js +175 -0
- data/app/assets/javascripts/bootstrap/tab.js +153 -0
- data/app/assets/javascripts/bootstrap/tooltip.js +472 -0
- data/app/assets/javascripts/bootstrap/transition.js +59 -0
- data/app/assets/javascripts/events/event_list_bindings.js +3 -0
- data/app/assets/javascripts/events/filters.js +100 -0
- data/app/assets/javascripts/festivity.js +1 -0
- data/app/assets/javascripts/festivity_app.js +13 -0
- data/app/assets/javascripts/jasny-bootstrap.js +1024 -0
- data/app/assets/javascripts/jquery-migrate.js +521 -0
- data/app/assets/javascripts/jquery.collapse.js +176 -0
- data/app/assets/javascripts/jquery.collapse_cookie_storage.js +37 -0
- data/app/assets/javascripts/jquery.collapse_storage.js +56 -0
- data/app/assets/javascripts/jquery.inputmask.bundle.min.js +10 -0
- data/app/assets/javascripts/lodash.min.js +88 -0
- data/app/assets/javascripts/readmore.min.js +11 -0
- data/app/assets/javascripts/script.js +22 -0
- data/app/assets/javascripts/underscore.js +1545 -0
- data/app/assets/stylesheets/_bootstrap-compass.scss +9 -0
- data/app/assets/stylesheets/_bootstrap-mincer.scss +19 -0
- data/app/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
- data/app/assets/stylesheets/_bootstrap.scss +50 -0
- data/app/assets/stylesheets/_defaults.scss +6 -0
- data/app/assets/stylesheets/_event_filter_bar.scss +78 -0
- data/app/assets/stylesheets/_faq.scss +48 -0
- data/app/assets/stylesheets/_filter-bar-mobile.scss +32 -0
- data/app/assets/stylesheets/_footer.scss +18 -0
- data/app/assets/stylesheets/_global.scss +30 -0
- data/app/assets/stylesheets/_header.scss +95 -0
- data/app/assets/stylesheets/_landing_page.scss +62 -0
- data/app/assets/stylesheets/_locations.scss +17 -0
- data/app/assets/stylesheets/_media-queries.scss +9 -0
- data/app/assets/stylesheets/_mixins.scss +17 -0
- data/app/assets/stylesheets/_nav.scss +128 -0
- data/app/assets/stylesheets/_normalize.scss +375 -0
- data/app/assets/stylesheets/_overrides.scss +11 -0
- data/app/assets/stylesheets/_page-template.scss +124 -0
- data/app/assets/stylesheets/_related_events.scss +20 -0
- data/app/assets/stylesheets/_search-results.scss +20 -0
- data/app/assets/stylesheets/_utils.scss +8 -0
- data/app/assets/stylesheets/admin/festivity_admin.scss +28 -0
- data/app/assets/stylesheets/admin/modules/_category_styles.scss +23 -0
- data/app/assets/stylesheets/admin/modules/_form_styles.scss +40 -0
- data/app/assets/stylesheets/admin/modules/_list_styles.scss +30 -0
- data/app/assets/stylesheets/admin/modules/_variables.scss +3 -0
- data/app/assets/stylesheets/bootstrap/_alerts.scss +73 -0
- data/app/assets/stylesheets/bootstrap/_badges.scss +67 -0
- data/app/assets/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
- data/app/assets/stylesheets/bootstrap/_button-groups.scss +243 -0
- data/app/assets/stylesheets/bootstrap/_buttons.scss +160 -0
- data/app/assets/stylesheets/bootstrap/_carousel.scss +269 -0
- data/app/assets/stylesheets/bootstrap/_close.scss +36 -0
- data/app/assets/stylesheets/bootstrap/_code.scss +69 -0
- data/app/assets/stylesheets/bootstrap/_component-animations.scss +38 -0
- data/app/assets/stylesheets/bootstrap/_dropdowns.scss +214 -0
- data/app/assets/stylesheets/bootstrap/_forms.scss +570 -0
- data/app/assets/stylesheets/bootstrap/_glyphicons.scss +301 -0
- data/app/assets/stylesheets/bootstrap/_grid.scss +84 -0
- data/app/assets/stylesheets/bootstrap/_input-groups.scss +166 -0
- data/app/assets/stylesheets/bootstrap/_jumbotron.scss +50 -0
- data/app/assets/stylesheets/bootstrap/_labels.scss +66 -0
- data/app/assets/stylesheets/bootstrap/_list-group.scss +124 -0
- data/app/assets/stylesheets/bootstrap/_media.scss +61 -0
- data/app/assets/stylesheets/bootstrap/_mixins.scss +39 -0
- data/app/assets/stylesheets/bootstrap/_modals.scss +148 -0
- data/app/assets/stylesheets/bootstrap/_navbar.scss +663 -0
- data/app/assets/stylesheets/bootstrap/_navs.scss +244 -0
- data/app/assets/stylesheets/bootstrap/_normalize.scss +427 -0
- data/app/assets/stylesheets/bootstrap/_pager.scss +54 -0
- data/app/assets/stylesheets/bootstrap/_pagination.scss +88 -0
- data/app/assets/stylesheets/bootstrap/_panels.scss +265 -0
- data/app/assets/stylesheets/bootstrap/_popovers.scss +135 -0
- data/app/assets/stylesheets/bootstrap/_print.scss +107 -0
- data/app/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/app/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/app/assets/stylesheets/bootstrap/_responsive-utilities.scss +177 -0
- data/app/assets/stylesheets/bootstrap/_scaffolding.scss +150 -0
- data/app/assets/stylesheets/bootstrap/_tables.scss +234 -0
- data/app/assets/stylesheets/bootstrap/_theme.scss +273 -0
- data/app/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/app/assets/stylesheets/bootstrap/_tooltip.scss +103 -0
- data/app/assets/stylesheets/bootstrap/_type.scss +298 -0
- data/app/assets/stylesheets/bootstrap/_utilities.scss +56 -0
- data/app/assets/stylesheets/bootstrap/_variables.scss +862 -0
- data/app/assets/stylesheets/bootstrap/_wells.scss +29 -0
- data/app/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/app/assets/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
- data/app/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/app/assets/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
- data/app/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/app/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/app/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/app/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/app/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/app/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/app/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/app/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/app/assets/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
- data/app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/app/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/app/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/app/assets/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
- data/app/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/app/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/app/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/app/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/app/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/app/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/app/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/app/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/app/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/app/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/app/assets/stylesheets/events/_event-list-item.scss +85 -0
- data/app/assets/stylesheets/events/_event_template.scss +66 -0
- data/app/assets/stylesheets/events/_filter-bar.scss +5 -0
- data/app/assets/stylesheets/festivity.scss +35 -0
- data/app/assets/stylesheets/skins/pghkids/_events.scss +17 -0
- data/app/assets/stylesheets/skins/pghkids/_footer.scss +22 -0
- data/app/assets/stylesheets/skins/pghkids/_global.scss +42 -0
- data/app/assets/stylesheets/skins/pghkids/_header.scss +27 -0
- data/app/assets/stylesheets/skins/pghkids/_home.scss +113 -0
- data/app/assets/stylesheets/skins/pghkids/skin.scss +8 -0
- data/app/assets/stylesheets/vars/_vars_color.scss +6 -0
- data/app/assets/stylesheets/vars/_vars_media-queries.scss +5 -0
- data/app/assets/stylesheets/vars/_vars_type.scss +1 -0
- data/app/controllers/admin/festivity_categories_controller.rb +31 -0
- data/app/controllers/admin/festivity_category_types_controller.rb +31 -0
- data/app/controllers/admin/festivity_performances_controller.rb +21 -0
- data/app/controllers/festivity_events_controller.rb +71 -0
- data/app/controllers/festivity_location_areas_controller.rb +17 -0
- data/app/controllers/festivity_locations_controller.rb +19 -0
- data/app/controllers/search_controller.rb +17 -0
- data/app/helpers/admin/festivity_performances_helper.rb +3 -0
- data/app/helpers/admin/snippets_helper.rb +3 -0
- data/app/helpers/festivity_events_helper.rb +12 -0
- data/app/helpers/festivity_locations_helper.rb +4 -0
- data/app/models/festivity_base_page.rb +23 -0
- data/app/models/festivity_category.rb +17 -0
- data/app/models/festivity_category_type.rb +14 -0
- data/app/models/festivity_event_list.rb +90 -0
- data/app/models/festivity_event_list/festivity_event.rb +40 -0
- data/app/models/festivity_event_list/festivity_event_performance.rb +10 -0
- data/app/models/festivity_event_list/festivity_location.rb +15 -0
- data/app/models/festivity_event_page.rb +55 -0
- data/app/models/festivity_location_area_page.rb +5 -0
- data/app/models/festivity_location_page.rb +3 -0
- data/app/models/festivity_market_page.rb +3 -0
- data/app/models/festivity_page_category.rb +4 -0
- data/app/models/festivity_performance.rb +29 -0
- data/app/views/admin/pages/_festivity_base_fields.html.haml +75 -0
- data/app/views/admin/pages/_festivity_featured_image_fields.html.haml +3 -0
- data/app/views/admin/pages/_festivity_includes.html.haml +2 -0
- data/app/views/admin/pages/_festivity_location_fields.html.haml +26 -0
- data/app/views/admin/pages/partials/_categories.html.haml +18 -0
- data/app/views/admin/pages/partials/_category.html.haml +4 -0
- data/app/views/admin/pages/partials/_featured_image.html.haml +18 -0
- data/app/views/admin/pages/partials/_performance.html.haml +13 -0
- data/app/views/admin/pages/partials/_performances.html.haml +11 -0
- data/app/views/admin/pages/partials/_performances_table.html.haml +15 -0
- data/app/views/admin/sites/_festivity_site_fields.html.haml +26 -0
- data/app/views/admin/sites/partials/_category.html.haml +7 -0
- data/app/views/admin/sites/partials/_category_popup.html.haml +19 -0
- data/app/views/admin/sites/partials/_category_popups.haml +27 -0
- data/app/views/admin/sites/partials/_category_section.html.haml +7 -0
- data/app/views/admin/sites/partials/_category_types.html.haml +23 -0
- data/app/views/admin/sites/partials/_filters.html.haml +25 -0
- data/app/views/admin/sites/partials/_new_category.html.haml +3 -0
- data/app/views/admin/sites/partials/_new_category_type.html.haml +3 -0
- data/app/views/festivity_events/_event_filters.html.haml +39 -0
- data/app/views/festivity_events/_event_list.html.haml +62 -0
- data/app/views/festivity_events/_filter_bar_mobile.html.haml +22 -0
- data/app/views/festivity_events/index.html.haml +34 -0
- data/app/views/festivity_events/show.html.haml +152 -0
- data/app/views/festivity_location_areas/show.html.haml +29 -0
- data/app/views/festivity_locations/show.html.haml +66 -0
- data/app/views/header/_meta_tags.html.haml +8 -0
- data/app/views/navigation/_subnav_one_column.html.haml +15 -0
- data/app/views/navigation/_subnav_three_column.html.haml +7 -0
- data/app/views/navigation/_three_column_item.html.haml +11 -0
- data/app/views/search/_page.html.haml +1 -0
- data/app/views/search/_pagination_links.html.haml +7 -0
- data/app/views/search/_result_item.html.haml +6 -0
- data/app/views/search/show.html.haml +19 -0
- data/config/initializers/pluralizations.rb +0 -0
- data/config/initializers/radiant_config.rb +1 -0
- data/config/locales/en.yml +16 -0
- data/config/routes.rb +14 -0
- data/config/trustygems.yml +2 -0
- data/db/content/layouts/base.html +174 -0
- data/db/content/layouts/normal.html +5 -0
- data/db/fixtures/home_pages.yml +40 -0
- data/db/fixtures/layouts.yml +2 -0
- data/db/fixtures/pages.yml +23 -0
- data/db/fixtures/sites.yml +57 -0
- data/db/fixtures/users.yml +8 -0
- data/db/migrate/200150325136087799_add_event_performances_view.rb +27 -0
- data/db/migrate/200150425136087799_update_event_performances_view_with_site.rb +27 -0
- data/db/migrate/20150123175758_add_site_fields.rb +15 -0
- data/db/migrate/20150127090858995_add_base_event_fields.rb +24 -0
- data/db/migrate/20150127091005232_add_market_and_event_fields.rb +29 -0
- data/db/migrate/20150204113325731_add_category_types_table.rb +15 -0
- data/db/migrate/20150204113427832_add_categories_table.rb +15 -0
- data/db/migrate/20150204113510326_add_page_categories_table.rb +12 -0
- data/db/migrate/20150226131727777_add_location_page_fields.rb +19 -0
- data/db/migrate/20150302135485569_add_performances_table.rb +19 -0
- data/db/migrate/20150324135487799_add_indexes.rb +21 -0
- data/festivity_extension.rb +25 -0
- data/lib/festivity/admin/assets_helper.rb +17 -0
- data/lib/festivity/engine.rb +9 -0
- data/lib/festivity/extensions/page_extensions.rb +61 -0
- data/lib/festivity/extensions/pages_helper_extensions.rb +11 -0
- data/lib/festivity/extensions/paperclipped_extensions.rb +22 -0
- data/lib/festivity/extensions/site_extensions.rb +40 -0
- data/lib/festivity/mixins/not_found.rb +10 -0
- data/lib/tags/header_tags.rb +41 -0
- data/lib/tags/navigation_tags.rb +55 -0
- data/lib/tasks/active_record_utils.rb +35 -0
- data/lib/tasks/festivity_extension_tasks.rake +7 -0
- data/lib/tasks/setup.rake +101 -0
- data/lib/trusty-festivity-extension.rb +8 -0
- data/trusty-festivity-extension.gemspec +37 -0
- metadata +442 -0
@@ -0,0 +1,124 @@
|
|
1
|
+
// some variables for page layout //
|
2
|
+
$padding: 2rem; // default bottom padding for elements
|
3
|
+
|
4
|
+
.page-template {
|
5
|
+
h1, h2, h3, h4, h5, h6 {
|
6
|
+
padding-top: 0;
|
7
|
+
margin-top: 0;
|
8
|
+
}
|
9
|
+
h1 {
|
10
|
+
font-size: 3em;
|
11
|
+
font-weight: 700;
|
12
|
+
line-height: 1.25;
|
13
|
+
margin-bottom: 0;
|
14
|
+
margin-top: 1
|
15
|
+
}
|
16
|
+
h2 {
|
17
|
+
font-size: 2em;
|
18
|
+
font-weight: 600;
|
19
|
+
padding-bottom: $padding;
|
20
|
+
line-height: 1.4;
|
21
|
+
}
|
22
|
+
h3 {
|
23
|
+
font-size: 1.5em;
|
24
|
+
font-weight: 300;
|
25
|
+
padding-bottom: $padding;
|
26
|
+
line-height: 1.6;
|
27
|
+
&.strong {
|
28
|
+
font-weight: 600;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
h4 {
|
32
|
+
font-size: 1.3em;
|
33
|
+
font-weight: 300;
|
34
|
+
padding-bottom: $padding;
|
35
|
+
line-height: 1.6;
|
36
|
+
&.strong {
|
37
|
+
font-weight: 600;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
hr {
|
41
|
+
display: block;
|
42
|
+
margin: 5rem 0 5rem 0;
|
43
|
+
&.thick {
|
44
|
+
height: 2px;
|
45
|
+
background-color: black;
|
46
|
+
}
|
47
|
+
&.unpad-top {
|
48
|
+
padding-top: 0;
|
49
|
+
margin-top: 3rem;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
img {
|
54
|
+
//we want a little extra padding around images
|
55
|
+
margin-bottom: $padding*2;
|
56
|
+
}
|
57
|
+
p {
|
58
|
+
padding-bottom: $padding/2;
|
59
|
+
line-height: 1.6;
|
60
|
+
font-weight: 400;
|
61
|
+
}
|
62
|
+
.media-item {
|
63
|
+
margin-bottom: $padding*2;
|
64
|
+
img {
|
65
|
+
float: left;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
.grid-thumbnails-item {
|
70
|
+
height: 375px;
|
71
|
+
}
|
72
|
+
|
73
|
+
//sidebar styles
|
74
|
+
|
75
|
+
.sidebar {
|
76
|
+
h4 {
|
77
|
+
padding-bottom: 0;
|
78
|
+
}
|
79
|
+
&__item {
|
80
|
+
padding-top: $padding*2;
|
81
|
+
img {
|
82
|
+
padding-bottom: 0;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
87
|
+
.sidebar__item-boxed {
|
88
|
+
background-color: $ghost-gray;
|
89
|
+
padding: 2rem;
|
90
|
+
border-radius: $default-border-radius;
|
91
|
+
&.reversed {
|
92
|
+
background-color: $dark-gray;
|
93
|
+
color: $ghost-gray;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
.sidebar__item-boxed--with-image {
|
98
|
+
border: 1px solid $border-gray;
|
99
|
+
border-radius: $default-border-radius;
|
100
|
+
h4 {
|
101
|
+
padding-top: 1rem !important;
|
102
|
+
}
|
103
|
+
img {
|
104
|
+
margin-bottom: 1rem;
|
105
|
+
}
|
106
|
+
.box-inner {
|
107
|
+
padding: .5rem 1.5rem;
|
108
|
+
}
|
109
|
+
.more-info {
|
110
|
+
display: block;
|
111
|
+
border-top: 1px solid $border-gray;
|
112
|
+
background-color: lighten($ghost-gray, 1);
|
113
|
+
font-weight: 600;
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
.page-navigation {
|
118
|
+
li {
|
119
|
+
border-bottom: 1px solid $ghost-gray;
|
120
|
+
padding: $padding 0;
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
.related-events {
|
2
|
+
border-top: 1px solid $ghost-gray;
|
3
|
+
margin-top: 5rem;
|
4
|
+
.related-events__header {
|
5
|
+
padding: 4rem 0;
|
6
|
+
}
|
7
|
+
.related-events__event {
|
8
|
+
padding-bottom: 4rem;
|
9
|
+
@media #{$small-up} {
|
10
|
+
padding-bottom: 0rem;
|
11
|
+
}
|
12
|
+
.photo {
|
13
|
+
height: 200px;
|
14
|
+
overflow: hidden;
|
15
|
+
}
|
16
|
+
h3, h4 {
|
17
|
+
line-height: 1.5;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
.search-results {
|
2
|
+
.search-results-header__sort-form {
|
3
|
+
.form-group {
|
4
|
+
padding-top: 20px;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
.search-result-item {
|
8
|
+
border-bottom: 1px solid $ghost-gray;
|
9
|
+
padding-bottom: 2em;
|
10
|
+
margin-bottom: 2em;
|
11
|
+
h2 {
|
12
|
+
font-size: 1.5em;
|
13
|
+
font-weight: 600;
|
14
|
+
}
|
15
|
+
.link {
|
16
|
+
font-weight: 700;
|
17
|
+
font-size: .75em;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
// some utility classes, mostly meant to be used with @extend
|
2
|
+
|
3
|
+
// nopadding -- used override the default padding in bootstrap columns, so that we can set
|
4
|
+
// it manually. things with borders and headers.
|
5
|
+
%nopadding {
|
6
|
+
padding: 0 !important;
|
7
|
+
margin: 0 !important;
|
8
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
@import "compass/css3/border-radius";
|
2
|
+
@import "../bootstrap/variables";
|
3
|
+
@import "../bootstrap/mixins";
|
4
|
+
$icon-font-path: "/assets/bootstrap/";
|
5
|
+
// Reset and dependencies
|
6
|
+
@import "../bootstrap/buttons";
|
7
|
+
@import "../bootstrap/navs";
|
8
|
+
@import "modules/variables";
|
9
|
+
@import "modules/form_styles";
|
10
|
+
@import "modules/category_styles";
|
11
|
+
|
12
|
+
.festivity-div {
|
13
|
+
clear: both;
|
14
|
+
overflow: auto;
|
15
|
+
@include rounded-box;
|
16
|
+
}
|
17
|
+
|
18
|
+
.image_icons img {
|
19
|
+
max-width: 200px;
|
20
|
+
}
|
21
|
+
|
22
|
+
.left {
|
23
|
+
float: left;
|
24
|
+
}
|
25
|
+
|
26
|
+
.right {
|
27
|
+
float: right;
|
28
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
@import "list_styles";
|
2
|
+
|
3
|
+
.nav-tabs li {
|
4
|
+
margin-top: .5em;
|
5
|
+
}
|
6
|
+
.nav-tabs li a {
|
7
|
+
background-color: $light-background;
|
8
|
+
color: $list-text-color;
|
9
|
+
}
|
10
|
+
|
11
|
+
table.category-table {
|
12
|
+
border: none;
|
13
|
+
margin-top: auto;
|
14
|
+
margin-bottom: auto;
|
15
|
+
font-size: 1em;
|
16
|
+
}
|
17
|
+
table.category-table tbody tr td {
|
18
|
+
padding-left: 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
table.category-table .fa {
|
22
|
+
padding-left: 0;
|
23
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
@mixin festivity-form-section {
|
2
|
+
margin: 1em 0;
|
3
|
+
overflow: hidden;
|
4
|
+
}
|
5
|
+
|
6
|
+
@mixin rounded-box {
|
7
|
+
@include border-radius(5px);
|
8
|
+
}
|
9
|
+
|
10
|
+
.festivity-space {
|
11
|
+
padding: .5em 0em;
|
12
|
+
}
|
13
|
+
|
14
|
+
.festivity-title {
|
15
|
+
margin: 2em 0;
|
16
|
+
padding: 1em .5em;
|
17
|
+
background-color: $dark-background;
|
18
|
+
}
|
19
|
+
|
20
|
+
.festivity-error {
|
21
|
+
color: red;
|
22
|
+
}
|
23
|
+
|
24
|
+
.festivity-full, .festivity-third {
|
25
|
+
@include festivity-form-section;
|
26
|
+
}
|
27
|
+
|
28
|
+
.festivity-full {
|
29
|
+
width: 100%;
|
30
|
+
}
|
31
|
+
|
32
|
+
.festivity-third {
|
33
|
+
width: 40%;
|
34
|
+
}
|
35
|
+
|
36
|
+
.festivity-control {
|
37
|
+
font-family: Georgia, Palatino, "Times New Roman", Times, serif;
|
38
|
+
font-size: 140%;
|
39
|
+
width: 100%;
|
40
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
.festivity-list, .festivity-list table.index, .festivity-list table.index th {
|
2
|
+
margin: .5em 0;
|
3
|
+
background-color: white;
|
4
|
+
color: $list-text-color;
|
5
|
+
}
|
6
|
+
|
7
|
+
.festivity-list table.index th {
|
8
|
+
font-weight: bolder;
|
9
|
+
padding-bottom: 1em;
|
10
|
+
font-size: 1.1em;
|
11
|
+
}
|
12
|
+
|
13
|
+
.list-item{
|
14
|
+
@include rounded-box;
|
15
|
+
border-bottom: 2px solid #ddd;
|
16
|
+
padding: .5em .5em;
|
17
|
+
}
|
18
|
+
|
19
|
+
.list-item:last-child {
|
20
|
+
border: none;
|
21
|
+
}
|
22
|
+
|
23
|
+
.festivity-list a {
|
24
|
+
text-decoration: none;
|
25
|
+
color: $list-text-color;
|
26
|
+
}
|
27
|
+
|
28
|
+
.festivity-list a:hover {
|
29
|
+
text-decoration: underline;
|
30
|
+
}
|
@@ -0,0 +1,73 @@
|
|
1
|
+
//
|
2
|
+
// Alerts
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base styles
|
7
|
+
// -------------------------
|
8
|
+
|
9
|
+
.alert {
|
10
|
+
padding: $alert-padding;
|
11
|
+
margin-bottom: $line-height-computed;
|
12
|
+
border: 1px solid transparent;
|
13
|
+
border-radius: $alert-border-radius;
|
14
|
+
|
15
|
+
// Headings for larger alerts
|
16
|
+
h4 {
|
17
|
+
margin-top: 0;
|
18
|
+
// Specified for the h4 to prevent conflicts of changing $headings-color
|
19
|
+
color: inherit;
|
20
|
+
}
|
21
|
+
|
22
|
+
// Provide class for links that match alerts
|
23
|
+
.alert-link {
|
24
|
+
font-weight: $alert-link-font-weight;
|
25
|
+
}
|
26
|
+
|
27
|
+
// Improve alignment and spacing of inner content
|
28
|
+
> p,
|
29
|
+
> ul {
|
30
|
+
margin-bottom: 0;
|
31
|
+
}
|
32
|
+
|
33
|
+
> p + p {
|
34
|
+
margin-top: 5px;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
// Dismissible alerts
|
39
|
+
//
|
40
|
+
// Expand the right padding and account for the close button's positioning.
|
41
|
+
|
42
|
+
.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
|
43
|
+
.alert-dismissible {
|
44
|
+
padding-right: ($alert-padding + 20);
|
45
|
+
|
46
|
+
// Adjust close link position
|
47
|
+
.close {
|
48
|
+
position: relative;
|
49
|
+
top: -2px;
|
50
|
+
right: -21px;
|
51
|
+
color: inherit;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
// Alternate styles
|
56
|
+
//
|
57
|
+
// Generate contextual modifier classes for colorizing the alert.
|
58
|
+
|
59
|
+
.alert-success {
|
60
|
+
@include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text);
|
61
|
+
}
|
62
|
+
|
63
|
+
.alert-info {
|
64
|
+
@include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text);
|
65
|
+
}
|
66
|
+
|
67
|
+
.alert-warning {
|
68
|
+
@include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text);
|
69
|
+
}
|
70
|
+
|
71
|
+
.alert-danger {
|
72
|
+
@include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text);
|
73
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
//
|
2
|
+
// Badges
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base class
|
7
|
+
.badge {
|
8
|
+
display: inline-block;
|
9
|
+
min-width: 10px;
|
10
|
+
padding: 3px 7px;
|
11
|
+
font-size: $font-size-small;
|
12
|
+
font-weight: $badge-font-weight;
|
13
|
+
color: $badge-color;
|
14
|
+
line-height: $badge-line-height;
|
15
|
+
vertical-align: baseline;
|
16
|
+
white-space: nowrap;
|
17
|
+
text-align: center;
|
18
|
+
background-color: $badge-bg;
|
19
|
+
border-radius: $badge-border-radius;
|
20
|
+
|
21
|
+
// Empty badges collapse automatically (not available in IE8)
|
22
|
+
&:empty {
|
23
|
+
display: none;
|
24
|
+
}
|
25
|
+
|
26
|
+
// Quick fix for badges in buttons
|
27
|
+
.btn & {
|
28
|
+
position: relative;
|
29
|
+
top: -1px;
|
30
|
+
}
|
31
|
+
|
32
|
+
.btn-xs & {
|
33
|
+
top: 0;
|
34
|
+
padding: 1px 5px;
|
35
|
+
}
|
36
|
+
|
37
|
+
// [converter] extracted a& to a.badge
|
38
|
+
|
39
|
+
// Account for badges in navs
|
40
|
+
.list-group-item.active > &,
|
41
|
+
.nav-pills > .active > a > & {
|
42
|
+
color: $badge-active-color;
|
43
|
+
background-color: $badge-active-bg;
|
44
|
+
}
|
45
|
+
|
46
|
+
.list-group-item > & {
|
47
|
+
float: right;
|
48
|
+
}
|
49
|
+
|
50
|
+
.list-group-item > & + & {
|
51
|
+
margin-right: 5px;
|
52
|
+
}
|
53
|
+
|
54
|
+
.nav-pills > li > a > & {
|
55
|
+
margin-left: 3px;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
// Hover state, but only for links
|
60
|
+
a.badge {
|
61
|
+
&:hover,
|
62
|
+
&:focus {
|
63
|
+
color: $badge-link-hover-color;
|
64
|
+
text-decoration: none;
|
65
|
+
cursor: pointer;
|
66
|
+
}
|
67
|
+
}
|