mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-09 19:55:46 +01:00
pull some overlay height/width attributes out in to the CSS file
This commit is contained in:
@@ -81,12 +81,12 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
<!-- As of Firefox 3.1pre, <iframe>.height changes do not seem to have immediate effect,
|
<!-- As of Firefox 3.1pre, <iframe>.height changes do not seem to have immediate effect,
|
||||||
therefore we need to put them into a <vbox> for which that works just fine -->
|
therefore we need to put them into a <vbox> for which that works just fine -->
|
||||||
<vbox class="liberator-container" hidden="false" collapsed="true">
|
<vbox class="liberator-container" hidden="false" collapsed="true">
|
||||||
<iframe id="liberator-multiline-output" src="about:blank" flex="1" height="10px" hidden="false" collapsed="false"
|
<iframe id="liberator-multiline-output" src="about:blank" flex="1" hidden="false" collapsed="false"
|
||||||
onclick="liberator.commandline.onMultilineOutputEvent(event)"/>
|
onclick="liberator.commandline.onMultilineOutputEvent(event)"/>
|
||||||
</vbox>
|
</vbox>
|
||||||
|
|
||||||
<vbox class="liberator-container" hidden="false" collapsed="true">
|
<vbox class="liberator-container" hidden="false" collapsed="true">
|
||||||
<iframe id="liberator-completions" src="about:blank" flex="1" height="250px" hidden="false" collapsed="false"
|
<iframe id="liberator-completions" src="about:blank" flex="1" hidden="false" collapsed="false"
|
||||||
onclick="liberator.commandline.onMultilineOutputEvent(event)"/>
|
onclick="liberator.commandline.onMultilineOutputEvent(event)"/>
|
||||||
</vbox>
|
</vbox>
|
||||||
|
|
||||||
@@ -108,10 +108,10 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
</window>
|
</window>
|
||||||
|
|
||||||
<statusbar id="status-bar" class="hl-StatusLine">
|
<statusbar id="status-bar" class="hl-StatusLine">
|
||||||
<hbox insertbefore="statusbar-display" id="liberator-statusline" flex="1" height="10" hidden="false" align="center">
|
<hbox insertbefore="statusbar-display" id="liberator-statusline" flex="1" hidden="false" align="center">
|
||||||
<textbox class="plain" id="liberator-statusline-field-url" readonly="false" flex="1" crop="end"/>
|
<textbox class="plain" id="liberator-statusline-field-url" readonly="false" flex="1" crop="end"/>
|
||||||
<label class="plain" id="liberator-statusline-field-inputbuffer" flex="0"/>
|
<label class="plain" id="liberator-statusline-field-inputbuffer" flex="0"/>
|
||||||
<label class="plain" id="liberator-statusline-field-progress" flex="0" width="200px"/>
|
<label class="plain" id="liberator-statusline-field-progress" flex="0"/>
|
||||||
<label class="plain" id="liberator-statusline-field-tabcount" flex="0"/>
|
<label class="plain" id="liberator-statusline-field-tabcount" flex="0"/>
|
||||||
<label class="plain" id="liberator-statusline-field-bufferposition" flex="0"/>
|
<label class="plain" id="liberator-statusline-field-bufferposition" flex="0"/>
|
||||||
</hbox>
|
</hbox>
|
||||||
|
|||||||
@@ -59,6 +59,7 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
}
|
}
|
||||||
#liberator-statusline {
|
#liberator-statusline {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
|
height: 10px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
#liberator-statusline > label {
|
#liberator-statusline > label {
|
||||||
@@ -72,6 +73,10 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
liberator-statusline-field-progress {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
/* no longer at the window's bottom right corner */
|
/* no longer at the window's bottom right corner */
|
||||||
.statusbar-resizerpanel {
|
.statusbar-resizerpanel {
|
||||||
display: none;
|
display: none;
|
||||||
@@ -172,6 +177,14 @@ a.hl-URL:hover {
|
|||||||
|
|
||||||
/* MOW */
|
/* MOW */
|
||||||
|
|
||||||
|
#liberator-completions {
|
||||||
|
height: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#liberator-multiline-output {
|
||||||
|
height: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
#liberator-completions, #liberator-multiline-output {
|
#liberator-completions, #liberator-multiline-output {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
@@ -203,5 +216,4 @@ a.hl-URL:hover {
|
|||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* vim: set fdm=marker sw=4 ts=4 et: */
|
/* vim: set fdm=marker sw=4 ts=4 et: */
|
||||||
|
|||||||
Reference in New Issue
Block a user