59 lines
873 B
CSS
59 lines
873 B
CSS
|
|
/**
|
|
* @file
|
|
* Generic theme-independent base styles.
|
|
*/
|
|
|
|
/**
|
|
* Autocomplete.
|
|
*/
|
|
/* Animated throbber */
|
|
html.js input.form-autocomplete {
|
|
background-position: 0% center;
|
|
}
|
|
html.js input.throbbing {
|
|
background-position: 0% center;
|
|
}
|
|
|
|
/**
|
|
* Progress bar.
|
|
*/
|
|
.progress .percentage {
|
|
float: left;
|
|
}
|
|
.progress-disabled {
|
|
float: right;
|
|
}
|
|
.ajax-progress {
|
|
float: right;
|
|
}
|
|
.ajax-progress .throbber {
|
|
float: right;
|
|
}
|
|
|
|
/**
|
|
* TableDrag behavior.
|
|
*/
|
|
.draggable a.tabledrag-handle {
|
|
float: right;
|
|
margin-right: -1em;
|
|
margin-left: 0;
|
|
}
|
|
a.tabledrag-handle .handle {
|
|
margin: -0.4em 0.5em;
|
|
padding: 0.42em 0.5em;
|
|
}
|
|
div.indentation {
|
|
float: right;
|
|
margin: -0.4em -0.4em -0.4em 0.2em;
|
|
padding: 0.42em 0.6em 0.42em 0;
|
|
}
|
|
div.tree-child,
|
|
div.tree-child-last {
|
|
background-position: -65px center;
|
|
}
|
|
.tabledrag-toggle-weight-wrapper {
|
|
text-align: left;
|
|
}
|
|
|