some css fixes (selected buttons)
This commit is contained in:
parent
706af769a8
commit
ad75054336
2 changed files with 44 additions and 13 deletions
|
@ -469,16 +469,17 @@ Document
|
|||
.OxDocument div {
|
||||
border-width: 0;
|
||||
border-style: solid;
|
||||
//font-size: 12px;
|
||||
line-height: 15px;
|
||||
//font-family: Georgia, Palatino, DejaVu Serif, Book Antiqua, Palatino Linotype, Times New Roman, serif;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
-moz-user-select: text;
|
||||
-o-user-select: text;
|
||||
-webkit-user-select: text;
|
||||
}
|
||||
.OxDocument h1 {
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
font-size: 20px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.OxDocument table {
|
||||
border-spacing: 0;
|
||||
|
@ -496,6 +497,14 @@ Document
|
|||
padding-right: 0;
|
||||
}
|
||||
|
||||
.OxDocument code {
|
||||
font-size: 12px;
|
||||
}
|
||||
.OxDocument .OxSyntaxHighlighter div {
|
||||
font-size: 11px;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Documentation
|
||||
|
@ -507,6 +516,11 @@ Documentation
|
|||
//background: rgb(248, 248, 248);
|
||||
white-space: nowrap;
|
||||
}
|
||||
.OxDocPage .OxSection {
|
||||
font-family: Lucida Grande, Segoe UI, DejaVu Sans, Lucida Sans Unicode, Helvetica, Arial, sans-serif;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
|
@ -1396,7 +1410,15 @@ Lists
|
|||
}
|
||||
|
||||
.OxTreeList .OxItem .OxCell {
|
||||
border-right-width: 0
|
||||
height: 13px;
|
||||
padding-top: 2px;
|
||||
border-right-width: 0;
|
||||
font-family: Menlo, Monaco, DejaVu Sans Mono, Bitstream Vera Sans Mono, Consolas, Lucida Console, monospace;
|
||||
}
|
||||
.OxTreeList .OxItem .OxCell img {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -1779,6 +1801,18 @@ Panels
|
|||
overflow: auto;
|
||||
}
|
||||
|
||||
.OxSlidePanel {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.OxSlidePanel > div {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.OxSplitPanel {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
|
|
|
@ -256,7 +256,7 @@ Forms
|
|||
color: rgb(192, 192, 192);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxInput\ {
|
||||
.OxThemeModern .OxInput {
|
||||
color: rgb(192, 192, 192);
|
||||
}
|
||||
.OxThemeModern .OxButton,
|
||||
|
@ -270,7 +270,7 @@ Forms
|
|||
}
|
||||
.OxThemeModern .OxButton:active {
|
||||
background: rgb(80, 80, 80);
|
||||
//background: rgb(64, 64, 64);
|
||||
color: rgb(208, 208, 208);
|
||||
}
|
||||
.OxThemeModern .OxCheckbox:active {
|
||||
background: -moz-linear-gradient(top, rgb(16, 16, 16), rgb(48, 48, 48));
|
||||
|
@ -290,12 +290,9 @@ Forms
|
|||
.OxThemeModern .OxButton.OxSelected,
|
||||
.OxThemeModern .OxSelect.OxSelected,
|
||||
.OxThemeModern .OxCollapsePanel > .OxBar > .OxExtras > .OxSelect.OxSelected {
|
||||
//background: -moz-linear-gradient(left top, left bottom, from(rgb(80, 80, 80)), to(rgb(112, 112, 112)));
|
||||
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(80, 80, 80)), to(rgb(112, 112, 112)));
|
||||
background: -moz-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
|
||||
background: -o-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
|
||||
background: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
|
||||
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), color-stop(0.1, rgb(32, 32, 32)), to(rgb(64, 64, 64)));
|
||||
background: -moz-linear-gradient(top, rgb(32, 32, 32), rgb(64, 64, 64));
|
||||
background: -o-linear-gradient(top, rgb(32, 32, 32), rgb(64, 64, 64));
|
||||
background: -webkit-linear-gradient(top, rgb(32, 32, 32), rgb(64, 64, 64));
|
||||
color: rgb(224, 224, 224);
|
||||
}
|
||||
.OxThemeModern .OxButton.OxTab.OxSelected {
|
||||
|
|
Loading…
Reference in a new issue