rails_admin 3.0.0.beta2 → 3.0.0.rc
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of rails_admin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +1 -2
- data/Rakefile +11 -0
- data/app/assets/javascripts/rails_admin.js +4 -4
- data/app/assets/stylesheets/rails_admin.scss +31 -0
- data/app/controllers/rails_admin/application_controller.rb +1 -1
- data/app/controllers/rails_admin/main_controller.rb +10 -18
- data/app/helpers/rails_admin/application_helper.rb +12 -13
- data/app/helpers/rails_admin/form_builder.rb +3 -3
- data/app/helpers/rails_admin/main_helper.rb +1 -1
- data/app/views/kaminari/ra-twitter-bootstrap/_gap.html.erb +2 -2
- data/app/views/kaminari/ra-twitter-bootstrap/_next_page.html.erb +4 -4
- data/app/views/kaminari/ra-twitter-bootstrap/_page.html.erb +4 -4
- data/app/views/kaminari/ra-twitter-bootstrap/_paginator.html.erb +12 -10
- data/app/views/kaminari/ra-twitter-bootstrap/_prev_page.html.erb +4 -4
- data/app/views/kaminari/ra-twitter-bootstrap/without_count/_next_page.html.erb +4 -4
- data/app/views/kaminari/ra-twitter-bootstrap/without_count/_paginator.html.erb +6 -4
- data/app/views/kaminari/ra-twitter-bootstrap/without_count/_prev_page.html.erb +4 -4
- data/app/views/layouts/rails_admin/_navigation.html.erb +12 -16
- data/app/views/layouts/rails_admin/_secondary_navigation.html.erb +8 -8
- data/app/views/layouts/rails_admin/_sidebar_navigation.html.erb +1 -5
- data/app/views/layouts/rails_admin/application.html.erb +4 -7
- data/app/views/layouts/rails_admin/{pjax.html.erb → content.html.erb} +7 -5
- data/app/views/layouts/rails_admin/modal.js.erb +1 -1
- data/app/views/rails_admin/main/_dashboard_history.html.erb +1 -1
- data/app/views/rails_admin/main/_delete_notice.html.erb +2 -2
- data/app/views/rails_admin/main/_form_boolean.html.erb +6 -8
- data/app/views/rails_admin/main/_form_colorpicker.html.erb +5 -1
- data/app/views/rails_admin/main/_form_datetime.html.erb +8 -7
- data/app/views/rails_admin/main/_form_enumeration.html.erb +5 -1
- data/app/views/rails_admin/main/_form_file_upload.html.erb +1 -1
- data/app/views/rails_admin/main/_form_filtering_multiselect.html.erb +14 -14
- data/app/views/rails_admin/main/_form_filtering_select.html.erb +16 -21
- data/app/views/rails_admin/main/_form_multiple_file_upload.html.erb +1 -1
- data/app/views/rails_admin/main/_form_nested_many.html.erb +4 -4
- data/app/views/rails_admin/main/_form_nested_one.html.erb +4 -4
- data/app/views/rails_admin/main/_form_polymorphic_association.html.erb +11 -6
- data/app/views/rails_admin/main/_submit_buttons.html.erb +8 -8
- data/app/views/rails_admin/main/bulk_delete.html.erb +1 -1
- data/app/views/rails_admin/main/dashboard.html.erb +4 -4
- data/app/views/rails_admin/main/delete.html.erb +1 -1
- data/app/views/rails_admin/main/edit.html.erb +1 -1
- data/app/views/rails_admin/main/export.html.erb +35 -32
- data/app/views/rails_admin/main/history.html.erb +16 -14
- data/app/views/rails_admin/main/index.html.erb +38 -35
- data/app/views/rails_admin/main/new.html.erb +1 -1
- data/config/locales/rails_admin.en.yml +0 -1
- data/lib/generators/rails_admin/install_generator.rb +0 -1
- data/lib/generators/rails_admin/templates/webpack.config.js +0 -3
- data/lib/rails_admin/adapters/active_record/object_extension.rb +1 -1
- data/lib/rails_admin/adapters/active_record/property.rb +1 -1
- data/lib/rails_admin/adapters/active_record.rb +7 -3
- data/lib/rails_admin/adapters/mongoid/property.rb +3 -3
- data/lib/rails_admin/adapters/mongoid.rb +2 -2
- data/lib/rails_admin/config/actions/base.rb +1 -6
- data/lib/rails_admin/config/actions/dashboard.rb +13 -9
- data/lib/rails_admin/config/actions/delete.rb +4 -0
- data/lib/rails_admin/config/actions/edit.rb +4 -0
- data/lib/rails_admin/config/actions/new.rb +5 -0
- data/lib/rails_admin/config/actions/show_in_app.rb +0 -4
- data/lib/rails_admin/config/fields/association.rb +6 -1
- data/lib/rails_admin/config/fields/base.rb +1 -1
- data/lib/rails_admin/config/fields/types/action_text.rb +1 -1
- data/lib/rails_admin/config/fields/types/date.rb +7 -0
- data/lib/rails_admin/config/fields/types/datetime.rb +9 -4
- data/lib/rails_admin/config/fields/types/has_many_association.rb +4 -0
- data/lib/rails_admin/config/fields/types/has_one_association.rb +4 -0
- data/lib/rails_admin/config/fields/types/time.rb +9 -0
- data/lib/rails_admin/config/has_fields.rb +4 -0
- data/lib/rails_admin/config/model.rb +8 -0
- data/lib/rails_admin/config/sections/list.rb +4 -4
- data/lib/rails_admin/config.rb +4 -1
- data/lib/rails_admin/engine.rb +2 -5
- data/lib/rails_admin/support/datetime.rb +50 -53
- data/lib/rails_admin/support/esmodule_preprocessor.rb +2 -1
- data/lib/rails_admin/version.rb +1 -1
- data/package.json +7 -5
- data/src/rails_admin/base.js +3 -6
- data/src/rails_admin/filter-box.js +36 -37
- data/src/rails_admin/filtering-select.js +3 -6
- data/src/rails_admin/i18n.js +0 -3
- data/src/rails_admin/nested-form-hooks.js +16 -8
- data/src/rails_admin/remote-form.js +18 -15
- data/src/rails_admin/styles/base/theming.scss +80 -155
- data/src/rails_admin/styles/base/variables.scss +2 -0
- data/src/rails_admin/styles/base.scss +8 -45
- data/src/rails_admin/styles/filtering-multiselect.scss +2 -2
- data/src/rails_admin/styles/filtering-select.scss +1 -1
- data/src/rails_admin/styles/widgets.scss +1 -10
- data/src/rails_admin/ui.js +4 -54
- data/src/rails_admin/widgets.js +38 -48
- data/vendor/assets/javascripts/rails_admin/bootstrap.js +5046 -0
- data/vendor/assets/javascripts/rails_admin/flatpickr-with-locales.js +10683 -0
- data/vendor/assets/javascripts/rails_admin/popper.js +1974 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_accordion.scss +118 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_alert.scss +57 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_badge.scss +29 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_breadcrumb.scss +28 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_button-group.scss +139 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_buttons.scss +64 -110
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_card.scss +216 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_carousel.scss +162 -176
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_close.scss +31 -26
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_containers.scss +41 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_dropdown.scss +240 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_forms.scss +9 -538
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_functions.scss +302 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_grid.scss +18 -69
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_helpers.scss +9 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_images.scss +42 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_list-group.scss +127 -84
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_mixins.scss +26 -22
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_modal.scss +209 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_nav.scss +139 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_navbar.scss +218 -542
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_offcanvas.scss +83 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_pagination.scss +46 -70
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_placeholders.scss +51 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_popover.scss +158 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_progress.scss +48 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_reboot.scss +625 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_root.scss +54 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_spinners.scss +69 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_tables.scss +100 -178
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_toasts.scss +51 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_tooltip.scss +97 -77
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_transitions.scss +27 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_type.scss +54 -254
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_utilities.scss +628 -55
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_variables.scss +1572 -781
- data/vendor/assets/stylesheets/rails_admin/bootstrap/bootstrap.scss +38 -35
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_floating-labels.scss +63 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_form-check.scss +152 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_form-control.scss +219 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_form-range.scss +91 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_form-select.scss +72 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_form-text.scss +11 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_input-group.scss +121 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_labels.scss +36 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_validation.scss +12 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_clearfix.scss +3 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_colored-links.scss +12 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_position.scss +30 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_ratio.scss +26 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_stacks.scss +15 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_stretched-link.scss +15 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_text-truncation.scss +7 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_vr.scss +8 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_alert.scss +11 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_backdrop.scss +14 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_border-radius.scss +72 -12
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_box-shadow.scss +18 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_breakpoints.scss +127 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_buttons.scss +113 -30
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_caret.scss +64 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_clearfix.scss +5 -18
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_color-scheme.scss +7 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_container.scss +9 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_deprecate.scss +10 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_forms.scss +130 -70
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_gradients.scss +27 -38
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_grid.scss +127 -98
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_image.scss +6 -24
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_list-group.scss +13 -20
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_lists.scss +7 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_pagination.scss +24 -16
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_reset-text.scss +17 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_resize.scss +1 -1
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_table-variants.scss +21 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/{_text-overflow.scss → _text-truncate.scss} +2 -2
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_transition.scss +26 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_utilities.scss +89 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_visually-hidden.scss +29 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/utilities/_api.scss +47 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/vendor/_rfs.scss +354 -0
- data/vendor/assets/stylesheets/rails_admin/flatpickr.css +791 -0
- metadata +80 -91
- data/app/assets/stylesheets/rails_admin.scss.erb +0 -76
- data/lib/generators/rails_admin/templates/environment.js +0 -6
- data/src/rails_admin/styles/themes/cerulean/mixins.scss +0 -0
- data/src/rails_admin/styles/themes/cerulean/theming.scss +0 -135
- data/src/rails_admin/styles/themes/cerulean/variables.scss +0 -830
- data/src/rails_admin/styles/themes/default/mixins.scss +0 -8
- data/src/rails_admin/styles/themes/default/theming.scss +0 -11
- data/src/rails_admin/styles/themes/default/variables.scss +0 -12
- data/src/rails_admin/vendor/jquery.pjax.js +0 -899
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-affix.js +0 -164
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-alert.js +0 -95
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-button.js +0 -125
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-carousel.js +0 -246
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-collapse.js +0 -212
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-dropdown.js +0 -165
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-modal.js +0 -358
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-popover.js +0 -123
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-scrollspy.js +0 -172
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-tab.js +0 -155
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-tooltip.js +0 -677
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-transition.js +0 -59
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-typeahead.js +0 -1782
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap.js +0 -13
- data/vendor/assets/javascripts/rails_admin/bootstrap-datetimepicker.js +0 -2611
- data/vendor/assets/javascripts/rails_admin/jquery.pjax.js +0 -898
- data/vendor/assets/javascripts/rails_admin/moment-with-locales.js +0 -18085
- data/vendor/assets/stylesheets/rails_admin/_bootstrap-datetimepicker.scss +0 -343
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_alerts.scss +0 -68
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_badges.scss +0 -57
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_breadcrumbs.scss +0 -26
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_button-groups.scss +0 -240
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_code.scss +0 -68
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_component-animations.scss +0 -35
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_dropdowns.scss +0 -215
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_glyphicons.scss +0 -237
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_input-groups.scss +0 -166
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_jumbotron.scss +0 -48
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_labels.scss +0 -66
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_media.scss +0 -56
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_modals.scss +0 -150
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_navs.scss +0 -242
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_normalize.scss +0 -425
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_pager.scss +0 -55
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_panels.scss +0 -243
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_popovers.scss +0 -133
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_print.scss +0 -101
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_progress-bars.scss +0 -105
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_responsive-embed.scss +0 -34
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_responsive-utilities.scss +0 -174
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_scaffolding.scss +0 -150
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_theme.scss +0 -258
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_thumbnails.scss +0 -38
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_wells.scss +0 -29
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_alerts.scss +0 -14
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_background-variant.scss +0 -11
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_center-block.scss +0 -7
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_grid-framework.scss +0 -81
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_hide-text.scss +0 -21
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_labels.scss +0 -12
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_nav-divider.scss +0 -10
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_nav-vertical-align.scss +0 -9
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_opacity.scss +0 -8
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_panels.scss +0 -24
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_progress-bar.scss +0 -10
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_reset-filter.scss +0 -8
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_responsive-visibility.scss +0 -21
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_size.scss +0 -10
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_tab-focus.scss +0 -9
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_table-row.scss +0 -28
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_text-emphasis.scss +0 -11
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_vendor-prefixes.scss +0 -219
- data/vendor/assets/stylesheets/rails_admin/bootstrap-datetimepicker-build.scss +0 -16
@@ -1,237 +0,0 @@
|
|
1
|
-
//= depend_on "bootstrap/glyphicons-halflings-regular.eot"
|
2
|
-
//= depend_on "bootstrap/glyphicons-halflings-regular.svg"
|
3
|
-
//= depend_on "bootstrap/glyphicons-halflings-regular.ttf"
|
4
|
-
//= depend_on "bootstrap/glyphicons-halflings-regular.woff"
|
5
|
-
//
|
6
|
-
// Glyphicons for Bootstrap
|
7
|
-
//
|
8
|
-
// Since icons are fonts, they can be placed anywhere text is placed and are
|
9
|
-
// thus automatically sized to match the surrounding child. To use, create an
|
10
|
-
// inline element with the appropriate classes, like so:
|
11
|
-
//
|
12
|
-
// <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
|
13
|
-
|
14
|
-
// Import the fonts
|
15
|
-
@font-face {
|
16
|
-
font-family: 'Glyphicons Halflings';
|
17
|
-
src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot'), '#{$icon-font-path}#{$icon-font-name}.eot'));
|
18
|
-
src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot?#iefix'), '#{$icon-font-path}#{$icon-font-name}.eot?#iefix')) format('embedded-opentype'),
|
19
|
-
url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.woff'), '#{$icon-font-path}#{$icon-font-name}.woff')) format('woff'),
|
20
|
-
url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.ttf'), '#{$icon-font-path}#{$icon-font-name}.ttf')) format('truetype'),
|
21
|
-
url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}'), '#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}')) format('svg');
|
22
|
-
}
|
23
|
-
|
24
|
-
// Catchall baseclass
|
25
|
-
.glyphicon {
|
26
|
-
position: relative;
|
27
|
-
top: 1px;
|
28
|
-
display: inline-block;
|
29
|
-
font-family: 'Glyphicons Halflings';
|
30
|
-
font-style: normal;
|
31
|
-
font-weight: normal;
|
32
|
-
line-height: 1;
|
33
|
-
-webkit-font-smoothing: antialiased;
|
34
|
-
-moz-osx-font-smoothing: grayscale;
|
35
|
-
}
|
36
|
-
|
37
|
-
// Individual icons
|
38
|
-
.glyphicon-asterisk { &:before { content: "\2a"; } }
|
39
|
-
.glyphicon-plus { &:before { content: "\2b"; } }
|
40
|
-
.glyphicon-euro { &:before { content: "\20ac"; } }
|
41
|
-
.glyphicon-minus { &:before { content: "\2212"; } }
|
42
|
-
.glyphicon-cloud { &:before { content: "\2601"; } }
|
43
|
-
.glyphicon-envelope { &:before { content: "\2709"; } }
|
44
|
-
.glyphicon-pencil { &:before { content: "\270f"; } }
|
45
|
-
.glyphicon-glass { &:before { content: "\e001"; } }
|
46
|
-
.glyphicon-music { &:before { content: "\e002"; } }
|
47
|
-
.glyphicon-search { &:before { content: "\e003"; } }
|
48
|
-
.glyphicon-heart { &:before { content: "\e005"; } }
|
49
|
-
.glyphicon-star { &:before { content: "\e006"; } }
|
50
|
-
.glyphicon-star-empty { &:before { content: "\e007"; } }
|
51
|
-
.glyphicon-user { &:before { content: "\e008"; } }
|
52
|
-
.glyphicon-film { &:before { content: "\e009"; } }
|
53
|
-
.glyphicon-th-large { &:before { content: "\e010"; } }
|
54
|
-
.glyphicon-th { &:before { content: "\e011"; } }
|
55
|
-
.glyphicon-th-list { &:before { content: "\e012"; } }
|
56
|
-
.glyphicon-ok { &:before { content: "\e013"; } }
|
57
|
-
.glyphicon-remove { &:before { content: "\e014"; } }
|
58
|
-
.glyphicon-zoom-in { &:before { content: "\e015"; } }
|
59
|
-
.glyphicon-zoom-out { &:before { content: "\e016"; } }
|
60
|
-
.glyphicon-off { &:before { content: "\e017"; } }
|
61
|
-
.glyphicon-signal { &:before { content: "\e018"; } }
|
62
|
-
.glyphicon-cog { &:before { content: "\e019"; } }
|
63
|
-
.glyphicon-trash { &:before { content: "\e020"; } }
|
64
|
-
.glyphicon-home { &:before { content: "\e021"; } }
|
65
|
-
.glyphicon-file { &:before { content: "\e022"; } }
|
66
|
-
.glyphicon-time { &:before { content: "\e023"; } }
|
67
|
-
.glyphicon-road { &:before { content: "\e024"; } }
|
68
|
-
.glyphicon-download-alt { &:before { content: "\e025"; } }
|
69
|
-
.glyphicon-download { &:before { content: "\e026"; } }
|
70
|
-
.glyphicon-upload { &:before { content: "\e027"; } }
|
71
|
-
.glyphicon-inbox { &:before { content: "\e028"; } }
|
72
|
-
.glyphicon-play-circle { &:before { content: "\e029"; } }
|
73
|
-
.glyphicon-repeat { &:before { content: "\e030"; } }
|
74
|
-
.glyphicon-refresh { &:before { content: "\e031"; } }
|
75
|
-
.glyphicon-list-alt { &:before { content: "\e032"; } }
|
76
|
-
.glyphicon-lock { &:before { content: "\e033"; } }
|
77
|
-
.glyphicon-flag { &:before { content: "\e034"; } }
|
78
|
-
.glyphicon-headphones { &:before { content: "\e035"; } }
|
79
|
-
.glyphicon-volume-off { &:before { content: "\e036"; } }
|
80
|
-
.glyphicon-volume-down { &:before { content: "\e037"; } }
|
81
|
-
.glyphicon-volume-up { &:before { content: "\e038"; } }
|
82
|
-
.glyphicon-qrcode { &:before { content: "\e039"; } }
|
83
|
-
.glyphicon-barcode { &:before { content: "\e040"; } }
|
84
|
-
.glyphicon-tag { &:before { content: "\e041"; } }
|
85
|
-
.glyphicon-tags { &:before { content: "\e042"; } }
|
86
|
-
.glyphicon-book { &:before { content: "\e043"; } }
|
87
|
-
.glyphicon-bookmark { &:before { content: "\e044"; } }
|
88
|
-
.glyphicon-print { &:before { content: "\e045"; } }
|
89
|
-
.glyphicon-camera { &:before { content: "\e046"; } }
|
90
|
-
.glyphicon-font { &:before { content: "\e047"; } }
|
91
|
-
.glyphicon-bold { &:before { content: "\e048"; } }
|
92
|
-
.glyphicon-italic { &:before { content: "\e049"; } }
|
93
|
-
.glyphicon-text-height { &:before { content: "\e050"; } }
|
94
|
-
.glyphicon-text-width { &:before { content: "\e051"; } }
|
95
|
-
.glyphicon-align-left { &:before { content: "\e052"; } }
|
96
|
-
.glyphicon-align-center { &:before { content: "\e053"; } }
|
97
|
-
.glyphicon-align-right { &:before { content: "\e054"; } }
|
98
|
-
.glyphicon-align-justify { &:before { content: "\e055"; } }
|
99
|
-
.glyphicon-list { &:before { content: "\e056"; } }
|
100
|
-
.glyphicon-indent-left { &:before { content: "\e057"; } }
|
101
|
-
.glyphicon-indent-right { &:before { content: "\e058"; } }
|
102
|
-
.glyphicon-facetime-video { &:before { content: "\e059"; } }
|
103
|
-
.glyphicon-picture { &:before { content: "\e060"; } }
|
104
|
-
.glyphicon-map-marker { &:before { content: "\e062"; } }
|
105
|
-
.glyphicon-adjust { &:before { content: "\e063"; } }
|
106
|
-
.glyphicon-tint { &:before { content: "\e064"; } }
|
107
|
-
.glyphicon-edit { &:before { content: "\e065"; } }
|
108
|
-
.glyphicon-share { &:before { content: "\e066"; } }
|
109
|
-
.glyphicon-check { &:before { content: "\e067"; } }
|
110
|
-
.glyphicon-move { &:before { content: "\e068"; } }
|
111
|
-
.glyphicon-step-backward { &:before { content: "\e069"; } }
|
112
|
-
.glyphicon-fast-backward { &:before { content: "\e070"; } }
|
113
|
-
.glyphicon-backward { &:before { content: "\e071"; } }
|
114
|
-
.glyphicon-play { &:before { content: "\e072"; } }
|
115
|
-
.glyphicon-pause { &:before { content: "\e073"; } }
|
116
|
-
.glyphicon-stop { &:before { content: "\e074"; } }
|
117
|
-
.glyphicon-forward { &:before { content: "\e075"; } }
|
118
|
-
.glyphicon-fast-forward { &:before { content: "\e076"; } }
|
119
|
-
.glyphicon-step-forward { &:before { content: "\e077"; } }
|
120
|
-
.glyphicon-eject { &:before { content: "\e078"; } }
|
121
|
-
.glyphicon-chevron-left { &:before { content: "\e079"; } }
|
122
|
-
.glyphicon-chevron-right { &:before { content: "\e080"; } }
|
123
|
-
.glyphicon-plus-sign { &:before { content: "\e081"; } }
|
124
|
-
.glyphicon-minus-sign { &:before { content: "\e082"; } }
|
125
|
-
.glyphicon-remove-sign { &:before { content: "\e083"; } }
|
126
|
-
.glyphicon-ok-sign { &:before { content: "\e084"; } }
|
127
|
-
.glyphicon-question-sign { &:before { content: "\e085"; } }
|
128
|
-
.glyphicon-info-sign { &:before { content: "\e086"; } }
|
129
|
-
.glyphicon-screenshot { &:before { content: "\e087"; } }
|
130
|
-
.glyphicon-remove-circle { &:before { content: "\e088"; } }
|
131
|
-
.glyphicon-ok-circle { &:before { content: "\e089"; } }
|
132
|
-
.glyphicon-ban-circle { &:before { content: "\e090"; } }
|
133
|
-
.glyphicon-arrow-left { &:before { content: "\e091"; } }
|
134
|
-
.glyphicon-arrow-right { &:before { content: "\e092"; } }
|
135
|
-
.glyphicon-arrow-up { &:before { content: "\e093"; } }
|
136
|
-
.glyphicon-arrow-down { &:before { content: "\e094"; } }
|
137
|
-
.glyphicon-share-alt { &:before { content: "\e095"; } }
|
138
|
-
.glyphicon-resize-full { &:before { content: "\e096"; } }
|
139
|
-
.glyphicon-resize-small { &:before { content: "\e097"; } }
|
140
|
-
.glyphicon-exclamation-sign { &:before { content: "\e101"; } }
|
141
|
-
.glyphicon-gift { &:before { content: "\e102"; } }
|
142
|
-
.glyphicon-leaf { &:before { content: "\e103"; } }
|
143
|
-
.glyphicon-fire { &:before { content: "\e104"; } }
|
144
|
-
.glyphicon-eye-open { &:before { content: "\e105"; } }
|
145
|
-
.glyphicon-eye-close { &:before { content: "\e106"; } }
|
146
|
-
.glyphicon-warning-sign { &:before { content: "\e107"; } }
|
147
|
-
.glyphicon-plane { &:before { content: "\e108"; } }
|
148
|
-
.glyphicon-calendar { &:before { content: "\e109"; } }
|
149
|
-
.glyphicon-random { &:before { content: "\e110"; } }
|
150
|
-
.glyphicon-comment { &:before { content: "\e111"; } }
|
151
|
-
.glyphicon-magnet { &:before { content: "\e112"; } }
|
152
|
-
.glyphicon-chevron-up { &:before { content: "\e113"; } }
|
153
|
-
.glyphicon-chevron-down { &:before { content: "\e114"; } }
|
154
|
-
.glyphicon-retweet { &:before { content: "\e115"; } }
|
155
|
-
.glyphicon-shopping-cart { &:before { content: "\e116"; } }
|
156
|
-
.glyphicon-folder-close { &:before { content: "\e117"; } }
|
157
|
-
.glyphicon-folder-open { &:before { content: "\e118"; } }
|
158
|
-
.glyphicon-resize-vertical { &:before { content: "\e119"; } }
|
159
|
-
.glyphicon-resize-horizontal { &:before { content: "\e120"; } }
|
160
|
-
.glyphicon-hdd { &:before { content: "\e121"; } }
|
161
|
-
.glyphicon-bullhorn { &:before { content: "\e122"; } }
|
162
|
-
.glyphicon-bell { &:before { content: "\e123"; } }
|
163
|
-
.glyphicon-certificate { &:before { content: "\e124"; } }
|
164
|
-
.glyphicon-thumbs-up { &:before { content: "\e125"; } }
|
165
|
-
.glyphicon-thumbs-down { &:before { content: "\e126"; } }
|
166
|
-
.glyphicon-hand-right { &:before { content: "\e127"; } }
|
167
|
-
.glyphicon-hand-left { &:before { content: "\e128"; } }
|
168
|
-
.glyphicon-hand-up { &:before { content: "\e129"; } }
|
169
|
-
.glyphicon-hand-down { &:before { content: "\e130"; } }
|
170
|
-
.glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
|
171
|
-
.glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
|
172
|
-
.glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
|
173
|
-
.glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
|
174
|
-
.glyphicon-globe { &:before { content: "\e135"; } }
|
175
|
-
.glyphicon-wrench { &:before { content: "\e136"; } }
|
176
|
-
.glyphicon-tasks { &:before { content: "\e137"; } }
|
177
|
-
.glyphicon-filter { &:before { content: "\e138"; } }
|
178
|
-
.glyphicon-briefcase { &:before { content: "\e139"; } }
|
179
|
-
.glyphicon-fullscreen { &:before { content: "\e140"; } }
|
180
|
-
.glyphicon-dashboard { &:before { content: "\e141"; } }
|
181
|
-
.glyphicon-paperclip { &:before { content: "\e142"; } }
|
182
|
-
.glyphicon-heart-empty { &:before { content: "\e143"; } }
|
183
|
-
.glyphicon-link { &:before { content: "\e144"; } }
|
184
|
-
.glyphicon-phone { &:before { content: "\e145"; } }
|
185
|
-
.glyphicon-pushpin { &:before { content: "\e146"; } }
|
186
|
-
.glyphicon-usd { &:before { content: "\e148"; } }
|
187
|
-
.glyphicon-gbp { &:before { content: "\e149"; } }
|
188
|
-
.glyphicon-sort { &:before { content: "\e150"; } }
|
189
|
-
.glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
|
190
|
-
.glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
|
191
|
-
.glyphicon-sort-by-order { &:before { content: "\e153"; } }
|
192
|
-
.glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
|
193
|
-
.glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
|
194
|
-
.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
|
195
|
-
.glyphicon-unchecked { &:before { content: "\e157"; } }
|
196
|
-
.glyphicon-expand { &:before { content: "\e158"; } }
|
197
|
-
.glyphicon-collapse-down { &:before { content: "\e159"; } }
|
198
|
-
.glyphicon-collapse-up { &:before { content: "\e160"; } }
|
199
|
-
.glyphicon-log-in { &:before { content: "\e161"; } }
|
200
|
-
.glyphicon-flash { &:before { content: "\e162"; } }
|
201
|
-
.glyphicon-log-out { &:before { content: "\e163"; } }
|
202
|
-
.glyphicon-new-window { &:before { content: "\e164"; } }
|
203
|
-
.glyphicon-record { &:before { content: "\e165"; } }
|
204
|
-
.glyphicon-save { &:before { content: "\e166"; } }
|
205
|
-
.glyphicon-open { &:before { content: "\e167"; } }
|
206
|
-
.glyphicon-saved { &:before { content: "\e168"; } }
|
207
|
-
.glyphicon-import { &:before { content: "\e169"; } }
|
208
|
-
.glyphicon-export { &:before { content: "\e170"; } }
|
209
|
-
.glyphicon-send { &:before { content: "\e171"; } }
|
210
|
-
.glyphicon-floppy-disk { &:before { content: "\e172"; } }
|
211
|
-
.glyphicon-floppy-saved { &:before { content: "\e173"; } }
|
212
|
-
.glyphicon-floppy-remove { &:before { content: "\e174"; } }
|
213
|
-
.glyphicon-floppy-save { &:before { content: "\e175"; } }
|
214
|
-
.glyphicon-floppy-open { &:before { content: "\e176"; } }
|
215
|
-
.glyphicon-credit-card { &:before { content: "\e177"; } }
|
216
|
-
.glyphicon-transfer { &:before { content: "\e178"; } }
|
217
|
-
.glyphicon-cutlery { &:before { content: "\e179"; } }
|
218
|
-
.glyphicon-header { &:before { content: "\e180"; } }
|
219
|
-
.glyphicon-compressed { &:before { content: "\e181"; } }
|
220
|
-
.glyphicon-earphone { &:before { content: "\e182"; } }
|
221
|
-
.glyphicon-phone-alt { &:before { content: "\e183"; } }
|
222
|
-
.glyphicon-tower { &:before { content: "\e184"; } }
|
223
|
-
.glyphicon-stats { &:before { content: "\e185"; } }
|
224
|
-
.glyphicon-sd-video { &:before { content: "\e186"; } }
|
225
|
-
.glyphicon-hd-video { &:before { content: "\e187"; } }
|
226
|
-
.glyphicon-subtitles { &:before { content: "\e188"; } }
|
227
|
-
.glyphicon-sound-stereo { &:before { content: "\e189"; } }
|
228
|
-
.glyphicon-sound-dolby { &:before { content: "\e190"; } }
|
229
|
-
.glyphicon-sound-5-1 { &:before { content: "\e191"; } }
|
230
|
-
.glyphicon-sound-6-1 { &:before { content: "\e192"; } }
|
231
|
-
.glyphicon-sound-7-1 { &:before { content: "\e193"; } }
|
232
|
-
.glyphicon-copyright-mark { &:before { content: "\e194"; } }
|
233
|
-
.glyphicon-registration-mark { &:before { content: "\e195"; } }
|
234
|
-
.glyphicon-cloud-download { &:before { content: "\e197"; } }
|
235
|
-
.glyphicon-cloud-upload { &:before { content: "\e198"; } }
|
236
|
-
.glyphicon-tree-conifer { &:before { content: "\e199"; } }
|
237
|
-
.glyphicon-tree-deciduous { &:before { content: "\e200"; } }
|
@@ -1,166 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Input groups
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
// Base styles
|
6
|
-
// -------------------------
|
7
|
-
.input-group {
|
8
|
-
position: relative; // For dropdowns
|
9
|
-
display: table;
|
10
|
-
border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
|
11
|
-
|
12
|
-
// Undo padding and float of grid classes
|
13
|
-
&[class*="col-"] {
|
14
|
-
float: none;
|
15
|
-
padding-left: 0;
|
16
|
-
padding-right: 0;
|
17
|
-
}
|
18
|
-
|
19
|
-
.form-control {
|
20
|
-
// Ensure that the input is always above the *appended* addon button for
|
21
|
-
// proper border colors.
|
22
|
-
position: relative;
|
23
|
-
z-index: 2;
|
24
|
-
|
25
|
-
// IE9 fubars the placeholder attribute in text inputs and the arrows on
|
26
|
-
// select elements in input groups. To fix it, we float the input. Details:
|
27
|
-
// https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
|
28
|
-
float: left;
|
29
|
-
|
30
|
-
width: 100%;
|
31
|
-
margin-bottom: 0;
|
32
|
-
}
|
33
|
-
}
|
34
|
-
|
35
|
-
// Sizing options
|
36
|
-
//
|
37
|
-
// Remix the default form control sizing classes into new ones for easier
|
38
|
-
// manipulation.
|
39
|
-
|
40
|
-
.input-group-lg > .form-control,
|
41
|
-
.input-group-lg > .input-group-addon,
|
42
|
-
.input-group-lg > .input-group-btn > .btn {
|
43
|
-
@extend .input-lg;
|
44
|
-
}
|
45
|
-
.input-group-sm > .form-control,
|
46
|
-
.input-group-sm > .input-group-addon,
|
47
|
-
.input-group-sm > .input-group-btn > .btn {
|
48
|
-
@extend .input-sm;
|
49
|
-
}
|
50
|
-
|
51
|
-
|
52
|
-
// Display as table-cell
|
53
|
-
// -------------------------
|
54
|
-
.input-group-addon,
|
55
|
-
.input-group-btn,
|
56
|
-
.input-group .form-control {
|
57
|
-
display: table-cell;
|
58
|
-
|
59
|
-
&:not(:first-child):not(:last-child) {
|
60
|
-
border-radius: 0;
|
61
|
-
}
|
62
|
-
}
|
63
|
-
// Addon and addon wrapper for buttons
|
64
|
-
.input-group-addon,
|
65
|
-
.input-group-btn {
|
66
|
-
width: 1%;
|
67
|
-
white-space: nowrap;
|
68
|
-
vertical-align: middle; // Match the inputs
|
69
|
-
}
|
70
|
-
|
71
|
-
// Text input groups
|
72
|
-
// -------------------------
|
73
|
-
.input-group-addon {
|
74
|
-
padding: $padding-base-vertical $padding-base-horizontal;
|
75
|
-
font-size: $font-size-base;
|
76
|
-
font-weight: normal;
|
77
|
-
line-height: 1;
|
78
|
-
color: $input-color;
|
79
|
-
text-align: center;
|
80
|
-
background-color: $input-group-addon-bg;
|
81
|
-
border: 1px solid $input-group-addon-border-color;
|
82
|
-
border-radius: $border-radius-base;
|
83
|
-
|
84
|
-
// Sizing
|
85
|
-
&.input-sm {
|
86
|
-
padding: $padding-small-vertical $padding-small-horizontal;
|
87
|
-
font-size: $font-size-small;
|
88
|
-
border-radius: $border-radius-small;
|
89
|
-
}
|
90
|
-
&.input-lg {
|
91
|
-
padding: $padding-large-vertical $padding-large-horizontal;
|
92
|
-
font-size: $font-size-large;
|
93
|
-
border-radius: $border-radius-large;
|
94
|
-
}
|
95
|
-
|
96
|
-
// Nuke default margins from checkboxes and radios to vertically center within.
|
97
|
-
input[type="radio"],
|
98
|
-
input[type="checkbox"] {
|
99
|
-
margin-top: 0;
|
100
|
-
}
|
101
|
-
}
|
102
|
-
|
103
|
-
// Reset rounded corners
|
104
|
-
.input-group .form-control:first-child,
|
105
|
-
.input-group-addon:first-child,
|
106
|
-
.input-group-btn:first-child > .btn,
|
107
|
-
.input-group-btn:first-child > .btn-group > .btn,
|
108
|
-
.input-group-btn:first-child > .dropdown-toggle,
|
109
|
-
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
110
|
-
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
111
|
-
@include border-right-radius(0);
|
112
|
-
}
|
113
|
-
.input-group-addon:first-child {
|
114
|
-
border-right: 0;
|
115
|
-
}
|
116
|
-
.input-group .form-control:last-child,
|
117
|
-
.input-group-addon:last-child,
|
118
|
-
.input-group-btn:last-child > .btn,
|
119
|
-
.input-group-btn:last-child > .btn-group > .btn,
|
120
|
-
.input-group-btn:last-child > .dropdown-toggle,
|
121
|
-
.input-group-btn:first-child > .btn:not(:first-child),
|
122
|
-
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
123
|
-
@include border-left-radius(0);
|
124
|
-
}
|
125
|
-
.input-group-addon:last-child {
|
126
|
-
border-left: 0;
|
127
|
-
}
|
128
|
-
|
129
|
-
// Button input groups
|
130
|
-
// -------------------------
|
131
|
-
.input-group-btn {
|
132
|
-
position: relative;
|
133
|
-
// Jankily prevent input button groups from wrapping with `white-space` and
|
134
|
-
// `font-size` in combination with `inline-block` on buttons.
|
135
|
-
font-size: 0;
|
136
|
-
white-space: nowrap;
|
137
|
-
|
138
|
-
// Negative margin for spacing, position for bringing hovered/focused/actived
|
139
|
-
// element above the siblings.
|
140
|
-
> .btn {
|
141
|
-
position: relative;
|
142
|
-
+ .btn {
|
143
|
-
margin-left: -1px;
|
144
|
-
}
|
145
|
-
// Bring the "active" button to the front
|
146
|
-
&:hover,
|
147
|
-
&:focus,
|
148
|
-
&:active {
|
149
|
-
z-index: 2;
|
150
|
-
}
|
151
|
-
}
|
152
|
-
|
153
|
-
// Negative margin to only have a 1px border between the two
|
154
|
-
&:first-child {
|
155
|
-
> .btn,
|
156
|
-
> .btn-group {
|
157
|
-
margin-right: -1px;
|
158
|
-
}
|
159
|
-
}
|
160
|
-
&:last-child {
|
161
|
-
> .btn,
|
162
|
-
> .btn-group {
|
163
|
-
margin-left: -1px;
|
164
|
-
}
|
165
|
-
}
|
166
|
-
}
|
@@ -1,48 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Jumbotron
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
.jumbotron {
|
7
|
-
padding: $jumbotron-padding;
|
8
|
-
margin-bottom: $jumbotron-padding;
|
9
|
-
color: $jumbotron-color;
|
10
|
-
background-color: $jumbotron-bg;
|
11
|
-
|
12
|
-
h1,
|
13
|
-
.h1 {
|
14
|
-
color: $jumbotron-heading-color;
|
15
|
-
}
|
16
|
-
p {
|
17
|
-
margin-bottom: ($jumbotron-padding / 2);
|
18
|
-
font-size: $jumbotron-font-size;
|
19
|
-
font-weight: 200;
|
20
|
-
}
|
21
|
-
|
22
|
-
> hr {
|
23
|
-
border-top-color: darken($jumbotron-bg, 10%);
|
24
|
-
}
|
25
|
-
|
26
|
-
.container & {
|
27
|
-
border-radius: $border-radius-large; // Only round corners at higher resolutions if contained in a container
|
28
|
-
}
|
29
|
-
|
30
|
-
.container {
|
31
|
-
max-width: 100%;
|
32
|
-
}
|
33
|
-
|
34
|
-
@media screen and (min-width: $screen-sm-min) {
|
35
|
-
padding-top: ($jumbotron-padding * 1.6);
|
36
|
-
padding-bottom: ($jumbotron-padding * 1.6);
|
37
|
-
|
38
|
-
.container & {
|
39
|
-
padding-left: ($jumbotron-padding * 2);
|
40
|
-
padding-right: ($jumbotron-padding * 2);
|
41
|
-
}
|
42
|
-
|
43
|
-
h1,
|
44
|
-
.h1 {
|
45
|
-
font-size: ($font-size-base * 4.5);
|
46
|
-
}
|
47
|
-
}
|
48
|
-
}
|
@@ -1,66 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Labels
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
.label {
|
6
|
-
display: inline;
|
7
|
-
padding: .2em .6em .3em;
|
8
|
-
font-size: 75%;
|
9
|
-
font-weight: bold;
|
10
|
-
line-height: 1;
|
11
|
-
color: $label-color;
|
12
|
-
text-align: center;
|
13
|
-
white-space: nowrap;
|
14
|
-
vertical-align: baseline;
|
15
|
-
border-radius: .25em;
|
16
|
-
|
17
|
-
// [converter] extracted a& to a.label
|
18
|
-
|
19
|
-
// Empty labels collapse automatically (not available in IE8)
|
20
|
-
&:empty {
|
21
|
-
display: none;
|
22
|
-
}
|
23
|
-
|
24
|
-
// Quick fix for labels in buttons
|
25
|
-
.btn & {
|
26
|
-
position: relative;
|
27
|
-
top: -1px;
|
28
|
-
}
|
29
|
-
}
|
30
|
-
|
31
|
-
// Add hover effects, but only for links
|
32
|
-
a.label {
|
33
|
-
&:hover,
|
34
|
-
&:focus {
|
35
|
-
color: $label-link-hover-color;
|
36
|
-
text-decoration: none;
|
37
|
-
cursor: pointer;
|
38
|
-
}
|
39
|
-
}
|
40
|
-
|
41
|
-
// Colors
|
42
|
-
// Contextual variations (linked labels get darker on :hover)
|
43
|
-
|
44
|
-
.label-default {
|
45
|
-
@include label-variant($label-default-bg);
|
46
|
-
}
|
47
|
-
|
48
|
-
.label-primary {
|
49
|
-
@include label-variant($label-primary-bg);
|
50
|
-
}
|
51
|
-
|
52
|
-
.label-success {
|
53
|
-
@include label-variant($label-success-bg);
|
54
|
-
}
|
55
|
-
|
56
|
-
.label-info {
|
57
|
-
@include label-variant($label-info-bg);
|
58
|
-
}
|
59
|
-
|
60
|
-
.label-warning {
|
61
|
-
@include label-variant($label-warning-bg);
|
62
|
-
}
|
63
|
-
|
64
|
-
.label-danger {
|
65
|
-
@include label-variant($label-danger-bg);
|
66
|
-
}
|
@@ -1,56 +0,0 @@
|
|
1
|
-
// Media objects
|
2
|
-
// Source: http://stubbornella.org/content/?p=497
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
// Common styles
|
7
|
-
// -------------------------
|
8
|
-
|
9
|
-
// Clear the floats
|
10
|
-
.media,
|
11
|
-
.media-body {
|
12
|
-
overflow: hidden;
|
13
|
-
zoom: 1;
|
14
|
-
}
|
15
|
-
|
16
|
-
// Proper spacing between instances of .media
|
17
|
-
.media,
|
18
|
-
.media .media {
|
19
|
-
margin-top: 15px;
|
20
|
-
}
|
21
|
-
.media:first-child {
|
22
|
-
margin-top: 0;
|
23
|
-
}
|
24
|
-
|
25
|
-
// For images and videos, set to block
|
26
|
-
.media-object {
|
27
|
-
display: block;
|
28
|
-
}
|
29
|
-
|
30
|
-
// Reset margins on headings for tighter default spacing
|
31
|
-
.media-heading {
|
32
|
-
margin: 0 0 5px;
|
33
|
-
}
|
34
|
-
|
35
|
-
|
36
|
-
// Media image alignment
|
37
|
-
// -------------------------
|
38
|
-
|
39
|
-
.media {
|
40
|
-
> .pull-left {
|
41
|
-
margin-right: 10px;
|
42
|
-
}
|
43
|
-
> .pull-right {
|
44
|
-
margin-left: 10px;
|
45
|
-
}
|
46
|
-
}
|
47
|
-
|
48
|
-
|
49
|
-
// Media list variation
|
50
|
-
// -------------------------
|
51
|
-
|
52
|
-
// Undo default ul/ol styles
|
53
|
-
.media-list {
|
54
|
-
padding-left: 0;
|
55
|
-
list-style: none;
|
56
|
-
}
|