12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- * @file
- * Generic theme-independent base styles.
- */
- /**
- * Autocomplete.
- */
- /* Animated throbber */
- html.js input.form-autocomplete {
- background-position: 0% 2px;
- }
- html.js input.throbbing {
- background-position: 0% -18px;
- }
- /**
- * 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;
- }
|