| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 | 
/** * @file * Basic styling for common markup. *//** * HTML elements. */fieldset {  margin-bottom: 1em;  padding: 0.5em;}form {  margin: 0;  padding: 0;}hr {  border: 1px solid gray;  height: 1px;}img {  border: 0;}table {  border-collapse: collapse;}th {  border-bottom: 3px solid #ccc;  padding-right: 1em; /* LTR */  text-align: left; /* LTR */}tbody {  border-top: 1px solid #ccc;}tr.even,tr.odd {  background-color: #eee;  border-bottom: 1px solid #ccc;  padding: 0.1em 0.6em;}/** * Markup generated by theme_tablesort_indicator(). */th.active img {  display: inline;}td.active {  background-color: #ddd;}/** * Markup generated by theme_item_list(). */.item-list .title {  font-weight: bold;}.item-list ul {  margin: 0 0 0.75em 0;  padding: 0;}.item-list ul li {  margin: 0 0 0.25em 1.5em; /* LTR */  padding: 0;}/** * Markup generated by Form API. */.form-item,.form-actions {  margin-top: 1em;  margin-bottom: 1em;}tr.odd .form-item,tr.even .form-item {  margin-top: 0;  margin-bottom: 0;  white-space: nowrap;}.form-item .description {  font-size: 0.85em;}label {  display: block;  font-weight: bold;}label.option {  display: inline;  font-weight: normal;}.form-checkboxes .form-item,.form-radios .form-item {  margin-top: 0.4em;  margin-bottom: 0.4em;}.form-type-radio .description,.form-type-checkbox .description {  margin-left: 2.4em;}input.form-checkbox,input.form-radio {  vertical-align: middle;}.marker,.form-required {  color: #f00;}.form-item input.error,.form-item textarea.error,.form-item select.error {  border: 2px solid red;}/** * Inline items. */.container-inline .form-actions,.container-inline.form-actions {  margin-top: 0;  margin-bottom: 0;}/** * Markup generated by theme_more_link(). */.more-link {  text-align: right; /* LTR */}/** * Markup generated by theme_more_help_link(). */.more-help-link {  text-align: right; /* LTR */}.more-help-link a {  background: url(../../misc/help.png) 0 50% no-repeat; /* LTR */  padding: 1px 0 1px 20px; /* LTR */}/** * Markup generated by theme_pager(). */.item-list .pager {  clear: both;  text-align: center;}.item-list .pager li {  background-image: none;  display: inline;  list-style-type: none;  padding: 0.5em;}.pager-current {  font-weight: bold;}/** * Autocomplete. * * @see autocomplete.js *//* Suggestion list */#autocomplete li.selected {  background: #0072b9;  color: #fff;}/** * Collapsible fieldsets. * * @see collapse.js */html.js fieldset.collapsible .fieldset-legend {  background: url(../../misc/menu-expanded.png) 5px 65% no-repeat; /* LTR */  padding-left: 15px; /* LTR */}html.js fieldset.collapsed .fieldset-legend {  background-image: url(../../misc/menu-collapsed.png); /* LTR */  background-position: 5px 50%; /* LTR */}.fieldset-legend span.summary {  color: #999;  font-size: 0.9em;  margin-left: 0.5em;}/** * TableDrag behavior. * * @see tabledrag.js */tr.drag {  background-color: #fffff0;}tr.drag-previous {  background-color: #ffd;}.tabledrag-toggle-weight {  font-size: 0.9em;}body div.tabledrag-changed-warning {  margin-bottom: 0.5em;}/** * TableSelect behavior. * * @see tableselect.js*/tr.selected td {  background: #ffc;}td.checkbox,th.checkbox {  text-align: center;}/** * Progress bar. * * @see progress.js */.progress {  font-weight: bold;}.progress .bar {  background: #ccc;  border-color: #666;  margin: 0 0.2em;  -moz-border-radius: 3px;  -webkit-border-radius: 3px;  border-radius: 3px;}.progress .filled {  background: #0072b9 url(../../misc/progress.gif);}
 |