details style
This commit is contained in:
parent
f1acbd3682
commit
6da4023ad2
|
@ -52,7 +52,7 @@
|
|||
|
||||
.dialog-header-bg {
|
||||
height: 23px;
|
||||
background-color: #CCD5E5;
|
||||
background-color: #bbb;
|
||||
cursor: move;
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -311,7 +311,6 @@
|
|||
/* start footer */
|
||||
.footer {
|
||||
box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.06) inset;
|
||||
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.57);
|
||||
padding-left: 5px;
|
||||
line-height: 18px;
|
||||
display: block !important;
|
||||
|
|
|
@ -4718,7 +4718,7 @@
|
|||
width: width // account for borders & padding
|
||||
, height: cssH($T, spacing) // ditto
|
||||
, left: offset // TODO: VERIFY that toggler positions correctly for ALL values
|
||||
, top: 0
|
||||
, top: -1
|
||||
});
|
||||
// CENTER the toggler content SPAN
|
||||
$T.children(".content").each(function () {
|
||||
|
@ -4731,7 +4731,7 @@
|
|||
height: height // account for borders & padding
|
||||
, width: cssW($T, spacing) // ditto
|
||||
, top: offset // POSITION the toggler
|
||||
, left: 0
|
||||
, left: 1
|
||||
});
|
||||
// CENTER the toggler content SPAN
|
||||
$T.children(".content").each(function () {
|
||||
|
|
|
@ -69,8 +69,7 @@ body {
|
|||
* RESIZER-BARS
|
||||
*/
|
||||
.ui-layout-resizer { /* all 'resizer-bars' */
|
||||
background: #919191;
|
||||
border: 1px solid #BBB;
|
||||
background: #bbb;
|
||||
border-width: 0;
|
||||
}
|
||||
.ui-layout-resizer-drag { /* REAL resizer while resize in progress */
|
||||
|
@ -81,7 +80,7 @@ body {
|
|||
otherwise color shifts while dragging when bar can't keep up with mouse */
|
||||
.ui-layout-resizer-open-hover , /* hover-color to 'resize' */
|
||||
.ui-layout-resizer-dragging { /* resizer beging 'dragging' */
|
||||
background: #666;
|
||||
background: #919191;
|
||||
}
|
||||
.ui-layout-resizer-dragging { /* CLONED resizer being dragged */
|
||||
border: 1px solid #BBB;
|
||||
|
@ -100,7 +99,7 @@ body {
|
|||
}
|
||||
|
||||
.ui-layout-resizer-closed-hover { /* hover-color to 'slide open' */
|
||||
background: #666;
|
||||
background: #919191;
|
||||
}
|
||||
.ui-layout-resizer-sliding { /* resizer when pane is 'slid open' */
|
||||
opacity: .10; /* show only a slight shadow */
|
||||
|
|
|
@ -31,7 +31,7 @@ var windows = {
|
|||
south__paneSelector: ".footer",
|
||||
north__size: 22,
|
||||
south__size: 19,
|
||||
spacing_open: 3,
|
||||
spacing_open: 2,
|
||||
spacing_closed: 4,
|
||||
north__spacing_open: 0,
|
||||
south__spacing_open: 0,
|
||||
|
@ -61,7 +61,7 @@ var windows = {
|
|||
});
|
||||
|
||||
this.innerLayout = $('div.content').layout({
|
||||
spacing_open: 3,
|
||||
spacing_open: 2,
|
||||
spacing_closed: 4,
|
||||
defaults: {
|
||||
fxSpeed_open: 300,
|
||||
|
|
|
@ -405,7 +405,7 @@
|
|||
</div>
|
||||
<div class="tabs-panel">
|
||||
<div data-index="fileTree">
|
||||
<ul id="files" tabindex="-1" class="ztree"></ul>
|
||||
<ul id="files" class="ztree"></ul>
|
||||
<input id="importFileupload" class="fn-none" type="file"
|
||||
name="files[]" onclick="tree.import();" multiple>
|
||||
<!-- directory context menu -->
|
||||
|
@ -487,7 +487,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="tabs-panel">
|
||||
<div id="outline" tabindex="-1" data-index="outline"></div>
|
||||
<div id="outline" data-index="outline"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -538,10 +538,10 @@
|
|||
</div>
|
||||
<div class="tabs-panel">
|
||||
<div data-index="output">
|
||||
<div class="output" tabindex="-1"><div></div></div>
|
||||
<div class="output"><div></div></div>
|
||||
</div>
|
||||
<div class="fn-none" data-index="search">
|
||||
<div tabindex="-1" class="search">
|
||||
<div class="search">
|
||||
<div class="tabs fn-none">
|
||||
<div class="current" data-index="first">
|
||||
<span class="first"></span><span class="ico-close font-ico"></span>
|
||||
|
@ -553,7 +553,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="fn-none" data-index="notification">
|
||||
<div tabindex="-1" class="notification"><table cellpadding="0" cellspacing="0"></table></div>
|
||||
<div class="notification"><table cellpadding="0" cellspacing="0"></table></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -589,7 +589,7 @@
|
|||
</div>
|
||||
<div id="dialogGoFilePrompt" class="dialog-prompt fn-none">
|
||||
<input/>
|
||||
<ul class="list" tabindex="-1"></ul>
|
||||
<ul class="list"></ul>
|
||||
</div>
|
||||
<div id="dialogSearchForm" class="dialog-form fn-none">
|
||||
<input placeholder="{{.i18n.keyword}}" />
|
||||
|
|
Loading…
Reference in New Issue