v4.2.3
This commit is contained in:
parent
f5a07a4e99
commit
b08eee140a
42
FineUI.Examples/res/css/common.css
Normal file
42
FineUI.Examples/res/css/common.css
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
body {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.marginr {
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.formitem {
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clear {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol.result {
|
||||||
|
list-style-type: decimal;
|
||||||
|
margin: 10px 0 10px 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.result {
|
||||||
|
margin: 10px 0;
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.result th {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.result td, table.result th {
|
||||||
|
border-bottom: solid 1px #efefef;
|
||||||
|
padding: 5px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.highlight {
|
||||||
|
font-weight: bold;
|
||||||
|
color: red;
|
||||||
|
}
|
111
FineUI.Examples/res/css/default.css
Normal file
111
FineUI.Examples/res/css/default.css
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
#header {
|
||||||
|
position: relative;
|
||||||
|
padding: 10px 10px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header a.logo {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header a.title {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 24px;
|
||||||
|
text-decoration: none;
|
||||||
|
line-height: 36px;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#header .themeroller {
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header .themeroller a {
|
||||||
|
font-size: 20px;
|
||||||
|
text-decoration: none;
|
||||||
|
line-height: 36px;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#logo {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 20px;
|
||||||
|
right: 0;
|
||||||
|
filter: alpha(opacity=80);
|
||||||
|
-moz-opacity: 0.8;
|
||||||
|
opacity: 0.8;
|
||||||
|
z-index: 100000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.isnew {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottomtable {
|
||||||
|
width: 100%;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修正选项卡标题中放置红色[New!]时,底部出现的一行空白线 */
|
||||||
|
.f-theme-neptune .x-tab .x-tab-inner {
|
||||||
|
line-height: 16px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* 主题相关样式 - neptune */
|
||||||
|
.f-theme-neptune #header,
|
||||||
|
.f-theme-neptune .bottomtable,
|
||||||
|
.f-theme-neptune .x-splitter {
|
||||||
|
background-color: #1475BB;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.f-theme-neptune #header a,
|
||||||
|
.f-theme-neptune .bottomtable a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* 主题相关样式 - blue */
|
||||||
|
.f-theme-blue #header,
|
||||||
|
.f-theme-blue .bottomtable {
|
||||||
|
background-color: #DFE8F6;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.f-theme-blue #header a,
|
||||||
|
.f-theme-blue .bottomtable a {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 主题相关样式 - gray */
|
||||||
|
.f-theme-gray #header,
|
||||||
|
.f-theme-gray .bottomtable {
|
||||||
|
background-color: #E0E0E0;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.f-theme-gray #header a,
|
||||||
|
.f-theme-gray .bottomtable a {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 主题相关样式 - access */
|
||||||
|
.f-theme-access #header,
|
||||||
|
.f-theme-access .bottomtable {
|
||||||
|
background-color: #3F4757;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.f-theme-access #header a,
|
||||||
|
.f-theme-access .bottomtable a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.f-theme-access .maincontent .x-panel-body {
|
||||||
|
background-image: none;
|
||||||
|
}
|
BIN
FineUI.Examples/res/icon.zip
Normal file
BIN
FineUI.Examples/res/icon.zip
Normal file
Binary file not shown.
BIN
FineUI.Examples/res/images/json.net.1.png
Normal file
BIN
FineUI.Examples/res/images/json.net.1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
BIN
FineUI.Examples/res/images/json.net.2.png
Normal file
BIN
FineUI.Examples/res/images/json.net.2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 56 KiB |
Loading…
x
Reference in New Issue
Block a user