├── 1 ├── less ├── helpers.less ├── topics_list.less ├── bootstrap │ ├── mixins │ │ ├── center-block.less │ │ ├── text-emphasis.less │ │ ├── size.less │ │ ├── background-variant.less │ │ ├── opacity.less │ │ ├── text-overflow.less │ │ ├── tab-focus.less │ │ ├── resize.less │ │ ├── labels.less │ │ ├── progress-bar.less │ │ ├── nav-divider.less │ │ ├── reset-filter.less │ │ ├── alerts.less │ │ ├── nav-vertical-align.less │ │ ├── responsive-visibility.less │ │ ├── pagination.less │ │ ├── border-radius.less │ │ ├── panels.less │ │ ├── list-group.less │ │ ├── hide-text.less │ │ ├── clearfix.less │ │ ├── table-row.less │ │ ├── image.less │ │ └── buttons.less │ ├── .csslintrc │ ├── wells.less │ ├── breadcrumbs.less │ ├── responsive-embed.less │ ├── component-animations.less │ ├── close.less │ ├── thumbnails.less │ ├── utilities.less │ ├── media.less │ ├── pager.less │ ├── jumbotron.less │ ├── mixins.less │ ├── bootstrap.less │ ├── labels.less │ ├── badges.less │ ├── code.less │ ├── grid.less │ ├── alerts.less │ ├── progress-bars.less │ ├── pagination.less │ └── print.less ├── outgoing.less ├── modules │ ├── composer-default.less │ ├── cookie-consent.less │ ├── fab.less │ ├── usercard.less │ ├── bottom-sheet.less │ ├── nprogress.less │ └── alerts.less ├── footer.less ├── tags.less ├── notifications.less ├── flags.less ├── mixins.less ├── persona.less ├── noscript.less ├── users.less ├── search.less ├── register.less └── posts_list.less ├── templates ├── account │ ├── best.tpl │ ├── ignored.tpl │ ├── upvoted.tpl │ ├── watched.tpl │ ├── bookmarks.tpl │ ├── downvoted.tpl │ ├── posts.tpl │ ├── followers.tpl │ ├── following.tpl │ ├── groups.tpl │ ├── topics.tpl │ ├── sessions.tpl │ ├── edit │ │ ├── email.tpl │ │ ├── username.tpl │ │ └── password.tpl │ ├── blocks.tpl │ ├── categories.tpl │ ├── uploads.tpl │ └── consent.tpl ├── tos.tpl ├── partials │ ├── topic │ │ ├── necro-post.tpl │ │ ├── post-editor.tpl │ │ ├── post-menu.tpl │ │ ├── stats.tpl │ │ ├── tags.tpl │ │ ├── deleted-message.tpl │ │ ├── badge.tpl │ │ ├── browsing-users.tpl │ │ ├── sort.tpl │ │ ├── quickreply.tpl │ │ ├── reply-button.tpl │ │ ├── watch.tpl │ │ └── topic-menu-list.tpl │ ├── chats │ │ ├── user.tpl │ │ ├── messages.tpl │ │ ├── system-message.tpl │ │ ├── recent_room.tpl │ │ ├── dropdown.tpl │ │ ├── message.tpl │ │ └── message-window.tpl │ ├── cookie-consent.tpl │ ├── modals │ │ ├── rename_room.tpl │ │ ├── manage_room.tpl │ │ ├── manage_room_users.tpl │ │ ├── votes_modal.tpl │ │ ├── upload_picture_from_url_modal.tpl │ │ ├── post_history.tpl │ │ ├── flag_modal.tpl │ │ ├── upload_file_modal.tpl │ │ └── change_picture_modal.tpl │ ├── posts_list.tpl │ ├── acceptTos.tpl │ ├── categories │ │ ├── link.tpl │ │ ├── lastpost.tpl │ │ └── item.tpl │ ├── category │ │ ├── subcategory.tpl │ │ ├── tags.tpl │ │ ├── sort.tpl │ │ ├── watch.tpl │ │ └── tools.tpl │ ├── noscript │ │ └── warning.tpl │ ├── chats-menu.tpl │ ├── tags_list.tpl │ ├── thread_tools.tpl │ ├── users_list_menu.tpl │ ├── account │ │ ├── category-item.tpl │ │ └── header.tpl │ ├── delete_posts_modal.tpl │ ├── move_thread_modal.tpl │ ├── change_owner_modal.tpl │ ├── move_post_modal.tpl │ ├── fork_thread_modal.tpl │ ├── groups │ │ ├── list.tpl │ │ └── memberlist.tpl │ ├── buttons │ │ └── newTopic.tpl │ ├── breadcrumbs.tpl │ ├── post_bar.tpl │ ├── quick-search-results.tpl │ ├── posts_list_item.tpl │ ├── slideout-menu.tpl │ ├── notifications_list.tpl │ ├── users_list.tpl │ ├── category-selector.tpl │ ├── merge_topics_modal.tpl │ ├── category-filter.tpl │ └── paginator.tpl ├── modules │ ├── taskbar.tpl │ └── usercard.tpl ├── groups │ ├── members.tpl │ └── list.tpl ├── unsubscribe.tpl ├── alert.tpl ├── confirm.tpl ├── outgoing.tpl ├── chats.tpl ├── reset.tpl ├── tag.tpl ├── categories.tpl ├── tags.tpl ├── registerComplete.tpl ├── footer.tpl ├── admin │ └── plugins │ │ └── persona.tpl ├── users.tpl ├── header.tpl ├── reset_code.tpl ├── recent.tpl ├── flags │ └── list.tpl ├── category.tpl ├── top.tpl ├── popular.tpl ├── chat.tpl └── notifications.tpl ├── theme.less ├── languages ├── pl │ └── persona.json ├── de │ └── persona.json ├── en-US │ └── persona.json ├── fr │ └── persona.json ├── pt-PT │ └── persona.json ├── zh-CN │ └── persona.json ├── en-GB │ └── persona.json └── tr │ └── persona.json ├── screenshot.png ├── .npmignore ├── .gitignore ├── theme.json ├── public └── images │ ├── arrow.svg │ ├── users.svg │ ├── visits.svg │ ├── votes.svg │ ├── popular.svg │ ├── groups.svg │ ├── topics.svg │ ├── categories.svg │ ├── posts.svg │ ├── replies.svg │ ├── tags.svg │ └── recent.svg ├── yarn.lock ├── lib ├── admin.js └── modules │ └── quickreply.js ├── plugin.json ├── README.md └── package.json /1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /less/helpers.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/account/best.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/account/ignored.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/account/upvoted.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/account/watched.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/account/bookmarks.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/account/downvoted.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme.less: -------------------------------------------------------------------------------- 1 | @import "./less/bootstrap/bootstrap"; 2 | @import "./less/persona"; -------------------------------------------------------------------------------- /templates/tos.tpl: -------------------------------------------------------------------------------- 1 |

[[register:terms_of_use]]

2 |
3 | 4 | {termsOfUse} 5 | -------------------------------------------------------------------------------- /languages/pl/persona.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobile-menu-side": "Menu mobilne po prawej stronie" 3 | } 4 | -------------------------------------------------------------------------------- /less/topics_list.less: -------------------------------------------------------------------------------- 1 | #new-topics-alert { 2 | margin-bottom: 0px; 3 | padding: 10px 16px; 4 | } -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netdata/nodebb-theme-persona-netdata/master/screenshot.png -------------------------------------------------------------------------------- /languages/de/persona.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobile-menu-side": "Menüposition der mobilen Seiten umschalten" 3 | } -------------------------------------------------------------------------------- /languages/en-US/persona.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobile-menu-side": "Switch which side each mobile menu is on" 3 | } -------------------------------------------------------------------------------- /templates/partials/topic/necro-post.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/fr/persona.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobile-menu-side": "Changer la position du menu en version mobiles" 3 | } 4 | -------------------------------------------------------------------------------- /languages/pt-PT/persona.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobile-menu-side": "Alternar de que lado fica cada menu lateral em telemóvel" 3 | } -------------------------------------------------------------------------------- /languages/zh-CN/persona.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobile-menu-side": "移动端导航菜单切换到另一侧", 3 | "post-quick-reply": "快速回复" 4 | } 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.css 2 | !less/bootstrap-flipped.css 3 | npm-debug.log 4 | sftp-config.json 5 | *.sublime-project 6 | *.sublime-workspace 7 | -------------------------------------------------------------------------------- /templates/partials/chats/user.tpl: -------------------------------------------------------------------------------- 1 | {buildAvatar(rooms.users, "sm", true)} -------------------------------------------------------------------------------- /languages/en-GB/persona.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobile-menu-side": "Switch which side each mobile menu is on", 3 | "post-quick-reply": "Post quick reply" 4 | } -------------------------------------------------------------------------------- /languages/tr/persona.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobile-menu-side": "Mobil menünün bulunduğu tarafı değiştir", 3 | "post-quick-reply": "Hızlı Cevap Gönder" 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.css 2 | !less/bootstrap-flipped.css 3 | npm-debug.log 4 | sftp-config.json 5 | *.sublime-project 6 | *.sublime-workspace 7 | .idea 8 | .vscode 9 | node_modules/ -------------------------------------------------------------------------------- /templates/modules/taskbar.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover { 6 | color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /less/outgoing.less: -------------------------------------------------------------------------------- 1 | .outgoing { 2 | .btn-primary { 3 | max-width: 100%; 4 | overflow: hidden; 5 | text-overflow: ellipse; 6 | white-space: inherit; 7 | word-break: break-all; 8 | } 9 | } -------------------------------------------------------------------------------- /less/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover { 6 | background-color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /templates/partials/topic/post-editor.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/partials/cookie-consent.tpl: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /templates/partials/modals/rename_room.tpl: -------------------------------------------------------------------------------- 1 | 2 |

3 | [[modules:chat.rename-help]] 4 |

-------------------------------------------------------------------------------- /less/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /templates/partials/chats/messages.tpl: -------------------------------------------------------------------------------- 1 | {{{each messages}}} 2 | {{{ if !./system }}} 3 | 4 | {{{ else }}} 5 | 6 | {{{ end }}} 7 | {{{end}}} -------------------------------------------------------------------------------- /less/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /templates/groups/members.tpl: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 7 | 8 | 9 |
-------------------------------------------------------------------------------- /less/modules/composer-default.less: -------------------------------------------------------------------------------- 1 | .composer { 2 | .preview { 3 | overflow-y: auto; 4 | 5 | p { 6 | margin: 0 0 18px; 7 | } 8 | 9 | blockquote { 10 | font-size: 12px; 11 | 12 | p { 13 | margin-bottom: 0px; 14 | } 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /less/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /templates/unsubscribe.tpl: -------------------------------------------------------------------------------- 1 |
2 | [[global:alert.success]] 3 |

[[email:unsub.success, {payload.template}]]

4 |

5 | [[notifications:back_to_home, {config.siteTitle}]] 6 |

7 |
-------------------------------------------------------------------------------- /theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "nodebb-theme-persona-netdata", 3 | "name": "Persona for Netdata", 4 | "description": "Customized Persona theme for the Netdata community", 5 | "url": "https://github.com/netdata/nodebb-theme-persona-netdata", 6 | "screenshot": "screenshot.png" 7 | } -------------------------------------------------------------------------------- /less/modules/cookie-consent.less: -------------------------------------------------------------------------------- 1 | .cookie-consent { 2 | position: fixed; 3 | bottom: 0; 4 | left: 0; 5 | line-height: 3em; 6 | padding-left: 1rem; 7 | width: 100%; 8 | background: rgba(240,240,240,.8); 9 | 10 | a { 11 | font-weight: bold; 12 | } 13 | } -------------------------------------------------------------------------------- /less/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /templates/partials/posts_list.tpl: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /templates/partials/acceptTos.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |
{termsOfUse}
4 |
5 | 8 |
9 |
-------------------------------------------------------------------------------- /templates/partials/categories/link.tpl: -------------------------------------------------------------------------------- 1 | 2 | {../name} 3 | 4 | 5 | 11 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /templates/partials/category/subcategory.tpl: -------------------------------------------------------------------------------- 1 |
2 |

[[category:subcategories]]

3 | 4 | 9 |
-------------------------------------------------------------------------------- /templates/partials/topic/post-menu.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /templates/partials/chats/system-message.tpl: -------------------------------------------------------------------------------- 1 |
  • 2 | [[modules:chat.system.{messages.content}, {messages.fromUser.username}]] 3 |
  • -------------------------------------------------------------------------------- /public/images/arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /templates/partials/topic/stats.tpl: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/images/users.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /templates/partials/modals/manage_room.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 |

    4 |

    [[modules:chat.add-user-help]]

    5 | 6 |
    7 | 8 | 11 |
    -------------------------------------------------------------------------------- /templates/partials/noscript/warning.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/partials/modals/manage_room_users.tpl: -------------------------------------------------------------------------------- 1 | {{{each users}}} 2 |
  • 3 | 4 | {buildAvatar(users, "sm", true)} 5 | {../username} 6 |
  • 7 | {{{end}}} -------------------------------------------------------------------------------- /less/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /templates/partials/topic/tags.tpl: -------------------------------------------------------------------------------- 1 | {{{each tags}}} 2 | 3 | {tags.valueEscaped} 4 | {tags.score} 5 | 6 | {{{end}}} -------------------------------------------------------------------------------- /templates/alert.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {title} 10 | 11 | 12 | 13 |

    {message}

    14 | 15 |
    16 | -------------------------------------------------------------------------------- /less/footer.less: -------------------------------------------------------------------------------- 1 | .footer { 2 | text-align: center; 3 | -webkit-transition: opacity 200ms linear; 4 | -moz-transition: opacity 200ms linear; 5 | -ms-transition: opacity 200ms linear; 6 | -o-transition: opacity 200ms linear; 7 | transition: opacity 200ms linear; 8 | 9 | .copyright { 10 | padding-bottom: 10px; 11 | } 12 | 13 | &.ajaxifying { 14 | -moz-opacity: 0.00; 15 | opacity: 0.00; 16 | -ms-filter:~"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; 17 | } 18 | } -------------------------------------------------------------------------------- /templates/confirm.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | [[notifications:email-confirmed]] 4 |

    [[notifications:email-confirmed-message]]

    5 | 6 |
    7 | {error} 8 |

    [[notifications:email-confirm-error-message]]

    9 | 10 |

    11 | [[notifications:back_to_home, {config.siteTitle}]] 12 |

    13 |
    14 | -------------------------------------------------------------------------------- /less/tags.less: -------------------------------------------------------------------------------- 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 | } -------------------------------------------------------------------------------- /templates/partials/modals/votes_modal.tpl: -------------------------------------------------------------------------------- 1 |

    [[global:upvoters]] ({upvoteCount})

    2 | {{{each upvoters}}} 3 | {buildAvatar(upvoters, "sm", false)} 4 | {{{end}}} 5 | 6 |

    [[global:downvoters]] ({downvoteCount})

    7 | {{{each downvoters}}} 8 | {buildAvatar(downvoters, "sm", false)} 9 | {{{end}}} 10 | 11 | -------------------------------------------------------------------------------- /templates/partials/chats-menu.tpl: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /templates/partials/tags_list.tpl: -------------------------------------------------------------------------------- 1 | {{{each tags}}} 2 |

    3 | {tags.valueEscaped}{tags.score} 4 |

    5 | {{{end}}} -------------------------------------------------------------------------------- /public/images/visits.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | pulling@^2.0.0: 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/pulling/-/pulling-2.0.0.tgz#5793d3b0ff8511a07465fd95a32498e4c2790c5f" 8 | integrity sha512-FTbrWBDFPZBP75bbeB3+5gXBFO3SCp+LKcUS7wE9Nn3x/RZoIjYzgH5RXT1vSBuyW+5sdguXqBsQjQeRYIKn1A== 9 | 10 | striptags@^3.1.1: 11 | version "3.1.1" 12 | resolved "https://registry.yarnpkg.com/striptags/-/striptags-3.1.1.tgz#c8c3e7fdd6fb4bb3a32a3b752e5b5e3e38093ebd" 13 | -------------------------------------------------------------------------------- /templates/account/posts.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 |
    5 |

    {title}

    6 | 7 | 8 |
    {noItemsFoundKey}
    9 | 10 | 11 |
    12 | 13 | 14 | 15 | 16 | 17 |
    18 |
    19 |
    -------------------------------------------------------------------------------- /less/bootstrap/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false 19 | } 20 | -------------------------------------------------------------------------------- /templates/account/followers.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 |
    5 |

    [[pages:{template.name}, {username}]]

    6 | 7 |
      8 | 9 |
    10 | 11 | 12 |
    [[user:has_no_follower]]
    13 | 14 | 15 | 16 |
    17 |
    -------------------------------------------------------------------------------- /templates/account/following.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 |
    5 |

    [[pages:{template.name}, {username}]]

    6 | 7 |
      8 | 9 |
    10 | 11 | 12 |
    [[user:follows_no_one]]
    13 | 14 | 15 | 16 |
    17 |
    -------------------------------------------------------------------------------- /templates/partials/thread_tools.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 8 | 9 |
    10 | -------------------------------------------------------------------------------- /templates/account/groups.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 |
    5 |

    [[pages:{template.name}, {username}]]

    6 | 7 |
    8 |
    9 | 10 |
    [[groups:no_groups_found]]
    11 | 12 | 13 | 14 |
    15 |
    16 |
    17 |
    -------------------------------------------------------------------------------- /templates/partials/topic/deleted-message.tpl: -------------------------------------------------------------------------------- 1 |
    2 | [[topic:deleted_message]] 3 | 4 | 5 | 6 | {deleter.username} 7 | 8 | 9 | 10 | 11 |
    -------------------------------------------------------------------------------- /less/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | } 10 | &:first-child { 11 | > a, 12 | > span { 13 | .border-left-radius(@border-radius); 14 | } 15 | } 16 | &:last-child { 17 | > a, 18 | > span { 19 | .border-right-radius(@border-radius); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /templates/partials/category/tags.tpl: -------------------------------------------------------------------------------- 1 | 2 | {{{each tags}}} 3 | {topics.tags.value}{topics.tags.score} 4 | {{{end}}} 5 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /templates/partials/topic/badge.tpl: -------------------------------------------------------------------------------- 1 | {{{each posts.user.selectedGroups}}} 2 | 3 | {posts.user.selectedGroups.userTitle} 4 | 5 | {{{end}}} -------------------------------------------------------------------------------- /lib/admin.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | /* globals $, app */ 3 | 4 | define('admin/plugins/persona', ['settings'], function(Settings) { 5 | 6 | var ACP = {}; 7 | 8 | ACP.init = function() { 9 | Settings.load('persona', $('.persona-settings')); 10 | 11 | $('#save').on('click', function() { 12 | Settings.save('persona', $('.persona-settings'), function() { 13 | app.alert({ 14 | type: 'success', 15 | alert_id: 'persona-saved', 16 | title: 'Settings Saved', 17 | message: 'Persona settings saved' 18 | }); 19 | }); 20 | }); 21 | }; 22 | 23 | return ACP; 24 | }); -------------------------------------------------------------------------------- /less/notifications.less: -------------------------------------------------------------------------------- 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 | } -------------------------------------------------------------------------------- /public/images/votes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /templates/outgoing.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 5 |
    6 |

    7 | [[notifications:outgoing_link_message, {title}]] 8 |

    9 |

    10 | [[notifications:continue_to, {outgoing}]] 11 | [[notifications:return_to, {title}]] 12 |

    13 |
    14 |
    15 | 16 | 22 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /less/bootstrap/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a& { 9 | color: @color; 10 | 11 | .list-group-item-heading { 12 | color: inherit; 13 | } 14 | 15 | &:hover, 16 | &:focus { 17 | color: @color; 18 | background-color: darken(@background, 5%); 19 | } 20 | &.active, 21 | &.active:hover, 22 | &.active:focus { 23 | color: #fff; 24 | background-color: @color; 25 | border-color: @color; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /templates/partials/users_list_menu.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (will be removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /templates/chats.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 7 |
      8 | {{{each rooms}}} 9 | 10 | {{{end}}} 11 |
    12 |
    13 |
    14 | 15 |
    16 |
    -------------------------------------------------------------------------------- /public/images/popular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /less/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /less/bootstrap/responsive-embed.less: -------------------------------------------------------------------------------- 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 | } 36 | -------------------------------------------------------------------------------- /public/images/groups.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /less/modules/fab.less: -------------------------------------------------------------------------------- 1 | .fab { 2 | box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.156863), 0px 2px 10px 0px rgba(0, 0, 0, 0.117647); 3 | 4 | background-color: @brand-primary; 5 | border: none; 6 | border-radius: 50%; 7 | cursor: pointer; 8 | line-height: 55.5px; 9 | vertical-align: middle; 10 | height: 55.5px; 11 | width: 55.5px; 12 | } 13 | 14 | .btn-group.open .dropdown-toggle.fab { 15 | box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.156863), 0px 2px 10px 0px rgba(0, 0, 0, 0.117647); 16 | } 17 | 18 | .fab.btn-morph { 19 | padding: 0; 20 | 21 | &.heart { 22 | > span > span { 23 | background-color: #E91E63; 24 | } 25 | } 26 | 27 | &.plus { 28 | background-color: @material-success; 29 | > span > span { 30 | background-color: white; 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /templates/partials/account/category-item.tpl: -------------------------------------------------------------------------------- 1 |
  • 2 | 3 | 4 |
    5 |
    6 | 7 |
    8 | 9 |

    10 | 11 |

    12 |
    13 | 14 |
    15 | {../descriptionParsed} 16 |
    17 | 18 |
    19 |
    20 | 21 | 22 |
  • 23 | -------------------------------------------------------------------------------- /public/images/topics.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /templates/partials/delete_posts_modal.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |

    [[topic:thread_tools.delete-posts]]

    4 |
    5 |
    6 |

    7 | [[topic:delete_posts_instruction]]
    8 | 9 |

    10 |
    11 | 19 |
    -------------------------------------------------------------------------------- /public/images/categories.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /templates/partials/move_thread_modal.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /less/bootstrap/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | .transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | 21 | &.in { display: block; } 22 | tr&.in { display: table-row; } 23 | tbody&.in { display: table-row-group; } 24 | } 25 | 26 | .collapsing { 27 | position: relative; 28 | height: 0; 29 | overflow: hidden; 30 | .transition-property(~"height, visibility"); 31 | .transition-duration(.35s); 32 | .transition-timing-function(ease); 33 | } 34 | -------------------------------------------------------------------------------- /less/bootstrap/mixins/table-row.less: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | .table-row-variant(@state; @background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.@{state}, 10 | > th.@{state}, 11 | &.@{state} > td, 12 | &.@{state} > th { 13 | background-color: @background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.@{state}:hover, 21 | > th.@{state}:hover, 22 | &.@{state}:hover > td, 23 | &:hover > .@{state}, 24 | &.@{state}:hover > th { 25 | background-color: darken(@background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /templates/partials/change_owner_modal.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |

    [[topic:thread_tools.change_owner]]

    4 |
    5 |
    6 |
    7 | 8 |
    9 |
    10 |

    11 | [[topic:change_owner_instruction]]
    12 | 13 |

    14 |
    15 | 22 |
    23 | -------------------------------------------------------------------------------- /templates/partials/modals/upload_picture_from_url_modal.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/partials/categories/lastpost.tpl: -------------------------------------------------------------------------------- 1 |
    2 | {{{each ./posts}}} 3 | 4 |
    5 |

    6 | {buildAvatar(posts.user, "sm", true)} 7 | 10 |

    11 |
    12 | {../content} 13 |
    14 |
    15 | 16 | {{{end}}} 17 | 18 | 19 |
    20 |
    21 | [[category:no_new_posts]] 22 |
    23 |
    24 | 25 |
    26 | -------------------------------------------------------------------------------- /templates/partials/topic/browsing-users.tpl: -------------------------------------------------------------------------------- 1 |
    2 | {{{each browsingUsers}}} 3 | 12 | {{{end}}} 13 |
    -------------------------------------------------------------------------------- /templates/partials/move_post_modal.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |

    [[topic:thread_tools.move-posts]]

    4 |
    5 |
    6 |
    7 | 8 |
    9 |
    10 |

    11 | [[topic:move_posts_instruction]]
    12 | 13 |

    14 |
    15 | 22 |
    23 | -------------------------------------------------------------------------------- /templates/reset.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    5 | [[reset_password:enter_email]] 6 |
    7 | 8 |
    9 |
    10 | 11 | [[reset_password:password_reset_sent]] 12 |
    13 |
    14 | 15 | [[reset_password:invalid_email]] 16 |
    17 |
    18 | 19 | 20 |
    21 | 22 |
    23 |
    24 | -------------------------------------------------------------------------------- /templates/partials/chats/recent_room.tpl: -------------------------------------------------------------------------------- 1 |
  • 2 | 3 | 4 | [[modules:chat.no-users-in-room]] 5 | 6 | {rooms.roomName}{rooms.usernames} 7 | 8 | 9 |
    10 | {{{each rooms.users}}} 11 | 12 |
    13 | 14 |
    15 | 16 | {{{end}}} 17 | 18 | 25 |
  • -------------------------------------------------------------------------------- /templates/partials/fork_thread_modal.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |

    [[topic:fork_topic]]

    4 |
    5 |
    6 |
    7 | 8 | 9 |
    10 |

    11 | [[topic:fork_topic_instruction]]
    12 | 13 |

    14 |
    15 | 22 |
    -------------------------------------------------------------------------------- /templates/partials/topic/sort.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 5 | 10 |
    11 | -------------------------------------------------------------------------------- /less/bootstrap/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: (@font-size-base * 1.5); 9 | font-weight: @close-font-weight; 10 | line-height: 1; 11 | color: @close-color; 12 | text-shadow: @close-text-shadow; 13 | .opacity(.2); 14 | 15 | &:hover, 16 | &:focus { 17 | color: @close-color; 18 | text-decoration: none; 19 | cursor: pointer; 20 | .opacity(.5); 21 | } 22 | 23 | // Additional properties for button version 24 | // iOS requires the button element instead of an anchor tag. 25 | // If you want the anchor version, it requires `href="#"`. 26 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 27 | button& { 28 | padding: 0; 29 | cursor: pointer; 30 | background: transparent; 31 | border: 0; 32 | -webkit-appearance: none; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /templates/partials/modals/post_history.tpl: -------------------------------------------------------------------------------- 1 |

    2 | 3 | [[topic:diffs.description, {numDiffs}]] 4 | 5 | [[topic:diffs.no-revisions-description, {numDiffs}]] 6 | 7 |

    8 | 9 |
    10 | 20 | 21 |
    22 | 23 | 24 | 25 | {{{ if editable }}} 26 | 27 |

    [[topic:diffs.restore-description]]

    28 | {{{ end }}} 29 |
    30 | -------------------------------------------------------------------------------- /less/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- 1 | // 2 | // Thumbnails 3 | // -------------------------------------------------- 4 | 5 | 6 | // Mixin and adjust the regular image class 7 | .thumbnail { 8 | display: block; 9 | padding: @thumbnail-padding; 10 | margin-bottom: @line-height-computed; 11 | line-height: @line-height-base; 12 | background-color: @thumbnail-bg; 13 | border: 1px solid @thumbnail-border; 14 | border-radius: @thumbnail-border-radius; 15 | .transition(border .2s ease-in-out); 16 | 17 | > img, 18 | a > img { 19 | &:extend(.img-responsive); 20 | margin-left: auto; 21 | margin-right: auto; 22 | } 23 | 24 | // Add a hover state for linked versions only 25 | a&:hover, 26 | a&:focus, 27 | a&.active { 28 | border-color: @link-color; 29 | } 30 | 31 | // Image captions 32 | .caption { 33 | padding: @thumbnail-caption-padding; 34 | color: @thumbnail-caption-color; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /templates/tag.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |
    5 |
    6 | 7 | 8 | 9 | [[category:guest-login-post]] 10 | 11 |
    12 |
    13 | 14 | 15 | 16 | 17 |
    [[tags:no_tag_topics]]
    18 | 19 | 20 |
    21 | 22 | 23 | 24 | 25 | 26 |
    27 |
    28 | -------------------------------------------------------------------------------- /templates/categories.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | {{{each widgets.header}}} 4 | {{widgets.header.html}} 5 | {{{end}}} 6 |
    7 |
    8 |
    9 |

    [[pages:categories]]

    10 |
      11 | {{{each categories}}} 12 | 13 | {{{end}}} 14 |
    15 |
    16 |
    17 | {{{each widgets.sidebar}}} 18 | {{widgets.sidebar.html}} 19 | {{{end}}} 20 |
    21 |
    22 |
    23 | {{{each widgets.footer}}} 24 | {{widgets.footer.html}} 25 | {{{end}}} 26 |
    27 | -------------------------------------------------------------------------------- /templates/tags.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | {{{each widgets.header}}} 4 | {{widgets.header.html}} 5 | {{{end}}} 6 |
    7 |
    8 | 9 | 10 |
    11 |
    12 |
    13 | 14 | 15 |
    16 |
    17 |
    18 | 19 | 20 | 21 | 22 |
    [[tags:no_tags]]
    23 | 24 | 25 |
    26 |
    27 | 28 |
    29 |
    30 |
    31 | -------------------------------------------------------------------------------- /templates/partials/groups/list.tpl: -------------------------------------------------------------------------------- 1 | {{{each groups}}} 2 |
    3 |
    4 | 5 |

    {groups.displayName} {groups.memberCount}

    6 |
    7 |
    8 | 18 |
    19 |
    20 |
    21 | {{{end}}} -------------------------------------------------------------------------------- /less/flags.less: -------------------------------------------------------------------------------- 1 | .page-flags { 2 | [component="flags/list"] { 3 | td { 4 | max-width: 300px; 5 | text-overflow: ellipsis; 6 | overflow: hidden; 7 | white-space: nowrap; 8 | } 9 | 10 | [component="flags/list/description"] { 11 | font-style: italic; 12 | color: @gray-light; 13 | } 14 | } 15 | 16 | #flags-daily-wrapper + .panel-footer { 17 | .pointer; 18 | } 19 | 20 | [component="flag/notes"] { 21 | .media { 22 | padding: 1rem; 23 | } 24 | 25 | .media-right { 26 | visibility: hidden; 27 | 28 | i { 29 | padding: 1rem; 30 | } 31 | } 32 | 33 | &:hover { 34 | .media-right { 35 | visibility: visible; 36 | } 37 | } 38 | 39 | .editing { 40 | background-color: @state-info-bg; 41 | } 42 | } 43 | } -------------------------------------------------------------------------------- /public/images/posts.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /templates/partials/buttons/newTopic.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /less/bootstrap/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Floats 7 | // ------------------------- 8 | 9 | .clearfix { 10 | .clearfix(); 11 | } 12 | .center-block { 13 | .center-block(); 14 | } 15 | .pull-right { 16 | float: right !important; 17 | } 18 | .pull-left { 19 | float: left !important; 20 | } 21 | 22 | 23 | // Toggling content 24 | // ------------------------- 25 | 26 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 27 | .hide { 28 | display: none !important; 29 | } 30 | .show { 31 | display: block !important; 32 | } 33 | .invisible { 34 | visibility: hidden; 35 | } 36 | .text-hide { 37 | .text-hide(); 38 | } 39 | 40 | 41 | // Hide from screenreaders and browsers 42 | // 43 | // Credit: HTML5 Boilerplate 44 | 45 | .hidden { 46 | display: none !important; 47 | } 48 | 49 | 50 | // For Affix plugin 51 | // ------------------------- 52 | 53 | .affix { 54 | position: fixed; 55 | } 56 | -------------------------------------------------------------------------------- /templates/partials/breadcrumbs.tpl: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | -------------------------------------------------------------------------------- /templates/partials/category/sort.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 8 | 9 | 15 |
    16 | -------------------------------------------------------------------------------- /less/mixins.less: -------------------------------------------------------------------------------- 1 | .no-select { 2 | .user-select(none); 3 | } 4 | 5 | .pointer { 6 | cursor: pointer; 7 | *cursor: hand; 8 | } 9 | 10 | .inline-block { 11 | display: inline-block; 12 | *display: inline; 13 | zoom: 1; 14 | } 15 | 16 | .clear { 17 | clear: both; 18 | } 19 | 20 | .zebra { 21 | &:nth-child(even) { 22 | background: rgba(191,191,191,0.2); 23 | } 24 | 25 | &:nth-child(odd) { 26 | background: rgba(223,223,223,0.2); 27 | } 28 | } 29 | 30 | .opacity(@opacity: 1) { 31 | -moz-opacity: @opacity; 32 | opacity: @opacity; 33 | -ms-filter: ~`"progid:DXImageTransform.Microsoft.Alpha(opacity=(" + "@{opacity}" * 100 + "))"`; 34 | filter: ~`"alpha(opacity = (" + "@{opacity}" * 100 + "))"`; 35 | } 36 | 37 | .border-radius (@radius: 5px) { 38 | -webkit-border-radius: @radius; 39 | -moz-border-radius: @radius; 40 | -ms-border-radius: @radius; 41 | -o-border-radius: @radius; 42 | border-radius: @radius; 43 | } 44 | 45 | .text-ellipsis { 46 | overflow: hidden; 47 | text-overflow: ellipsis; 48 | white-space: nowrap; 49 | } -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "nodebb-theme-persona-netdata", 3 | "library": "library.js", 4 | "hooks": [ 5 | { 6 | "hook": "filter:teasers.get", 7 | "method": "getTeasers" 8 | }, 9 | { 10 | "hook": "filter:widgets.getAreas", 11 | "method": "defineWidgetAreas" 12 | }, 13 | { 14 | "hook": "filter:config.get", 15 | "method": "getThemeConfig" 16 | }, 17 | { 18 | "hook": "static:app.load", 19 | "method": "init" 20 | }, 21 | { 22 | "hook": "filter:admin.header.build", 23 | "method": "addAdminNavigation" 24 | }, 25 | { 26 | "hook": "filter:topic.build", 27 | "method": "addUserToTopic" 28 | } 29 | ], 30 | "scripts": [ 31 | "lib/persona.js", 32 | "lib/modules/nprogress.js", 33 | "lib/modules/autohidingnavbar.min.js", 34 | "lib/modules/quickreply.js" 35 | ], 36 | "modules": { 37 | "pulling.js": "node_modules/pulling/build/pulling-drawer.js" 38 | }, 39 | "acpScripts": [ 40 | "lib/admin.js" 41 | ], 42 | "languages": "languages", 43 | "staticDirs": { 44 | "images": "public/images" 45 | } 46 | } -------------------------------------------------------------------------------- /templates/partials/post_bar.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 |
    5 | 6 | 7 | 8 |
    9 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
      28 | 29 |
    30 |
    31 |
    32 |
    -------------------------------------------------------------------------------- /less/bootstrap/media.less: -------------------------------------------------------------------------------- 1 | .media { 2 | // Proper spacing between instances of .media 3 | margin-top: 15px; 4 | 5 | &:first-child { 6 | margin-top: 0; 7 | } 8 | } 9 | 10 | .media, 11 | .media-body { 12 | zoom: 1; 13 | overflow: hidden; 14 | } 15 | 16 | .media-body { 17 | width: 10000px; 18 | } 19 | 20 | .media-object { 21 | display: block; 22 | } 23 | 24 | .media-right, 25 | .media > .pull-right { 26 | padding-left: 10px; 27 | } 28 | 29 | .media-left, 30 | .media > .pull-left { 31 | padding-right: 10px; 32 | } 33 | 34 | .media-left, 35 | .media-right, 36 | .media-body { 37 | display: table-cell; 38 | vertical-align: top; 39 | } 40 | 41 | .media-middle { 42 | vertical-align: middle; 43 | } 44 | 45 | .media-bottom { 46 | vertical-align: bottom; 47 | } 48 | 49 | // Reset margins on headings for tighter default spacing 50 | .media-heading { 51 | margin-top: 0; 52 | margin-bottom: 5px; 53 | } 54 | 55 | // Media list variation 56 | // 57 | // Undo default ul/ol styles 58 | .media-list { 59 | padding-left: 0; 60 | list-style: none; 61 | } 62 | -------------------------------------------------------------------------------- /less/persona.less: -------------------------------------------------------------------------------- 1 | @import "style"; 2 | 3 | @import "topic"; 4 | @import "category"; 5 | @import "tags"; 6 | @import "noscript"; 7 | @import "categories"; 8 | @import "header"; 9 | @import "account"; 10 | @import "groups"; 11 | @import "chats"; 12 | @import "notifications"; 13 | @import "search"; 14 | @import "topics_list"; 15 | @import "users"; 16 | @import "outgoing"; 17 | @import "footer"; 18 | @import "posts_list"; 19 | @import "register"; 20 | @import "flags"; 21 | 22 | @import "mobile"; 23 | 24 | @import "helpers"; 25 | @import "keyframes"; 26 | @import "rtl"; 27 | 28 | @import "modules/nprogress"; 29 | @import "modules/usercard"; 30 | @import "modules/taskbar"; 31 | @import "modules/alerts"; 32 | @import "modules/fab"; 33 | @import "modules/morph"; 34 | @import "modules/composer-default"; 35 | @import "modules/cookie-consent"; 36 | @import "modules/bottom-sheet"; 37 | 38 | 39 | @material-primary: #00AB44; 40 | @material-success: #4CAF50; 41 | @material-info: #717484; 42 | @material-warning: #ff6d00; 43 | @material-danger: #F44336; -------------------------------------------------------------------------------- /less/bootstrap/pager.less: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | padding-left: 0; 8 | margin: @line-height-computed 0; 9 | list-style: none; 10 | text-align: center; 11 | &:extend(.clearfix all); 12 | li { 13 | display: inline; 14 | > a, 15 | > span { 16 | display: inline-block; 17 | padding: 5px 14px; 18 | background-color: @pager-bg; 19 | border: 1px solid @pager-border; 20 | border-radius: @pager-border-radius; 21 | } 22 | 23 | > a:hover, 24 | > a:focus { 25 | text-decoration: none; 26 | background-color: @pager-hover-bg; 27 | } 28 | } 29 | 30 | .next { 31 | > a, 32 | > span { 33 | float: right; 34 | } 35 | } 36 | 37 | .previous { 38 | > a, 39 | > span { 40 | float: left; 41 | } 42 | } 43 | 44 | .disabled { 45 | > a, 46 | > a:hover, 47 | > a:focus, 48 | > span { 49 | color: @pager-disabled-color; 50 | background-color: @pager-bg; 51 | cursor: @cursor-disabled; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /templates/partials/topic/quickreply.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 11 |
    12 | 13 | 14 |
    15 | 16 |
    17 | 18 |
    19 |
    20 | 21 | -------------------------------------------------------------------------------- /templates/account/topics.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 |
    5 |

    {title}

    6 | 7 |
    8 |
    9 | 10 | 15 |
    16 |
    17 | 18 | 19 | 20 |
    {noItemsFoundKey}
    21 | 22 | 23 |
    24 | 25 | 26 | 27 | 28 |
    29 |
    30 |
    31 | -------------------------------------------------------------------------------- /templates/partials/chats/dropdown.tpl: -------------------------------------------------------------------------------- 1 | 2 | {{{each rooms}}} 3 |
  • 4 | 5 | 6 | [[modules:chat.no-users-in-room]] 7 | 8 | {rooms.roomName}{rooms.usernames} 9 | 10 | 11 |
    12 | {{{each rooms.users}}} 13 | 14 |
    15 | 16 |
    17 | 18 | {{{end}}} 19 | 20 | 27 | 28 | {rooms.teaser.content} 29 | 30 |
  • 31 | {{{end}}} 32 | 33 |
  • [[modules:chat.no_active]]
  • 34 | -------------------------------------------------------------------------------- /templates/partials/quick-search-results.tpl: -------------------------------------------------------------------------------- 1 | 22 | 23 |
    24 | 25 | [[search:see-more-results, {matchCount}]] 26 | 27 |
    28 | 29 | {{{if !posts.length}}} 30 |
    [[search:no-matches]] 31 | {{{end}}} -------------------------------------------------------------------------------- /templates/partials/posts_list_item.tpl: -------------------------------------------------------------------------------- 1 |
  • 2 |
    3 | 4 | RE: {../topic.title} 5 | 6 | 7 |
    8 | {../content} 9 |
    10 | 11 | [[global:posted_in, {../category.name}]] 12 | 13 | 21 |
    22 |
  • -------------------------------------------------------------------------------- /less/bootstrap/mixins/image.less: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | .img-responsive(@display: block) { 10 | display: @display; 11 | max-width: 100%; // Part 1: Set a maximum relative to the parent 12 | height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching 13 | } 14 | 15 | 16 | // Retina image 17 | // 18 | // Short retina mixin for setting background-image and -size. Note that the 19 | // spelling of `min--moz-device-pixel-ratio` is intentional. 20 | .img-retina(@file-1x; @file-2x; @width-1x; @height-1x) { 21 | background-image: url("@{file-1x}"); 22 | 23 | @media 24 | only screen and (-webkit-min-device-pixel-ratio: 2), 25 | only screen and ( min--moz-device-pixel-ratio: 2), 26 | only screen and ( -o-min-device-pixel-ratio: 2/1), 27 | only screen and ( min-device-pixel-ratio: 2), 28 | only screen and ( min-resolution: 192dpi), 29 | only screen and ( min-resolution: 2dppx) { 30 | background-image: url("@{file-2x}"); 31 | background-size: @width-1x @height-1x; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /templates/partials/slideout-menu.tpl: -------------------------------------------------------------------------------- 1 | 7 | 8 | 12 | 13 | 14 | 18 | 19 | 27 | -------------------------------------------------------------------------------- /less/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- 1 | // 2 | // Jumbotron 3 | // -------------------------------------------------- 4 | 5 | 6 | .jumbotron { 7 | padding: @jumbotron-padding (@jumbotron-padding / 2); 8 | margin-bottom: @jumbotron-padding; 9 | color: @jumbotron-color; 10 | background-color: @jumbotron-bg; 11 | 12 | h1, 13 | .h1 { 14 | color: @jumbotron-heading-color; 15 | } 16 | 17 | p { 18 | margin-bottom: (@jumbotron-padding / 2); 19 | font-size: @jumbotron-font-size; 20 | font-weight: 200; 21 | } 22 | 23 | > hr { 24 | border-top-color: darken(@jumbotron-bg, 10%); 25 | } 26 | 27 | .container &, 28 | .container-fluid & { 29 | border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container 30 | } 31 | 32 | .container { 33 | max-width: 100%; 34 | } 35 | 36 | @media screen and (min-width: @screen-sm-min) { 37 | padding: (@jumbotron-padding * 1.6) 0; 38 | 39 | .container &, 40 | .container-fluid & { 41 | padding-left: (@jumbotron-padding * 2); 42 | padding-right: (@jumbotron-padding * 2); 43 | } 44 | 45 | h1, 46 | .h1 { 47 | font-size: (@font-size-base * 4.5); 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /templates/account/sessions.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/account/edit/email.tpl: -------------------------------------------------------------------------------- 1 | 31 | -------------------------------------------------------------------------------- /less/bootstrap/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------------------------------- 3 | 4 | // Utilities 5 | @import "mixins/hide-text.less"; 6 | @import "mixins/opacity.less"; 7 | @import "mixins/image.less"; 8 | @import "mixins/labels.less"; 9 | @import "mixins/reset-filter.less"; 10 | @import "mixins/resize.less"; 11 | @import "mixins/responsive-visibility.less"; 12 | @import "mixins/size.less"; 13 | @import "mixins/tab-focus.less"; 14 | @import "mixins/text-emphasis.less"; 15 | @import "mixins/text-overflow.less"; 16 | @import "mixins/vendor-prefixes.less"; 17 | 18 | // Components 19 | @import "mixins/alerts.less"; 20 | @import "mixins/buttons.less"; 21 | @import "mixins/panels.less"; 22 | @import "mixins/pagination.less"; 23 | @import "mixins/list-group.less"; 24 | @import "mixins/nav-divider.less"; 25 | @import "mixins/forms.less"; 26 | @import "mixins/progress-bar.less"; 27 | @import "mixins/table-row.less"; 28 | 29 | // Skins 30 | @import "mixins/background-variant.less"; 31 | @import "mixins/border-radius.less"; 32 | @import "mixins/gradients.less"; 33 | 34 | // Layout 35 | @import "mixins/clearfix.less"; 36 | @import "mixins/center-block.less"; 37 | @import "mixins/nav-vertical-align.less"; 38 | @import "mixins/grid-framework.less"; 39 | @import "mixins/grid.less"; 40 | -------------------------------------------------------------------------------- /templates/account/edit/username.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Persona theme for NodeBB 2 | ==================== 3 | 4 | Note: This fork is for Netdata's community. 5 | 6 | Before installing this theme on Netdata's community, make sure to test (and develop) locally. 7 | 8 | Install mongodb, using your system's preferred method. 9 | Install nodebb (i.e. https://docs.nodebb.org/installing/os/arch/) 10 | Copy-paste the entire nodebb-theme-persona-netdata in nodebb/node_modules 11 | Start nodebb with 12 | ``` 13 | cd nodebb 14 | ./nodebb start 15 | ``` 16 | Go to localhost:4567 17 | Login as the administrator user you created 18 | Go to themes 19 | Activate Persona for Netdata 20 | Change categories to match community settings 21 | Change footer to match community settings 22 | Change logos to match community settings 23 | 24 | --- 25 | 26 | Persona is the new default theme for NodeBB as of v0.7.1 27 | 28 | ## Addons 29 | 30 | [Recent Cards](https://github.com/psychobunny/nodebb-plugin-recent-cards) 31 | 32 | ## Screenshots 33 | 34 | ![](https://d2gn4xht817m0g.cloudfront.net/p/product_screenshots/images/original/000/570/286/570286-db378dfd28256a8fabacc9129b3638dc678ac393.png?1439315393) 35 | 36 | ![](https://d2gn4xht817m0g.cloudfront.net/p/product_screenshots/images/original/000/570/287/570287-5875c63ce086d361b76d94e5bc7cc88a5fd34b8b.png?1439315419) 37 | -------------------------------------------------------------------------------- /less/modules/usercard.less: -------------------------------------------------------------------------------- 1 | .persona-usercard { 2 | position: absolute; 3 | background: #333; 4 | top: -50%; 5 | left: 0px; 6 | box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25), 0px 2px 10px 0px rgba(0, 0, 0, 0.25); 7 | height: 150px; 8 | width: 450px; 9 | z-index: 1; 10 | display: block; 11 | 12 | a, a:hover, a:visited, a:active { 13 | text-decoration: none; 14 | color: white; 15 | } 16 | 17 | .usercard-picture { 18 | width: 150px; 19 | height: 150px; 20 | float: left; 21 | background-size: cover; 22 | background-repeat: no-repeat; 23 | font-size: 75px; 24 | line-height: 140px; 25 | text-align: center; 26 | } 27 | 28 | .usercard-body { 29 | padding: 5px 15px; 30 | float: left; 31 | 32 | height: 150px; 33 | width: 300px; 34 | color: white; 35 | } 36 | 37 | .usercard-name { 38 | font-size: 28px; 39 | } 40 | 41 | .usercard-username { 42 | text-transform: uppercase; 43 | font-size: 13px; 44 | } 45 | 46 | .usercard-info { 47 | text-align: center; 48 | font-size: 30px; 49 | font-weight: 300; 50 | 51 | small { 52 | text-transform: uppercase; 53 | font-size: 10px; 54 | display: block; 55 | margin-top: 15px; 56 | font-weight: 400; 57 | } 58 | } 59 | 60 | .fab.btn-morph { 61 | top: 75px; 62 | right: 15px; 63 | position: absolute; 64 | } 65 | } -------------------------------------------------------------------------------- /less/bootstrap/mixins/buttons.less: -------------------------------------------------------------------------------- 1 | // Button variants 2 | // 3 | // Easily pump out default styles, as well as :hover, :focus, :active, 4 | // and disabled options for all buttons 5 | 6 | .button-variant(@color; @background; @border) { 7 | color: @color; 8 | background-color: @background; 9 | border-color: @border; 10 | 11 | &:hover, 12 | &:focus, 13 | &.focus, 14 | &:active, 15 | &.active, 16 | .open > .dropdown-toggle& { 17 | color: @color; 18 | background-color: darken(@background, 10%); 19 | border-color: darken(@border, 12%); 20 | } 21 | &:active, 22 | &.active, 23 | .open > .dropdown-toggle& { 24 | background-image: none; 25 | } 26 | &.disabled, 27 | &[disabled], 28 | fieldset[disabled] & { 29 | &, 30 | &:hover, 31 | &:focus, 32 | &.focus, 33 | &:active, 34 | &.active { 35 | background-color: @background; 36 | border-color: @border; 37 | } 38 | } 39 | 40 | .badge { 41 | color: @background; 42 | background-color: @color; 43 | } 44 | } 45 | 46 | // Button sizes 47 | .button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { 48 | padding: @padding-vertical @padding-horizontal; 49 | font-size: @font-size; 50 | line-height: @line-height; 51 | border-radius: @border-radius; 52 | } 53 | -------------------------------------------------------------------------------- /less/noscript.less: -------------------------------------------------------------------------------- 1 | @import "mixins"; 2 | 3 | noscript { 4 | .default { 5 | list-style-type: none; 6 | padding: 1em; 7 | margin-bottom: 1em; 8 | .zebra; 9 | } 10 | 11 | .categories { 12 | li { 13 | .default; 14 | 15 | .icon { 16 | float: left; 17 | width: auto; 18 | height: auto; 19 | padding: 0; 20 | margin: 0; 21 | margin-right: 1em; 22 | } 23 | 24 | a { 25 | font-size: 20px; 26 | } 27 | } 28 | } 29 | 30 | .topics { 31 | li { 32 | .default; 33 | } 34 | 35 | .timestamp { 36 | float: right; 37 | color: #999; 38 | font-style: italic; 39 | font-size: 12px; 40 | } 41 | 42 | .teaser { 43 | margin-left: 16px; 44 | margin-top: 8px; 45 | 46 | img { 47 | float: left; 48 | width: 64px; 49 | margin-right: 1em; 50 | } 51 | 52 | p { 53 | color: #666; 54 | font-size: 13px; 55 | text-overflow: ellipsis; 56 | overflow: hidden; 57 | white-space: nowrap; 58 | margin-left: 64px; 59 | padding-top: 10px; 60 | } 61 | } 62 | } 63 | 64 | .posts { 65 | li { 66 | .default; 67 | 68 | .profile { 69 | text-align: center; 70 | 71 | img { 72 | width: 64px; 73 | } 74 | 75 | span { 76 | font-weight: bold; 77 | display: inline-block; 78 | margin-top: 1em; 79 | } 80 | } 81 | } 82 | } 83 | } -------------------------------------------------------------------------------- /less/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- 1 | // Core variables and mixins 2 | @import "variables.less"; 3 | @import "mixins.less"; 4 | 5 | // Reset and dependencies 6 | @import "normalize.less"; 7 | @import "print.less"; 8 | @import "glyphicons.less"; 9 | 10 | // Core CSS 11 | @import "scaffolding.less"; 12 | @import "type.less"; 13 | @import "code.less"; 14 | @import "grid.less"; 15 | @import "tables.less"; 16 | @import "forms.less"; 17 | @import "buttons.less"; 18 | 19 | // Components 20 | @import "component-animations.less"; 21 | @import "dropdowns.less"; 22 | @import "button-groups.less"; 23 | @import "input-groups.less"; 24 | @import "navs.less"; 25 | @import "navbar.less"; 26 | @import "breadcrumbs.less"; 27 | @import "pagination.less"; 28 | @import "pager.less"; 29 | @import "labels.less"; 30 | @import "badges.less"; 31 | @import "jumbotron.less"; 32 | @import "thumbnails.less"; 33 | @import "alerts.less"; 34 | @import "progress-bars.less"; 35 | @import "media.less"; 36 | @import "list-group.less"; 37 | @import "panels.less"; 38 | @import "responsive-embed.less"; 39 | @import "wells.less"; 40 | @import "close.less"; 41 | 42 | // Components w/ JavaScript 43 | @import "modals.less"; 44 | @import "tooltip.less"; 45 | @import "popovers.less"; 46 | @import "carousel.less"; 47 | 48 | // Utility classes 49 | @import "utilities.less"; 50 | @import "responsive-utilities.less"; 51 | -------------------------------------------------------------------------------- /templates/registerComplete.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |
    5 |

    6 | [[register:interstitial.intro]] 7 |

    8 | 9 | 10 |
    11 |

    12 | [[register:interstitial.errors-found]] 13 |

    14 |
      15 | {{{each errors}}} 16 |
    • @value
    • 17 | {{{end}}} 18 |
    19 |
    20 | 21 |
    22 |
    23 | 24 |
    25 | {{{each sections}}} 26 |
    27 |
    28 |
    29 |
    30 | @value 31 |
    32 |
    33 |
    34 |
    35 | {{{end}}} 36 | 37 |
    38 |
    39 | 40 |
    41 |
    42 |
    43 |
    44 |

    45 | 46 |

    47 |
    -------------------------------------------------------------------------------- /less/bootstrap/labels.less: -------------------------------------------------------------------------------- 1 | // 2 | // Labels 3 | // -------------------------------------------------- 4 | 5 | .label { 6 | display: inline; 7 | padding: .2em .6em .3em; 8 | font-size: 75%; 9 | font-weight: bold; 10 | line-height: 1; 11 | color: @label-color; 12 | text-align: center; 13 | white-space: nowrap; 14 | vertical-align: baseline; 15 | border-radius: .25em; 16 | 17 | // Add hover effects, but only for links 18 | a& { 19 | &:hover, 20 | &:focus { 21 | color: @label-link-hover-color; 22 | text-decoration: none; 23 | cursor: pointer; 24 | } 25 | } 26 | 27 | // Empty labels collapse automatically (not available in IE8) 28 | &:empty { 29 | display: none; 30 | } 31 | 32 | // Quick fix for labels in buttons 33 | .btn & { 34 | position: relative; 35 | top: -1px; 36 | } 37 | } 38 | 39 | // Colors 40 | // Contextual variations (linked labels get darker on :hover) 41 | 42 | .label-default { 43 | .label-variant(@label-default-bg); 44 | } 45 | 46 | .label-primary { 47 | .label-variant(@label-primary-bg); 48 | } 49 | 50 | .label-success { 51 | .label-variant(@label-success-bg); 52 | } 53 | 54 | .label-info { 55 | .label-variant(@label-info-bg); 56 | } 57 | 58 | .label-warning { 59 | .label-variant(@label-warning-bg); 60 | } 61 | 62 | .label-danger { 63 | .label-variant(@label-danger-bg); 64 | } 65 | -------------------------------------------------------------------------------- /templates/account/blocks.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/partials/notifications_list.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 |
  • [[notifications:no_notifs]]
  • 4 | 5 | 6 | {{{each notifications}}} 7 |
  • data-pid="{notifications.pid}" data-tid="{notifications.tid}"> 8 | 9 | 10 | 11 | 12 | 13 |
    {notifications.user.icon:text}
    14 | 15 | 16 |
    17 | 18 | {notifications.timeago} 19 | {notifications.bodyShort} 20 | 21 |
    22 |
  • 23 | {{{end}}} 24 | -------------------------------------------------------------------------------- /less/users.less: -------------------------------------------------------------------------------- 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 | width: 80px; 73 | height: 80px; 74 | line-height: 80px; 75 | } 76 | } -------------------------------------------------------------------------------- /templates/footer.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 11 | 12 |
    13 |
    14 | 15 |

    [[global:reconnecting-message, {config.siteTitle}]]

    16 |
    17 |
    18 | 19 | 20 | 21 | 22 | 23 | {{{each scripts}}} 24 | 25 | {{{end}}} 26 | 27 | 36 | 37 |
    38 | 39 |
    40 | 41 | 42 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nodebb-theme-persona-netdata", 3 | "version": "1.0.19", 4 | "upstream-version": "10.1.67", 5 | "nbbpm": { 6 | "compatibility": "^1.14.0" 7 | }, 8 | "description": "Customized NodeBB Persona theme for Netdata's Community", 9 | "main": "theme.less", 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/netdata/nodebb-theme-persona-netdata" 13 | }, 14 | "keywords": [ 15 | "nodebb", 16 | "theme", 17 | "forum", 18 | "bootstrap", 19 | "responsive" 20 | ], 21 | "contributors": [ 22 | { 23 | "name": "Andrew Rodrigues", 24 | "email": "andrew@designcreateplay.com", 25 | "url": "https://github.com/psychobunny" 26 | }, 27 | { 28 | "name": "Julian Lam", 29 | "email": "julian@designcreateplay.com", 30 | "url": "https://github.com/julianlam" 31 | }, 32 | { 33 | "name": "Barış Soner Uşaklı", 34 | "email": "baris@designcreateplay.com", 35 | "url": "https://github.com/barisusakli" 36 | }, 37 | { 38 | "name": "Zack Shoylev", 39 | "email": "zack@netdata.cloud", 40 | "url": "https://github.com/zack-shoylev" 41 | } 42 | ], 43 | "license": "BSD-2-Clause", 44 | "bugs": { 45 | "url": "https://github.com/netdata/nodebb-theme-persona-netdata/issues" 46 | }, 47 | "dependencies": { 48 | "pulling": "^2.0.0", 49 | "striptags": "^3.1.1" 50 | } 51 | } -------------------------------------------------------------------------------- /templates/admin/plugins/persona.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    Theme Settings
    3 |
    4 |
    5 |
    6 | 10 |
    11 |
    12 | 16 |
    17 |
    18 | 22 |
    23 |
    24 |
    25 |
    26 | 27 | -------------------------------------------------------------------------------- /templates/account/categories.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 |
    5 |

    {title}

    6 | 19 |
    20 |
      21 | {{{each categories}}} 22 | 23 | {{{end}}} 24 |
    25 |
    26 |
    27 |
    28 | -------------------------------------------------------------------------------- /templates/partials/modals/flag_modal.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /less/modules/bottom-sheet.less: -------------------------------------------------------------------------------- 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; 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: 995; 22 | padding: 5px 0 10px; 23 | 24 | li { 25 | a { 26 | padding: 10px 20px; 27 | overflow: hidden; 28 | text-overflow: ellipsis; 29 | white-space: nowrap; 30 | } 31 | 32 | &.divider { 33 | padding: 0; 34 | } 35 | 36 | &.active { 37 | background-color: @btn-primary-bg; 38 | color: @btn-primary-color; 39 | } 40 | } 41 | } 42 | 43 | &.open { 44 | .dropdown-menu { 45 | transform: none; 46 | visibility: visible; 47 | transition-delay: 0s; 48 | top: auto; 49 | } 50 | } 51 | 52 | .dropdown-backdrop { 53 | background-color: rgba(0, 0, 0, .3); 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /less/search.less: -------------------------------------------------------------------------------- 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 | 12 | .search-result-title { 13 | font-weight: 600; 14 | } 15 | 16 | .search-result-text { 17 | max-height: 250px; 18 | overflow: hidden; 19 | position: relative; 20 | 21 | h4, p { 22 | overflow-y: hidden; 23 | } 24 | } 25 | 26 | .topic-search { 27 | position: fixed; 28 | top: 60px; 29 | right: 10px; 30 | 31 | button { 32 | padding: 4px 6px; 33 | } 34 | } 35 | 36 | .quick-search-container { 37 | .dropdown-menu; 38 | display: block; 39 | left: auto; 40 | right: 0px; 41 | .quick-search-results { 42 | max-width: 400px; 43 | max-height: 500px; 44 | overflow-x: hidden; 45 | overflow-y: auto; 46 | padding: 0px 0px; 47 | li { 48 | list-style: none; 49 | a { 50 | text-overflow: ellipsis; 51 | overflow: hidden; 52 | display: block; 53 | padding: 3px 20px; 54 | clear: both; 55 | font-weight: 400; 56 | line-height: 1.42857143; 57 | white-space: nowrap; 58 | color: @gray-dark; 59 | } 60 | } 61 | .quick-search-title { 62 | font-weight: 600; 63 | } 64 | 65 | .snippet { 66 | word-break: break-word; 67 | white-space: normal; 68 | } 69 | } 70 | } 71 | 72 | .quick-search-results, .search-results { 73 | .post-info { 74 | font-size: 12px; 75 | .fa-stack { 76 | font-size: 10px; 77 | border-radius: 50%; 78 | } 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /templates/modules/usercard.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 |
    5 | 6 |
    {icon:text}
    7 | 8 |
    9 |
    10 | 11 | {fullname}{username}
    12 | @{username}[[user:banned]] 13 | 14 | 15 | 16 |
    17 | 18 |
    19 |
    20 | [[global:posts]] 21 | {postcount} 22 |
    23 |
    24 | [[global:reputation]] 25 | {reputation} 26 |
    27 | 28 | 35 |
    36 |
    37 |
    -------------------------------------------------------------------------------- /less/bootstrap/badges.less: -------------------------------------------------------------------------------- 1 | // 2 | // Badges 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .badge { 8 | display: inline-block; 9 | min-width: 10px; 10 | padding: 3px 7px; 11 | font-size: @font-size-small; 12 | font-weight: @badge-font-weight; 13 | color: @badge-color; 14 | line-height: @badge-line-height; 15 | vertical-align: baseline; 16 | white-space: nowrap; 17 | text-align: center; 18 | background-color: @badge-bg; 19 | border-radius: @badge-border-radius; 20 | 21 | // Empty badges collapse automatically (not available in IE8) 22 | &:empty { 23 | display: none; 24 | } 25 | 26 | // Quick fix for badges in buttons 27 | .btn & { 28 | position: relative; 29 | top: -1px; 30 | } 31 | 32 | .btn-xs &, 33 | .btn-group-xs > .btn & { 34 | top: 0; 35 | padding: 1px 5px; 36 | } 37 | 38 | // Hover state, but only for links 39 | a& { 40 | &:hover, 41 | &:focus { 42 | color: @badge-link-hover-color; 43 | text-decoration: none; 44 | cursor: pointer; 45 | } 46 | } 47 | 48 | // Account for badges in navs 49 | .list-group-item.active > &, 50 | .nav-pills > .active > a > & { 51 | color: @badge-active-color; 52 | background-color: @badge-active-bg; 53 | } 54 | 55 | .list-group-item > & { 56 | float: right; 57 | } 58 | 59 | .list-group-item > & + & { 60 | margin-right: 5px; 61 | } 62 | 63 | .nav-pills > li > a > & { 64 | margin-left: 3px; 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /templates/partials/topic/reply-button.tpl: -------------------------------------------------------------------------------- 1 |
    2 | [[topic:reply]] 3 | 6 | 9 |
    10 | 11 | 12 | 13 | 14 | [[topic:locked]] 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | [[topic:guest-login-reply]] 26 | 27 | -------------------------------------------------------------------------------- /templates/partials/users_list.tpl: -------------------------------------------------------------------------------- 1 | {{{each users}}} 2 |
  • 3 | {buildAvatar(users, "80", true)} 4 |
    5 | 39 |
  • 40 | {{{end}}} -------------------------------------------------------------------------------- /public/images/replies.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /templates/account/edit/password.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 |
    5 | 6 | 7 | 8 |
    9 | 10 |
    11 | disabled> 12 |
    13 |
    14 | 15 | 16 |
    17 | 18 | 19 | 20 |
    21 | 22 |
    23 | 24 | 25 | 26 |
    27 | 28 |
    29 | 30 |
    31 |
    32 |
    -------------------------------------------------------------------------------- /templates/users.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | {{{each widgets.header}}} 5 | {{widgets.header.html}} 6 | {{{end}}} 7 |
    8 |
    9 |
    10 |
    11 | 12 |
    13 |
    14 | 15 | 16 | 17 |
    18 | 19 |
    20 | 28 |
    29 | 30 |
    31 | 32 | 45 | 46 | 47 |
    48 | -------------------------------------------------------------------------------- /public/images/tags.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /templates/header.tpl: -------------------------------------------------------------------------------- 1 | 2 | data-dir="{languageDirection}" style="direction: {languageDirection};" > 3 | 4 | {browserTitle} 5 | {{{each metaTags}}}{function.buildMetaTag}{{{end}}} 6 | 7 | {{{each linkTags}}}{function.buildLinkTag}{{{end}}} 8 | 9 | 17 | 18 | 19 | {{customHTML}} 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 33 | 34 |
    35 | 40 |
    41 | 42 | -------------------------------------------------------------------------------- /templates/account/uploads.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modules/quickreply.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | /*globals $, app, ajaxify, socket*/ 4 | 5 | define('persona/quickreply', ['components', 'composer/autocomplete'], function(components, autocomplete) { 6 | var QuickReply = {}; 7 | 8 | QuickReply.init = function() { 9 | 10 | var element = components.get('topic/quickreply/text'); 11 | var data = { 12 | element: element, 13 | strategies: [], 14 | options: { 15 | style: { 16 | 'z-index': 100, 17 | } 18 | // listPosition: function(position) { 19 | // this.$el.css(this._applyPlacement(position)); 20 | // this.$el.css('position', 'absolute'); 21 | // return this; 22 | // } 23 | } 24 | }; 25 | 26 | $(window).trigger('composer:autocomplete:init', data); 27 | autocomplete._active['persona_qr'] = autocomplete.setup(data); 28 | // data.element.textcomplete(data.strategies, data.options); 29 | // $('.textcomplete-wrapper').css('height', '100%').find('textarea').css('height', '100%'); 30 | 31 | components.get('topic/quickreply/button').on('click', function(e) { 32 | e.preventDefault(); 33 | var replyMsg = components.get('topic/quickreply/text').val(); 34 | var replyData = { 35 | tid: ajaxify.data.tid, 36 | handle: undefined, 37 | content: replyMsg 38 | }; 39 | 40 | socket.emit('posts.reply', replyData, function(err, data) { 41 | if (err) { 42 | app.alertError(err.message); 43 | } 44 | if (data && data.queued) { 45 | app.alertSuccess(data.message); 46 | } 47 | 48 | components.get('topic/quickreply/text').val(''); 49 | autocomplete._active['persona_qr'].hide(); 50 | }); 51 | }); 52 | }; 53 | 54 | return QuickReply; 55 | }); 56 | -------------------------------------------------------------------------------- /templates/reset_code.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    5 | 6 |
    7 | [[reset_password:password_expired]] 8 |
    9 | 10 | 15 | 19 |
    20 |
    21 | 22 |
    23 |
    24 |
    25 | 26 |
    27 |
    28 |
    29 | 30 |
    31 |
    32 |
    33 | 34 |
    35 |
    36 |

    [[reset_password:wrong_reset_code.title]]

    37 |
    38 |
    39 |

    [[reset_password:wrong_reset_code.message]]

    40 |
    41 |
    42 | -------------------------------------------------------------------------------- /templates/groups/list.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | {{{each widgets.header}}} 4 | {{widgets.header.html}} 5 | {{{end}}} 6 |
    7 |
    8 |
    9 |
    10 | 11 | 12 | 13 |
    14 |
    15 |
    16 |
    17 | 22 |
    23 |
    24 |
    25 | 26 | 27 |
    28 |
    29 |
    30 |
    31 |
    32 | 33 |
    34 | 35 |
    36 | 37 | 38 | 39 |
    40 |
    41 | [[groups:no_groups_found]] 42 |
    43 |
    44 | 45 |
    46 |
    47 | -------------------------------------------------------------------------------- /less/bootstrap/code.less: -------------------------------------------------------------------------------- 1 | // 2 | // Code (inline and block) 3 | // -------------------------------------------------- 4 | 5 | 6 | // Inline and block code styles 7 | code, 8 | kbd, 9 | pre, 10 | samp { 11 | font-family: @font-family-monospace; 12 | } 13 | 14 | // Inline code 15 | code { 16 | padding: 2px 4px; 17 | font-size: 90%; 18 | color: @code-color; 19 | background-color: @code-bg; 20 | border-radius: @border-radius-base; 21 | } 22 | 23 | // User input typically entered via keyboard 24 | kbd { 25 | padding: 2px 4px; 26 | font-size: 90%; 27 | color: @kbd-color; 28 | background-color: @kbd-bg; 29 | border-radius: @border-radius-small; 30 | box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); 31 | 32 | kbd { 33 | padding: 0; 34 | font-size: 100%; 35 | font-weight: bold; 36 | box-shadow: none; 37 | } 38 | } 39 | 40 | // Blocks of code 41 | pre { 42 | display: block; 43 | padding: ((@line-height-computed - 1) / 2); 44 | margin: 0 0 (@line-height-computed / 2); 45 | font-size: (@font-size-base - 1); // 14px to 13px 46 | line-height: @line-height-base; 47 | word-break: break-all; 48 | word-wrap: break-word; 49 | color: @pre-color; 50 | background-color: @pre-bg; 51 | border: 1px solid @pre-border-color; 52 | border-radius: @border-radius-base; 53 | 54 | // Account for some code outputs that place code tags in pre tags 55 | code { 56 | padding: 0; 57 | font-size: inherit; 58 | color: inherit; 59 | white-space: pre-wrap; 60 | background-color: transparent; 61 | border-radius: 0; 62 | } 63 | } 64 | 65 | // Enable scrollable blocks of code 66 | .pre-scrollable { 67 | max-height: @pre-scrollable-max-height; 68 | overflow-y: scroll; 69 | } 70 | -------------------------------------------------------------------------------- /templates/partials/category-selector.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 6 | 9 | 19 |
    -------------------------------------------------------------------------------- /less/bootstrap/grid.less: -------------------------------------------------------------------------------- 1 | // 2 | // Grid system 3 | // -------------------------------------------------- 4 | 5 | 6 | // Container widths 7 | // 8 | // Set the container width, and override it for fixed navbars in media queries. 9 | 10 | .container { 11 | .container-fixed(); 12 | 13 | @media (min-width: @screen-sm-min) { 14 | width: @container-sm; 15 | } 16 | @media (min-width: @screen-md-min) { 17 | width: @container-md; 18 | } 19 | @media (min-width: @screen-lg-min) { 20 | width: @container-lg; 21 | } 22 | } 23 | 24 | 25 | // Fluid container 26 | // 27 | // Utilizes the mixin meant for fixed width containers, but without any defined 28 | // width for fluid, full width layouts. 29 | 30 | .container-fluid { 31 | .container-fixed(); 32 | } 33 | 34 | 35 | // Row 36 | // 37 | // Rows contain and clear the floats of your columns. 38 | 39 | .row { 40 | .make-row(); 41 | } 42 | 43 | 44 | // Columns 45 | // 46 | // Common styles for small and large grid columns 47 | 48 | .make-grid-columns(); 49 | 50 | 51 | // Extra small grid 52 | // 53 | // Columns, offsets, pushes, and pulls for extra small devices like 54 | // smartphones. 55 | 56 | .make-grid(xs); 57 | 58 | 59 | // Small grid 60 | // 61 | // Columns, offsets, pushes, and pulls for the small device range, from phones 62 | // to tablets. 63 | 64 | @media (min-width: @screen-sm-min) { 65 | .make-grid(sm); 66 | } 67 | 68 | 69 | // Medium grid 70 | // 71 | // Columns, offsets, pushes, and pulls for the desktop device range. 72 | 73 | @media (min-width: @screen-md-min) { 74 | .make-grid(md); 75 | } 76 | 77 | 78 | // Large grid 79 | // 80 | // Columns, offsets, pushes, and pulls for the large desktop device range. 81 | 82 | @media (min-width: @screen-lg-min) { 83 | .make-grid(lg); 84 | } 85 | -------------------------------------------------------------------------------- /public/images/recent.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /templates/partials/account/header.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |
    5 | 6 | 7 | 8 |
    {icon:text}
    9 | 10 | 11 | 12 | 13 | 14 | 21 | 22 | 23 |
    24 | 25 |
    26 | 27 | 28 | 29 | 30 |
    31 | 32 | 33 | 34 |
    35 |
    [[groups:cover-save]]
    36 |
    [[groups:cover-saving]]
    37 | 38 | 39 |
    40 |
    41 | -------------------------------------------------------------------------------- /less/modules/nprogress.less: -------------------------------------------------------------------------------- 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 | 81 | -------------------------------------------------------------------------------- /less/bootstrap/alerts.less: -------------------------------------------------------------------------------- 1 | // 2 | // Alerts 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base styles 7 | // ------------------------- 8 | 9 | .alert { 10 | padding: @alert-padding; 11 | margin-bottom: @line-height-computed; 12 | border: 1px solid transparent; 13 | border-radius: @alert-border-radius; 14 | 15 | // Headings for larger alerts 16 | h4 { 17 | margin-top: 0; 18 | // Specified for the h4 to prevent conflicts of changing @headings-color 19 | color: inherit; 20 | } 21 | 22 | // Provide class for links that match alerts 23 | .alert-link { 24 | font-weight: @alert-link-font-weight; 25 | } 26 | 27 | // Improve alignment and spacing of inner content 28 | > p, 29 | > ul { 30 | margin-bottom: 0; 31 | } 32 | 33 | > p + p { 34 | margin-top: 5px; 35 | } 36 | } 37 | 38 | // Dismissible alerts 39 | // 40 | // Expand the right padding and account for the close button's positioning. 41 | 42 | .alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0. 43 | .alert-dismissible { 44 | padding-right: (@alert-padding + 20); 45 | 46 | // Adjust close link position 47 | .close { 48 | position: relative; 49 | top: -2px; 50 | right: -21px; 51 | color: inherit; 52 | } 53 | } 54 | 55 | // Alternate styles 56 | // 57 | // Generate contextual modifier classes for colorizing the alert. 58 | 59 | .alert-success { 60 | .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text); 61 | } 62 | 63 | .alert-info { 64 | .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text); 65 | } 66 | 67 | .alert-warning { 68 | .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text); 69 | } 70 | 71 | .alert-danger { 72 | .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text); 73 | } 74 | -------------------------------------------------------------------------------- /templates/partials/groups/memberlist.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
    4 | 5 |
    6 | 7 |
    8 |
    9 | 10 | 11 |
    12 |
    13 |
    14 | 15 | 16 | 17 | {{{each group.members}}} 18 | 19 | 22 | 37 | 38 | {{{end}}} 39 | 40 |
    20 | {buildAvatar(group.members, "sm", true)} 21 | 23 | {group.members.username} 24 | 25 | 26 |
    27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
    35 | 36 |
    -------------------------------------------------------------------------------- /less/modules/alerts.less: -------------------------------------------------------------------------------- 1 | .alert-window { 2 | position: fixed; 3 | width: 300px; 4 | z-index: 10002; 5 | 6 | right: 20px; 7 | bottom: 0px; 8 | 9 | color: white; 10 | 11 | .alert { 12 | &::before { 13 | position: relative; 14 | top: -15px; 15 | left: -15px; 16 | display: block; 17 | height: 2px; 18 | width: 0; 19 | transition: inherit; 20 | } 21 | 22 | &.alert-info::before { 23 | background-color: @material-info; 24 | } 25 | 26 | &.alert-warning::before { 27 | background-color: @material-warning; 28 | } 29 | 30 | &.alert-success::before { 31 | background-color: @material-success; 32 | } 33 | 34 | &.alert-danger::before { 35 | background-color: @material-danger; 36 | } 37 | 38 | &.animate { 39 | &.alert-info::before { 40 | background-color: lighten(@material-info, 25%); 41 | } 42 | 43 | &.alert-warning::before { 44 | background-color: lighten(@material-warning, 25%); 45 | } 46 | 47 | &.alert-success::before { 48 | background-color: lighten(@material-success, 25%); 49 | } 50 | 51 | &.alert-danger::before { 52 | background-color: lighten(@material-danger, 25%); 53 | } 54 | 55 | &::before { 56 | width: ~"calc(100% + 50px)"; 57 | } 58 | } 59 | 60 | background-color: white; 61 | border: 0; 62 | border-left: 5px solid !important; 63 | box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25), 0px 2px 10px 0px rgba(0, 0, 0, 0.25); 64 | 65 | strong { 66 | text-transform: uppercase; 67 | } 68 | 69 | p { 70 | padding: 10px 0px 0px; 71 | } 72 | 73 | &.alert-info { 74 | color: @material-info; 75 | border-color: @material-info; 76 | } 77 | 78 | &.alert-warning { 79 | color: @material-warning; 80 | border-color: @material-warning; 81 | } 82 | 83 | &.alert-success { 84 | color: @material-success; 85 | border-color: @material-success; 86 | } 87 | 88 | &.alert-danger { 89 | color: @material-danger; 90 | border-color: @material-danger; 91 | } 92 | } 93 | } -------------------------------------------------------------------------------- /templates/partials/merge_topics_modal.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |

    [[topic:thread_tools.merge_topics]]

    4 |
    5 |
    6 |

    7 | [[topic:merge_topics_instruction]] 8 |

    9 |

    10 |

    11 | 12 | 13 | 14 | 15 |
    16 |

    17 |
    18 | 21 |
    22 |

    [[topic:merge-topic-list-title]]

    23 | 28 |

    29 | [[topic:merge-options]] 30 |

    31 |
    32 |

    33 | [[topic:merge-select-main-topic]] 34 |

    35 |

    36 | 41 |

    42 |

    43 | [[topic:merge-new-title-for-topic]] 44 |

    45 |

    46 | 47 |

    48 |
    49 |
    50 | 57 |
    -------------------------------------------------------------------------------- /templates/partials/modals/upload_file_modal.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /less/register.less: -------------------------------------------------------------------------------- 1 | .page-register-complete { 2 | .tos { 3 | background: @body-bg; 4 | color: @text-color; 5 | max-height: 350px; 6 | margin-top: 5px; 7 | overflow-y: scroll; 8 | padding: 15px; 9 | font-size: 1.25rem; 10 | line-height: 2rem; 11 | } 12 | } 13 | 14 | .register-block { 15 | margin-top: 15px; 16 | 17 | .help-block { 18 | font-size: 13px; 19 | } 20 | 21 | .register-success { 22 | .form-control { 23 | border-color: #5cb85c; 24 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); 25 | padding-right: 2.25rem; 26 | background-repeat: no-repeat; 27 | background-position: center right .625rem; 28 | -webkit-background-size: 1.25rem 1.25rem; 29 | background-size: 1.25rem 1.25rem; 30 | } 31 | 32 | .register-feedback { 33 | color: #5cb85c; 34 | display: block; 35 | margin-top: .25rem; 36 | } 37 | } 38 | 39 | .register-danger { 40 | .form-control { 41 | border-color: #d9534f; 42 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); 43 | padding-right: 2.25rem; 44 | background-repeat: no-repeat; 45 | background-position: center right .625rem; 46 | -webkit-background-size: 1.25rem 1.25rem; 47 | background-size: 1.25rem 1.25rem; 48 | } 49 | 50 | .register-feedback { 51 | color: #d9534f; 52 | display: block; 53 | margin-top: .25rem; 54 | } 55 | } 56 | } 57 | 58 | .login-block { 59 | margin-top: 15px; 60 | 61 | #login { 62 | margin-bottom: 10px; 63 | } 64 | } 65 | 66 | @media (max-width: @screen-xs-max) { 67 | .alt-login-block { 68 | margin-bottom: 20px; 69 | } 70 | } -------------------------------------------------------------------------------- /templates/partials/topic/watch.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 12 | 17 |
    18 | -------------------------------------------------------------------------------- /templates/partials/chats/message.tpl: -------------------------------------------------------------------------------- 1 |
  • 2 |
    3 | {buildAvatar(messages.fromUser, "md", true, "not-responsive")} 4 | {messages.fromUser.username} 5 | 6 | [[user:banned]] 7 | 8 | 9 | [[user:deleted]] 10 | 11 | 12 | 13 |
    14 | 15 |
    16 |
    17 |
    18 | {messages.content} 19 |
    20 | 21 | 22 | 23 |
    24 | 25 | 26 | 27 | 28 | 29 | 30 |
    31 | 32 | 33 |
    34 |
  • -------------------------------------------------------------------------------- /templates/partials/category-filter.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 6 | 9 | 19 |
    -------------------------------------------------------------------------------- /templates/partials/categories/item.tpl: -------------------------------------------------------------------------------- 1 |
  • 2 | 3 | 4 |
    5 |
    6 | 7 |
    8 | 9 |

    10 | 11 |

    12 |
    13 | 14 |
    15 | {../descriptionParsed} 16 |
    17 | 18 | 19 | {function.generateChildrenCategories} 20 | 21 |
    22 | 23 | 24 | 27 | 28 | 29 | 30 | 35 | 40 | 41 |
    42 | 43 | 44 | 47 | 48 | 49 |
  • 50 | -------------------------------------------------------------------------------- /templates/recent.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | {{{each widgets.header}}} 4 | {{widgets.header.html}} 5 | {{{end}}} 6 |
    7 |
    8 |
    9 |
    10 | 11 | 12 | 13 | [[category:guest-login-post]] 14 | 15 | 16 |
    17 |
    18 |
    19 | 20 |
    21 | 22 |
    23 | 24 | 25 | 26 |
    27 | 30 | 37 |
    38 |
    39 | 40 | 41 | 42 |
    43 | 44 |
    [[recent:no_recent_topics]]
    45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 |
    53 |
    54 | -------------------------------------------------------------------------------- /templates/partials/category/watch.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 4 | 14 | 15 | 22 |
    23 | -------------------------------------------------------------------------------- /templates/flags/list.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |
    5 | 6 |
    7 |
    8 |
    9 |
    10 |
    11 |
    12 |

    13 | 14 |

    15 |
    16 | 17 |
    18 |
    19 | 20 | 21 |
    22 |

    23 | [[flags:filter-reset]] 24 |

    25 | [[flags:filter-active]] 26 |
    27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 45 | 46 | 47 | {{{each flags}}} 48 | 49 | 50 | 55 | 59 | 60 | 61 | {{{end}}} 62 | 63 |
    [[flags:state]]
    41 |
    42 | [[flags:no-flags]] 43 |
    44 |
    [[flags:state-{../state}]] 51 | 52 | {../target_readable}{../description} 53 | 54 | 56 | {buildAvatar(../reporter, "sm")} 57 | {../reporter.username} 58 |
    64 | 65 | 66 |
    67 |
    68 | -------------------------------------------------------------------------------- /less/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- 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 | } 88 | -------------------------------------------------------------------------------- /less/bootstrap/pagination.less: -------------------------------------------------------------------------------- 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 | } 89 | -------------------------------------------------------------------------------- /templates/partials/paginator.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 23 | 24 | 45 |
    -------------------------------------------------------------------------------- /templates/partials/chats/message-window.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    4 | 5 | 6 | 7 | 31 | 32 | [[modules:chat.chatting_with]]: 33 | {{{each users}}} 34 | {../username}, 35 | {{{end}}} 36 | 37 |
    38 |
      39 | 40 |
    41 |
    42 | 43 | 44 | {maximumChatMessageLength} 45 |
    46 |
    47 | 48 |
    49 | [[modules:chat.no-messages]] 50 |
    51 | -------------------------------------------------------------------------------- /templates/partials/modals/change_picture_modal.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 | 16 | {{{each pictures}}} 17 | 25 | {{{end}}} 26 |
    27 |
    28 |
    29 |
    30 | 31 | 40 | 41 | 50 | 51 | 61 | 62 |
    63 |
    64 |
    -------------------------------------------------------------------------------- /templates/category.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | {{{each widgets.header}}} 4 | {{widgets.header.html}} 5 | {{{end}}} 6 |
    7 |
    8 |
    9 | 10 | 11 | 12 | 13 |
    14 | 15 | [[category:new_topic_button]] 16 | 17 | 18 | [[category:guest-login-post]] 19 | 20 | 21 | 22 | 23 |
    24 |
    25 | 26 | 27 | 28 | 29 | 30 | 31 |
    32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 |
    40 |
    41 | [[category:no_topics]] 42 |
    43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 |
    52 |
    53 | {{{each widgets.sidebar}}} 54 | {{widgets.sidebar.html}} 55 | {{{end}}} 56 |
    57 |
    58 |
    59 | {{{each widgets.footer}}} 60 | {{widgets.footer.html}} 61 | {{{end}}} 62 |
    63 | 64 | 65 | 68 | 69 | -------------------------------------------------------------------------------- /templates/account/consent.tpl: -------------------------------------------------------------------------------- 1 |