spiderfw 0.6.22 → 0.6.23
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +9 -0
- data/VERSION +1 -1
- data/apps/app_server/controllers/app_server_controller.rb +7 -2
- data/apps/app_server/lib/git_app.rb +5 -3
- data/apps/cas_server/controllers/mixins/cas_login_mixin.rb +2 -1
- data/apps/core/admin/controllers/admin_controller.rb +4 -4
- data/apps/core/admin/controllers/app_admin_controller.rb +3 -2
- data/apps/core/admin/public/css/sass/admin.css +56 -31
- data/apps/core/admin/public/sass/admin.scss +38 -4
- data/apps/core/admin/views/_breadcrumb.shtml +8 -0
- data/apps/core/admin/views/admin.layout.shtml +8 -5
- data/apps/core/auth/controllers/login_controller.rb +3 -8
- data/apps/core/components/assets.rb +37 -1
- data/apps/core/components/public/bootstrap/LICENSE +13 -0
- data/apps/core/components/public/bootstrap/README.md +28 -0
- data/apps/core/components/public/bootstrap/img/glyphicons-halflings-white.png +0 -0
- data/apps/core/components/public/bootstrap/img/glyphicons-halflings.png +0 -0
- data/apps/core/components/public/bootstrap/js/README.md +106 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-alert.js +91 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-button.js +98 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-carousel.js +154 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-collapse.js +136 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-dropdown.js +92 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-modal.js +209 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-popover.js +95 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-scrollspy.js +125 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-tab.js +130 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-tooltip.js +270 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-transition.js +51 -0
- data/apps/core/components/public/bootstrap/js/bootstrap-typeahead.js +271 -0
- data/apps/core/components/public/bootstrap/js/tests/index.html +49 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-alert.js +41 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-button.js +54 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-collapse.js +25 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-dropdown.js +53 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-modal.js +85 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-popover.js +93 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-scrollspy.js +31 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-tab.js +45 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-tooltip.js +62 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-transition.js +13 -0
- data/apps/core/components/public/bootstrap/js/tests/unit/bootstrap-typeahead.js +128 -0
- data/apps/core/components/public/bootstrap/js/tests/vendor/jquery.js +9252 -0
- data/apps/core/components/public/bootstrap/js/tests/vendor/qunit.css +232 -0
- data/apps/core/components/public/bootstrap/js/tests/vendor/qunit.js +1510 -0
- data/apps/core/components/public/bootstrap/scss/_accordion.scss +28 -0
- data/apps/core/components/public/bootstrap/scss/_alerts.scss +70 -0
- data/apps/core/components/public/bootstrap/scss/_breadcrumbs.scss +22 -0
- data/apps/core/components/public/bootstrap/scss/_button-groups.scss +146 -0
- data/apps/core/components/public/bootstrap/scss/_buttons.scss +165 -0
- data/apps/core/components/public/bootstrap/scss/_carousel.scss +121 -0
- data/apps/core/components/public/bootstrap/scss/_close.scss +18 -0
- data/apps/core/components/public/bootstrap/scss/_code.scss +44 -0
- data/apps/core/components/public/bootstrap/scss/_component-animations.scss +18 -0
- data/apps/core/components/public/bootstrap/scss/_custom.css +0 -0
- data/apps/core/components/public/bootstrap/scss/_dropdowns.scss +131 -0
- data/apps/core/components/public/bootstrap/scss/_forms.scss +516 -0
- data/apps/core/components/public/bootstrap/scss/_grid.scss +8 -0
- data/apps/core/components/public/bootstrap/scss/_hero-unit.scss +20 -0
- data/apps/core/components/public/bootstrap/scss/_labels.scss +16 -0
- data/apps/core/components/public/bootstrap/scss/_layouts.scss +17 -0
- data/apps/core/components/public/bootstrap/scss/_mixins.scss +538 -0
- data/apps/core/components/public/bootstrap/scss/_modals.scss +72 -0
- data/apps/core/components/public/bootstrap/scss/_navbar.scss +292 -0
- data/apps/core/components/public/bootstrap/scss/_navs.scss +343 -0
- data/apps/core/components/public/bootstrap/scss/_pager.scss +30 -0
- data/apps/core/components/public/bootstrap/scss/_pagination.scss +64 -0
- data/apps/core/components/public/bootstrap/scss/_patterns.scss +13 -0
- data/apps/core/components/public/bootstrap/scss/_popovers.scss +49 -0
- data/apps/core/components/public/bootstrap/scss/_print.scss +18 -0
- data/apps/core/components/public/bootstrap/scss/_progress-bars.scss +95 -0
- data/apps/core/{admin/public/sass/bootstrap/reset.scss → components/public/bootstrap/scss/_reset.scss} +36 -51
- data/apps/core/components/public/bootstrap/scss/_scaffolding.scss +29 -0
- data/apps/core/components/public/bootstrap/scss/_sprites.scss +156 -0
- data/apps/core/components/public/bootstrap/scss/_tables.scss +139 -0
- data/apps/core/components/public/bootstrap/scss/_thumbnails.scss +35 -0
- data/apps/core/components/public/bootstrap/scss/_tooltip.scss +35 -0
- data/apps/core/components/public/bootstrap/scss/_type.scss +217 -0
- data/apps/core/components/public/bootstrap/scss/_utilities.scss +23 -0
- data/apps/core/components/public/bootstrap/scss/_variables.scss +99 -0
- data/apps/core/components/public/bootstrap/scss/_wells.scss +17 -0
- data/apps/core/components/public/bootstrap/scss/bootstrap-responsive.css +707 -0
- data/apps/core/components/public/bootstrap/scss/bootstrap-responsive.scss +323 -0
- data/apps/core/components/public/bootstrap/scss/bootstrap.css +4604 -0
- data/apps/core/components/public/bootstrap/scss/bootstrap.scss +62 -0
- data/apps/core/components/public/bootstrap/scss/config.rb +36 -0
- data/apps/core/components/public/css/admin.css +2 -1
- data/apps/core/components/public/css/sass/bootstrap/bootstrap.css +3107 -0
- data/apps/core/components/public/css/table_base.css +9 -0
- data/apps/core/components/public/widgets/month_calendar.js +9 -0
- data/apps/core/components/widgets/crud/crud.rb +9 -1
- data/apps/core/components/widgets/crud/crud.shtml +2 -2
- data/apps/core/components/widgets/month_calendar/month_calendar.shtml +1 -0
- data/apps/core/components/widgets/table/table.rb +84 -55
- data/apps/core/components/widgets/table/table.shtml +2 -1
- data/apps/core/forms/public/ckeditor/CHANGES.html +139 -1
- data/apps/core/forms/public/ckeditor/LICENSE.html +1 -8
- data/apps/core/forms/public/ckeditor/ckeditor.js +141 -137
- data/apps/core/forms/public/ckeditor/ckeditor_basic.js +3 -3
- data/apps/core/forms/public/ckeditor/ckeditor_basic_source.js +1 -1
- data/apps/core/forms/public/ckeditor/ckeditor_source.js +13 -3
- data/apps/core/forms/public/ckeditor/contents.css +4 -2
- data/apps/core/forms/public/ckeditor/lang/_translationstatus.txt +59 -59
- data/apps/core/forms/public/ckeditor/lang/af.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/ar.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/bg.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/bn.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/bs.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/ca.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/cs.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/cy.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/da.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/de.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/el.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/en-au.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/en-ca.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/en-gb.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/en.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/eo.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/es.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/et.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/eu.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/fa.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/fi.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/fo.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/fr-ca.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/fr.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/gl.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/gu.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/he.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/hi.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/hr.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/hu.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/is.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/it.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/ja.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/ka.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/km.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/ko.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/lt.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/lv.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/mn.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/ms.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/nb.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/nl.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/no.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/pl.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/pt-br.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/pt.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/ro.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/ru.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/sk.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/sl.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/sr-latn.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/sr.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/sv.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/th.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/tr.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/uk.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/vi.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/zh-cn.js +1 -1
- data/apps/core/forms/public/ckeditor/lang/zh.js +1 -1
- data/apps/core/forms/public/ckeditor/plugins/autogrow/plugin.js +1 -1
- data/apps/core/forms/public/ckeditor/plugins/bbcode/plugin.js +4 -4
- data/apps/core/forms/public/ckeditor/plugins/docprops/dialogs/docprops.js +2 -2
- data/apps/core/forms/public/ckeditor/plugins/find/dialogs/find.js +5 -4
- data/apps/core/forms/public/ckeditor/plugins/flash/dialogs/flash.js +4 -4
- data/apps/core/forms/public/ckeditor/plugins/forms/dialogs/select.js +2 -2
- data/apps/core/forms/public/ckeditor/plugins/forms/dialogs/textarea.js +1 -1
- data/apps/core/forms/public/ckeditor/plugins/iframe/dialogs/iframe.js +2 -2
- data/apps/core/forms/public/ckeditor/plugins/image/dialogs/image.js +6 -6
- data/apps/core/forms/public/ckeditor/plugins/link/dialogs/link.js +6 -5
- data/apps/core/forms/public/ckeditor/plugins/liststyle/dialogs/liststyle.js +2 -1
- data/apps/core/forms/public/ckeditor/plugins/pastefromword/filter/default.js +5 -5
- data/apps/core/forms/public/ckeditor/plugins/specialchar/dialogs/specialchar.js +1 -1
- data/apps/core/forms/public/ckeditor/plugins/specialchar/lang/en.js +1 -1
- data/apps/core/forms/public/ckeditor/plugins/table/dialogs/table.js +4 -4
- data/apps/core/forms/public/ckeditor/plugins/tableresize/plugin.js +2 -2
- data/apps/core/forms/public/ckeditor/plugins/wsc/dialogs/wsc.js +1 -1
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/README.md +26 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/dialog.css +616 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/editor.css +1088 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/icons.png +0 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/images/dialog_sides.gif +0 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/images/dialog_sides.png +0 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/images/dialog_sides_rtl.png +0 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/images/mini.png +0 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/images/noimage.png +0 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/images/sprites.png +0 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/images/sprites_ie6.png +0 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/images/toolbar_start.gif +0 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/skin.js +7 -0
- data/apps/core/forms/public/ckeditor/skins/BootstrapCK-Skin/templates.css +54 -0
- data/apps/core/forms/public/ckeditor/skins/kama/dialog.css +4 -3
- data/apps/core/forms/public/ckeditor/skins/kama/editor.css +3 -3
- data/apps/core/forms/public/ckeditor/themes/default/theme.js +2 -2
- data/apps/core/forms/public/css/form.css +5 -5
- data/apps/core/forms/public/html_area.js +5 -5
- data/apps/core/forms/tags/element_label.erb +1 -1
- data/apps/core/forms/tags/row.erb +1 -1
- data/apps/core/forms/widgets/form/form.rb +2 -1
- data/apps/core/forms/widgets/form/form.shtml +3 -3
- data/apps/core/forms/widgets/inputs/checkbox/checkbox.shtml +1 -1
- data/apps/core/forms/widgets/inputs/date_time/date_time.shtml +1 -1
- data/apps/core/forms/widgets/inputs/file_input/file_input.shtml +1 -1
- data/apps/core/forms/widgets/inputs/html_area/html_area.shtml +1 -1
- data/apps/core/forms/widgets/inputs/input/input.shtml +1 -1
- data/apps/core/forms/widgets/inputs/input/readonly.shtml +1 -1
- data/apps/core/forms/widgets/inputs/password/password.shtml +1 -1
- data/apps/core/forms/widgets/inputs/search_select/search_select.shtml +1 -1
- data/apps/core/forms/widgets/inputs/select/select.shtml +1 -1
- data/apps/core/forms/widgets/inputs/text/text.shtml +1 -1
- data/apps/core/forms/widgets/inputs/text_area/text_area.shtml +1 -1
- data/apps/core/forms/widgets/inputs/time_span/time_span.shtml +1 -1
- data/apps/messenger/controllers/messenger_admin_controller.rb +19 -4
- data/apps/messenger/views/admin/_admin.layout.shtml +1 -1
- data/apps/messenger/views/admin/queue.shtml +6 -6
- data/apps/messenger/views/admin/view_email.shtml +7 -0
- data/apps/messenger/views/admin/view_sms.shtml +4 -0
- data/blueprints/app/.dirs +2 -1
- data/blueprints/app/test/features/support/env.rb +4 -0
- data/data/locale/it/LC_MESSAGES/spider.mo +0 -0
- data/lib/spiderfw/cmd/commands/config.rb +6 -3
- data/lib/spiderfw/config/configuration.rb +11 -2
- data/lib/spiderfw/config/options/spider.rb +1 -1
- data/lib/spiderfw/controller/controller.rb +27 -15
- data/lib/spiderfw/controller/dispatcher.rb +8 -4
- data/lib/spiderfw/controller/http_controller.rb +9 -5
- data/lib/spiderfw/controller/mixins/static_content.rb +1 -0
- data/lib/spiderfw/controller/mixins/visual.rb +48 -31
- data/lib/spiderfw/home.rb +8 -0
- data/lib/spiderfw/i18n/cldr.rb +1 -0
- data/lib/spiderfw/model/base_model.rb +2 -2
- data/lib/spiderfw/model/mappers/db_mapper.rb +1 -0
- data/lib/spiderfw/model/unit_of_work.rb +2 -2
- data/lib/spiderfw/requires.rb +1 -0
- data/lib/spiderfw/setup/app_manager.rb +16 -8
- data/lib/spiderfw/spider.rb +2 -2
- data/lib/spiderfw/templates/layout.rb +16 -9
- data/lib/spiderfw/templates/template.rb +28 -8
- data/lib/spiderfw/utils/logger.rb +9 -9
- data/views/errors/error.layout.shtml +9 -4
- metadata +98 -13
- data/apps/core/admin/public/sass/bootstrap/bootstrap.scss +0 -29
- data/apps/core/admin/public/sass/bootstrap/forms.scss +0 -478
- data/apps/core/admin/public/sass/bootstrap/mixins.scss +0 -220
- data/apps/core/admin/public/sass/bootstrap/patterns.scss +0 -1062
- data/apps/core/admin/public/sass/bootstrap/scaffolding.scss +0 -136
- data/apps/core/admin/public/sass/bootstrap/tables.scss +0 -224
- data/apps/core/admin/public/sass/bootstrap/type.scss +0 -187
- data/apps/core/admin/public/sass/bootstrap/variables.scss +0 -60
@@ -0,0 +1,13 @@
|
|
1
|
+
// PATTERNS
|
2
|
+
// Repeatable UI elements outside the base styles provided from the scaffolding
|
3
|
+
// ----------------------------------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// PAGE HEADERS
|
7
|
+
// ------------
|
8
|
+
|
9
|
+
footer {
|
10
|
+
padding-top: $baseLineHeight - 1;
|
11
|
+
margin-top: $baseLineHeight - 1;
|
12
|
+
border-top: 1px solid #eee;
|
13
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
// POPOVERS
|
2
|
+
// --------
|
3
|
+
|
4
|
+
.popover {
|
5
|
+
position: absolute;
|
6
|
+
top: 0;
|
7
|
+
left: 0;
|
8
|
+
z-index: $zindexPopover;
|
9
|
+
display: none;
|
10
|
+
padding: 5px;
|
11
|
+
&.top { margin-top: -5px; }
|
12
|
+
&.right { margin-left: 5px; }
|
13
|
+
&.bottom { margin-top: 5px; }
|
14
|
+
&.left { margin-left: -5px; }
|
15
|
+
&.top .arrow { @include popoverArrow-top(); }
|
16
|
+
&.right .arrow { @include popoverArrow-right(); }
|
17
|
+
&.bottom .arrow { @include popoverArrow-bottom(); }
|
18
|
+
&.left .arrow { @include popoverArrow-left(); }
|
19
|
+
.arrow {
|
20
|
+
position: absolute;
|
21
|
+
width: 0;
|
22
|
+
height: 0;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
.popover-inner {
|
26
|
+
padding: 3px;
|
27
|
+
width: 280px;
|
28
|
+
overflow: hidden;
|
29
|
+
background: $black; // has to be full background declaration for IE fallback
|
30
|
+
background: rgba(0,0,0,.8);
|
31
|
+
@include border-radius(6px);
|
32
|
+
@include box-shadow(0 3px 7px rgba(0,0,0,0.3));
|
33
|
+
}
|
34
|
+
.popover-title {
|
35
|
+
padding: 9px 15px;
|
36
|
+
line-height: 1;
|
37
|
+
background-color: #f5f5f5;
|
38
|
+
border-bottom:1px solid #eee;
|
39
|
+
@include border-radius(3px 3px 0 0);
|
40
|
+
}
|
41
|
+
.popover-content {
|
42
|
+
padding: 14px;
|
43
|
+
background-color: $white;
|
44
|
+
@include border-radius(0 0 3px 3px);
|
45
|
+
@include background-clip(padding-box);
|
46
|
+
p, ul, ol {
|
47
|
+
margin-bottom: 0;
|
48
|
+
}
|
49
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap @VERSION for Print
|
3
|
+
*
|
4
|
+
* Copyright 2011 Twitter, Inc
|
5
|
+
* Licensed under the Apache License v2.0
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
*
|
8
|
+
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
+
* Date: @DATE
|
10
|
+
*/
|
11
|
+
|
12
|
+
|
13
|
+
// HIDE UNECESSARY COMPONENTS
|
14
|
+
// --------------------------
|
15
|
+
|
16
|
+
.navbar-fixed {
|
17
|
+
display: none;
|
18
|
+
}
|
@@ -0,0 +1,95 @@
|
|
1
|
+
// PROGRESS BARS
|
2
|
+
// -------------
|
3
|
+
|
4
|
+
|
5
|
+
// ANIMATIONS
|
6
|
+
// ----------
|
7
|
+
|
8
|
+
// Webkit
|
9
|
+
@-webkit-keyframes progress-bar-stripes {
|
10
|
+
from { background-position: 0 0; }
|
11
|
+
to { background-position: 40px 0; }
|
12
|
+
}
|
13
|
+
|
14
|
+
// Firefox
|
15
|
+
@-moz-keyframes progress-bar-stripes {
|
16
|
+
from { background-position: 0 0; }
|
17
|
+
to { background-position: 40px 0; }
|
18
|
+
}
|
19
|
+
|
20
|
+
// Spec
|
21
|
+
@keyframes progress-bar-stripes {
|
22
|
+
from { background-position: 0 0; }
|
23
|
+
to { background-position: 40px 0; }
|
24
|
+
}
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
// THE BARS
|
29
|
+
// --------
|
30
|
+
|
31
|
+
// Outer container
|
32
|
+
.progress {
|
33
|
+
overflow: hidden;
|
34
|
+
height: 18px;
|
35
|
+
margin-bottom: 18px;
|
36
|
+
@include gradient-vertical(#f5f5f5, #f9f9f9);
|
37
|
+
@include box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
|
38
|
+
@include border-radius(4px);
|
39
|
+
}
|
40
|
+
|
41
|
+
// Bar of progress
|
42
|
+
.progress .bar {
|
43
|
+
width: 0%;
|
44
|
+
height: 18px;
|
45
|
+
color: $white;
|
46
|
+
font-size: 12px;
|
47
|
+
text-align: center;
|
48
|
+
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
49
|
+
@include gradient-vertical(#149bdf, #0480be);
|
50
|
+
@include box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));
|
51
|
+
@include box-sizing(border-box);
|
52
|
+
@include transition(width .6s ease);
|
53
|
+
}
|
54
|
+
|
55
|
+
// Striped bars
|
56
|
+
.progress-striped .bar {
|
57
|
+
@include gradient-striped(#62c462);
|
58
|
+
@include background-size(40px 40px);
|
59
|
+
}
|
60
|
+
|
61
|
+
// Call animation for the active one
|
62
|
+
.progress.active .bar {
|
63
|
+
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
64
|
+
-moz-animation: progress-bar-stripes 2s linear infinite;
|
65
|
+
animation: progress-bar-stripes 2s linear infinite;
|
66
|
+
}
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
// COLORS
|
71
|
+
// ------
|
72
|
+
|
73
|
+
// Danger (red)
|
74
|
+
.progress-danger .bar {
|
75
|
+
@include gradient-vertical(#ee5f5b, #c43c35);
|
76
|
+
}
|
77
|
+
.progress-danger.progress-striped .bar {
|
78
|
+
@include gradient-striped(#ee5f5b);
|
79
|
+
}
|
80
|
+
|
81
|
+
// Success (green)
|
82
|
+
.progress-success .bar {
|
83
|
+
@include gradient-vertical(#62c462, #57a957);
|
84
|
+
}
|
85
|
+
.progress-success.progress-striped .bar {
|
86
|
+
@include gradient-striped(#62c462);
|
87
|
+
}
|
88
|
+
|
89
|
+
// Info (teal)
|
90
|
+
.progress.info .bar {
|
91
|
+
@include gradient-vertical(#5bc0de, #339bb9);
|
92
|
+
}
|
93
|
+
.progress-info.progress-striped .bar {
|
94
|
+
@include gradient-striped(#5bc0de);
|
95
|
+
}
|
@@ -1,44 +1,10 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
// ERIC MEYER RESET
|
7
|
-
// --------------------------------------------------
|
8
|
-
|
9
|
-
html, body { margin: 0; padding: 0; }
|
10
|
-
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; font-weight: normal; font-style: normal; font-size: 100%; line-height: 1; font-family: inherit; }
|
11
|
-
table { border-collapse: collapse; border-spacing: 0; }
|
12
|
-
ol, ul { list-style: none; }
|
13
|
-
q:before, q:after, blockquote:before, blockquote:after { content: ""; }
|
14
|
-
|
15
|
-
|
16
|
-
// Normalize.css
|
17
|
-
// Pulling in select resets form the normalize.css project
|
18
|
-
// --------------------------------------------------
|
1
|
+
// Reset.less
|
2
|
+
// Adapted from Normalize.css http://github.com/necolas/normalize.css
|
3
|
+
// ------------------------------------------------------------------------
|
19
4
|
|
20
5
|
// Display in IE6-9 and FF3
|
21
6
|
// -------------------------
|
22
|
-
// Source: http://github.com/necolas/normalize.css
|
23
|
-
html {
|
24
|
-
overflow-y: scroll;
|
25
|
-
font-size: 100%;
|
26
|
-
-webkit-text-size-adjust: 100%;
|
27
|
-
-ms-text-size-adjust: 100%;
|
28
|
-
}
|
29
|
-
// Focus states
|
30
|
-
a:focus {
|
31
|
-
outline: thin dotted;
|
32
|
-
}
|
33
|
-
// Hover & Active
|
34
|
-
a:hover,
|
35
|
-
a:active {
|
36
|
-
outline: 0;
|
37
|
-
}
|
38
7
|
|
39
|
-
// Display in IE6-9 and FF3
|
40
|
-
// -------------------------
|
41
|
-
// Source: http://github.com/necolas/normalize.css
|
42
8
|
article,
|
43
9
|
aside,
|
44
10
|
details,
|
@@ -54,7 +20,7 @@ section {
|
|
54
20
|
|
55
21
|
// Display block in IE6-9 and FF3
|
56
22
|
// -------------------------
|
57
|
-
|
23
|
+
|
58
24
|
audio,
|
59
25
|
canvas,
|
60
26
|
video {
|
@@ -65,19 +31,37 @@ video {
|
|
65
31
|
|
66
32
|
// Prevents modern browsers from displaying 'audio' without controls
|
67
33
|
// -------------------------
|
68
|
-
|
34
|
+
|
69
35
|
audio:not([controls]) {
|
70
36
|
display: none;
|
71
37
|
}
|
72
38
|
|
39
|
+
// Base settings
|
40
|
+
// -------------------------
|
41
|
+
|
42
|
+
html {
|
43
|
+
font-size: 100%;
|
44
|
+
-webkit-text-size-adjust: 100%;
|
45
|
+
-ms-text-size-adjust: 100%;
|
46
|
+
}
|
47
|
+
// Focus states
|
48
|
+
a:focus {
|
49
|
+
@include tab-focus();
|
50
|
+
}
|
51
|
+
// Hover & Active
|
52
|
+
a:hover,
|
53
|
+
a:active {
|
54
|
+
outline: 0;
|
55
|
+
}
|
56
|
+
|
73
57
|
// Prevents sub and sup affecting line-height in all browsers
|
74
58
|
// -------------------------
|
75
|
-
|
59
|
+
|
76
60
|
sub,
|
77
61
|
sup {
|
62
|
+
position: relative;
|
78
63
|
font-size: 75%;
|
79
64
|
line-height: 0;
|
80
|
-
position: relative;
|
81
65
|
vertical-align: baseline;
|
82
66
|
}
|
83
67
|
sup {
|
@@ -89,35 +73,35 @@ sub {
|
|
89
73
|
|
90
74
|
// Img border in a's and image quality
|
91
75
|
// -------------------------
|
92
|
-
|
76
|
+
|
93
77
|
img {
|
94
|
-
|
95
|
-
|
78
|
+
max-width: 100%;
|
79
|
+
height: auto;
|
80
|
+
border: 0;
|
81
|
+
-ms-interpolation-mode: bicubic;
|
96
82
|
}
|
97
83
|
|
98
84
|
// Forms
|
99
85
|
// -------------------------
|
100
|
-
// Source: http://github.com/necolas/normalize.css
|
101
86
|
|
102
87
|
// Font size in all browsers, margin changes, misc consistency
|
103
88
|
button,
|
104
89
|
input,
|
105
90
|
select,
|
106
91
|
textarea {
|
107
|
-
font-size: 100%;
|
108
92
|
margin: 0;
|
109
|
-
|
110
|
-
|
93
|
+
font-size: 100%;
|
94
|
+
vertical-align: middle;
|
111
95
|
}
|
112
96
|
button,
|
113
97
|
input {
|
114
|
-
line-height: normal; // FF3/4 have !important on line-height in UA stylesheet
|
115
98
|
*overflow: visible; // Inner spacing ie IE6/7
|
99
|
+
line-height: normal; // FF3/4 have !important on line-height in UA stylesheet
|
116
100
|
}
|
117
101
|
button::-moz-focus-inner,
|
118
102
|
input::-moz-focus-inner { // Inner padding and border oddities in FF3/4
|
119
|
-
border: 0;
|
120
103
|
padding: 0;
|
104
|
+
border: 0;
|
121
105
|
}
|
122
106
|
button,
|
123
107
|
input[type="button"],
|
@@ -132,7 +116,8 @@ input[type="search"] { // Appearance in Safari/Chrome
|
|
132
116
|
-moz-box-sizing: content-box;
|
133
117
|
box-sizing: content-box;
|
134
118
|
}
|
135
|
-
input[type="search"]::-webkit-search-decoration
|
119
|
+
input[type="search"]::-webkit-search-decoration,
|
120
|
+
input[type="search"]::-webkit-search-cancel-button {
|
136
121
|
-webkit-appearance: none; // Inner-padding issues in Chrome OSX, Safari 5
|
137
122
|
}
|
138
123
|
textarea {
|
@@ -0,0 +1,29 @@
|
|
1
|
+
// SCAFFOLDING
|
2
|
+
// Basic and global styles for generating a grid system, structural layout, and page templates
|
3
|
+
// -------------------------------------------------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// STRUCTURAL LAYOUT
|
7
|
+
// -----------------
|
8
|
+
|
9
|
+
body {
|
10
|
+
margin: 0;
|
11
|
+
font-family: $baseFontFamily;
|
12
|
+
font-size: $baseFontSize;
|
13
|
+
line-height: $baseLineHeight;
|
14
|
+
color: $textColor;
|
15
|
+
background-color: $white;
|
16
|
+
}
|
17
|
+
|
18
|
+
|
19
|
+
// LINKS
|
20
|
+
// -----
|
21
|
+
|
22
|
+
a {
|
23
|
+
color: $linkColor;
|
24
|
+
text-decoration: none;
|
25
|
+
}
|
26
|
+
a:hover {
|
27
|
+
color: $linkColorHover;
|
28
|
+
text-decoration: underline;
|
29
|
+
}
|
@@ -0,0 +1,156 @@
|
|
1
|
+
// SPRITES
|
2
|
+
// Glyphs and icons for buttons, nav, and more
|
3
|
+
// -------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// ICONS
|
7
|
+
// -----
|
8
|
+
|
9
|
+
// All icons receive the styles of the <i> tag with a base class
|
10
|
+
// of .i and are then given a unique class to add width, height,
|
11
|
+
// and background-position. Your resulting HTML will look like
|
12
|
+
// <i class="i icon-inbox"></i>.
|
13
|
+
|
14
|
+
// For the white version of the icons, just add the .icon-white class:
|
15
|
+
// <i class="i icon-inbox icon-white"></i>
|
16
|
+
|
17
|
+
[class^="icon-"] {
|
18
|
+
display: inline-block;
|
19
|
+
width: 14px;
|
20
|
+
height: 14px;
|
21
|
+
vertical-align: text-top;
|
22
|
+
background-image: url(../img/glyphicons-halflings.png);
|
23
|
+
background-position: 14px 14px;
|
24
|
+
background-repeat: no-repeat;
|
25
|
+
|
26
|
+
@include ie7-restore-right-whitespace();
|
27
|
+
}
|
28
|
+
.icon-white {
|
29
|
+
background-image: url(../img/glyphicons-halflings-white.png);
|
30
|
+
}
|
31
|
+
|
32
|
+
.icon-glass { background-position: 0 0; }
|
33
|
+
.icon-music { background-position: -24px 0; }
|
34
|
+
.icon-search { background-position: -48px 0; }
|
35
|
+
.icon-envelope { background-position: -72px 0; }
|
36
|
+
.icon-heart { background-position: -96px 0; }
|
37
|
+
.icon-star { background-position: -120px 0; }
|
38
|
+
.icon-star-empty { background-position: -144px 0; }
|
39
|
+
.icon-user { background-position: -168px 0; }
|
40
|
+
.icon-film { background-position: -192px 0; }
|
41
|
+
.icon-th-large { background-position: -216px 0; }
|
42
|
+
.icon-th { background-position: -240px 0; }
|
43
|
+
.icon-th-list { background-position: -264px 0; }
|
44
|
+
.icon-ok { background-position: -288px 0; }
|
45
|
+
.icon-remove { background-position: -312px 0; }
|
46
|
+
.icon-zoom-in { background-position: -336px 0; }
|
47
|
+
.icon-zoom-out { background-position: -360px 0; }
|
48
|
+
.icon-off { background-position: -384px 0; }
|
49
|
+
.icon-signal { background-position: -408px 0; }
|
50
|
+
.icon-cog { background-position: -432px 0; }
|
51
|
+
.icon-trash { background-position: -456px 0; }
|
52
|
+
|
53
|
+
.icon-home { background-position: 0 -24px; }
|
54
|
+
.icon-file { background-position: -24px -24px; }
|
55
|
+
.icon-time { background-position: -48px -24px; }
|
56
|
+
.icon-road { background-position: -72px -24px; }
|
57
|
+
.icon-download-alt { background-position: -96px -24px; }
|
58
|
+
.icon-download { background-position: -120px -24px; }
|
59
|
+
.icon-upload { background-position: -144px -24px; }
|
60
|
+
.icon-inbox { background-position: -168px -24px; }
|
61
|
+
.icon-play-circle { background-position: -192px -24px; }
|
62
|
+
.icon-repeat { background-position: -216px -24px; }
|
63
|
+
.icon-refresh { background-position: -240px -24px; }
|
64
|
+
.icon-list-alt { background-position: -264px -24px; }
|
65
|
+
.icon-lock { background-position: -287px -24px; } // 1px off
|
66
|
+
.icon-flag { background-position: -312px -24px; }
|
67
|
+
.icon-headphones { background-position: -336px -24px; }
|
68
|
+
.icon-volume-off { background-position: -360px -24px; }
|
69
|
+
.icon-volume-down { background-position: -384px -24px; }
|
70
|
+
.icon-volume-up { background-position: -408px -24px; }
|
71
|
+
.icon-qrcode { background-position: -432px -24px; }
|
72
|
+
.icon-barcode { background-position: -456px -24px; }
|
73
|
+
|
74
|
+
.icon-tag { background-position: 0 -48px; }
|
75
|
+
.icon-tags { background-position: -25px -48px; } // 1px off
|
76
|
+
.icon-book { background-position: -48px -48px; }
|
77
|
+
.icon-bookmark { background-position: -72px -48px; }
|
78
|
+
.icon-print { background-position: -96px -48px; }
|
79
|
+
.icon-camera { background-position: -120px -48px; }
|
80
|
+
.icon-font { background-position: -144px -48px; }
|
81
|
+
.icon-bold { background-position: -167px -48px; } // 1px off
|
82
|
+
.icon-italic { background-position: -192px -48px; }
|
83
|
+
.icon-text-height { background-position: -216px -48px; }
|
84
|
+
.icon-text-width { background-position: -240px -48px; }
|
85
|
+
.icon-align-left { background-position: -264px -48px; }
|
86
|
+
.icon-align-center { background-position: -288px -48px; }
|
87
|
+
.icon-align-right { background-position: -312px -48px; }
|
88
|
+
.icon-align-justify { background-position: -336px -48px; }
|
89
|
+
.icon-list { background-position: -360px -48px; }
|
90
|
+
.icon-indent-left { background-position: -384px -48px; }
|
91
|
+
.icon-indent-right { background-position: -408px -48px; }
|
92
|
+
.icon-facetime-video { background-position: -432px -48px; }
|
93
|
+
.icon-picture { background-position: -456px -48px; }
|
94
|
+
|
95
|
+
.icon-pencil { background-position: 0 -72px; }
|
96
|
+
.icon-map-marker { background-position: -24px -72px; }
|
97
|
+
.icon-adjust { background-position: -48px -72px; }
|
98
|
+
.icon-tint { background-position: -72px -72px; }
|
99
|
+
.icon-edit { background-position: -96px -72px; }
|
100
|
+
.icon-share { background-position: -120px -72px; }
|
101
|
+
.icon-check { background-position: -144px -72px; }
|
102
|
+
.icon-move { background-position: -168px -72px; }
|
103
|
+
.icon-step-backward { background-position: -192px -72px; }
|
104
|
+
.icon-fast-backward { background-position: -216px -72px; }
|
105
|
+
.icon-backward { background-position: -240px -72px; }
|
106
|
+
.icon-play { background-position: -264px -72px; }
|
107
|
+
.icon-pause { background-position: -288px -72px; }
|
108
|
+
.icon-stop { background-position: -312px -72px; }
|
109
|
+
.icon-forward { background-position: -336px -72px; }
|
110
|
+
.icon-fast-forward { background-position: -360px -72px; }
|
111
|
+
.icon-step-forward { background-position: -384px -72px; }
|
112
|
+
.icon-eject { background-position: -408px -72px; }
|
113
|
+
.icon-chevron-left { background-position: -432px -72px; }
|
114
|
+
.icon-chevron-right { background-position: -456px -72px; }
|
115
|
+
|
116
|
+
.icon-plus-sign { background-position: 0 -96px; }
|
117
|
+
.icon-minus-sign { background-position: -24px -96px; }
|
118
|
+
.icon-remove-sign { background-position: -48px -96px; }
|
119
|
+
.icon-ok-sign { background-position: -72px -96px; }
|
120
|
+
.icon-question-sign { background-position: -96px -96px; }
|
121
|
+
.icon-info-sign { background-position: -120px -96px; }
|
122
|
+
.icon-screenshot { background-position: -144px -96px; }
|
123
|
+
.icon-remove-circle { background-position: -168px -96px; }
|
124
|
+
.icon-ok-circle { background-position: -192px -96px; }
|
125
|
+
.icon-ban-circle { background-position: -216px -96px; }
|
126
|
+
.icon-arrow-left { background-position: -240px -96px; }
|
127
|
+
.icon-arrow-right { background-position: -264px -96px; }
|
128
|
+
.icon-arrow-up { background-position: -289px -96px; } // 1px off
|
129
|
+
.icon-arrow-down { background-position: -312px -96px; }
|
130
|
+
.icon-share-alt { background-position: -336px -96px; }
|
131
|
+
.icon-resize-full { background-position: -360px -96px; }
|
132
|
+
.icon-resize-small { background-position: -384px -96px; }
|
133
|
+
.icon-plus { background-position: -408px -96px; }
|
134
|
+
.icon-minus { background-position: -433px -96px; }
|
135
|
+
.icon-asterisk { background-position: -456px -96px; }
|
136
|
+
|
137
|
+
.icon-exclamation-sign { background-position: 0 -120px; }
|
138
|
+
.icon-gift { background-position: -24px -120px; }
|
139
|
+
.icon-leaf { background-position: -48px -120px; }
|
140
|
+
.icon-fire { background-position: -72px -120px; }
|
141
|
+
.icon-eye-open { background-position: -96px -120px; }
|
142
|
+
.icon-eye-close { background-position: -120px -120px; }
|
143
|
+
.icon-warning-sign { background-position: -144px -120px; }
|
144
|
+
.icon-plane { background-position: -168px -120px; }
|
145
|
+
.icon-calendar { background-position: -192px -120px; }
|
146
|
+
.icon-random { background-position: -216px -120px; }
|
147
|
+
.icon-comment { background-position: -240px -120px; }
|
148
|
+
.icon-magnet { background-position: -264px -120px; }
|
149
|
+
.icon-chevron-up { background-position: -288px -120px; }
|
150
|
+
.icon-chevron-down { background-position: -313px -119px; } // 1px off
|
151
|
+
.icon-retweet { background-position: -336px -120px; }
|
152
|
+
.icon-shopping-cart { background-position: -360px -120px; }
|
153
|
+
.icon-folder-close { background-position: -384px -120px; }
|
154
|
+
.icon-folder-open { background-position: -408px -120px; }
|
155
|
+
.icon-resize-vertical { background-position: -432px -119px; }
|
156
|
+
.icon-resize-horizontal { background-position: -456px -118px; }
|
@@ -0,0 +1,139 @@
|
|
1
|
+
// TABLES
|
2
|
+
// Tables for, you guessed it, tabular data
|
3
|
+
// ----------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
// BASE TABLES
|
8
|
+
// -----------------
|
9
|
+
|
10
|
+
table {
|
11
|
+
max-width: 100%;
|
12
|
+
border-collapse: collapse;
|
13
|
+
border-spacing: 0;
|
14
|
+
}
|
15
|
+
|
16
|
+
// BASELINE STYLES
|
17
|
+
// ---------------
|
18
|
+
|
19
|
+
.table {
|
20
|
+
width: 100%;
|
21
|
+
margin-bottom: $baseLineHeight;
|
22
|
+
// Cells
|
23
|
+
th,
|
24
|
+
td {
|
25
|
+
padding: 8px;
|
26
|
+
line-height: $baseLineHeight;
|
27
|
+
text-align: left;
|
28
|
+
border-top: 1px solid #ddd;
|
29
|
+
}
|
30
|
+
th {
|
31
|
+
font-weight: bold;
|
32
|
+
vertical-align: bottom;
|
33
|
+
}
|
34
|
+
td {
|
35
|
+
vertical-align: top;
|
36
|
+
}
|
37
|
+
// Remove top border from thead by default
|
38
|
+
thead:first-child tr th,
|
39
|
+
thead:first-child tr td {
|
40
|
+
border-top: 0;
|
41
|
+
}
|
42
|
+
// Account for multiple tbody instances
|
43
|
+
tbody + tbody {
|
44
|
+
border-top: 2px solid #ddd;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
// CONDENSED TABLE W/ HALF PADDING
|
51
|
+
// -------------------------------
|
52
|
+
|
53
|
+
.table-condensed {
|
54
|
+
th,
|
55
|
+
td {
|
56
|
+
padding: 4px 5px;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
|
61
|
+
// BORDERED VERSION
|
62
|
+
// ----------------
|
63
|
+
|
64
|
+
.table-bordered {
|
65
|
+
border: 1px solid #ddd;
|
66
|
+
border-collapse: separate; // Done so we can round those corners!
|
67
|
+
*border-collapse: collapsed; // IE7 can't round corners anyway
|
68
|
+
@include border-radius(4px);
|
69
|
+
th + th,
|
70
|
+
td + td,
|
71
|
+
th + td,
|
72
|
+
td + th {
|
73
|
+
border-left: 1px solid #ddd;
|
74
|
+
}
|
75
|
+
// Prevent a double border
|
76
|
+
thead:first-child tr:first-child th,
|
77
|
+
tbody:first-child tr:first-child th,
|
78
|
+
tbody:first-child tr:first-child td {
|
79
|
+
border-top: 0;
|
80
|
+
}
|
81
|
+
// For first th or td in the first row in the first thead or tbody
|
82
|
+
thead:first-child tr:first-child th:first-child,
|
83
|
+
tbody:first-child tr:first-child td:first-child {
|
84
|
+
@include border-radius(4px 0 0 0);
|
85
|
+
}
|
86
|
+
thead:first-child tr:first-child th:last-child,
|
87
|
+
tbody:first-child tr:first-child td:last-child {
|
88
|
+
@include border-radius(0 4px 0 0);
|
89
|
+
}
|
90
|
+
// For first th or td in the first row in the first thead or tbody
|
91
|
+
thead:last-child tr:last-child th:first-child,
|
92
|
+
tbody:last-child tr:last-child td:first-child {
|
93
|
+
@include border-radius(0 0 0 4px);
|
94
|
+
}
|
95
|
+
thead:last-child tr:last-child th:last-child,
|
96
|
+
tbody:last-child tr:last-child td:last-child {
|
97
|
+
@include border-radius(0 0 4px 0);
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
|
102
|
+
// ZEBRA-STRIPING
|
103
|
+
// --------------
|
104
|
+
|
105
|
+
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
106
|
+
.table-striped {
|
107
|
+
tbody {
|
108
|
+
tr:nth-child(odd) td,
|
109
|
+
tr:nth-child(odd) th {
|
110
|
+
background-color: #f9f9f9;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
// TABLE CELL SIZING
|
118
|
+
// -----------------
|
119
|
+
|
120
|
+
// Change the columns
|
121
|
+
@mixin tableColumns($columnSpan: 1) {
|
122
|
+
float: none;
|
123
|
+
width: (($gridColumnWidth) * $columnSpan) + ($gridGutterWidth * ($columnSpan - 1)) - 16;
|
124
|
+
margin-left: 0;
|
125
|
+
}
|
126
|
+
table {
|
127
|
+
.span1 { @include tableColumns(1); }
|
128
|
+
.span2 { @include tableColumns(2); }
|
129
|
+
.span3 { @include tableColumns(3); }
|
130
|
+
.span4 { @include tableColumns(4); }
|
131
|
+
.span5 { @include tableColumns(5); }
|
132
|
+
.span6 { @include tableColumns(6); }
|
133
|
+
.span7 { @include tableColumns(7); }
|
134
|
+
.span8 { @include tableColumns(8); }
|
135
|
+
.span9 { @include tableColumns(9); }
|
136
|
+
.span10 { @include tableColumns(10); }
|
137
|
+
.span11 { @include tableColumns(11); }
|
138
|
+
.span12 { @include tableColumns(12); }
|
139
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
// THUMBNAILS
|
2
|
+
// ----------
|
3
|
+
|
4
|
+
.thumbnails {
|
5
|
+
margin-left: -20px;
|
6
|
+
list-style: none;
|
7
|
+
@include clearfix();
|
8
|
+
}
|
9
|
+
.thumbnails > li {
|
10
|
+
float: left;
|
11
|
+
margin: 0 0 $baseLineHeight 20px;
|
12
|
+
}
|
13
|
+
.thumbnail {
|
14
|
+
display: block;
|
15
|
+
padding: 4px;
|
16
|
+
line-height: 1;
|
17
|
+
border: 1px solid #ddd;
|
18
|
+
@include border-radius(4px);
|
19
|
+
@include box-shadow(0 1px 1px rgba(0,0,0,.075));
|
20
|
+
}
|
21
|
+
// Add a hover state for linked versions only
|
22
|
+
a.thumbnail:hover {
|
23
|
+
border-color: $linkColor;
|
24
|
+
@include box-shadow(0 1px 4px rgba(0,105,214,.25));
|
25
|
+
}
|
26
|
+
// Images and captions
|
27
|
+
.thumbnail > img {
|
28
|
+
display: block;
|
29
|
+
max-width: 100%;
|
30
|
+
margin-left: auto;
|
31
|
+
margin-right: auto;
|
32
|
+
}
|
33
|
+
.thumbnail .caption {
|
34
|
+
padding: 9px;
|
35
|
+
}
|