ajax_example.css

/*
 * @file
 * CSS for ajax_example.
 *
 * See ajax_example_dependent_dropdown_degrades for
 * details on what this file does. It is not used in any other example.
 */
 
/* Hides the next button when not degrading to non-javascript browser */
html.js .next-button { 
  display: none; 
}

/* Makes the next/choose button align to the right of the select control */
.form-item-dropdown-first, .form-item-question-type-select {
  display: inline-block;
}

File

ajax_example/ajax_example.css

View source
  1. /*
  2. * @file
  3. * CSS for ajax_example.
  4. *
  5. * See @link ajax_example_dependent_dropdown_degrades @endlink for
  6. * details on what this file does. It is not used in any other example.
  7. */
  8. /* Hides the next button when not degrading to non-javascript browser */
  9. html.js .next-button {
  10. display: none;
  11. }
  12. /* Makes the next/choose button align to the right of the select control */
  13. .form-item-dropdown-first, .form-item-question-type-select {
  14. display: inline-block;
  15. }