adding OxLabel

This commit is contained in:
Rolux 2010-02-27 09:46:49 +01:00
commit 563d5bdb9f
4 changed files with 70 additions and 6 deletions

View file

@ -59,6 +59,7 @@ Forms
.OxThemeClassic .OxButton,
.OxThemeClassic .OxInput,
.OxThemeClassic .OxLabel,
.OxThemeClassic .OxRange,
.OxThemeClassic .OxTrack {
border: 1px solid rgb(176, 176, 176);
@ -112,6 +113,10 @@ Forms
color: rgb(160, 160, 160)
}
.OxThemeClassic .OxLabel {
background: rgb(208, 208, 208);
}
/*
================================================================================
Menus

View file

@ -317,7 +317,7 @@ div.OxInput {
div.OxInput.OxMedium {
height: 14px;
}
div.OxInput > .OxLabel {
div.OxInput > .OxInputLabel {
float: left;
padding-left: 8px;
text-overflow: ellipsis;
@ -337,8 +337,17 @@ input.OxInput {
float: left;
margin: -1px -1px 0 -1px;
}
textarea.OxInput {
/*
--------------------------------------------------------------------------------
OxLabel
--------------------------------------------------------------------------------
*/
.OxLabel {
height: 14px;
border: 1px;
padding: 0 8px 0 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}
/*
--------------------------------------------------------------------------------