nodebb-theme-persona 12.1.5 → 13.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -14
- package/package.json +2 -2
- package/public/persona.js +11 -22
- package/{less/account.less → scss/account.scss} +13 -97
- package/{less/categories.less → scss/categories.scss} +10 -40
- package/{less/category.less → scss/category.scss} +26 -75
- package/{less/chats.less → scss/chats.scss} +35 -88
- package/{less/flags.less → scss/flags.scss} +3 -3
- package/{less/footer.less → scss/footer.scss} +0 -1
- package/{less/groups.less → scss/groups.scss} +14 -38
- package/{less/header.less → scss/header.scss} +63 -139
- package/{less/helpers.less → scss/helpers.scss} +0 -0
- package/{less/keyframes.less → scss/keyframes.scss} +0 -0
- package/{less/mixins.less → scss/mixins.scss} +17 -59
- package/{less/mobile.less → scss/mobile.scss} +13 -18
- package/{less/modules/alerts.less → scss/modules/alerts.scss} +21 -21
- package/{less/modules/composer-default.less → scss/modules/composer-default.scss} +2 -2
- package/{less/modules/cookie-consent.less → scss/modules/cookie-consent.scss} +1 -1
- package/{less/modules/fab.less → scss/modules/fab.scss} +2 -2
- package/{less/modules/morph.less → scss/modules/morph.scss} +1 -1
- package/{less/modules/necro-post.less → scss/modules/necro-post.scss} +0 -0
- package/scss/modules/nprogress.scss +80 -0
- package/{less/modules/taskbar.less → scss/modules/taskbar.scss} +11 -10
- package/{less/modules/usercard.less → scss/modules/usercard.scss} +0 -0
- package/{less/noscript.less → scss/noscript.scss} +5 -7
- package/{less/outgoing.less → scss/outgoing.scss} +0 -0
- package/scss/overrides.scss +44 -0
- package/{less/persona.less → scss/persona.scss} +1 -13
- package/{less/posts_list.less → scss/posts_list.scss} +11 -14
- package/{less/register.less → scss/register.scss} +2 -7
- package/scss/search.scss +39 -0
- package/{less/style.less → scss/style.scss} +23 -47
- package/scss/tags.scss +11 -0
- package/{less/topic.less → scss/topic.scss} +53 -90
- package/scss/topics_list.scss +17 -0
- package/{less/variables.less → scss/variables.scss} +3 -3
- package/templates/account/blocks.tpl +24 -26
- package/templates/account/categories.tpl +6 -6
- package/templates/account/consent.tpl +10 -10
- package/templates/account/edit/password.tpl +8 -10
- package/templates/account/edit/username.tpl +6 -10
- package/templates/account/edit.tpl +23 -23
- package/templates/account/followers.tpl +3 -3
- package/templates/account/following.tpl +3 -3
- package/templates/account/groups.tpl +2 -2
- package/templates/account/info.tpl +67 -72
- package/templates/account/posts.tpl +1 -1
- package/templates/account/profile.tpl +20 -18
- package/templates/account/sessions.tpl +3 -3
- package/templates/account/settings.tpl +93 -81
- package/templates/account/topics.tpl +5 -5
- package/templates/account/uploads.tpl +2 -2
- package/templates/admin/plugins/persona.tpl +3 -3
- package/templates/category.tpl +15 -14
- package/templates/chat.tpl +16 -9
- package/templates/chats.tpl +5 -3
- package/templates/flags/detail.tpl +86 -80
- package/templates/flags/list.tpl +4 -4
- package/templates/footer.tpl +1 -1
- package/templates/groups/details.tpl +23 -218
- package/templates/groups/list.tpl +11 -9
- package/templates/groups/members.tpl +1 -4
- package/templates/header.tpl +10 -4
- package/templates/ip-blacklist.tpl +22 -20
- package/templates/login.tpl +17 -14
- package/templates/modules/taskbar.tpl +1 -1
- package/templates/modules/usercard.tpl +2 -2
- package/templates/notifications.tpl +40 -38
- package/templates/partials/acceptTos.tpl +8 -8
- package/templates/partials/account/category-item.tpl +6 -5
- package/templates/partials/account/header.tpl +2 -2
- package/templates/partials/account/menu.tpl +37 -37
- package/templates/partials/breadcrumbs.tpl +1 -1
- package/templates/partials/buttons/newTopic.tpl +10 -3
- package/templates/partials/categories/item.tpl +24 -10
- package/templates/partials/categories/lastpost.tpl +3 -3
- package/templates/partials/categories/link.tpl +10 -10
- package/templates/partials/category/sort.tpl +7 -7
- package/templates/partials/category/subcategory.tpl +3 -3
- package/templates/partials/category/tags.tpl +3 -5
- package/templates/partials/category/tools.tpl +16 -16
- package/templates/partials/category/watch.tpl +8 -10
- package/templates/partials/category-filter-content.tpl +17 -5
- package/templates/partials/category-filter-right.tpl +1 -1
- package/templates/partials/category-selector-content.tpl +17 -4
- package/templates/partials/category-selector-right.tpl +1 -1
- package/templates/partials/chats/message-window.tpl +10 -8
- package/templates/partials/chats/message.tpl +11 -11
- package/templates/partials/chats/options.tpl +8 -8
- package/templates/partials/chats/recent_room.tpl +1 -1
- package/templates/partials/chats/system-message.tpl +1 -1
- package/templates/partials/chats/user.tpl +1 -1
- package/templates/partials/chats-menu.tpl +11 -11
- package/templates/partials/cookie-consent.tpl +1 -1
- package/templates/partials/flags/filters.tpl +34 -32
- package/templates/partials/groups/admin.tpl +195 -0
- package/templates/partials/groups/badge.tpl +1 -0
- package/templates/partials/groups/list.tpl +6 -6
- package/templates/partials/groups/memberlist.tpl +11 -10
- package/templates/partials/menu.tpl +149 -156
- package/templates/partials/notifications_list.tpl +2 -2
- package/templates/partials/paginator.tpl +21 -21
- package/templates/partials/post_bar.tpl +4 -4
- package/templates/partials/posts_list.tpl +1 -1
- package/templates/partials/posts_list_item.tpl +2 -2
- package/templates/partials/quick-search-results.tpl +14 -11
- package/templates/partials/slideout-menu.tpl +1 -1
- package/templates/partials/tags_list.tpl +3 -3
- package/templates/partials/thread_tools.tpl +4 -4
- package/templates/partials/toast.tpl +14 -0
- package/templates/partials/topic/deleted-message.tpl +2 -2
- package/templates/partials/topic/event.tpl +26 -0
- package/templates/partials/topic/navigation-post.tpl +3 -3
- package/templates/partials/topic/navigator.tpl +7 -7
- package/templates/partials/topic/necro-post.tpl +1 -1
- package/templates/partials/topic/post-menu-list.tpl +26 -23
- package/templates/partials/topic/post-menu.tpl +3 -3
- package/templates/partials/topic/post.tpl +49 -44
- package/templates/partials/topic/quickreply.tpl +3 -3
- package/templates/partials/topic/reply-button.tpl +3 -3
- package/templates/partials/topic/sort.tpl +5 -5
- package/templates/partials/topic/tag.tpl +1 -0
- package/templates/partials/topic/tags.tpl +3 -5
- package/templates/partials/topic/topic-menu-list.tpl +18 -16
- package/templates/partials/topic/watch.tpl +11 -10
- package/templates/partials/topic-filters.tpl +12 -0
- package/templates/partials/topic-terms.tpl +12 -0
- package/templates/partials/topics_list.tpl +27 -25
- package/templates/partials/users_list.tpl +22 -10
- package/templates/partials/users_list_menu.tpl +19 -9
- package/templates/popular.tpl +9 -35
- package/templates/post-queue.tpl +42 -35
- package/templates/recent.tpl +10 -24
- package/templates/register.tpl +17 -17
- package/templates/registerComplete.tpl +14 -10
- package/templates/reset.tpl +7 -5
- package/templates/reset_code.tpl +9 -9
- package/templates/search.tpl +100 -87
- package/templates/tag.tpl +8 -10
- package/templates/tags.tpl +5 -3
- package/templates/top.tpl +9 -35
- package/templates/topic.tpl +13 -11
- package/templates/tos.tpl +4 -4
- package/templates/unread.tpl +10 -22
- package/templates/users.tpl +7 -20
- package/theme.json +6 -6
- package/theme.scss +1 -0
- package/less/bootstrap/.csscomb.json +0 -297
- package/less/bootstrap/.csslintrc +0 -19
- package/less/bootstrap/alerts.less +0 -73
- package/less/bootstrap/badges.less +0 -66
- package/less/bootstrap/bootstrap.less +0 -50
- package/less/bootstrap/breadcrumbs.less +0 -26
- package/less/bootstrap/button-groups.less +0 -243
- package/less/bootstrap/buttons.less +0 -160
- package/less/bootstrap/carousel.less +0 -269
- package/less/bootstrap/close.less +0 -34
- package/less/bootstrap/code.less +0 -69
- package/less/bootstrap/component-animations.less +0 -33
- package/less/bootstrap/dropdowns.less +0 -214
- package/less/bootstrap/forms.less +0 -574
- package/less/bootstrap/glyphicons.less +0 -305
- package/less/bootstrap/grid.less +0 -84
- package/less/bootstrap/input-groups.less +0 -166
- package/less/bootstrap/jumbotron.less +0 -50
- package/less/bootstrap/labels.less +0 -64
- package/less/bootstrap/list-group.less +0 -124
- package/less/bootstrap/media.less +0 -61
- package/less/bootstrap/mixins/alerts.less +0 -14
- package/less/bootstrap/mixins/background-variant.less +0 -8
- package/less/bootstrap/mixins/border-radius.less +0 -18
- package/less/bootstrap/mixins/buttons.less +0 -52
- package/less/bootstrap/mixins/center-block.less +0 -7
- package/less/bootstrap/mixins/clearfix.less +0 -22
- package/less/bootstrap/mixins/forms.less +0 -85
- package/less/bootstrap/mixins/gradients.less +0 -59
- package/less/bootstrap/mixins/grid-framework.less +0 -91
- package/less/bootstrap/mixins/grid.less +0 -122
- package/less/bootstrap/mixins/hide-text.less +0 -21
- package/less/bootstrap/mixins/image.less +0 -33
- package/less/bootstrap/mixins/labels.less +0 -12
- package/less/bootstrap/mixins/list-group.less +0 -29
- package/less/bootstrap/mixins/nav-divider.less +0 -10
- package/less/bootstrap/mixins/nav-vertical-align.less +0 -9
- package/less/bootstrap/mixins/opacity.less +0 -8
- package/less/bootstrap/mixins/pagination.less +0 -23
- package/less/bootstrap/mixins/panels.less +0 -24
- package/less/bootstrap/mixins/progress-bar.less +0 -10
- package/less/bootstrap/mixins/reset-filter.less +0 -8
- package/less/bootstrap/mixins/resize.less +0 -6
- package/less/bootstrap/mixins/responsive-visibility.less +0 -15
- package/less/bootstrap/mixins/size.less +0 -10
- package/less/bootstrap/mixins/tab-focus.less +0 -9
- package/less/bootstrap/mixins/table-row.less +0 -28
- package/less/bootstrap/mixins/text-emphasis.less +0 -8
- package/less/bootstrap/mixins/text-overflow.less +0 -8
- package/less/bootstrap/mixins/vendor-prefixes.less +0 -227
- package/less/bootstrap/mixins.less +0 -39
- package/less/bootstrap/modals.less +0 -150
- package/less/bootstrap/navbar.less +0 -660
- package/less/bootstrap/navs.less +0 -242
- package/less/bootstrap/normalize.less +0 -427
- package/less/bootstrap/pager.less +0 -54
- package/less/bootstrap/pagination.less +0 -88
- package/less/bootstrap/panels.less +0 -265
- package/less/bootstrap/popovers.less +0 -135
- package/less/bootstrap/print.less +0 -107
- package/less/bootstrap/progress-bars.less +0 -87
- package/less/bootstrap/responsive-embed.less +0 -35
- package/less/bootstrap/responsive-utilities.less +0 -194
- package/less/bootstrap/scaffolding.less +0 -162
- package/less/bootstrap/tables.less +0 -234
- package/less/bootstrap/theme.less +0 -273
- package/less/bootstrap/thumbnails.less +0 -36
- package/less/bootstrap/tooltip.less +0 -102
- package/less/bootstrap/type.less +0 -302
- package/less/bootstrap/utilities.less +0 -55
- package/less/bootstrap/variables.less +0 -861
- package/less/bootstrap/wells.less +0 -29
- package/less/bootstrap-flipped.css +0 -1550
- package/less/ip-blacklist.less +0 -7
- package/less/modules/bottom-sheet.less +0 -60
- package/less/modules/nprogress.less +0 -80
- package/less/notifications.less +0 -38
- package/less/post-queue.less +0 -19
- package/less/rtl.less +0 -132
- package/less/search.less +0 -96
- package/less/tags.less +0 -37
- package/less/topics_list.less +0 -16
- package/less/users.less +0 -73
- package/templates/alert.tpl +0 -15
- package/templates/partials/change_owner_modal.tpl +0 -22
- package/templates/partials/delete_posts_modal.tpl +0 -19
- package/templates/partials/fork_thread_modal.tpl +0 -22
- package/templates/partials/merge_topics_modal.tpl +0 -58
- package/templates/partials/modals/change_picture_modal.tpl +0 -73
- package/templates/partials/modals/flag_modal.tpl +0 -45
- package/templates/partials/modals/manage_room.tpl +0 -11
- package/templates/partials/modals/manage_room_users.tpl +0 -7
- package/templates/partials/modals/post_history.tpl +0 -36
- package/templates/partials/modals/rename_room.tpl +0 -4
- package/templates/partials/modals/upload_file_modal.tpl +0 -44
- package/templates/partials/modals/upload_picture_from_url_modal.tpl +0 -17
- package/templates/partials/modals/votes_modal.tpl +0 -10
- package/templates/partials/move_thread_modal.tpl +0 -17
- package/templates/partials/topic/badge.tpl +0 -5
- package/theme.less +0 -2
|
@@ -1,88 +0,0 @@
|
|
|
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
|
-
.border-left-radius(@border-radius-base);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
&:last-child {
|
|
32
|
-
> a,
|
|
33
|
-
> span {
|
|
34
|
-
.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
|
-
.pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @border-radius-large);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// Small
|
|
86
|
-
.pagination-sm {
|
|
87
|
-
.pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @border-radius-small);
|
|
88
|
-
}
|
|
@@ -1,265 +0,0 @@
|
|
|
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
|
-
.box-shadow(0 1px 1px rgba(0,0,0,.05));
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
// Panel contents
|
|
16
|
-
.panel-body {
|
|
17
|
-
padding: @panel-body-padding;
|
|
18
|
-
&:extend(.clearfix all);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
// Optional heading
|
|
22
|
-
.panel-heading {
|
|
23
|
-
padding: @panel-heading-padding;
|
|
24
|
-
border-bottom: 1px solid transparent;
|
|
25
|
-
.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
|
-
.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
|
-
.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
|
-
.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
|
-
.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
|
-
.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
|
-
.panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);
|
|
250
|
-
}
|
|
251
|
-
.panel-primary {
|
|
252
|
-
.panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);
|
|
253
|
-
}
|
|
254
|
-
.panel-success {
|
|
255
|
-
.panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);
|
|
256
|
-
}
|
|
257
|
-
.panel-info {
|
|
258
|
-
.panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);
|
|
259
|
-
}
|
|
260
|
-
.panel-warning {
|
|
261
|
-
.panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);
|
|
262
|
-
}
|
|
263
|
-
.panel-danger {
|
|
264
|
-
.panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);
|
|
265
|
-
}
|
|
@@ -1,135 +0,0 @@
|
|
|
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
|
-
.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
|
-
}
|
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
|
|
2
|
-
|
|
3
|
-
// ==========================================================================
|
|
4
|
-
// Print styles.
|
|
5
|
-
// Inlined to avoid the additional HTTP request: h5bp.com/r
|
|
6
|
-
// ==========================================================================
|
|
7
|
-
|
|
8
|
-
@media print {
|
|
9
|
-
*,
|
|
10
|
-
*:before,
|
|
11
|
-
*:after {
|
|
12
|
-
background: transparent !important;
|
|
13
|
-
color: #000 !important; // Black prints faster: h5bp.com/s
|
|
14
|
-
box-shadow: none !important;
|
|
15
|
-
text-shadow: none !important;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
a,
|
|
19
|
-
a:visited {
|
|
20
|
-
text-decoration: underline;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
a[href]:after {
|
|
24
|
-
content: " (" attr(href) ")";
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
abbr[title]:after {
|
|
28
|
-
content: " (" attr(title) ")";
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// Don't show links that are fragment identifiers,
|
|
32
|
-
// or use the `javascript:` pseudo protocol
|
|
33
|
-
a[href^="#"]:after,
|
|
34
|
-
a[href^="javascript:"]:after {
|
|
35
|
-
content: "";
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
pre,
|
|
39
|
-
blockquote {
|
|
40
|
-
border: 1px solid #999;
|
|
41
|
-
page-break-inside: avoid;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
thead {
|
|
45
|
-
display: table-header-group; // h5bp.com/t
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
tr,
|
|
49
|
-
img {
|
|
50
|
-
page-break-inside: avoid;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
img {
|
|
54
|
-
max-width: 100% !important;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
p,
|
|
58
|
-
h2,
|
|
59
|
-
h3 {
|
|
60
|
-
orphans: 3;
|
|
61
|
-
widows: 3;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
h2,
|
|
65
|
-
h3 {
|
|
66
|
-
page-break-after: avoid;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
// Bootstrap specific changes start
|
|
70
|
-
//
|
|
71
|
-
// Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245
|
|
72
|
-
// Once fixed, we can just straight up remove this.
|
|
73
|
-
select {
|
|
74
|
-
background: #fff !important;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// Bootstrap components
|
|
78
|
-
.navbar {
|
|
79
|
-
display: none;
|
|
80
|
-
}
|
|
81
|
-
.btn,
|
|
82
|
-
.dropup > .btn {
|
|
83
|
-
> .caret {
|
|
84
|
-
border-top-color: #000 !important;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
.label {
|
|
88
|
-
border: 1px solid #000;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.table {
|
|
92
|
-
border-collapse: collapse !important;
|
|
93
|
-
|
|
94
|
-
td,
|
|
95
|
-
th {
|
|
96
|
-
background-color: #fff !important;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
.table-bordered {
|
|
100
|
-
th,
|
|
101
|
-
td {
|
|
102
|
-
border: 1px solid #ddd !important;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
// Bootstrap specific changes end
|
|
107
|
-
}
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Progress bars
|
|
3
|
-
// --------------------------------------------------
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// Bar animations
|
|
7
|
-
// -------------------------
|
|
8
|
-
|
|
9
|
-
// WebKit
|
|
10
|
-
@-webkit-keyframes progress-bar-stripes {
|
|
11
|
-
from { background-position: 40px 0; }
|
|
12
|
-
to { background-position: 0 0; }
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
// Spec and IE10+
|
|
16
|
-
@keyframes progress-bar-stripes {
|
|
17
|
-
from { background-position: 40px 0; }
|
|
18
|
-
to { background-position: 0 0; }
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
// Bar itself
|
|
23
|
-
// -------------------------
|
|
24
|
-
|
|
25
|
-
// Outer container
|
|
26
|
-
.progress {
|
|
27
|
-
overflow: hidden;
|
|
28
|
-
height: @line-height-computed;
|
|
29
|
-
margin-bottom: @line-height-computed;
|
|
30
|
-
background-color: @progress-bg;
|
|
31
|
-
border-radius: @progress-border-radius;
|
|
32
|
-
.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// Bar of progress
|
|
36
|
-
.progress-bar {
|
|
37
|
-
float: left;
|
|
38
|
-
width: 0%;
|
|
39
|
-
height: 100%;
|
|
40
|
-
font-size: @font-size-small;
|
|
41
|
-
line-height: @line-height-computed;
|
|
42
|
-
color: @progress-bar-color;
|
|
43
|
-
text-align: center;
|
|
44
|
-
background-color: @progress-bar-bg;
|
|
45
|
-
.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));
|
|
46
|
-
.transition(width .6s ease);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// Striped bars
|
|
50
|
-
//
|
|
51
|
-
// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the
|
|
52
|
-
// `.progress-bar-striped` class, which you just add to an existing
|
|
53
|
-
// `.progress-bar`.
|
|
54
|
-
.progress-striped .progress-bar,
|
|
55
|
-
.progress-bar-striped {
|
|
56
|
-
#gradient > .striped();
|
|
57
|
-
background-size: 40px 40px;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
// Call animation for the active one
|
|
61
|
-
//
|
|
62
|
-
// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the
|
|
63
|
-
// `.progress-bar.active` approach.
|
|
64
|
-
.progress.active .progress-bar,
|
|
65
|
-
.progress-bar.active {
|
|
66
|
-
.animation(progress-bar-stripes 2s linear infinite);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
// Variations
|
|
71
|
-
// -------------------------
|
|
72
|
-
|
|
73
|
-
.progress-bar-success {
|
|
74
|
-
.progress-bar-variant(@progress-bar-success-bg);
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.progress-bar-info {
|
|
78
|
-
.progress-bar-variant(@progress-bar-info-bg);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.progress-bar-warning {
|
|
82
|
-
.progress-bar-variant(@progress-bar-warning-bg);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.progress-bar-danger {
|
|
86
|
-
.progress-bar-variant(@progress-bar-danger-bg);
|
|
87
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
// Embeds responsive
|
|
2
|
-
//
|
|
3
|
-
// Credit: Nicolas Gallagher and SUIT CSS.
|
|
4
|
-
|
|
5
|
-
.embed-responsive {
|
|
6
|
-
position: relative;
|
|
7
|
-
display: block;
|
|
8
|
-
height: 0;
|
|
9
|
-
padding: 0;
|
|
10
|
-
overflow: hidden;
|
|
11
|
-
|
|
12
|
-
.embed-responsive-item,
|
|
13
|
-
iframe,
|
|
14
|
-
embed,
|
|
15
|
-
object,
|
|
16
|
-
video {
|
|
17
|
-
position: absolute;
|
|
18
|
-
top: 0;
|
|
19
|
-
left: 0;
|
|
20
|
-
bottom: 0;
|
|
21
|
-
height: 100%;
|
|
22
|
-
width: 100%;
|
|
23
|
-
border: 0;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
// Modifier class for 16:9 aspect ratio
|
|
28
|
-
.embed-responsive-16by9 {
|
|
29
|
-
padding-bottom: 56.25%;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
// Modifier class for 4:3 aspect ratio
|
|
33
|
-
.embed-responsive-4by3 {
|
|
34
|
-
padding-bottom: 75%;
|
|
35
|
-
}
|