Added fixups/new classes to the main CSS, cleanup of Mini-Timeline.

This commit is contained in:
Shamus Hammons 2017-02-15 17:22:56 -06:00
parent 2e1494c97e
commit b8a1eac378
8 changed files with 110 additions and 30 deletions

View File

@ -1,6 +1,3 @@
---
title: Ardour's Interface
---
<p>
In Ardour, work is done in two main windows: the <dfn>Editor</dfn> and the
@ -131,8 +128,3 @@ title: Ardour's Interface
To learn more about the process of mixing, see <a href="/mixing/">Mixing<a>.
</p>
<<<<<<< HEAD
{% children %}
=======
>>>>>>> Initial cleanup of manual content.

View File

@ -1,26 +1,36 @@
<figure class=center>
<img src="/images/mini-timeline.png" alt="The Mini-Timeline">
<figcaption class=center>The Mini-Timeline.</figcaption>
</figure>
<p>
The mini-timeline allows, as the <a href="/ardours-interface/the-summary/">Summary</a>,
to navigate a session. It's main advantage though is that it stays visible even in Mixer mode.
The mini-timeline allows, as the
<a href="/ardours-interface/the-summary/">Summary</a> does, navigation of a
session. Its main advantage, though, is that it stays visible even when in
Mixer mode.
</p>
<p>
The range of time covered by the mini-timeline is set by <kbd class="mouse">Right</kbd> clicking the
timeline, and chossing from 30 seconds up to 20 minutes.
The range of time covered by the mini-timeline is set by <kbd
class="mouse">Right</kbd> clicking the timeline, and choosing a time span
from 30 seconds up to 20 minutes.
</p>
<p>
The mini-timeline also shows all the markers (both start/end and user set ones).
Clicking a marker jumps to that point on the timeline, allowing for quick access
to key timings in the session.
The mini-timeline also shows all markers (start, end and any user
defined ones). Clicking a marker jumps to that point on the timeline,
allowing for quick access to key timings in the session.
</p>
<p>
While hovering with the mouse over the mini-timeline,
</p>
<ul>
<li><kbd class="mouse">left</kbd> clicking jumps the playhead to the time under the mouse cursor</li>
<li>using the <kbd class="mouse">scroll wheel</kbd> scrolls the playhead inside the session</li>
<li>using the <kbd class="mod1">&nbsp;</kbd><kbd class="mouse">scroll wheel</kbd> scrolls more finely inside the session</li>
<li>using the <kbd class="mod1">&nbsp;</kbd><kbd class="mod2">&nbsp;</kbd><kbd class="mouse">scroll wheel</kbd> scrolls even more finely inside the session.</li>
<li><kbd class="mouse">left</kbd> clicking moves the playhead to the time under the mouse cursor</li>
<li>using the <kbd class="mouse">scroll wheel</kbd> scrolls the playhead back and forth inside the session</li>
<li>using the <kbd class="mod1n"></kbd><kbd class="mouse">scroll wheel</kbd> scrolls more finely inside the session</li>
<li>using the <kbd class="mod12n"></kbd><kbd class="mouse">scroll wheel</kbd> scrolls even more finely inside the session.</li>
</ul>

View File

@ -68,3 +68,4 @@
The buttons in between the Mode Selector and the global meter are script buttons,
which are user-definable buttons to attach any session <a href="/lua-scripting/">lua-script</a> to.
</p>

View File

@ -15,7 +15,10 @@
connections. The plugins can be sorted by clicking on a column header.
</p>
<figure class=center>
<img src="/images/plugin-manager.png" alt="Plugin Manager window"/>
<figcaption class=center>The Plugin Manager window.</figcaption>
</figure>
<h2>Plugin Display Status</h2>

View File

@ -70,3 +70,4 @@
<p>
See <a href="/working-with-tracks/track-types/">Track Modes</a> for more information.
</p>

View File

@ -72,3 +72,4 @@
<p>
Go to the <kdb class="menu">Transport</kbd> and <kdb class="menu">Transport &gt; Playhead</kbd> to find more.
</p>

View File

@ -578,7 +578,6 @@ part: chapter
---
title: Transport Clocks
include: transport-clocks.html
#uri: ardours-interface/transport-clocks
uri: ardours-interface/using-ardour-clock-displays
part: chapter
---
@ -633,7 +632,6 @@ part: subchapter
---
title: Edit Point Control
include: edit-point-control.html
#uri: ardours-interface/the-edit-point-control
uri: editing-and-arranging/edit-point
part: subchapter
---
@ -778,7 +776,6 @@ part: chapter
---
title: New/Open Session Dialog
include: newopen-session-dialog.html
#uri: working-with-sessions/new-session-dialog
uri: working-with-sessions/the-new-session-dialog
part: subchapter
---
@ -1446,7 +1443,6 @@ part: subchapter
---
title: Note Selection
include: note-selection.html
#uri: working-with-midi/note-selection
uri: editing-and-arranging/edit-midi/note-selection
part: subchapter
---
@ -2065,7 +2061,6 @@ part: chapter
---
title: Scripting
part: part
include: lua-scripting-in-ardour.html
---
---

View File

@ -186,7 +186,15 @@
#content figcaption {
display: table-caption;
caption-side: bottom ;
caption-side: bottom;
font-style: italic;
}
#content figcaption.center {
display: table-caption;
text-align: center;
caption-side: bottom;
font-style: italic;
}
#content figcaption.titleover {
@ -195,14 +203,19 @@
#content figure.right {
margin: 0 0 1em 1em;
float:right;
clear:right;
float: right;
clear: right;
}
#content figure.left {
margin: 0 1em 1em 0;
float:left;
clear:left;
float: left;
clear: left;
}
#content figure.center {
margin: 1em auto 1em auto;
clear: both;
}
.multicol2 {
@ -480,6 +493,12 @@ samp:after {
clear:left;
}
#content img.center {
display: block;
margin:1em auto 1em auto;
clear: both;
}
#content p.center {
text-align:center;
}
@ -522,7 +541,7 @@ samp:after {
}
/* Keyboard modifiers */
.mod1:before {
content: "Ctrl ";
@ -552,6 +571,36 @@ samp:after {
content: "Keypad ";
}
/* Variants *without* space after them (yes, these are needed!) */
.mod1n:before {
content: "Ctrl";
}
.mod2n:before {
content: "Alt";
}
.mod3n:before {
content: "Shift";
}
.mod4n:before {
content: "Win";
}
.mod12n:before {
content: "Ctrl Alt";
}
.mod13n:before {
content: "Ctrl Shift";
}
.mod14n:before {
content: "Ctrl Win";
}
.mod23n:before {
content: "Alt Shift";
}
/* Automagic translation for Mac based display */
.mac .mod1:before {
content: "Cmd ";
}
@ -577,6 +626,34 @@ samp:after {
content: "Ctrl Shift ";
}
/* No space variants (Mac based) */
.mac .mod1n:before {
content: "Cmd";
}
.mac .mod2n:before {
content: "Ctrl";
}
.mac .mod3n:before {
content: "Shift";
}
.mac .mod4n:before {
content: "Opt";
}
.mac .mod12n:before {
content: "Cmd Ctrl";
}
.mac .mod13n:before {
content: "Cmd Shift";
}
.mac .mod14n:before {
content: "Cmd Opt";
}
.mac .mod23n:before {
content: "Ctrl Shift";
}
#gs_tti0 {
padding-top: 2px;