aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11795] Remove outdated comment from forum_fn.jsVjacheslav Trushkin2013-09-141-2/+0
| | | | | | This comment is no longer relevant because function was rewritten PHPBB3-11795
* [ticket/11795] Move find user JS to forum_fnVjacheslav Trushkin2013-09-143-42/+48
| | | | | | Move JavaScript from user search results to forum_fn.js PHPBB3-11795
* [ticket/11795] Move MSN scripts to forum_fn.jsVjacheslav Trushkin2013-09-142-71/+59
| | | | | | | Move MSN scripts to forum_fn.js Rewrite MSN scripts to remove duplicate code PHPBB3-11795
* [ticket/11795] Use phpBB template syntax instead of TWIGVjacheslav Trushkin2013-09-143-6/+4
| | | | PHPBB3-11795
* [ticket/11795] Move PM popup JS to forum_fn.jsVjacheslav Trushkin2013-09-143-13/+12
| | | | | | | Move PM popup JavaScript from overall_header to forum_fn.js Use TWIG to escape PM popup URL PHPBB3-11795
* [ticket/11795] Get rid of pagination JS variablesVjacheslav Trushkin2013-09-145-19/+21
| | | | | | | Move pagination variables to data attributes Replace A_BASE_URL with BASE_URL and use TWIG to escape it PHPBB3-11795
* [ticket/11795] Get rid of onload_functionsVjacheslav Trushkin2013-09-142-42/+0
| | | | | | | Get rid of onload_functions and onunload_functions Scripts should use $(document).ready() instead PHPBB-11795
* [ticket/11795] Use data-reset-on-edit attr to reset elementsVjacheslav Trushkin2013-09-143-30/+7
| | | | | | | | | | Use data-reset-on-edit attribute to reset other inputs when editing input with data. Do not unbind event (old code unbound it after one use for no reason) PHPBB3-11795
* [ticket/11795] Redo form elements auto-focusVjacheslav Trushkin2013-09-143-25/+12
| | | | | | | Use data-focus attribute for forms to focus elements when document is loaded instead of adding JavaScript PHPBB3-11795
* Merge branch 'ticket/11811' into ticket/develop-2/11811Vjacheslav Trushkin2013-09-142-0/+13
|\ | | | | | | | | | | | | | | | | * ticket/11811: [ticket/11811] Remove outline on :focus Conflicts: phpBB/adm/style/admin.css phpBB/styles/prosilver/theme/forms.css
| * [ticket/11811] Remove outline on :focusVjacheslav Trushkin2013-09-132-0/+13
| | | | | | | | PHPBB3-11811
* | [ticket/11836] Fix subsilver fatal errorJoseph Warner2013-09-131-1/+3
| | | | | | | | PHPBB3-11836
* | [ticket/11836] Fix fatal error on unsupported provider for auth linkJoseph Warner2013-09-131-1/+3
| | | | | | | | PHPBB3-11836
* | Merge pull request #1675 from marc1706/ticket/11809Nathan Guse2013-09-132-2/+2
|\ \ | | | | | | [ticket/11809] Ensure code.js is first script included after jQuery
| * | [ticket/11809] Ensure code.js is first script included after jQueryMarc Alexander2013-09-132-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The file core.js sets up most of the AJAX and jQuery related framework for phpBB. Due to this, it needs to be included before any other javascript file in order to ensure that subsequent files can use the phpBB variables and functions. Currently, it is however loaded with INCLUDEJS in overall_footer which causes it to be loaded after every other javascript file except for the style specific ajax.js. This causes every javascript file that is included before core.js and is using the phpBB AJAX functions or variables to break. PHPBB3-11809
* | | Merge pull request #1705 from EXreaction/ticket/11833David King2013-09-121-1/+1
|\ \ \ | | | | | | | | Fix invalid template loop & prevent Twig from throwing errors in invalid uses of BEGINELSE
| * | | [ticket/11833] Fix bad template loopNathan Guse2013-09-091-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11833
* | | | Merge remote-tracking branch 'remotes/upstream/develop-olympus' into developNathan Guse2013-09-122-3/+3
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | * remotes/upstream/develop-olympus: [ticket/11829] Use report_closed to determine status in MCP report_details Conflicts: phpBB/styles/prosilver/template/mcp_post.html
| * | | [ticket/11829] Use report_closed to determine status in MCP report_detailsrechosen2013-09-042-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of using post_reported of the post or message_reported of the pm, use report_closed of the report itself to reliably determine whether this particular report is closed or not in the report_details view of the MCP. This fixes a bug where the report_details view would not show that the report shown was closed and display a "Close report" button that had no effect. PHPBB3-11829
* | | | Merge branch 'develop' of git://github.com/phpbb/phpbb3 into feature/oauthJoseph Warner2013-09-1014-164/+105
|\ \ \ \ | | |/ / | |/| |
| * | | Merge pull request #1618 from VSEphpbb/ticket/11747Nathan Guse2013-09-056-0/+16
| |\ \ \ | | | | | | | | | | [ticket/11747] UCP Prefs Core and Template Events
| | * | | [ticket/11747] Use _prepend and _append for template eventsMatt Friedman2013-07-266-16/+16
| | | | | | | | | | | | | | | | | | | | PHPBB3-11747
| | * | | [ticket/11747] ucp_prefs_post template eventsMatt Friedman2013-07-262-0/+4
| | | | | | | | | | | | | | | | | | | | PHPBB3-11747
| | * | | [ticket/11747] ucp_prefs_view template eventsMatt Friedman2013-07-262-0/+8
| | | | | | | | | | | | | | | | | | | | PHPBB3-11747
| | * | | [ticket/11747] ucp_prefs_personal template eventsMatt Friedman2013-07-262-0/+4
| | | | | | | | | | | | | | | | | | | | PHPBB3-11747
| * | | | Merge pull request #1435 from cyberalien/ticket/11562Nathan Guse2013-09-051-121/+8
| |\ \ \ \ | | | | | | | | | | | | forum_fn.js cleanup
| | * | | | [ticket/11562] Use jQuery in subPanelsVjacheslav Trushkin2013-08-301-17/+3
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB-11562
| | * | | | [ticket/11562] Remove submit_default_button from forum_fnVjacheslav Trushkin2013-08-301-92/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove submit_default_button() and related functions from forum_fn.js PHPBB3-11562
| | * | | | [ticket/11562] Convert marklist() to jQueryVjacheslav Trushkin2013-08-301-12/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11562
| * | | | | Merge pull request #1651 from cyberalien/ticket/11782Nathan Guse2013-09-057-43/+81
| |\ \ \ \ \ | | |/ / / / | |/| | | | Fix layout of notices in posts
| | * | | | [ticket/11782] Apply line-height correctlyVjacheslav Trushkin2013-08-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apply line-height only to bolded elements inside post notices that are direct child elements of forms. PHPBB3-11782
| | * | | | [ticket/11782] RTL support for post noticesVjacheslav Trushkin2013-08-111-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11782
| | * | | | [ticket/11782] Change p.rules to p.post-notice in CSSVjacheslav Trushkin2013-08-112-13/+31
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11782
| | * | | | [ticket/11782] Change p.rules to p.post-notice in templatesVjacheslav Trushkin2013-08-114-30/+43
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11782
* | | | | | [feature/oauth] Fix tabindexJoseph Warner2013-09-091-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11673
* | | | | | [feature/oauth] Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ↵Joseph Warner2013-09-0644-168/+131
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | feature/oauth Conflicts: phpBB/composer.json phpBB/composer.lock phpBB/develop/create_schema_files.php phpBB/includes/ucp/ucp_register.php PHPBB3-11673
| * | | | | Merge remote-tracking branch 'remotes/brunoais/ticket/11803' into developNathan Guse2013-08-281-1/+1
| |\ \ \ \ \ | | |_|_|_|/ | |/| | | | | | | | | | | | | | | | * remotes/brunoais/ticket/11803: [ticket/11803] Revert POLL_MAX_OPTIONS min value to 0
| | * | | | [ticket/11803] Revert POLL_MAX_OPTIONS min value to 0brunoais2013-08-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When it was made the min number of options allowed to a user was 1 but 0 can also be used as it means unlimited. PHPBB3-11803
| * | | | | [ticket/11804] Remove </li> from overall_header which was not openMarcus Vinny2013-08-201-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11804
| * | | | | Merge branch 'develop-olympus' into developAndreas Fischer2013-08-191-5/+5
| |\ \ \ \ \ | | |/ / / / | |/| | | / | | | |_|/ | | |/| | | | | | | | | | | | | | | | | * develop-olympus: [ticket/11801] removed some whitespace and added missing semi colon's in css Conflicts: phpBB/styles/prosilver/theme/colours.css
| | * | | [ticket/11801] removed some whitespace and added missing semi colon's in cssProsk8er2013-08-192-18/+18
| | | | | | | | | | | | | | | | | | | | PHPBB3-11801
| * | | | Merge branch 'develop-olympus' into developAndreas Fischer2013-08-182-2/+2
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/11789] Remove inline color in memberlist_view Conflicts: phpBB/styles/subsilver2/template/memberlist_view.html
| | * | | [ticket/11789] Remove inline color in memberlist_viewVjacheslav Trushkin2013-08-182-2/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-11789
| * | | | Merge branch 'develop-olympus' into developAndreas Fischer2013-08-184-5/+13
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/11789] Remove colors from HTML code Conflicts: phpBB/styles/subsilver2/template/ucp_pm_history.html
| | * | | [ticket/11789] Remove colors from HTML codeVjacheslav Trushkin2013-08-144-5/+13
| | | | | | | | | | | | | | | | | | | | PHPBB3-11789
| * | | | Merge remote-tracking branch 'cyberalien/ticket/11796' into developAndreas Fischer2013-08-184-53/+4
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * cyberalien/ticket/11796: [ticket/11796] Replace pagination with pagination.html
| | * | | | [ticket/11796] Replace pagination with pagination.htmlVjacheslav Trushkin2013-08-164-53/+4
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11796
| * | | | | Merge remote-tracking branch 'cyberalien/ticket/11779' into developAndreas Fischer2013-08-181-2/+2
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * cyberalien/ticket/11779: [ticket/11779] Fix unapproved messages class name
| | * | | | | [ticket/11779] Fix unapproved messages class nameVjacheslav Trushkin2013-08-111-2/+2
| | | |_|/ / | | |/| | | | | | | | | | | | | | | PHPBB3-11779
| * | | | | Merge remote-tracking branch 'cyberalien/ticket/11800' into developAndreas Fischer2013-08-183-4/+6
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * cyberalien/ticket/11800: [ticket/11800] Fix scripts variable in subsilver simple_footer [ticket/11800] Fix JavaScript in simple_footer.html [ticket/11800] Remove forum_fn from memberlist_search.html