12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082 |
- /**
- * The .theme.css file is intended to contain presentation declarations including
- * images, borders, colors, and fonts.
- */
- /* @group Reset */
- .views-admin .links {
- list-style: none outside none;
- margin: 0;
- }
- .views-admin a:hover {
- text-decoration: none;
- }
- /* @end */
- /* @group Layout */
- .box-padding {
- padding-left: 12px;
- padding-right: 12px;
- }
- .box-margin {
- margin: 12px 12px 0 12px;
- }
- /* @end */
- /* @group Icons */
- .views-admin .icon {
- height: 16px;
- width: 16px;
- }
- .views-admin .icon,
- .views-admin .icon-text {
- background-attachment: scroll;
- background-image: url('../images/sprites.png');
- background-position: left top; /* LTR */
- background-repeat: no-repeat;
- }
- .views-admin a.icon {
- background-image: url('../images/sprites.png'),
- -moz-linear-gradient(
- -90deg,
- #fff 0px,
- #e8e8e8 100%
- );
- background-image: url('../images/sprites.png'),
- -webkit-gradient(
- linear,
- left top,
- left bottom,
- color-stop(0.0, rgba(255, 255, 255, 1.0)),
- color-stop(1.0, rgba(232, 232, 232, 1.0))
- );
- background-image: url('../images/sprites.png'),
- -webkit-linear-gradient(
- -90deg,
- #fff 0px,
- #e8e8e8 100%
- );
- background-repeat: no-repeat, repeat-y;
- border: 1px solid #ddd;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- -moz-box-shadow: 0 0 0 rgba(0,0,0,0.3333) inset;
- -webkit-box-shadow: 0 0 0 rgba(0,0,0,0.3333) inset;
- box-shadow: 0 0 0 rgba(0,0,0,0.3333) inset;
- }
- .views-admin a.icon:hover {
- border-color: #d0d0d0;
- -moz-box-shadow: 0 0 1px rgba(0,0,0,0.3333) inset;
- -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.3333) inset;
- box-shadow: 0 0 1px rgba(0,0,0,0.3333) inset;
- }
- .views-admin a.icon:active {
- border-color: #c0c0c0;
- }
- /**
- * Targets a <span> element inside an <a> element.
- * This assumes no visible text from the span.
- */
- .views-admin span.icon {
- display: inline-block;
- float: left;
- position: relative;
- }
- .views-admin .icon.compact {
- display: block;
- overflow: hidden;
- text-indent: -9999px;
- }
- /* Targets any element with an icon -> text combo */
- .views-admin .icon-text {
- padding-left: 19px; /* LTR */
- }
- .views-admin .icon.linked {
- background-position: center -153px;
- }
- .views-admin .icon.unlinked {
- background-position: center -195px;
- }
- .views-admin .icon.add {
- background-position: center 3px;
- }
- .views-admin a.icon.add {
- background-position: center 3px, left top;
- }
- .views-admin .icon.delete {
- background-position: center -52px;
- }
- .views-admin a.icon.delete {
- background-position: center -52px, left top;
- }
- .views-admin .icon.rearrange {
- background-position: center -111px;
- }
- .views-admin a.icon.rearrange {
- background-position: center -111px, left top;
- }
- .views-displays .secondary a:hover > .icon.add {
- background-position: center -25px;
- }
- .views-displays .secondary .open a:hover > .icon.add {
- background-position: center 3px;
- }
- /* @end */
- /* @group Forms */
- fieldset.box-padding {
- border: none;
- }
- .views-admin fieldset fieldset {
- margin-bottom: 0;
- }
- .form-item {
- margin-top: 9px;
- padding-bottom: 0;
- padding-top: 0;
- }
- .form-type-checkbox {
- margin-top: 6px;
- }
- input.form-checkbox,
- input.form-radio {
- vertical-align: baseline;
- }
- .form-submit:not(.js-hide) + .form-submit,
- .views-admin a.button:not(.js-hide) + a.button {
- margin-left: 1em; /* LTR */
- }
- .container-inline {
- padding-top: 15px;
- }
- .container-inline > * + *,
- .container-inline .fieldset-wrapper > * + * {
- padding-left: 4pt; /* LTR */
- }
- .views-admin fieldset fieldset.container-inline {
- margin-bottom: 1em;
- margin-top: 1em;
- padding-top: 0;
- }
- .views-admin fieldset fieldset.container-inline > .fieldset-wrapper {
- padding-bottom: 0;
- }
- /* Indent form elements so they're directly underneath the label of the checkbox that reveals them */
- .views-admin .form-type-checkbox + .form-wrapper {
- margin-left: 16px; /* LTR */
- }
- /* Hide 'remove' checkboxes. */
- .views-remove-checkbox {
- display: none;
- }
- /* sizes the labels of checkboxes and radio button to the height of the text */
- .views-admin .form-type-checkbox label,
- .views-admin .form-type-radio label {
- line-height: 2;
- }
- /* @group Dependent options */
- .views-admin-dependent .form-item {
- margin-bottom: 6px;
- margin-top: 6px;
- }
- /* @end */
- /* @end */
- /* @group Lists */
- .horizontal > * + * {
- margin-left: 9px; /* LTR */
- padding-left: 9px; /* LTR */
- }
- .views-ui-view-title {
- font-weight: bold;
- }
- /* @end */
- /* @group Messages */
- .view-changed {
- margin-bottom: 21px;
- }
- /* @end */
- /* @group Headings */
- /* Intentionally targeting h1 */
- .views-admin h1.unit-title {
- font-size: 15px;
- line-height: 1.6154;
- margin-bottom: 0;
- margin-top: 18px;
- }
- /* @end */
- /* @group Tables */
- table td,
- table th {
- vertical-align: top;
- }
- /* @end */
- /* @group List views */
- /* These header classes are ambiguous and should be scoped to th elements */
- th.views-ui-name {
- width: 18%;
- }
- th.views-ui-description {
- width: 26%;
- }
- th.views-ui-tag {
- width: 8%;
- }
- th.views-ui-path {
- width: auto;
- }
- th.views-ui-operations {
- width: 24%;
- }
- /* @end */
- /* @group Add view */
- /**
- * Drupal core forces AJAX triggering elements to float left when they are
- * disabled due to AJAX processing. On the add view page, we have inline
- * containers where we don't want that behavior; it causes the select dropdown
- * which is triggered to jump to the left while the AJAX throbber is active.
- *
- * See also http://drupal.org/node/769936 (Drupal core issue); when that is
- * fixed it may no longer be necessary to do this.
- */
- .views-admin .container-inline .progress-disabled {
- float: none;
- }
- /**
- * I wish this didn't have to be so specific
- */
- .form-item-description-enable + .form-item-description {
- margin-top: 0;
- }
- .form-item-description-enable label {
- font-weight: bold;
- }
- .form-item-page-create,
- .form-item-block-create {
- margin-top: 13px;
- }
- .form-item-page-create label,
- .form-item-block-create label {
- font-weight: bold;
- }
- /* This makes the form elements after the "Display Format" label flow underneath the label */
- .form-item-page-style-style-plugin > label,
- .form-item-block-style-style-plugin > label {
- display: block;
- }
- .views-attachment .options-set label {
- font-weight: normal;
- }
- /* @end */
- /* @group Rearrange filters
- *
- * Styling for the form that allows views filters to be rearranged.
- */
- .group-populated {
- display: none;
- }
- td.group-title {
- font-weight: bold;
- }
- .views-ui-dialog td.group-title {
- margin: 0;
- padding: 0;
- }
- .views-ui-dialog td.group-title span {
- display: block;
- height: 1px;
- overflow: hidden;
- }
- .group-message .form-submit,
- .views-remove-group-link,
- #views-add-group {
- float: right;
- clear: both;
- }
- .views-operator-label {
- font-style: italic;
- font-weight: bold;
- padding-left: 0.5em; /* LTR */
- text-transform: uppercase;
- }
- .grouped-description,
- .exposed-description {
- float: left;
- padding-top: 3px;
- padding-right: 10px;
- }
- /* This keeps the collapsible fieldsets of options from crashing into the bottom
- * of the edit option columns. Because the edit option columns are floated, the collapsible
- * fieldsets need to be floated as well so that the margin above the fieldset interacts with
- * the float edit option columns.
- */
- #edit-options .collapsible {
- float: left;
- width: 100%;
- }
- #edit-options-more {
- clear: both;
- }
- /* @end */
- /* @group Attachments */
- .views-displays {
- border: 1px solid #ccc;
- padding-bottom: 36px;
- }
- .views-display-top {
- background-color: #f9f9f9;
- border-bottom: 1px solid #ccc;
- padding: 8px 8px 8px; /* LTR */
- position: relative;
- }
- .views-display-top .secondary {
- margin-right: 18em;
- }
- .views-display-top .secondary > li {
- margin-right: 6px;
- padding-left: 0;
- }
- .views-display-top .secondary > li:last-child {
- margin-right: 0;
- }
- #views-display-extra-actions li {
- padding: 3px 9px;
- }
- .views-display-top #views-display-top {
- max-width: 180px;
- }
- /* @end */
- /* @group Attachment details tabs
- *
- * The tabs that switch between sections
- */
- ul#views-display-menu-tabs {
- margin-right: 200px;
- }
- ul#views-display-menu-tabs li {
- margin-bottom: 5px;
- }
- ul#views-display-menu-tabs li.add ul.action-list li {
- margin: 0;
- }
- .views-displays .secondary a {
- border: 1px solid #cbcbcb;
- display: inline-block;
- font-size: small;
- line-height: 1.3333;
- padding: 3px 7px;
- }
- /**
- * Display a red border if the display doesn't validate.
- */
- .views-displays ul.secondary li.active a.active.error,
- .views-displays .secondary a.error {
- border: 2px solid #ed541d;
- padding: 1px 6px;
- }
- .views-displays .secondary a:focus {
- outline: none;
- }
- .views-displays .secondary a:hover,
- .views-displays .secondary .active a {
- background-color: #666;
- color: #fff;
- border-bottom-width: 1px;
- }
- .views-displays .secondary .open > a {
- background-color: #f1f1f1;
- border-bottom: 1px solid transparent;
- position: relative;
- }
- .views-displays .secondary .open > a:hover {
- background-color: #f1f1f1;
- }
- .views-displays .secondary .action-list li {
- background-color: #f1f1f1;
- border-color: #cbcbcb;
- border-style: solid;
- border-width: 0 1px;
- padding: 2px 9px;
- }
- .views-displays .secondary .action-list li:first-child {
- border-width: 1px 1px 0;
- }
- .views-displays .secondary .action-list li.last {
- border-width: 0 1px 1px;
- }
- .views-displays .secondary .action-list li:last-child {
- border-width: 0 1px 1px;
- }
- .views-displays .secondary .action-list input.form-submit {
- background: none repeat scroll 0 0 transparent;
- border: medium none;
- margin: 0;
- padding: 0;
- }
- .views-displays .secondary .action-list li:hover {
- background-color: #ddd;
- }
- /* @end */
- /* @group Attachment details */
- #edit-display-settings-title {
- font-size: 14px;
- line-height: 1.5;
- margin: 0;
- }
- #edit-display-settings-top {
- padding-bottom: 4px;
- }
- #edit-display-settings-content {
- margin-top: 12px;
- }
- #edit-display-settings-main {
- margin-top: 15px;
- }
- /* @end */
- /* @group Attachment columns
- *
- * The columns that contain the option buckets e.g. Format and Basic Settings
- */
- .views-display-column + .views-display-column {
- margin-top: 0;
- }
- /* @end */
- /* @group Auto preview
- *
- * The auto-preview checkbox line.
- */
- #views-ui-preview-form > div > div,
- #views-ui-preview-form > div > input {
- float: left;
- }
- #views-ui-preview-form .form-type-checkbox {
- margin-top: 2px;
- margin-left: 2px;
- }
- #views-ui-preview-form .form-type-textfield {
- margin-top: 5px;
- }
- #views-ui-preview-form .arguments-preview {
- font-size: 1em;
- }
- #views-ui-preview-form .arguments-preview,
- #views-ui-preview-form .form-type-textfield {
- margin-left: 14px;
- }
- #views-ui-preview-form .form-type-textfield label {
- display: inline-block;
- float: left;
- font-weight: normal;
- height: 6ex;
- margin-right: 0.75em;
- }
- #views-ui-preview-form .form-type-textfield .description {
- white-space: nowrap;
- }
- /* @end */
- /* @group Attachment buckets
- *
- * These are the individual "buckets," or boxes, inside the display settings area
- */
- .views-ui-display-tab-bucket {
- border: 1px solid #f3f3f3;
- line-height: 20px;
- margin: 0;
- padding-top: 4px;
- }
- .views-ui-display-tab-bucket + .views-ui-display-tab-bucket {
- border-top: medium none;
- }
- .views-ui-display-tab-bucket > h3,
- .views-ui-display-tab-bucket > .views-display-setting {
- padding: 2px 6px 4px;
- }
- .views-ui-display-tab-bucket h3 {
- font-size: small;
- margin: 0;
- }
- .views-ui-display-tab-bucket .horizontal.actions {
- margin-right: 6px;
- }
- .views-ui-display-tab-bucket .actions.horizontal li + li {
- margin-left: 3px;
- padding-left: 3px;
- }
- .views-ui-display-tab-bucket.access {
- padding-top: 0;
- }
- .views-ui-display-tab-bucket.page-settings {
- border-bottom: medium none;
- }
- .views-display-setting .views-ajax-link {
- margin-left: 0.2083em;
- margin-right: 0.2083em;
- }
- /* @end */
- /* @group Attachment bucket overridden
- *
- * Applies a overriden(italics) font style to overridden buckets.
- * The better way to implement this would be to add the overridden class
- * to the bucket header when the bucket is overridden and style it as a
- * generic icon classed element. For the moment, we'll style the bucket
- * header specifically with the overriden font style.
- */
- .views-ui-display-tab-setting.overridden,
- .views-ui-display-tab-bucket.overridden > h3 {
- font-style: italic;
- }
- /* @end */
- /* @group Attachment bucket drop button */
- .views-ui-display-tab-bucket {
- position: relative;
- }
- /* @end */
- /* @group Attachment bucket rows
- *
- * This is each row within one of the "boxes."
- */
- .views-ui-display-tab-bucket .views-display-setting {
- color: #666;
- font-size: 12px;
- padding-bottom: 2px;
- }
- .views-ui-display-tab-bucket .even {
- background-color: #f9f9f9;
- }
- .views-ui-display-tab-bucket .views-group-text {
- margin-top: 6px;
- margin-bottom: 6px;
- }
- .views-display-setting .label {
- margin-right: 3pt; /* LTR */
- }
- /* @end */
- /* @group Preview
- *
- * The preview controls and the preview pane
- */
- #edit-displays-preview-controls .fieldset-wrapper > * {
- float: left;
- }
- #edit-displays-preview-controls .fieldset-wrapper > .form-item {
- margin-top: 0.3333em;
- }
- #edit-displays-preview-controls .form-submit {
- display: inline-block;
- margin-right: 1em;
- }
- #edit-displays-preview-controls .form-type-textfield {
- margin-left: 1em;
- position: relative;
- }
- #edit-displays-preview-controls .form-type-textfield label {
- border-left: 1px solid #999;
- padding-left: 1em;
- position: absolute;
- }
- #edit-displays-preview-controls .form-type-textfield label:after {
- content: ":";
- }
- #edit-displays-preview-controls .form-type-textfield label ~ * {
- margin-left: 105px;
- }
- /* @end */
- /* @group Modal dialog box
- *
- * The contents of the popup dialog on the views edit form.
- */
- .views-ui-dialog {
- font-size: small;
- padding: 0;
- }
- .views-ui-dialog .ui-dialog-titlebar-close {
- background: url('../images/close.png') no-repeat scroll 6px 3px #f3f4ee;
- border-color: #aaa;
- -moz-border-radius: 0 10px 12px 0;
- -webkit-border-radius: 0 10px 12px 0;
- border-radius: 0 10px 12px 0;
- border-style: solid;
- border-width: 1px 1px 1px 0;
- -moz-box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1);
- -webkit-box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1);
- box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1);
- height: 22px;
- right: -28px;
- top: 0;
- width: 26px;
- }
- .views-ui-dialog .ui-dialog-titlebar-close span {
- display: none;
- }
- .views-filterable-options .form-type-checkbox {
- border: 1px solid #ccc;
- padding: 5px 8px;
- border-top: none;
- }
- .views-filterable-options {
- border-top: 1px solid #ccc;
- }
- .views-filterable-options .even .form-type-checkbox {
- background-color: #f3f4ee;
- }
- .filterable-option .form-item {
- margin-bottom: 0;
- margin-top: 0;
- }
- .views-filterable-options .form-type-checkbox .description {
- margin-top: 0;
- margin-bottom: 0;
- }
- #views-filterable-options-controls {
- margin: 1em 0;
- }
- #views-filterable-options-controls .form-item {
- width: 45%;
- margin-right: 2%; /* LTR */
- }
- #views-filterable-options-controls input,
- #views-filterable-options-controls select {
- width: 200px;
- }
- .views-ui-dialog .views-filterable-options {
- margin-bottom: 10px;
- }
- .views-ui-dialog .views-add-form-selected.container-inline {
- padding-top: 0;
- }
- .views-ui-dialog .views-add-form-selected.container-inline > div {
- display: block;
- }
- .views-ui-dialog #edit-selected {
- margin: 0;
- padding: 6px 16px;
- }
- .views-ui-dialog #views-ajax-title,
- .views-ui-dialog .views-override {
- background-color: #f3f4ee;
- }
- .views-ui-dialog .views-override {
- padding: 0 13px 8px;
- }
- .views-ui-dialog .views-override > * {
- margin: 0;
- }
- .views-ui-dialog #views-ajax-title {
- font-size: 15px;
- padding: 8px 13px;
- }
- .views-ui-dialog #views-progress-indicator {
- font-size: 11px;
- position: absolute;
- right: 10px; /* LTR */
- top: 8px;
- }
- .views-ui-dialog #views-progress-indicator:before {
- content: "\003C\00A0";
- }
- .views-ui-dialog #views-progress-indicator:after {
- content: "\00A0\003E";
- }
- .views-ui-dialog .scroll {
- border: 1px solid #ccc;
- border-width: 1px 0;
- padding: 8px 13px;
- }
- .views-ui-dialog fieldset .item-list {
- padding-left: 2em;
- }
- .views-ui-dialog .form-buttons {
- background-color: #f3f4ee;
- padding: 8px 13px;
- }
- .views-ui-dialog .form-buttons input {
- margin-bottom: 0;
- margin-right: 0;
- }
- /* @end */
- /* @group Configure filter criteria */
- /* @todo the width and border info could be moved into a more generic class */
- /* @todo Make this a class to be used anywhere there's node types? */
- .form-type-checkboxes #edit-options-value,
- .form-type-checkboxes #edit-options-validate-options-node-types {
- border-color: #ccc;
- border-style: solid;
- border-width: 1px;
- max-height: 210px;
- overflow: auto;
- margin-top: 5px;
- padding: 0 5px;
- width: 190px;
- }
- /* @end */
- /* @group Rearrange filter criteria */
- #views-ui-rearrange-filter-form table {
- border-collapse: collapse;
- }
- #views-ui-rearrange-filter-form tr td[rowspan] {
- border-color: #cdcdcd;
- border-style: solid;
- border-width: 0 1px 1px 1px;
- }
- #views-ui-rearrange-filter-form tr[id^="views-row"] {
- border-right: 1px solid #cdcdcd;
- }
- #views-ui-rearrange-filter-form tr[id^="views-row"].even td {
- background-color: #f3f4ed;
- }
- #views-ui-rearrange-filter-form .views-group-title {
- border-top: 1px solid #cdcdcd;
- }
- #views-ui-rearrange-filter-form .group-empty {
- border-bottom: 1px solid #cdcdcd;
- }
- /* @end */
- /* @group Expose filter form items */
- .form-item-options-expose-required,
- .form-item-options-expose-label,
- .form-item-options-expose-description {
- margin-bottom: 6px;
- margin-left: 18px;
- margin-top: 6px;
- }
- /* @end */
- /* @group Live preview elements */
- #views-preview-wrapper {
- border: 1px solid #ccc;
- border-top: 2px solid #ccc;
- padding-bottom: 12px;
- padding-top: 12px;
- }
- #views-ui-preview-form {
- margin: 12px;
- }
- #views-live-preview {
- margin: 0 12px;
- }
- #views-live-preview .views-query-info {
- overflow: auto;
- }
- /* Intentionally targeting h1 */
- #views-live-preview h1.section-title {
- color: #818181;
- display: inline-block;
- font-size: 13px;
- font-weight: normal;
- line-height: 1.6154;
- margin-bottom: 0;
- margin-top: 0;
- }
- #views-live-preview .view > * {
- margin-top: 18px;
- }
- #views-live-preview .preview-section {
- border: 1px dashed #dedede;
- margin: 0 -5px;
- padding: 3px 5px;
- }
- #views-live-preview li.views-row + li.views-row {
- margin-top: 18px;
- }
- /* The div.views-row is intentional and excludes li.views-row, for example */
- #views-live-preview div.views-row + div.views-row {
- margin-top: 36px;
- }
- /* @group Query info table */
- .views-query-info table {
- border-collapse: separate;
- border-color: #ddd;
- border-spacing: 0;
- margin: 10px 0;
- }
- .views-query-info table tr {
- background-color: #f9f9f9;
- }
- .views-query-info table th,
- .views-query-info table td {
- color: #666;
- padding: 4px 10px;
- }
- /* @end */
- /* @group Grid */
- #views-live-preview .views-view-grid th,
- #views-live-preview .views-view-grid td {
- vertical-align: top;
- }
- /* @end */
- /* @group HTML list */
- #views-live-preview .view-content > .item-list > ul {
- list-style-position: outside;
- padding-left: 21px; /* LTR */
- }
- /* @end */
- /* @end */
- /* @group Add/edit argument form */
- #edit-options-default-action {
- width: 300px;
- float: left;
- }
- #edit-options-exception.collapsible {
- float: right;
- width: 250px;
- margin-top: -2px;
- }
- /* @end */
- /* @group AJAX */
- /* Hide the drupal system throbber image */
- .ajax-progress .throbber {
- display: none;
- }
- .ajax-progress-throbber {
- background-color: #232323;
- background-image: url('../images/loading-small.gif');
- background-position: center center;
- background-repeat: no-repeat;
- -moz-border-radius: 7px;
- -webkit-border-radius: 7px;
- border-radius: 7px;
- height: 24px;
- opacity: .9;
- padding: 4px;
- width: 24px;
- }
- /* @end */
- /* @group Drupal
- *
- * Overrides to Drupal system CSS
- */
- div.messages {
- margin-bottom: 18px;
- }
- /* @end */
|