card 1.15.1 → 1.15.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/card.gemspec +19 -16
- data/config/initializers/recaptcha.rb +1 -0
- data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +13 -14
- data/db/migrate_core_cards/20150326205655_bootswatch_themes.rb +30 -0
- data/db/migrate_core_cards/20150331135745_new_card_menu.rb +8 -0
- data/db/migrate_core_cards/20150508212032_menu_compatibility.rb +27 -0
- data/db/migrate_core_cards/20150510031118_fix_skin_images.rb +13 -0
- data/db/migrate_core_cards/data/1.12_stylesheets/classic_cards.scss +9 -5
- data/db/migrate_core_cards/data/1.12_stylesheets/common.scss +5 -5
- data/{test/fixtures/.gitkeep → db/migrate_core_cards/data/themes/bootstrap_default/_bootswatch.scss} +0 -0
- data/db/migrate_core_cards/data/themes/bootstrap_default/_variables.scss +866 -0
- data/db/migrate_core_cards/data/themes/cerulean/_bootswatch.scss +125 -0
- data/db/migrate_core_cards/data/themes/cerulean/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/cosmo/_bootswatch.scss +237 -0
- data/db/migrate_core_cards/data/themes/cosmo/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/cyborg/_bootswatch.scss +210 -0
- data/db/migrate_core_cards/data/themes/cyborg/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/darkly/_bootswatch.scss +330 -0
- data/db/migrate_core_cards/data/themes/darkly/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/flatly/_bootswatch.scss +313 -0
- data/db/migrate_core_cards/data/themes/flatly/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/journal/_bootswatch.scss +120 -0
- data/db/migrate_core_cards/data/themes/journal/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/lumen/_bootswatch.scss +496 -0
- data/db/migrate_core_cards/data/themes/lumen/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/paper/_bootswatch.scss +607 -0
- data/db/migrate_core_cards/data/themes/paper/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/readable/_bootswatch.scss +174 -0
- data/db/migrate_core_cards/data/themes/readable/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/sandstone/_bootswatch.scss +194 -0
- data/db/migrate_core_cards/data/themes/sandstone/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/simplex/_bootswatch.scss +142 -0
- data/db/migrate_core_cards/data/themes/simplex/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/slate/_bootswatch.scss +417 -0
- data/db/migrate_core_cards/data/themes/slate/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/spacelab/_bootswatch.scss +137 -0
- data/db/migrate_core_cards/data/themes/spacelab/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/superhero/_bootswatch.scss +332 -0
- data/db/migrate_core_cards/data/themes/superhero/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/united/_bootswatch.scss +42 -0
- data/db/migrate_core_cards/data/themes/united/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/yeti/_bootswatch.scss +437 -0
- data/db/migrate_core_cards/data/themes/yeti/_variables.scss +861 -0
- data/db/seed/README.md +2 -0
- data/db/{bootstrap → seed/new}/card_actions.yml +561 -295
- data/db/{bootstrap → seed/new}/card_acts.yml +1 -1
- data/db/seed/new/card_changes.yml +29331 -0
- data/db/{bootstrap → seed/new}/card_references.yml +1544 -1355
- data/db/seed/new/cards.yml +28057 -0
- data/db/seed/test/fixtures/.gitkeep +0 -0
- data/{test → db/seed/test}/fixtures/card_actions.yml +1501 -1235
- data/{test → db/seed/test}/fixtures/card_acts.yml +244 -244
- data/db/seed/test/fixtures/card_changes.yml +34527 -0
- data/{test → db/seed/test}/fixtures/card_references.yml +2215 -2026
- data/db/seed/test/fixtures/cards.yml +32708 -0
- data/{test → db/seed/test}/fixtures/mao2.jpg +0 -0
- data/{test → db/seed/test}/fixtures/rails.gif +0 -0
- data/{test → db/seed/test}/seed.rb +0 -0
- data/db/version_core_cards.txt +1 -1
- data/lib/card/format.rb +56 -56
- data/lib/cardio.rb +7 -5
- data/mod/01_core/chunk/include.rb +1 -1
- data/mod/01_core/set/all/fetch.rb +27 -27
- data/mod/01_core/set/all/rules.rb +53 -53
- data/mod/01_core/set/all/states.rb +5 -0
- data/mod/01_core/spec/format/html_format_spec.rb +6 -6
- data/mod/01_core/spec/set/all/rules2_spec.rb +6 -6
- data/mod/01_history/set/all/history.rb +4 -4
- data/mod/02_basic_types/set/all/rss.rb +10 -9
- data/mod/03_machines/lib/javascript/script_card_menu.js.coffee +20 -0
- data/mod/03_machines/lib/javascript/wagn.js.coffee +46 -34
- data/mod/03_machines/lib/javascript/wagn_mod.js.coffee +36 -148
- data/mod/03_machines/lib/stylesheets/style_bootstrap_compatible.css +10 -96
- data/mod/03_machines/lib/stylesheets/style_cards.scss +127 -87
- data/mod/03_machines/set/self/script_card_menu.rb +10 -2
- data/mod/05_email/set/all/follow.rb +38 -22
- data/mod/05_email/set/right/follow.rb +79 -1
- data/mod/05_email/set/type_plus_right/user/follow.rb +31 -31
- data/mod/05_email/spec/set/all/follow_spec.rb +37 -28
- data/mod/05_email/spec/set/right/followers_spec.rb +29 -29
- data/mod/05_standard/set/all/error.rb +17 -20
- data/mod/05_standard/set/all/links.rb +31 -18
- data/mod/05_standard/set/all/rich_html/content.rb +41 -18
- data/mod/05_standard/set/all/rich_html/editing.rb +21 -17
- data/mod/05_standard/set/all/rich_html/header.rb +13 -48
- data/mod/05_standard/set/all/rich_html/menu.rb +147 -0
- data/mod/05_standard/set/all/rich_html/modal.rb +54 -0
- data/mod/05_standard/set/all/rich_html/toolbar.rb +237 -0
- data/mod/05_standard/set/all/rich_html/wrapper.rb +43 -25
- data/mod/05_standard/set/right/account.rb +8 -7
- data/mod/05_standard/set/rstar/rules.rb +111 -84
- data/mod/05_standard/set/self/head.rb +15 -15
- data/mod/05_standard/set/type/set.rb +65 -34
- data/mod/05_standard/spec/set/all/attach_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/rich_html/wrapper_spec.rb +13 -9
- data/mod/05_standard/spec/set/rstar/rules_spec.rb +1 -1
- data/mod/06_bootstrap/lib/javascript/bootstrap.js +108 -97
- data/mod/06_bootstrap/lib/javascript/smartmenu.js +94 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_alerts.scss +73 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_badges.scss +68 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_button-groups.scss +243 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_buttons.scss +160 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_carousel.scss +269 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_close.scss +36 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_code.scss +69 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_component-animations.scss +37 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_dropdowns.scss +214 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_forms.scss +578 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_glyphicons.scss +305 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_grid.scss +84 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_input-groups.scss +166 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_jumbotron.scss +50 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_labels.scss +66 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_list-group.scss +124 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_media.scss +61 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_mixins.scss +39 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_modals.scss +150 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_navbar.scss +662 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_navs.scss +242 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_normalize.scss +427 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_pager.scss +54 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_pagination.scss +88 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_panels.scss +265 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_popovers.scss +135 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_print.scss +107 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_responsive-utilities.scss +177 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_scaffolding.scss +162 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_tables.scss +234 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_theme.scss +273 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_tooltip.scss +102 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_type.scss +298 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_utilities.scss +55 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_variables.scss +866 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_wells.scss +29 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/mod/06_bootstrap/lib/stylesheets/{bootswatch_mixins.scss → bootstrap/mixins/_vendor-prefixes.scss} +1 -61
- data/mod/06_bootstrap/lib/stylesheets/bootstrap_cards.scss +20 -13
- data/mod/06_bootstrap/lib/stylesheets/smartmenu.css +433 -0
- data/mod/06_bootstrap/set/all/bootstrap/wrapper.rb +2 -2
- data/mod/06_bootstrap/set/all/rich_bootstrap.rb +58 -4
- data/mod/06_bootstrap/set/self/bootstrap_js.rb +1 -1
- data/mod/06_bootstrap/set/self/bootswatch_shared.rb +32 -0
- data/mod/06_bootstrap/set/self/smartmenu_css.rb +7 -0
- data/mod/06_bootstrap/set/self/smartmenu_js.rb +7 -0
- data/spec/spec_helper.rb +16 -16
- metadata +133 -93
- data/db/bootstrap/card_changes.yml +0 -12765
- data/db/bootstrap/cards.yml +0 -11567
- data/db/seeds.rb +0 -8
- data/mod/03_machines/lib/javascript/script_card_menu.js +0 -72
- data/mod/06_bootstrap/lib/stylesheets/bootstrap_css.css +0 -6565
- data/mod/06_bootstrap/lib/stylesheets/theme_bootstrap_default.css +0 -476
- data/mod/06_bootstrap/lib/stylesheets/theme_cerulean.css +0 -6721
- data/mod/06_bootstrap/lib/stylesheets/theme_cosmo.css +0 -5898
- data/mod/06_bootstrap/lib/stylesheets/theme_cyborg.css +0 -5876
- data/mod/06_bootstrap/lib/stylesheets/theme_darkly.css +0 -5986
- data/mod/06_bootstrap/lib/stylesheets/theme_flatly.css +0 -6830
- data/mod/06_bootstrap/lib/stylesheets/theme_journal.css +0 -6647
- data/mod/06_bootstrap/lib/stylesheets/theme_lumen.css +0 -6097
- data/mod/06_bootstrap/lib/stylesheets/theme_paper.css +0 -6647
- data/mod/06_bootstrap/lib/stylesheets/theme_readable.css +0 -5896
- data/mod/06_bootstrap/lib/stylesheets/theme_sandstone.css +0 -6733
- data/mod/06_bootstrap/lib/stylesheets/theme_simplex.css +0 -5886
- data/mod/06_bootstrap/lib/stylesheets/theme_slate.css +0 -7057
- data/mod/06_bootstrap/lib/stylesheets/theme_spacelab.css +0 -5935
- data/mod/06_bootstrap/lib/stylesheets/theme_superhero.css +0 -5964
- data/mod/06_bootstrap/lib/stylesheets/theme_united.css +0 -6588
- data/mod/06_bootstrap/lib/stylesheets/theme_yeti.css +0 -6088
- data/mod/06_bootstrap/set/self/bootstrap_css.rb +0 -9
- data/mod/06_bootstrap/set/self/bootswatch_mixins.rb +0 -9
- data/mod/06_bootstrap/set/self/theme_bootstrap_default.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_cerulean.rb +0 -9
- data/mod/06_bootstrap/set/self/theme_cosmo.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_cyborg.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_darkly.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_flatly.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_journal.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_lumen.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_paper.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_readable.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_sandstone.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_simplex.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_slate.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_spacelab.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_superhero.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_united.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_yeti.rb +0 -2
- data/test/fixtures/card_changes.yml +0 -17961
- data/test/fixtures/cards.yml +0 -16218
@@ -0,0 +1,54 @@
|
|
1
|
+
//
|
2
|
+
// Pager pagination
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
.pager {
|
7
|
+
padding-left: 0;
|
8
|
+
margin: $line-height-computed 0;
|
9
|
+
list-style: none;
|
10
|
+
text-align: center;
|
11
|
+
@include clearfix;
|
12
|
+
li {
|
13
|
+
display: inline;
|
14
|
+
> a,
|
15
|
+
> span {
|
16
|
+
display: inline-block;
|
17
|
+
padding: 5px 14px;
|
18
|
+
background-color: $pager-bg;
|
19
|
+
border: 1px solid $pager-border;
|
20
|
+
border-radius: $pager-border-radius;
|
21
|
+
}
|
22
|
+
|
23
|
+
> a:hover,
|
24
|
+
> a:focus {
|
25
|
+
text-decoration: none;
|
26
|
+
background-color: $pager-hover-bg;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
.next {
|
31
|
+
> a,
|
32
|
+
> span {
|
33
|
+
float: right;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
.previous {
|
38
|
+
> a,
|
39
|
+
> span {
|
40
|
+
float: left;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
.disabled {
|
45
|
+
> a,
|
46
|
+
> a:hover,
|
47
|
+
> a:focus,
|
48
|
+
> span {
|
49
|
+
color: $pager-disabled-color;
|
50
|
+
background-color: $pager-bg;
|
51
|
+
cursor: $cursor-disabled;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
}
|
@@ -0,0 +1,88 @@
|
|
1
|
+
//
|
2
|
+
// Pagination (multiple pages)
|
3
|
+
// --------------------------------------------------
|
4
|
+
.pagination {
|
5
|
+
display: inline-block;
|
6
|
+
padding-left: 0;
|
7
|
+
margin: $line-height-computed 0;
|
8
|
+
border-radius: $border-radius-base;
|
9
|
+
|
10
|
+
> li {
|
11
|
+
display: inline; // Remove list-style and block-level defaults
|
12
|
+
> a,
|
13
|
+
> span {
|
14
|
+
position: relative;
|
15
|
+
float: left; // Collapse white-space
|
16
|
+
padding: $padding-base-vertical $padding-base-horizontal;
|
17
|
+
line-height: $line-height-base;
|
18
|
+
text-decoration: none;
|
19
|
+
color: $pagination-color;
|
20
|
+
background-color: $pagination-bg;
|
21
|
+
border: 1px solid $pagination-border;
|
22
|
+
margin-left: -1px;
|
23
|
+
}
|
24
|
+
&:first-child {
|
25
|
+
> a,
|
26
|
+
> span {
|
27
|
+
margin-left: 0;
|
28
|
+
@include border-left-radius($border-radius-base);
|
29
|
+
}
|
30
|
+
}
|
31
|
+
&:last-child {
|
32
|
+
> a,
|
33
|
+
> span {
|
34
|
+
@include border-right-radius($border-radius-base);
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
|
39
|
+
> li > a,
|
40
|
+
> li > span {
|
41
|
+
&:hover,
|
42
|
+
&:focus {
|
43
|
+
color: $pagination-hover-color;
|
44
|
+
background-color: $pagination-hover-bg;
|
45
|
+
border-color: $pagination-hover-border;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
> .active > a,
|
50
|
+
> .active > span {
|
51
|
+
&,
|
52
|
+
&:hover,
|
53
|
+
&:focus {
|
54
|
+
z-index: 2;
|
55
|
+
color: $pagination-active-color;
|
56
|
+
background-color: $pagination-active-bg;
|
57
|
+
border-color: $pagination-active-border;
|
58
|
+
cursor: default;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
> .disabled {
|
63
|
+
> span,
|
64
|
+
> span:hover,
|
65
|
+
> span:focus,
|
66
|
+
> a,
|
67
|
+
> a:hover,
|
68
|
+
> a:focus {
|
69
|
+
color: $pagination-disabled-color;
|
70
|
+
background-color: $pagination-disabled-bg;
|
71
|
+
border-color: $pagination-disabled-border;
|
72
|
+
cursor: $cursor-disabled;
|
73
|
+
}
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
// Sizing
|
78
|
+
// --------------------------------------------------
|
79
|
+
|
80
|
+
// Large
|
81
|
+
.pagination-lg {
|
82
|
+
@include pagination-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $border-radius-large);
|
83
|
+
}
|
84
|
+
|
85
|
+
// Small
|
86
|
+
.pagination-sm {
|
87
|
+
@include pagination-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $border-radius-small);
|
88
|
+
}
|
@@ -0,0 +1,265 @@
|
|
1
|
+
//
|
2
|
+
// Panels
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base class
|
7
|
+
.panel {
|
8
|
+
margin-bottom: $line-height-computed;
|
9
|
+
background-color: $panel-bg;
|
10
|
+
border: 1px solid transparent;
|
11
|
+
border-radius: $panel-border-radius;
|
12
|
+
@include box-shadow(0 1px 1px rgba(0,0,0,.05));
|
13
|
+
}
|
14
|
+
|
15
|
+
// Panel contents
|
16
|
+
.panel-body {
|
17
|
+
padding: $panel-body-padding;
|
18
|
+
@include clearfix;
|
19
|
+
}
|
20
|
+
|
21
|
+
// Optional heading
|
22
|
+
.panel-heading {
|
23
|
+
padding: $panel-heading-padding;
|
24
|
+
border-bottom: 1px solid transparent;
|
25
|
+
@include border-top-radius(($panel-border-radius - 1));
|
26
|
+
|
27
|
+
> .dropdown .dropdown-toggle {
|
28
|
+
color: inherit;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
// Within heading, strip any `h*` tag of its default margins for spacing.
|
33
|
+
.panel-title {
|
34
|
+
margin-top: 0;
|
35
|
+
margin-bottom: 0;
|
36
|
+
font-size: ceil(($font-size-base * 1.125));
|
37
|
+
color: inherit;
|
38
|
+
|
39
|
+
> a,
|
40
|
+
> small,
|
41
|
+
> .small,
|
42
|
+
> small > a,
|
43
|
+
> .small > a {
|
44
|
+
color: inherit;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
// Optional footer (stays gray in every modifier class)
|
49
|
+
.panel-footer {
|
50
|
+
padding: $panel-footer-padding;
|
51
|
+
background-color: $panel-footer-bg;
|
52
|
+
border-top: 1px solid $panel-inner-border;
|
53
|
+
@include border-bottom-radius(($panel-border-radius - 1));
|
54
|
+
}
|
55
|
+
|
56
|
+
|
57
|
+
// List groups in panels
|
58
|
+
//
|
59
|
+
// By default, space out list group content from panel headings to account for
|
60
|
+
// any kind of custom content between the two.
|
61
|
+
|
62
|
+
.panel {
|
63
|
+
> .list-group,
|
64
|
+
> .panel-collapse > .list-group {
|
65
|
+
margin-bottom: 0;
|
66
|
+
|
67
|
+
.list-group-item {
|
68
|
+
border-width: 1px 0;
|
69
|
+
border-radius: 0;
|
70
|
+
}
|
71
|
+
|
72
|
+
// Add border top radius for first one
|
73
|
+
&:first-child {
|
74
|
+
.list-group-item:first-child {
|
75
|
+
border-top: 0;
|
76
|
+
@include border-top-radius(($panel-border-radius - 1));
|
77
|
+
}
|
78
|
+
}
|
79
|
+
// Add border bottom radius for last one
|
80
|
+
&:last-child {
|
81
|
+
.list-group-item:last-child {
|
82
|
+
border-bottom: 0;
|
83
|
+
@include border-bottom-radius(($panel-border-radius - 1));
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
// Collapse space between when there's no additional content.
|
89
|
+
.panel-heading + .list-group {
|
90
|
+
.list-group-item:first-child {
|
91
|
+
border-top-width: 0;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
.list-group + .panel-footer {
|
95
|
+
border-top-width: 0;
|
96
|
+
}
|
97
|
+
|
98
|
+
// Tables in panels
|
99
|
+
//
|
100
|
+
// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and
|
101
|
+
// watch it go full width.
|
102
|
+
|
103
|
+
.panel {
|
104
|
+
> .table,
|
105
|
+
> .table-responsive > .table,
|
106
|
+
> .panel-collapse > .table {
|
107
|
+
margin-bottom: 0;
|
108
|
+
|
109
|
+
caption {
|
110
|
+
padding-left: $panel-body-padding;
|
111
|
+
padding-right: $panel-body-padding;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
// Add border top radius for first one
|
115
|
+
> .table:first-child,
|
116
|
+
> .table-responsive:first-child > .table:first-child {
|
117
|
+
@include border-top-radius(($panel-border-radius - 1));
|
118
|
+
|
119
|
+
> thead:first-child,
|
120
|
+
> tbody:first-child {
|
121
|
+
> tr:first-child {
|
122
|
+
border-top-left-radius: ($panel-border-radius - 1);
|
123
|
+
border-top-right-radius: ($panel-border-radius - 1);
|
124
|
+
|
125
|
+
td:first-child,
|
126
|
+
th:first-child {
|
127
|
+
border-top-left-radius: ($panel-border-radius - 1);
|
128
|
+
}
|
129
|
+
td:last-child,
|
130
|
+
th:last-child {
|
131
|
+
border-top-right-radius: ($panel-border-radius - 1);
|
132
|
+
}
|
133
|
+
}
|
134
|
+
}
|
135
|
+
}
|
136
|
+
// Add border bottom radius for last one
|
137
|
+
> .table:last-child,
|
138
|
+
> .table-responsive:last-child > .table:last-child {
|
139
|
+
@include border-bottom-radius(($panel-border-radius - 1));
|
140
|
+
|
141
|
+
> tbody:last-child,
|
142
|
+
> tfoot:last-child {
|
143
|
+
> tr:last-child {
|
144
|
+
border-bottom-left-radius: ($panel-border-radius - 1);
|
145
|
+
border-bottom-right-radius: ($panel-border-radius - 1);
|
146
|
+
|
147
|
+
td:first-child,
|
148
|
+
th:first-child {
|
149
|
+
border-bottom-left-radius: ($panel-border-radius - 1);
|
150
|
+
}
|
151
|
+
td:last-child,
|
152
|
+
th:last-child {
|
153
|
+
border-bottom-right-radius: ($panel-border-radius - 1);
|
154
|
+
}
|
155
|
+
}
|
156
|
+
}
|
157
|
+
}
|
158
|
+
> .panel-body + .table,
|
159
|
+
> .panel-body + .table-responsive,
|
160
|
+
> .table + .panel-body,
|
161
|
+
> .table-responsive + .panel-body {
|
162
|
+
border-top: 1px solid $table-border-color;
|
163
|
+
}
|
164
|
+
> .table > tbody:first-child > tr:first-child th,
|
165
|
+
> .table > tbody:first-child > tr:first-child td {
|
166
|
+
border-top: 0;
|
167
|
+
}
|
168
|
+
> .table-bordered,
|
169
|
+
> .table-responsive > .table-bordered {
|
170
|
+
border: 0;
|
171
|
+
> thead,
|
172
|
+
> tbody,
|
173
|
+
> tfoot {
|
174
|
+
> tr {
|
175
|
+
> th:first-child,
|
176
|
+
> td:first-child {
|
177
|
+
border-left: 0;
|
178
|
+
}
|
179
|
+
> th:last-child,
|
180
|
+
> td:last-child {
|
181
|
+
border-right: 0;
|
182
|
+
}
|
183
|
+
}
|
184
|
+
}
|
185
|
+
> thead,
|
186
|
+
> tbody {
|
187
|
+
> tr:first-child {
|
188
|
+
> td,
|
189
|
+
> th {
|
190
|
+
border-bottom: 0;
|
191
|
+
}
|
192
|
+
}
|
193
|
+
}
|
194
|
+
> tbody,
|
195
|
+
> tfoot {
|
196
|
+
> tr:last-child {
|
197
|
+
> td,
|
198
|
+
> th {
|
199
|
+
border-bottom: 0;
|
200
|
+
}
|
201
|
+
}
|
202
|
+
}
|
203
|
+
}
|
204
|
+
> .table-responsive {
|
205
|
+
border: 0;
|
206
|
+
margin-bottom: 0;
|
207
|
+
}
|
208
|
+
}
|
209
|
+
|
210
|
+
|
211
|
+
// Collapsable panels (aka, accordion)
|
212
|
+
//
|
213
|
+
// Wrap a series of panels in `.panel-group` to turn them into an accordion with
|
214
|
+
// the help of our collapse JavaScript plugin.
|
215
|
+
|
216
|
+
.panel-group {
|
217
|
+
margin-bottom: $line-height-computed;
|
218
|
+
|
219
|
+
// Tighten up margin so it's only between panels
|
220
|
+
.panel {
|
221
|
+
margin-bottom: 0;
|
222
|
+
border-radius: $panel-border-radius;
|
223
|
+
|
224
|
+
+ .panel {
|
225
|
+
margin-top: 5px;
|
226
|
+
}
|
227
|
+
}
|
228
|
+
|
229
|
+
.panel-heading {
|
230
|
+
border-bottom: 0;
|
231
|
+
|
232
|
+
+ .panel-collapse > .panel-body,
|
233
|
+
+ .panel-collapse > .list-group {
|
234
|
+
border-top: 1px solid $panel-inner-border;
|
235
|
+
}
|
236
|
+
}
|
237
|
+
|
238
|
+
.panel-footer {
|
239
|
+
border-top: 0;
|
240
|
+
+ .panel-collapse .panel-body {
|
241
|
+
border-bottom: 1px solid $panel-inner-border;
|
242
|
+
}
|
243
|
+
}
|
244
|
+
}
|
245
|
+
|
246
|
+
|
247
|
+
// Contextual variations
|
248
|
+
.panel-default {
|
249
|
+
@include panel-variant($panel-default-border, $panel-default-text, $panel-default-heading-bg, $panel-default-border);
|
250
|
+
}
|
251
|
+
.panel-primary {
|
252
|
+
@include panel-variant($panel-primary-border, $panel-primary-text, $panel-primary-heading-bg, $panel-primary-border);
|
253
|
+
}
|
254
|
+
.panel-success {
|
255
|
+
@include panel-variant($panel-success-border, $panel-success-text, $panel-success-heading-bg, $panel-success-border);
|
256
|
+
}
|
257
|
+
.panel-info {
|
258
|
+
@include panel-variant($panel-info-border, $panel-info-text, $panel-info-heading-bg, $panel-info-border);
|
259
|
+
}
|
260
|
+
.panel-warning {
|
261
|
+
@include panel-variant($panel-warning-border, $panel-warning-text, $panel-warning-heading-bg, $panel-warning-border);
|
262
|
+
}
|
263
|
+
.panel-danger {
|
264
|
+
@include panel-variant($panel-danger-border, $panel-danger-text, $panel-danger-heading-bg, $panel-danger-border);
|
265
|
+
}
|
@@ -0,0 +1,135 @@
|
|
1
|
+
//
|
2
|
+
// Popovers
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
.popover {
|
7
|
+
position: absolute;
|
8
|
+
top: 0;
|
9
|
+
left: 0;
|
10
|
+
z-index: $zindex-popover;
|
11
|
+
display: none;
|
12
|
+
max-width: $popover-max-width;
|
13
|
+
padding: 1px;
|
14
|
+
// Reset font and text properties given new insertion method
|
15
|
+
font-family: $font-family-base;
|
16
|
+
font-size: $font-size-base;
|
17
|
+
font-weight: normal;
|
18
|
+
line-height: $line-height-base;
|
19
|
+
text-align: left;
|
20
|
+
background-color: $popover-bg;
|
21
|
+
background-clip: padding-box;
|
22
|
+
border: 1px solid $popover-fallback-border-color;
|
23
|
+
border: 1px solid $popover-border-color;
|
24
|
+
border-radius: $border-radius-large;
|
25
|
+
@include box-shadow(0 5px 10px rgba(0,0,0,.2));
|
26
|
+
|
27
|
+
// Overrides for proper insertion
|
28
|
+
white-space: normal;
|
29
|
+
|
30
|
+
// Offset the popover to account for the popover arrow
|
31
|
+
&.top { margin-top: -$popover-arrow-width; }
|
32
|
+
&.right { margin-left: $popover-arrow-width; }
|
33
|
+
&.bottom { margin-top: $popover-arrow-width; }
|
34
|
+
&.left { margin-left: -$popover-arrow-width; }
|
35
|
+
}
|
36
|
+
|
37
|
+
.popover-title {
|
38
|
+
margin: 0; // reset heading margin
|
39
|
+
padding: 8px 14px;
|
40
|
+
font-size: $font-size-base;
|
41
|
+
background-color: $popover-title-bg;
|
42
|
+
border-bottom: 1px solid darken($popover-title-bg, 5%);
|
43
|
+
border-radius: ($border-radius-large - 1) ($border-radius-large - 1) 0 0;
|
44
|
+
}
|
45
|
+
|
46
|
+
.popover-content {
|
47
|
+
padding: 9px 14px;
|
48
|
+
}
|
49
|
+
|
50
|
+
// Arrows
|
51
|
+
//
|
52
|
+
// .arrow is outer, .arrow:after is inner
|
53
|
+
|
54
|
+
.popover > .arrow {
|
55
|
+
&,
|
56
|
+
&:after {
|
57
|
+
position: absolute;
|
58
|
+
display: block;
|
59
|
+
width: 0;
|
60
|
+
height: 0;
|
61
|
+
border-color: transparent;
|
62
|
+
border-style: solid;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
.popover > .arrow {
|
66
|
+
border-width: $popover-arrow-outer-width;
|
67
|
+
}
|
68
|
+
.popover > .arrow:after {
|
69
|
+
border-width: $popover-arrow-width;
|
70
|
+
content: "";
|
71
|
+
}
|
72
|
+
|
73
|
+
.popover {
|
74
|
+
&.top > .arrow {
|
75
|
+
left: 50%;
|
76
|
+
margin-left: -$popover-arrow-outer-width;
|
77
|
+
border-bottom-width: 0;
|
78
|
+
border-top-color: $popover-arrow-outer-fallback-color; // IE8 fallback
|
79
|
+
border-top-color: $popover-arrow-outer-color;
|
80
|
+
bottom: -$popover-arrow-outer-width;
|
81
|
+
&:after {
|
82
|
+
content: " ";
|
83
|
+
bottom: 1px;
|
84
|
+
margin-left: -$popover-arrow-width;
|
85
|
+
border-bottom-width: 0;
|
86
|
+
border-top-color: $popover-arrow-color;
|
87
|
+
}
|
88
|
+
}
|
89
|
+
&.right > .arrow {
|
90
|
+
top: 50%;
|
91
|
+
left: -$popover-arrow-outer-width;
|
92
|
+
margin-top: -$popover-arrow-outer-width;
|
93
|
+
border-left-width: 0;
|
94
|
+
border-right-color: $popover-arrow-outer-fallback-color; // IE8 fallback
|
95
|
+
border-right-color: $popover-arrow-outer-color;
|
96
|
+
&:after {
|
97
|
+
content: " ";
|
98
|
+
left: 1px;
|
99
|
+
bottom: -$popover-arrow-width;
|
100
|
+
border-left-width: 0;
|
101
|
+
border-right-color: $popover-arrow-color;
|
102
|
+
}
|
103
|
+
}
|
104
|
+
&.bottom > .arrow {
|
105
|
+
left: 50%;
|
106
|
+
margin-left: -$popover-arrow-outer-width;
|
107
|
+
border-top-width: 0;
|
108
|
+
border-bottom-color: $popover-arrow-outer-fallback-color; // IE8 fallback
|
109
|
+
border-bottom-color: $popover-arrow-outer-color;
|
110
|
+
top: -$popover-arrow-outer-width;
|
111
|
+
&:after {
|
112
|
+
content: " ";
|
113
|
+
top: 1px;
|
114
|
+
margin-left: -$popover-arrow-width;
|
115
|
+
border-top-width: 0;
|
116
|
+
border-bottom-color: $popover-arrow-color;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
120
|
+
&.left > .arrow {
|
121
|
+
top: 50%;
|
122
|
+
right: -$popover-arrow-outer-width;
|
123
|
+
margin-top: -$popover-arrow-outer-width;
|
124
|
+
border-right-width: 0;
|
125
|
+
border-left-color: $popover-arrow-outer-fallback-color; // IE8 fallback
|
126
|
+
border-left-color: $popover-arrow-outer-color;
|
127
|
+
&:after {
|
128
|
+
content: " ";
|
129
|
+
right: 1px;
|
130
|
+
border-right-width: 0;
|
131
|
+
border-left-color: $popover-arrow-color;
|
132
|
+
bottom: -$popover-arrow-width;
|
133
|
+
}
|
134
|
+
}
|
135
|
+
}
|