nodebb-theme-persona 12.1.4 → 12.1.6
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 -23
- 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,73 +0,0 @@
|
|
|
1
|
-
<div class="row">
|
|
2
|
-
<div class="col-xs-6 col-sm-8 col-md-6">
|
|
3
|
-
<div class="list-group media">
|
|
4
|
-
<button type="button" class="list-group-item" data-type="default">
|
|
5
|
-
<div class="media-left">
|
|
6
|
-
<!-- IF defaultAvatar -->
|
|
7
|
-
<img class="media-object" src="{defaultAvatar}" />
|
|
8
|
-
<!-- ELSE -->
|
|
9
|
-
<div class="user-icon media-object" style="background-color: {icon.bgColor};">{icon.text}</div>
|
|
10
|
-
<!-- ENDIF defaultAvatar -->
|
|
11
|
-
</div>
|
|
12
|
-
<div class="media-body">
|
|
13
|
-
<h4 class="media-heading">[[user:default_picture]]</h4>
|
|
14
|
-
</div>
|
|
15
|
-
</button>
|
|
16
|
-
{{{each pictures}}}
|
|
17
|
-
<button type="button" class="list-group-item" data-type="{pictures.type}">
|
|
18
|
-
<div class="media-left">
|
|
19
|
-
<img class="media-object" src="{pictures.url}" title="{pictures.text}" />
|
|
20
|
-
</div>
|
|
21
|
-
<div class="media-body">
|
|
22
|
-
<h4 class="media-heading">{pictures.text}</h4>
|
|
23
|
-
</div>
|
|
24
|
-
</button>
|
|
25
|
-
{{{end}}}
|
|
26
|
-
</div>
|
|
27
|
-
</div>
|
|
28
|
-
<div class="col-xs-6 col-sm-4 col-md-6">
|
|
29
|
-
<div class="btn-group-vertical btn-block" role="group">
|
|
30
|
-
<!-- IF allowProfileImageUploads -->
|
|
31
|
-
<button type="button" class="btn btn-default" data-action="upload">
|
|
32
|
-
<span class="hidden-xs hidden-sm">
|
|
33
|
-
[[user:upload_new_picture]]
|
|
34
|
-
</span>
|
|
35
|
-
<span class="visible-xs-inline visible-sm-inline">
|
|
36
|
-
<i class="fa fa-plus"></i>
|
|
37
|
-
<i class="fa fa-upload"></i>
|
|
38
|
-
</span>
|
|
39
|
-
</button>
|
|
40
|
-
<!-- ENDIF allowProfileImageUploads -->
|
|
41
|
-
<button type="button" class="btn btn-default" data-action="upload-url">
|
|
42
|
-
<span class="hidden-xs hidden-sm">
|
|
43
|
-
[[user:upload_new_picture_from_url]]
|
|
44
|
-
</span>
|
|
45
|
-
<span class="visible-xs-inline visible-sm-inline">
|
|
46
|
-
<i class="fa fa-plus"></i>
|
|
47
|
-
<i class="fa fa-link"></i>
|
|
48
|
-
</span>
|
|
49
|
-
</button>
|
|
50
|
-
<!-- IF uploaded -->
|
|
51
|
-
<button type="button" class="btn btn-default" data-action="remove-uploaded">
|
|
52
|
-
<span class="hidden-xs hidden-sm">
|
|
53
|
-
[[user:remove_uploaded_picture]]
|
|
54
|
-
</span>
|
|
55
|
-
<span class="visible-xs-inline visible-sm-inline">
|
|
56
|
-
<i class="fa fa-picture-o"></i>
|
|
57
|
-
<i class="fa fa-long-arrow-right"></i>
|
|
58
|
-
<i class="fa fa-trash-o"></i>
|
|
59
|
-
</span>
|
|
60
|
-
</button>
|
|
61
|
-
<!-- ENDIF uploaded -->
|
|
62
|
-
</div>
|
|
63
|
-
</div>
|
|
64
|
-
</div>
|
|
65
|
-
|
|
66
|
-
<hr />
|
|
67
|
-
|
|
68
|
-
<h4>[[user:avatar-background-colour]]</h4>
|
|
69
|
-
|
|
70
|
-
<label><input type="radio" name="icon:bgColor" value="transparent" /><span></span></label>
|
|
71
|
-
{{{ each iconBackgrounds }}}
|
|
72
|
-
<label><input type="radio" name="icon:bgColor" value="{@value}" /><span style="background-color: {@value};"></span></label>
|
|
73
|
-
{{{ end }}}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
<div class="modal" tabindex="-1" role="dialog" aria-labelledby="[[flags:modal-title]]" aria-hidden="true">
|
|
2
|
-
<div class="modal-dialog modal-lg">
|
|
3
|
-
<div class="modal-content">
|
|
4
|
-
<div class="modal-header">
|
|
5
|
-
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
6
|
-
<h4 class="modal-title">
|
|
7
|
-
[[flags:modal-title]]
|
|
8
|
-
</h4>
|
|
9
|
-
</div>
|
|
10
|
-
<div class="modal-body">
|
|
11
|
-
<p class="lead">
|
|
12
|
-
[[flags:modal-body, {type}, {id}]]
|
|
13
|
-
</p>
|
|
14
|
-
<div>
|
|
15
|
-
<div class="radio">
|
|
16
|
-
<label for="flag-reason-spam">
|
|
17
|
-
<input type="radio" name="flag-reason" id="flag-reason-spam" value="[[flags:modal-reason-spam]]">
|
|
18
|
-
[[flags:modal-reason-spam]]
|
|
19
|
-
</label>
|
|
20
|
-
</div>
|
|
21
|
-
|
|
22
|
-
<div class="radio">
|
|
23
|
-
<label for="flag-reason-offensive">
|
|
24
|
-
<input type="radio" name="flag-reason" id="flag-reason-offensive" value="[[flags:modal-reason-offensive]]">
|
|
25
|
-
[[flags:modal-reason-offensive]]
|
|
26
|
-
</label>
|
|
27
|
-
</div>
|
|
28
|
-
|
|
29
|
-
<div class="radio">
|
|
30
|
-
<label for="flag-reason-other">
|
|
31
|
-
<input type="radio" name="flag-reason" id="flag-reason-other" value="[[flags:modal-reason-other]]">
|
|
32
|
-
[[flags:modal-reason-other]]
|
|
33
|
-
</label>
|
|
34
|
-
</div>
|
|
35
|
-
</div>
|
|
36
|
-
<div class="form-group">
|
|
37
|
-
<textarea class="form-control" id="flag-reason-custom" placeholder="[[flags:modal-reason-custom]]" disabled="disabled"></textarea>
|
|
38
|
-
</div>
|
|
39
|
-
|
|
40
|
-
<button type="button" class="btn btn-primary pull-right" id="flag-post-commit" disabled>[[flags:modal-submit]]</button>
|
|
41
|
-
<div class="clear"></div>
|
|
42
|
-
</div>
|
|
43
|
-
</div>
|
|
44
|
-
</div>
|
|
45
|
-
</div>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<div class="form-group">
|
|
2
|
-
<input class="form-control" type="text" placeholder="[[global:user-search-prompt]]" />
|
|
3
|
-
<p class="text-danger"></p>
|
|
4
|
-
<p class="help-block">[[modules:chat.add-user-help]]</p>
|
|
5
|
-
|
|
6
|
-
<hr />
|
|
7
|
-
|
|
8
|
-
<ul class="list-group">
|
|
9
|
-
<li class="list-group-item"><i class="fa fa-spinner fa-spin"></i> [[modules:chat.retrieving-users]]</li>
|
|
10
|
-
</ul>
|
|
11
|
-
</div>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{{{each users}}}
|
|
2
|
-
<li class="list-group-item">
|
|
3
|
-
<!-- IF ../canKick --><button class="pull-right btn btn-xs btn-link" data-action="kick" data-uid="{../uid}">[[modules:chat.kick]]</button><!-- END -->
|
|
4
|
-
{buildAvatar(users, "sm", true)}
|
|
5
|
-
<span>{../username} <!-- IF ../isOwner --><i class="fa fa-star text-warning" title="[[modules:chat.owner]]"></i><!-- END --></span>
|
|
6
|
-
</li>
|
|
7
|
-
{{{end}}}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
<p class="number-of-diffs">
|
|
2
|
-
<!-- IF numDiffs -->
|
|
3
|
-
[[topic:diffs.description, {numDiffs}]]
|
|
4
|
-
<!-- ELSE -->
|
|
5
|
-
[[topic:diffs.no-revisions-description, {numDiffs}]]
|
|
6
|
-
<!-- END -->
|
|
7
|
-
</p>
|
|
8
|
-
<!-- IF numDiffs -->
|
|
9
|
-
<div class="form-group">
|
|
10
|
-
<select class="form-control">
|
|
11
|
-
{{{each diffs}}}
|
|
12
|
-
<option value="{../timestamp}">
|
|
13
|
-
{../pretty}
|
|
14
|
-
{{{ if ../username }}}[{../username}]{{{ end }}}
|
|
15
|
-
<!-- IF @first -->([[topic:diffs.current-revision]])<!-- END -->
|
|
16
|
-
<!-- IF @last -->([[topic:diffs.original-revision]])<!-- END -->
|
|
17
|
-
</option>
|
|
18
|
-
{{{end}}}
|
|
19
|
-
</select>
|
|
20
|
-
|
|
21
|
-
<hr />
|
|
22
|
-
|
|
23
|
-
<ul class="posts-list diffs"></ul>
|
|
24
|
-
|
|
25
|
-
{{{ if editable }}}
|
|
26
|
-
<button class="btn btn-primary" data-action="restore">[[topic:diffs.restore]]</button>
|
|
27
|
-
{{{ end }}}
|
|
28
|
-
{{{ if deletable }}}
|
|
29
|
-
<button class="btn btn-danger" data-action="delete">[[topic:diffs.delete]]</button>
|
|
30
|
-
{{{ end }}}
|
|
31
|
-
{{{ if editable }}}
|
|
32
|
-
<p class="help-block">[[topic:diffs.restore-description]]</p>
|
|
33
|
-
{{{ end }}}
|
|
34
|
-
|
|
35
|
-
</div>
|
|
36
|
-
<!-- END -->
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
<div class="modal" tabindex="-1" role="dialog" aria-labelledby="upload-file" aria-hidden="true">
|
|
2
|
-
<div class="modal-dialog">
|
|
3
|
-
<div class="modal-content">
|
|
4
|
-
<div class="modal-header">
|
|
5
|
-
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
6
|
-
<h3>{title}</h3>
|
|
7
|
-
</div>
|
|
8
|
-
<div class="modal-body">
|
|
9
|
-
<form id="uploadForm" action="" method="post" enctype="multipart/form-data">
|
|
10
|
-
<div class="form-group">
|
|
11
|
-
<!-- IF description -->
|
|
12
|
-
<label for="fileInput">{description}</label>
|
|
13
|
-
<!-- ENDIF description -->
|
|
14
|
-
<input type="file" id="fileInput" name="files[]" <!-- IF accept -->accept="{accept}"<!-- ENDIF accept -->>
|
|
15
|
-
<!-- IF showHelp -->
|
|
16
|
-
<p class="help-block">
|
|
17
|
-
<!-- IF accept -->
|
|
18
|
-
[[global:allowed-file-types, {accept}]]
|
|
19
|
-
<!-- ENDIF accept -->
|
|
20
|
-
|
|
21
|
-
<!-- IF fileSize --><span id="file-size-block">([[uploads:maximum-file-size, {fileSize}]])</span><!-- ENDIF fileSize -->
|
|
22
|
-
</p>
|
|
23
|
-
<!-- ENDIF showHelp -->
|
|
24
|
-
</div>
|
|
25
|
-
<input type="hidden" id="params" name="params" />
|
|
26
|
-
</form>
|
|
27
|
-
|
|
28
|
-
<div id="upload-progress-box" class="progress progress-striped hide">
|
|
29
|
-
<div id="upload-progress-bar" class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="0" aria-valuemin="0">
|
|
30
|
-
<span class="sr-only"> [[success:success]]</span>
|
|
31
|
-
</div>
|
|
32
|
-
</div>
|
|
33
|
-
|
|
34
|
-
<div id="alert-status" class="alert alert-info hide"></div>
|
|
35
|
-
<div id="alert-success" class="alert alert-success hide"></div>
|
|
36
|
-
<div id="alert-error" class="alert alert-danger hide"></div>
|
|
37
|
-
</div>
|
|
38
|
-
<div class="modal-footer">
|
|
39
|
-
<button class="btn btn-default" data-dismiss="modal" aria-hidden="true">[[global:close]]</button>
|
|
40
|
-
<button id="fileUploadSubmitBtn" class="btn btn-primary">{button}</button>
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
|
-
</div>
|
|
44
|
-
</div>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<div id="upload-picture-from-url-modal" class="modal" tabindex="-1" role="dialog" aria-labelledby="upload-picture-url" aria-hidden="true">
|
|
2
|
-
<div class="modal-dialog">
|
|
3
|
-
<div class="modal-content">
|
|
4
|
-
<div class="modal-header">
|
|
5
|
-
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
6
|
-
<h3 id="upload-picture-url">[[user:upload_picture]]</h3>
|
|
7
|
-
</div>
|
|
8
|
-
<div class="modal-body">
|
|
9
|
-
<input id="uploadFromUrl" class="form-control" type="text"/>
|
|
10
|
-
</div>
|
|
11
|
-
<div class="modal-footer">
|
|
12
|
-
<button class="btn btn-default" data-dismiss="modal" aria-hidden="true">[[global:close]]</button>
|
|
13
|
-
<button class="btn btn-primary upload-btn">[[user:upload_picture]]</button>
|
|
14
|
-
</div>
|
|
15
|
-
</div>
|
|
16
|
-
</div>
|
|
17
|
-
</div>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<h3>[[global:upvoters]] <small>({upvoteCount})</small></h3>
|
|
2
|
-
{{{each upvoters}}}
|
|
3
|
-
<a href="{config.relative_path}/user/{upvoters.userslug}">{buildAvatar(upvoters, "sm", false)}</a>
|
|
4
|
-
{{{end}}}
|
|
5
|
-
<!-- IF showDownvotes -->
|
|
6
|
-
<h3>[[global:downvoters]] <small>({downvoteCount})</small></h3>
|
|
7
|
-
{{{each downvoters}}}
|
|
8
|
-
<a href="{config.relative_path}/user/{downvoters.userslug}">{buildAvatar(downvoters, "sm", false)}</a>
|
|
9
|
-
{{{end}}}
|
|
10
|
-
<!-- ENDIF showDownvotes -->
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<div id="move_thread_modal" class="modal" tabindex="-1" role="dialog" aria-labelledby="Move Topic" aria-hidden="true">
|
|
2
|
-
<div class="modal-dialog">
|
|
3
|
-
<div class="modal-content">
|
|
4
|
-
<div class="modal-header">
|
|
5
|
-
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
6
|
-
<h3>[[topic:move_topic]]</h3>
|
|
7
|
-
</div>
|
|
8
|
-
<div class="modal-body">
|
|
9
|
-
<!-- IMPORT partials/category-selector.tpl -->
|
|
10
|
-
</div>
|
|
11
|
-
<div class="modal-footer">
|
|
12
|
-
<button type="button" class="btn btn-default" data-dismiss="modal" id="move_thread_cancel">[[global:buttons.close]]</button>
|
|
13
|
-
<button type="button" class="btn btn-primary" id="move_thread_commit" disabled>[[topic:confirm_move]]</button>
|
|
14
|
-
</div>
|
|
15
|
-
</div>
|
|
16
|
-
</div>
|
|
17
|
-
</div>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
{{{each posts.user.selectedGroups}}}
|
|
2
|
-
<!-- IF posts.user.selectedGroups.slug -->
|
|
3
|
-
<a href="{config.relative_path}/groups/{posts.user.selectedGroups.slug}"><small class="label group-label inline-block" style="color:{posts.user.selectedGroups.textColor};background-color: {posts.user.selectedGroups.labelColor};"><!-- IF posts.user.selectedGroups.icon --><i class="fa {posts.user.selectedGroups.icon}"></i> <!-- ENDIF posts.user.selectedGroups.icon -->{posts.user.selectedGroups.userTitle}</small></a>
|
|
4
|
-
<!-- ENDIF posts.user.selectedGroups.slug -->
|
|
5
|
-
{{{end}}}
|
package/theme.less
DELETED