1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/**
* @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;
}
|