fix CSS for selected and disabled file upload menu entries; update example
This commit is contained in:
parent
1ab4634fa1
commit
f3d5a739a3
2 changed files with 7 additions and 2 deletions
|
@ -121,7 +121,10 @@ Ox.load('UI', function() {
|
||||||
}},
|
}},
|
||||||
{id: 'files', title: 'Select Files...', file: {
|
{id: 'files', title: 'Select Files...', file: {
|
||||||
width: 80
|
width: 80
|
||||||
}}
|
}},
|
||||||
|
{id: 'disabled', title: 'Disabled', file: {
|
||||||
|
width: 80
|
||||||
|
}, disabled: true}
|
||||||
]}
|
]}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
|
|
@ -1102,6 +1102,7 @@ Menus
|
||||||
background-color: $menuBorder;
|
background-color: $menuBorder;
|
||||||
}
|
}
|
||||||
.$themeClass .OxMenu .OxItem.OxSelected,
|
.$themeClass .OxMenu .OxItem.OxSelected,
|
||||||
|
.$themeClass .OxMenu .OxItem.OxSelected input,
|
||||||
.$themeClass .OxMenu .OxScrollbar.OxSelected {
|
.$themeClass .OxMenu .OxScrollbar.OxSelected {
|
||||||
background-image: -moz-linear-gradient(top, $menuSelectedGradient);
|
background-image: -moz-linear-gradient(top, $menuSelectedGradient);
|
||||||
background-image: -ms-linear-gradient(top, $menuSelectedGradient);
|
background-image: -ms-linear-gradient(top, $menuSelectedGradient);
|
||||||
|
@ -1110,7 +1111,8 @@ Menus
|
||||||
background-image: linear-gradient(top, $menuSelectedGradient);
|
background-image: linear-gradient(top, $menuSelectedGradient);
|
||||||
color: $menuSelectedColor;
|
color: $menuSelectedColor;
|
||||||
}
|
}
|
||||||
.$themeClass .OxMenu .OxItem.OxDisabled .OxCell {
|
.$themeClass .OxMenu .OxItem.OxDisabled .OxCell,
|
||||||
|
.$themeClass .OxMenu .OxItem.OxDisabled .OxCell input {
|
||||||
color: $menuDisabledColor;
|
color: $menuDisabledColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue