-
Bug
-
Resolution: Fixed
-
Medium
-
7.0.1, 7.4.0, 7.4.3, 7.6.2
-
4
-
Severity 3 - Minor
-
6
-
Issue Summary
When editing a page and starting an indention we should be able to indent multiple times within a single line.
Environment
(Optional - If Applicable)
*Confluence 7.0.1
*
Steps to Reproduce
- Create/Edit a page
- Add an indention
- Attempt to tab the indention past the start point.
Expected Results
I should be able to indent multiple times at start of indention.
Actual Results
The indention does not allow multiple indents on the start.
Notes
(Optional - If Necessary)
Workaround
- Install Confluence Source Editor on your Confluence.
- Edit the page.
- Look for the < > symbol on your top right hand corner below your profile picture.
- Add the following CSS style for the bulleted list you wish to indent e.g. <ul>.
style="margin-left: 30.0px;"
- For example:
Before:<h2>Outdented Title</h2> <p style="margin-left: 30.0px;">Indented Title</p> <ul> <li>First indented bullet<ul> <li>Second indented bullet</li> </ul> </li> </ul>
After:
<h2>Outdented Title</h2> <p style="margin-left: 30.0px;">Indented Title</p> <ul style="margin-left: 30.0px;"> <li>First indented bullet<ul> <li>Second indented bullet</li> </ul> </li> </ul>