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
package/less/ip-blacklist.less
DELETED
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
.bottom-sheet {
|
|
2
|
-
@media (max-width: @screen-sm-max) {
|
|
3
|
-
.dropdown-menu {
|
|
4
|
-
display: block;
|
|
5
|
-
visibility: hidden;
|
|
6
|
-
|
|
7
|
-
position: fixed;
|
|
8
|
-
left: 0 !important;
|
|
9
|
-
right: 0 !important;
|
|
10
|
-
bottom: 0;
|
|
11
|
-
|
|
12
|
-
margin: 0 -1px -1px -1px;
|
|
13
|
-
padding: 0 5px;
|
|
14
|
-
max-height: 60%;
|
|
15
|
-
|
|
16
|
-
box-shadow: 0 2px 6px rgba(0,0,0,0.35);
|
|
17
|
-
overflow: auto;
|
|
18
|
-
-webkit-overflow-scrolling: touch;
|
|
19
|
-
transform: translate3d(0, 350px, 0);
|
|
20
|
-
transition: transform 0.3s, visibility 0s 0.3s;
|
|
21
|
-
z-index: @zindex-popover;
|
|
22
|
-
padding: 5px 0 10px;
|
|
23
|
-
|
|
24
|
-
border-bottom-left-radius: 0;
|
|
25
|
-
border-bottom-right-radius: 0;
|
|
26
|
-
|
|
27
|
-
> li {
|
|
28
|
-
> a {
|
|
29
|
-
padding: 10px 20px;
|
|
30
|
-
overflow: hidden;
|
|
31
|
-
text-overflow: ellipsis;
|
|
32
|
-
white-space: nowrap;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
&.divider {
|
|
36
|
-
padding: 0;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
&.active {
|
|
40
|
-
background-color: @btn-primary-bg;
|
|
41
|
-
color: @btn-primary-color;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
&.open {
|
|
47
|
-
.dropdown-menu {
|
|
48
|
-
transform: none;
|
|
49
|
-
visibility: visible;
|
|
50
|
-
transition-delay: 0s;
|
|
51
|
-
top: auto;
|
|
52
|
-
width: auto;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.dropdown-backdrop {
|
|
57
|
-
background-color: rgba(0, 0, 0, .3);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
#nprogress {
|
|
2
|
-
pointer-events: none;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
#nprogress .bar {
|
|
6
|
-
background: #29d;
|
|
7
|
-
|
|
8
|
-
position: fixed;
|
|
9
|
-
z-index: 1031;
|
|
10
|
-
top: 0;
|
|
11
|
-
left: 0;
|
|
12
|
-
|
|
13
|
-
width: 100%;
|
|
14
|
-
height: 2px;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
#nprogress .peg {
|
|
18
|
-
display: block;
|
|
19
|
-
position: absolute;
|
|
20
|
-
right: 0px;
|
|
21
|
-
width: 100px;
|
|
22
|
-
height: 100%;
|
|
23
|
-
box-shadow: 0 0 10px #29d, 0 0 5px #29d;
|
|
24
|
-
opacity: 1.0;
|
|
25
|
-
|
|
26
|
-
-webkit-transform: rotate(3deg) translate(0px, -4px);
|
|
27
|
-
-ms-transform: rotate(3deg) translate(0px, -4px);
|
|
28
|
-
transform: rotate(3deg) translate(0px, -4px);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
#nprogress .spinner {
|
|
32
|
-
display: block;
|
|
33
|
-
position: fixed;
|
|
34
|
-
z-index: 1031;
|
|
35
|
-
top: 15px;
|
|
36
|
-
right: 15px;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
@media (max-width: @screen-xs-max) {
|
|
40
|
-
#nprogress .spinner {
|
|
41
|
-
bottom: 15px;
|
|
42
|
-
right: 15px;
|
|
43
|
-
top: initial;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
#nprogress .spinner-icon {
|
|
49
|
-
width: 18px;
|
|
50
|
-
height: 18px;
|
|
51
|
-
box-sizing: border-box;
|
|
52
|
-
|
|
53
|
-
border: solid 2px transparent;
|
|
54
|
-
border-top-color: #29d;
|
|
55
|
-
border-left-color: #29d;
|
|
56
|
-
border-radius: 50%;
|
|
57
|
-
|
|
58
|
-
-webkit-animation: nprogress-spinner 400ms linear infinite;
|
|
59
|
-
animation: nprogress-spinner 400ms linear infinite;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.nprogress-custom-parent {
|
|
63
|
-
overflow: hidden;
|
|
64
|
-
position: relative;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.nprogress-custom-parent #nprogress .spinner,
|
|
68
|
-
.nprogress-custom-parent #nprogress .bar {
|
|
69
|
-
position: absolute;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
@-webkit-keyframes nprogress-spinner {
|
|
73
|
-
0% { -webkit-transform: rotate(0deg); }
|
|
74
|
-
100% { -webkit-transform: rotate(360deg); }
|
|
75
|
-
}
|
|
76
|
-
@keyframes nprogress-spinner {
|
|
77
|
-
0% { transform: rotate(0deg); }
|
|
78
|
-
100% { transform: rotate(360deg); }
|
|
79
|
-
}
|
|
80
|
-
|
package/less/notifications.less
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
.notifications-list {
|
|
2
|
-
margin-top: 1em;
|
|
3
|
-
padding: 0;
|
|
4
|
-
|
|
5
|
-
li {
|
|
6
|
-
clear: both;
|
|
7
|
-
list-style-type: none;
|
|
8
|
-
padding: 1em;
|
|
9
|
-
margin-bottom: 0.5em;
|
|
10
|
-
.zebra;
|
|
11
|
-
.pointer;
|
|
12
|
-
|
|
13
|
-
&:last-child {
|
|
14
|
-
margin-bottom: 0;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
&.unread {
|
|
18
|
-
background: #fefbed;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.timestamp {
|
|
22
|
-
font-size: 0.8em;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
a {
|
|
26
|
-
display: block;
|
|
27
|
-
.text-ellipsis;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
p {
|
|
31
|
-
margin: 0 0 0 30px;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.user-img {
|
|
35
|
-
.user-icon-style(24px, 1rem, 50%);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
}
|
package/less/post-queue.less
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Post queue page CSS
|
|
3
|
-
- Originally in ACP
|
|
4
|
-
- Now available in front-end for global mods as well
|
|
5
|
-
*/
|
|
6
|
-
.posts-list {
|
|
7
|
-
.topic-title {
|
|
8
|
-
word-break: break-word;
|
|
9
|
-
}
|
|
10
|
-
.post-content {
|
|
11
|
-
word-break: break-word;
|
|
12
|
-
}
|
|
13
|
-
.post-content-editable {
|
|
14
|
-
textarea {
|
|
15
|
-
width: 100%;
|
|
16
|
-
height: 300px;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|
package/less/rtl.less
DELETED
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
html[data-dir="rtl"] {
|
|
2
|
-
@import (less) "./bootstrap-flipped.css";
|
|
3
|
-
|
|
4
|
-
.home {
|
|
5
|
-
h4 {
|
|
6
|
-
text-align: right;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.container {
|
|
11
|
-
#main-nav {
|
|
12
|
-
float: right !important;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
#logged-in-menu, #logged-out-menu {
|
|
16
|
-
float: left !important;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
html[data-dir=rtl] .navbar .dropdown-menu {
|
|
21
|
-
left: 0;
|
|
22
|
-
right: auto;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.categories > li .card, .category > ul > li .card {
|
|
26
|
-
border-left: none;
|
|
27
|
-
border-right: 4px solid #ccc;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.categories > li .content .icon, .category > ul > li .content .avatar {
|
|
31
|
-
margin-left: 15px;
|
|
32
|
-
margin-right: 0px;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.categories .description, .categories .category-children {
|
|
36
|
-
margin-left: auto;
|
|
37
|
-
margin-right: 62px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.page-user .posts-list .posts-list-item .user-img {
|
|
41
|
-
left: 0;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.slideout-menu .menu-section-list a, .slideout-menu .menu-section-list button {
|
|
45
|
-
text-align: right;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
[component="chat/list"] {
|
|
49
|
-
.avatar-placeholder, .main-avatar {
|
|
50
|
-
right: 0;
|
|
51
|
-
left: auto;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.room-name, .teaser-content {
|
|
55
|
-
padding-right: 80px;
|
|
56
|
-
padding-left: 0;
|
|
57
|
-
text-align: right;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
[component="chat/composer"] {
|
|
63
|
-
[component="chat/message/remaining"] {
|
|
64
|
-
right: auto;
|
|
65
|
-
left: 5.25em;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
[data-action="send"] {
|
|
69
|
-
transform: scale(-1, 1);
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.chats-full [component="chat/header"] .dropdown .avatar, .chat-modal [component="chat/header"] .dropdown .avatar {
|
|
74
|
-
margin-right: 0;
|
|
75
|
-
margin-left: 0.5em;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.chats-list > li .teaser-content, .chats-list > li .room-name {
|
|
79
|
-
padding-left: 0;
|
|
80
|
-
padding-right: 80px;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.chats-list > li {
|
|
84
|
-
.avatar-placeholder, .main-avatar {
|
|
85
|
-
left: auto;
|
|
86
|
-
right: 0;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.members {
|
|
90
|
-
right: 53px;
|
|
91
|
-
left: auto;
|
|
92
|
-
padding-left: 0;
|
|
93
|
-
padding-right: 1rem;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.slideout-menu .chat-list li .teaser-content, .slideout-menu .chat-list li .room-name {
|
|
98
|
-
padding-right: 60px;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.posts-list .posts-list-item {
|
|
102
|
-
.post-body {
|
|
103
|
-
border-right: none;
|
|
104
|
-
border-left: 2px solid @brand-primary;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.post-info {
|
|
108
|
-
left: inherit;
|
|
109
|
-
right: 100%;
|
|
110
|
-
|
|
111
|
-
.post-author {
|
|
112
|
-
padding-left: 0;
|
|
113
|
-
padding-right: 25px;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.user-img {
|
|
118
|
-
margin-right: -14px;
|
|
119
|
-
margin-left: 0;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.content {
|
|
123
|
-
padding-right: 0;
|
|
124
|
-
padding-left: 10px;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.persona-usercard {
|
|
129
|
-
left: inherit;
|
|
130
|
-
right: 0;
|
|
131
|
-
}
|
|
132
|
-
}
|
package/less/search.less
DELETED
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
.search {
|
|
2
|
-
.user-img {
|
|
3
|
-
.user-icon-style(24px, 1.5, 50%);
|
|
4
|
-
}
|
|
5
|
-
.post-search-item {
|
|
6
|
-
.bootstrap-tagsinput {
|
|
7
|
-
display: block;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
#advanced-search {
|
|
12
|
-
.panel-heading {
|
|
13
|
-
cursor: pointer;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.search-result-title {
|
|
19
|
-
font-weight: 600;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.search-result-text {
|
|
23
|
-
max-height: 250px;
|
|
24
|
-
overflow: hidden;
|
|
25
|
-
position: relative;
|
|
26
|
-
|
|
27
|
-
h4, p {
|
|
28
|
-
overflow-y: hidden;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.topic-search {
|
|
33
|
-
position: fixed;
|
|
34
|
-
top: 60px;
|
|
35
|
-
right: 10px;
|
|
36
|
-
|
|
37
|
-
button {
|
|
38
|
-
padding: 4px 6px;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.quick-search-container {
|
|
43
|
-
.dropdown-menu;
|
|
44
|
-
display: block;
|
|
45
|
-
left: auto;
|
|
46
|
-
right: 0px;
|
|
47
|
-
.filter-category {
|
|
48
|
-
padding-left: 20px;
|
|
49
|
-
}
|
|
50
|
-
.quick-search-results {
|
|
51
|
-
max-width: 400px;
|
|
52
|
-
max-height: 500px;
|
|
53
|
-
overflow-x: hidden;
|
|
54
|
-
overflow-y: auto;
|
|
55
|
-
padding: 0px 0px;
|
|
56
|
-
li {
|
|
57
|
-
list-style: none;
|
|
58
|
-
a {
|
|
59
|
-
text-overflow: ellipsis;
|
|
60
|
-
overflow: hidden;
|
|
61
|
-
display: block;
|
|
62
|
-
padding: 3px 20px;
|
|
63
|
-
clear: both;
|
|
64
|
-
font-weight: 400;
|
|
65
|
-
line-height: 1.42857143;
|
|
66
|
-
white-space: nowrap;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
.quick-search-title {
|
|
70
|
-
font-weight: 600;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.snippet {
|
|
74
|
-
word-break: break-word;
|
|
75
|
-
white-space: normal;
|
|
76
|
-
font-size: initial;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
@media (max-width: @screen-xs-max) {
|
|
82
|
-
.quick-search-container {
|
|
83
|
-
left: 0px;
|
|
84
|
-
right: 0px;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.quick-search-results, .search-results {
|
|
89
|
-
.post-info {
|
|
90
|
-
font-size: 12px;
|
|
91
|
-
.fa-stack {
|
|
92
|
-
font-size: 10px;
|
|
93
|
-
border-radius: 50%;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
}
|
package/less/tags.less
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
.tags {
|
|
2
|
-
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.tag-container {
|
|
6
|
-
margin-right: 1em;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.tag-item {
|
|
10
|
-
color: lighten(@gray-light, 20%);
|
|
11
|
-
padding: .2em .4em .3em;
|
|
12
|
-
font-size: 85%;
|
|
13
|
-
text-transform: uppercase;
|
|
14
|
-
color: #999;
|
|
15
|
-
font-weight: 700;
|
|
16
|
-
white-space: nowrap;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.tag-topic-count {
|
|
20
|
-
color: lighten(@brand-primary, 20%);
|
|
21
|
-
padding: 0em 0.4em 0.1em;
|
|
22
|
-
font-size: 85%;
|
|
23
|
-
font-weight: 700;
|
|
24
|
-
white-space: nowrap;
|
|
25
|
-
border-left: none;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.tag-list {
|
|
29
|
-
display: inline-block;
|
|
30
|
-
.tag {
|
|
31
|
-
text-transform: uppercase;
|
|
32
|
-
font-size: 10px;
|
|
33
|
-
background: lighten(@gray-lighter, 2.5%);
|
|
34
|
-
padding: 5px;
|
|
35
|
-
white-space: nowrap;
|
|
36
|
-
}
|
|
37
|
-
}
|
package/less/topics_list.less
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
#new-topics-alert {
|
|
2
|
-
margin-bottom: 0px;
|
|
3
|
-
padding: 10px 16px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.topic-list-header {
|
|
7
|
-
position: sticky;
|
|
8
|
-
top: @navbar-height;
|
|
9
|
-
background-color: @body-bg;
|
|
10
|
-
z-index: @zindex-navbar;
|
|
11
|
-
padding-top: 10px;
|
|
12
|
-
padding-bottom: 10px;
|
|
13
|
-
margin-bottom: 10px;
|
|
14
|
-
border-top: 1px solid @post-border-color;
|
|
15
|
-
border-bottom: 1px solid @post-border-color;
|
|
16
|
-
}
|
package/less/users.less
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
.users {
|
|
2
|
-
|
|
3
|
-
&.admin {
|
|
4
|
-
#users-container {
|
|
5
|
-
padding: 0;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.users-box{
|
|
9
|
-
display: inline-block;
|
|
10
|
-
margin-top: 20px;
|
|
11
|
-
text-align: center;
|
|
12
|
-
vertical-align: top;
|
|
13
|
-
white-space: nowrap;
|
|
14
|
-
text-overflow: ellipsis;
|
|
15
|
-
overflow: hidden;
|
|
16
|
-
height: auto;
|
|
17
|
-
max-width: 125px;
|
|
18
|
-
|
|
19
|
-
img {
|
|
20
|
-
width:80px;
|
|
21
|
-
height:80px;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
a {
|
|
25
|
-
margin-bottom:5px;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.users-container {
|
|
32
|
-
padding: 0;
|
|
33
|
-
list-style-type: none;
|
|
34
|
-
|
|
35
|
-
li {
|
|
36
|
-
padding-bottom: 10px;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.users-box{
|
|
40
|
-
display: inline-block;
|
|
41
|
-
margin-top: 20px;
|
|
42
|
-
text-align: center;
|
|
43
|
-
vertical-align: top;
|
|
44
|
-
width: 104px;
|
|
45
|
-
|
|
46
|
-
a {
|
|
47
|
-
max-width: 94px;
|
|
48
|
-
text-overflow: ellipsis;
|
|
49
|
-
overflow: hidden;
|
|
50
|
-
white-space: nowrap;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.user-info {
|
|
55
|
-
>span {
|
|
56
|
-
max-width: 94px;
|
|
57
|
-
text-overflow: ellipsis;
|
|
58
|
-
overflow: hidden;
|
|
59
|
-
white-space: nowrap;
|
|
60
|
-
display: inline-block;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.user-img {
|
|
65
|
-
.user-icon-style(20px, 1rem, 50%);
|
|
66
|
-
vertical-align: middle;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.anon-user .avatar {
|
|
70
|
-
background: @gray-lighter;
|
|
71
|
-
color: white;
|
|
72
|
-
}
|
|
73
|
-
}
|
package/templates/alert.tpl
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<div id="{alert_id}" class="alert alert-dismissable alert-{type} clearfix" component="toaster/toast">
|
|
2
|
-
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
|
3
|
-
|
|
4
|
-
<!-- IF image -->
|
|
5
|
-
<img src="{image}">
|
|
6
|
-
<!-- ENDIF image -->
|
|
7
|
-
|
|
8
|
-
<!-- IF title -->
|
|
9
|
-
<strong>{title}</strong>
|
|
10
|
-
<!-- ENDIF title -->
|
|
11
|
-
|
|
12
|
-
<!-- IF message -->
|
|
13
|
-
<p>{message}</p>
|
|
14
|
-
<!-- ENDIF message -->
|
|
15
|
-
</div>
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<div class="panel panel-primary fork-thread-card">
|
|
2
|
-
<div class="panel-heading">
|
|
3
|
-
<h3 class="panel-title">[[topic:thread_tools.change_owner]]</h3>
|
|
4
|
-
</div>
|
|
5
|
-
<div class="panel-body">
|
|
6
|
-
<div>
|
|
7
|
-
<label for="username">[[user:username]]</label>
|
|
8
|
-
<input id="username" type="text" class="form-control"><br/>
|
|
9
|
-
</div>
|
|
10
|
-
<p>
|
|
11
|
-
[[topic:change_owner_instruction]]<br />
|
|
12
|
-
<strong><span id="pids"></span></strong>
|
|
13
|
-
</p>
|
|
14
|
-
</div>
|
|
15
|
-
<div class="panel-footer">
|
|
16
|
-
|
|
17
|
-
<div class="btn-group pull-right">
|
|
18
|
-
<button class="btn btn-link btn-xs" id="change_owner_cancel">[[global:buttons.close]]</button>
|
|
19
|
-
<button class="btn btn-primary btn-xs" id="change_owner_commit" disabled>[[topic:change-owner]]</button>
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<div class="panel panel-primary fork-thread-card">
|
|
2
|
-
<div class="panel-heading">
|
|
3
|
-
<h3 class="panel-title">[[topic:thread_tools.delete-posts]]</h3>
|
|
4
|
-
</div>
|
|
5
|
-
<div class="panel-body">
|
|
6
|
-
<p>
|
|
7
|
-
[[topic:delete_posts_instruction]]<br />
|
|
8
|
-
<strong><span id="pids"></span></strong>
|
|
9
|
-
</p>
|
|
10
|
-
</div>
|
|
11
|
-
<div class="panel-footer">
|
|
12
|
-
|
|
13
|
-
<div class="btn-group pull-right">
|
|
14
|
-
<button class="btn btn-link btn-xs" id="delete_posts_cancel">[[global:buttons.close]]</button>
|
|
15
|
-
<button class="btn btn-primary btn-xs" id="delete_posts_confirm" disabled>[[topic:delete]]</button>
|
|
16
|
-
<button class="btn btn-danger btn-xs" id="purge_posts_confirm" disabled>[[topic:purge]]</button>
|
|
17
|
-
</div>
|
|
18
|
-
</div>
|
|
19
|
-
</div>
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<div class="panel panel-primary fork-thread-card">
|
|
2
|
-
<div class="panel-heading">
|
|
3
|
-
<h3 class="panel-title">[[topic:fork_topic]]</h3>
|
|
4
|
-
</div>
|
|
5
|
-
<div class="panel-body">
|
|
6
|
-
<div class="form-group">
|
|
7
|
-
<label for="title">[[topic:title]]</label>
|
|
8
|
-
<input id="fork-title" type="text" class="form-control" placeholder="[[topic:enter-new-topic-title]]">
|
|
9
|
-
</div>
|
|
10
|
-
<p>
|
|
11
|
-
[[topic:fork_topic_instruction]]<br />
|
|
12
|
-
<strong><span id="fork-pids"></span></strong>
|
|
13
|
-
</p>
|
|
14
|
-
</div>
|
|
15
|
-
<div class="panel-footer">
|
|
16
|
-
|
|
17
|
-
<div class="btn-group pull-right">
|
|
18
|
-
<button class="btn btn-link btn-xs" id="fork_thread_cancel">[[global:buttons.close]]</button>
|
|
19
|
-
<button class="btn btn-primary btn-xs" id="fork_thread_commit" disabled>[[topic:fork_topic]] <i class="fa fa-arrow-circle-right"></i></button>
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
<div class="panel panel-primary merge-topic-card">
|
|
2
|
-
<div class="panel-heading">
|
|
3
|
-
<h3 class="panel-title">[[topic:thread_tools.merge_topics]]</h3>
|
|
4
|
-
</div>
|
|
5
|
-
<div class="panel-body">
|
|
6
|
-
<p>
|
|
7
|
-
[[topic:merge_topics_instruction]]
|
|
8
|
-
</p>
|
|
9
|
-
<p>
|
|
10
|
-
<div class="input-group">
|
|
11
|
-
<input class="form-control topic-search-input" type="text">
|
|
12
|
-
<span class="input-group-addon">
|
|
13
|
-
<i class="fa fa-search"></i>
|
|
14
|
-
</span>
|
|
15
|
-
</div>
|
|
16
|
-
</p>
|
|
17
|
-
<div style="position: relative;">
|
|
18
|
-
<div class="quick-search-container hidden">
|
|
19
|
-
<div class="text-center loading-indicator"><i class="fa fa-spinner fa-spin"></i></div>
|
|
20
|
-
<div class="quick-search-results-container"></div>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
<p><strong>[[topic:merge-topic-list-title]]</strong></p>
|
|
24
|
-
<ul class="topics-section">
|
|
25
|
-
{{{each topics}}}
|
|
26
|
-
<li><a href="{config.relative_path}/topic/{topics.tid}"><strong>{topics.title}</strong></a></li>
|
|
27
|
-
{{{end}}}
|
|
28
|
-
</ul>
|
|
29
|
-
<p>
|
|
30
|
-
<strong>[[topic:merge-options]]</strong>
|
|
31
|
-
</p>
|
|
32
|
-
<form>
|
|
33
|
-
<p>
|
|
34
|
-
<input class="merge-main-topic-radio" type="radio" name="merge-topic-option" checked="true"> [[topic:merge-select-main-topic]]
|
|
35
|
-
</p>
|
|
36
|
-
<p>
|
|
37
|
-
<select class="form-control merge-main-topic-select">
|
|
38
|
-
{{{each topics}}}
|
|
39
|
-
<option value="{topics.tid}">{topics.title}</option>
|
|
40
|
-
{{{end}}}
|
|
41
|
-
</select>
|
|
42
|
-
</p>
|
|
43
|
-
<p>
|
|
44
|
-
<input class="merge-new-title-radio" type="radio" name="merge-topic-option"> [[topic:merge-new-title-for-topic]]
|
|
45
|
-
</p>
|
|
46
|
-
<p>
|
|
47
|
-
<input class="merge-new-title-input form-control" type="text">
|
|
48
|
-
</p>
|
|
49
|
-
</form>
|
|
50
|
-
</div>
|
|
51
|
-
<div class="panel-footer">
|
|
52
|
-
|
|
53
|
-
<div class="btn-group pull-right">
|
|
54
|
-
<button class="btn btn-link btn-xs" id="merge_topics_cancel">[[global:buttons.close]]</button>
|
|
55
|
-
<button class="btn btn-primary btn-xs" id="merge_topics_confirm" disabled>[[topic:thread_tools.merge]]</button>
|
|
56
|
-
</div>
|
|
57
|
-
</div>
|
|
58
|
-
</div>
|