There is a patch here #1826466: Merge changes from Github version into this project (http://drupal.org/node/1826466#comment-6672284) that allows us to set a fixed width/height of the modal-- sweet! But it would be also great it we could send the "max-width" and "max-height" so that we can make this mobile friendly. I would presume my hook_modal_style would look something like this?

Also, what are the possible "type" values?

function mymodule_modal_styles() {
  $styles = array();
  $styles['mystyle'] = array(
    'modalSize' => array(
      'type' => 'fixed',
      'width' => '100%',
      'height' => '100%',
      'max-width' => 800,
      'max-height' => 600,
    ),
  );

  return $styles;
}

Comments

capellic’s picture

Issue summary: View changes

Improved link to other case.

quotesBro’s picture

Issue summary: View changes
Status: Active » Closed (duplicate)
quotesBro’s picture

Hmm, didn't notice that this issue is in the 'CTools Auto-modal' issue queue.
However, I suppose it's related to CTools, not to CTools Auto-modal.