mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
26b52dd772
API CHANGE Upgraded jQuery UI themes from v1.6rc1 to v1.8rc3. Removed 'flora' and 'default' themes, replaced with the 'base' and 'smoothness' themes found in the default distribution git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@100842 467b73ca-7a2a-4603-9d3b-597d59a354a9
35 lines
764 B
CSS
Executable File
35 lines
764 B
CSS
Executable File
/* Autocomplete
|
|
----------------------------------*/
|
|
.ui-autocomplete { position: absolute; cursor: default; }
|
|
.ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; }
|
|
|
|
/* workarounds */
|
|
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
|
|
|
/* Menu
|
|
----------------------------------*/
|
|
.ui-menu {
|
|
list-style:none;
|
|
padding: 2px;
|
|
margin: 0;
|
|
display:block;
|
|
}
|
|
.ui-menu .ui-menu {
|
|
margin-top: -3px;
|
|
}
|
|
.ui-menu .ui-menu-item {
|
|
margin:0;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
.ui-menu .ui-menu-item a {
|
|
text-decoration:none;
|
|
display:block;
|
|
padding:.2em .4em;
|
|
line-height:1.5;
|
|
}
|
|
.ui-menu .ui-menu-item a.ui-state-hover,
|
|
.ui-menu .ui-menu-item a.ui-state-active {
|
|
margin: -1px;
|
|
}
|