OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/assets/stylesheets/content/_editable_toolbar.lsg

27 lines
835 B

# Expandable group content
Allow 'inline-editing' (specially styled input field) a title through the toolbar element
```
<div class="toolbar-container -editable">
<div class="toolbar">
<div class="title-container">
<span class="form--text-field-container">
<input class="toolbar--editable-toolbar form--text-field"
placeholder="Page title"
aria-label="Page title"
type="text"
name="foobar" />
</span>
</div>
<ul class="toolbar-items">
<li class="toolbar-item">
<button class="button toolbar-icon">
<i aria-hidden="true" class="icon-zen-mode button--icon"></i>
</button>
</li>
</ul>
</div>
</div>
```