diff --git a/sites/all/modules/contrib/users/login_destination/login_destination.admin.inc b/sites/all/modules/contrib/users/login_destination/login_destination.admin.inc index a2743ace..076379ef 100644 --- a/sites/all/modules/contrib/users/login_destination/login_destination.admin.inc +++ b/sites/all/modules/contrib/users/login_destination/login_destination.admin.inc @@ -6,61 +6,248 @@ */ /** - * List destination rules. + * Form for editing an entire login destination at once. + * + * Shows list of all login destination. */ -function login_destination_overview() { - $header = array( - t('Destination'), - t('Triggers'), - t('Pages'), - t('Roles'), - array('data' => t('Operations'), 'colspan' => 2), - ); - $rows = array(); +function login_destination_overview_form($form, &$form_state) { // Get all login destination rules from the database. $result = db_select('login_destination', 'l') - ->fields('l', array('id', 'triggers', 'roles', 'pages_type', 'pages', 'destination')) + ->fields('l', array( + 'id', + 'triggers', + 'roles', + 'pages_type', + 'pages', + 'destination', + 'weight', + 'enabled', + ) + ) ->orderBy('weight') ->execute() ->fetchAll(); + $form['#tree'] = TRUE; + // Loop through the categories and add them to the table. foreach ($result as $data) { $triggers = array_map('check_plain', unserialize($data->triggers)); - if (empty($triggers)) + if (empty($triggers)) { $triggers = array(); + } $roles = array_map('check_plain', unserialize($data->roles)); - if (empty($roles)) + if (empty($roles)) { $roles = array(); + } + $form[$data->id]['destination']['#markup'] = theme('login_destination_destination', array('destination' => $data->destination)); + $form[$data->id]['triggers']['#markup'] = theme('login_destination_triggers', array('items' => $triggers)); + $form[$data->id]['pages']['#markup'] = theme('login_destination_pages', array('pages' => $data->pages, 'pages_type' => $data->pages_type)); + $form[$data->id]['roles']['#markup'] = theme('login_destination_roles', array('items' => $roles)); + + $form[$data->id]['weight'] = array( + '#type' => 'weight', + '#title' => t('Weight'), + '#delta' => 50, + '#default_value' => $data->weight, + '#title_display' => 'invisible', + ); + + $form[$data->id]['enabled'] = array( + '#type' => 'checkbox', + '#title' => t('Enabled'), + '#default_value' => $data->enabled, + '#title_display' => 'invisible', + ); + + // Build a list of operations. + $operations = array(); + $operations['edit'] = array( + '#type' => 'link', + '#title' => t('edit'), + '#href' => 'admin/config/people/login-destination/edit/' . $data->id, + ); + + $operations['delete'] = array( + '#type' => 'link', + '#title' => t('delete'), + '#href' => 'admin/config/people/login-destination/delete/' . $data->id, + ); + + $form[$data->id]['operations'] = $operations; + + } + + if (element_children($form)) { + $form['actions'] = array('#type' => 'actions'); + $form['actions']['submit'] = array( + '#type' => 'submit', + '#value' => t('Save configuration'), + ); + } + else { + $form['#empty_text'] = t('There is no Login Destination Rule.'); + } + + return $form; +} + +/** + * Returns HTML for a login destination list. + * + * @param array $variables + * An associative array containing: + * - form: A render element representing the form. + * + * @ingroup themeable + */ +function theme_login_destination_overview_form($variables) { + $form = $variables['form']; + + drupal_add_tabledrag('login-destination-overview', 'order', 'sibling', 'login-destination-weight'); + + $header = array( + t('Destination'), + t('Triggers'), + t('Pages'), + t('Roles'), + array('data' => t('Enabled'), 'class' => array('checkbox')), + t('Weight'), + array('data' => t('Operations'), 'colspan' => '2'), + ); + + $rows = array(); + foreach (element_children($form) as $ldid) { + if (isset($form[$ldid]['enabled'])) { + + $element = &$form[$ldid]; + + $operations = array(); + foreach (element_children($element['operations']) as $op) { + $operations[] = array('data' => drupal_render($element['operations'][$op]), 'class' => array('login-destination-operations')); + } + while (count($operations) < 2) { + $operations[] = ''; + } + + $row = array(); + $row[] = drupal_render($element['destination']); + $row[] = drupal_render($element['triggers']); + $row[] = drupal_render($element['pages']); + $row[] = drupal_render($element['roles']); + $row[] = array( + 'data' => drupal_render($element['enabled']), + 'class' => array( + 'checkbox', 'login-destination-enabled', + ), + ); + + $form[$ldid]['weight']['#attributes']['class'] = array('login-destination-weight'); + + $row[] = drupal_render($element['weight']); + $row = array_merge($row, $operations); + $row = array_merge(array('data' => $row), array()); + $row['class'][] = 'draggable'; + $rows[] = $row; + } + } + + $output = ''; + if (empty($rows)) { $rows[] = array( - theme('login_destination_destination', array('destination' => $data->destination)), - theme('login_destination_triggers', array('items' => $triggers)), - theme('login_destination_pages', array('pages' => $data->pages, 'pages_type' => $data->pages_type)), - theme('login_destination_roles', array('items' => $roles)), - l(t('Edit'), 'admin/config/people/login-destination/edit/' . $data->id), - l(t('Delete'), 'admin/config/people/login-destination/delete/' . $data->id), + array( + 'data' => $form['#empty_text'], + 'colspan' => '7', + ), ); } - if (!$rows) { - $rows[] = array(array( - 'data' => t('No rules available.'), - 'colspan' => 6, - )); - } - - $build['login-destination_table'] = array( - '#theme' => 'table', - '#header' => $header, - '#rows' => $rows, + $table_arguments = array( + 'header' => $header, + 'rows' => $rows, + 'attributes' => array( + 'id' => 'login-destination-overview', + ), ); - return $build; + + $output .= theme('table', $table_arguments); + + $output .= drupal_render_children($form); + + return $output; } +/** + * Submit handler for the login destination overview form. + * + * This function update the login destination rule attribute + * like rules are enabled/disabled or its weight. + * + * @see login_destination_overview_form() + */ +function login_destination_overview_form_submit($form, &$form_state) { + $element = &$form_state['values']; + foreach (element_children($element) as $ldid) { + if (isset($form[$ldid]['enabled'])) { + $login_destination_rules[$ldid] = $element[$ldid]; + $login_destination_rules[$ldid]['ldid'] = $ldid; + } + } + + foreach ($login_destination_rules as $ldid => $login_destination_rule) { + _login_destination_update_rules($login_destination_rule); + } + + drupal_set_message(t('Your configuration has been saved.'), 'status'); +} + +/** + * Save all our changed items to the database. + * + * @param array $login_destination_rule + * An associative array representing a login destination item: + * - enabled: (required) can contain 0 or 1, if rule is enabled then + * it should be 1 else 0. + * - weight: (required) can contain any integer value. + * + * @return bool + * The ldid of the saved login destination rule, or FALSE + * if the login destination rule could not be saved. + */ +function _login_destination_update_rules($login_destination_rule) { + + if (!(isset($login_destination_rule['enabled']) && isset($login_destination_rule['weight']) && isset($login_destination_rule['ldid']))) { + return FALSE; + } + + if ($login_destination_rule['enabled'] != 0 && $login_destination_rule['enabled'] != 1) { + return FALSE; + } + + $login_destination_rule['weight'] = intval($login_destination_rule['weight']); + + if (!is_int($login_destination_rule['weight'])) { + return FALSE; + } + + db_update('login_destination') + ->fields(array( + 'enabled' => $login_destination_rule['enabled'], + 'weight' => $login_destination_rule['weight'], + )) + ->condition('id', $login_destination_rule['ldid']) + ->execute(); + + return $login_destination_rule['ldid']; +} + +/** + * Render a destination of login destination rule. + */ function theme_login_destination_destination($variables) { $output = nl2br(check_plain($variables['destination'])); @@ -71,6 +258,9 @@ function theme_login_destination_destination($variables) { return $output; } +/** + * Render a trigger of login destination rule. + */ function theme_login_destination_triggers($variables) { $items = array_map('check_plain', $variables['items']); @@ -82,10 +272,11 @@ function theme_login_destination_triggers($variables) { foreach ($items as &$item) { switch ($item) { case 'login': - $item = 'Login'; + $item = t('Login'); break; + case 'logout': - $item = 'Logout'; + $item = t('Logout'); break; } $output .= $item . "
"; @@ -94,9 +285,12 @@ function theme_login_destination_triggers($variables) { return $output; } +/** + * Render a page type of login destination rule. + */ function theme_login_destination_pages($variables) { $type = $variables['pages_type']; - + if ($type == LOGIN_DESTINATION_REDIRECT_PHP) { return nl2br(check_plain($variables['pages'])); } @@ -120,11 +314,14 @@ function theme_login_destination_pages($variables) { $output .= "~ "; } $output .= $page . "
"; - } + } return $output; } +/** + * Render a roles of login destination rule. + */ function theme_login_destination_roles($variables) { $items = array_values(array_intersect_key(_login_destination_role_options(), $variables['items'])); @@ -139,7 +336,7 @@ function theme_login_destination_roles($variables) { * Category edit page. */ function login_destination_edit_form($form, &$form_state, array $rule = array()) { - // default values + // Default values. $rule += array( 'triggers' => array(), 'roles' => array(), @@ -167,18 +364,29 @@ function login_destination_edit_form($form, &$form_state, array $rule = array()) } else { $options = array( - LOGIN_DESTINATION_STATIC => t('Internal page or external URL'), - ); - $description = t("Specify page by using its path. Example path is %blog for the blog page. %front is the front page. %current is the current page. Precede with http:// for an external URL. Leave empty to redirect to a default page.", array('%blog' => 'blog', '%front' => '', '%current' => '')); + LOGIN_DESTINATION_STATIC => t('Internal page or external URL'), + ); + $description = t("Specify page by using its path. Example path is %blog for the blog page. %front is the front page. %current is the current page. Precede with http:// for an external URL. Leave empty to redirect to a default page.", array( + '%blog' => 'blog', + '%front' => '', + '%current' => '', + ) + ); if (module_exists('php') && $access) { $options += array(LOGIN_DESTINATION_SNIPPET => t('Page returned by this PHP code (experts only)')); - $description .= ' ' . t('If the PHP option is chosen, enter PHP code between %php. It should return either a string value or an array of params that the %function function will understand, e.g. %example. For more information, see the online API entry for url function. Note that executing incorrect PHP code can break your Drupal site.', array('%php' => '', '%function' => 'url($path = \'\', array $options = array())', '%example' => ' \'overlay=admin/config\', ), ); ?>', '@url' => 'http://api.drupal.org/api/drupal/includes--common.inc/function/url/7')); + $description .= ' ' . t('If the PHP option is chosen, enter PHP code between %php. It should return either a string value or an array of params that the %function function will understand, for example. %example. For more information, see the online API entry for url function. Note that executing incorrect PHP code can break your Drupal site.', array( + '%php' => '', + '%function' => 'url($path = \'\', array $options = array())', + '%example' => ' \'overlay=admin/config\', ), ); ?>', + '@url' => 'http://api.drupal.org/api/drupal/includes--common.inc/function/url/7', + ) + ); } $form['destination_type'] = array( '#type' => 'radios', - '#title' => 'Redirect to page', + '#title' => t('Redirect to page'), '#default_value' => $type, '#options' => $options, ); @@ -197,9 +405,9 @@ function login_destination_edit_form($form, &$form_state, array $rule = array()) $form['triggers'] = array( '#type' => 'checkboxes', '#title' => t('Redirect upon triggers'), - '#options' => array('login' => 'Login, registration, one-time login link', 'logout' => 'Logout'), + '#options' => array('login' => t('Login, registration, one-time login link'), 'logout' => t('Logout')), '#default_value' => $triggers, - '#description' => 'Redirect only upon selected trigger(s). If you select no triggers, all of them will be used.', + '#description' => t('Redirect only upon selected trigger(s). If you select no triggers, all of them will be used.'), ); $type = $rule['pages_type']; @@ -216,10 +424,18 @@ function login_destination_edit_form($form, &$form_state, array $rule = array()) } else { $options = array( - LOGIN_DESTINATION_REDIRECT_NOTLISTED => t('All pages except those listed'), - LOGIN_DESTINATION_REDIRECT_LISTED => t('Only the listed pages'), - ); - $description = t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page. %login is the login form. %register is the registration form. %reset is the one-time login (e-mail validation).", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '', '%login' => 'user', '%register' => 'user/register', '%reset' => 'user/*/edit')); + LOGIN_DESTINATION_REDIRECT_NOTLISTED => t('All pages except those listed'), + LOGIN_DESTINATION_REDIRECT_LISTED => t('Only the listed pages'), + ); + $description = t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page. %login is the login form. %register is the registration form. %reset is the one-time login (e-mail validation).", array( + '%blog' => 'blog', + '%blog-wildcard' => 'blog/*', + '%front' => '', + '%login' => 'user', + '%register' => 'user/register', + '%reset' => 'user/*/edit', + ) + ); if (module_exists('php') && $access) { $options += array(LOGIN_DESTINATION_REDIRECT_PHP => t('Pages on which this PHP code returns TRUE (experts only)')); @@ -249,14 +465,7 @@ function login_destination_edit_form($form, &$form_state, array $rule = array()) '#title' => t('Redirect users with roles'), '#options' => _login_destination_role_options(), '#default_value' => $default_role_options, - '#description' => 'Redirect only the selected role(s). If you select no roles, all users will be redirected.', - ); - - $form['weight'] = array( - '#type' => 'weight', - '#title' => t('Weight'), - '#default_value' => $rule['weight'], - '#description' => t('When evaluating login destination rules, those with lighter (smaller) weights get evaluated before rules with heavier (larger) weights.'), + '#description' => t('Redirect only the selected role(s). If you select no roles, all users will be redirected.'), ); $form['actions'] = array('#type' => 'actions'); @@ -279,6 +488,17 @@ function login_destination_edit_form($form, &$form_state, array $rule = array()) * Validate the contact category edit page form submission. */ function login_destination_edit_form_validate($form, &$form_state) { + $destination = $form_state['values']['destination']; + $destination_type = $form_state['values']['destination_type']; + + // Check user has enter any path. + if (!empty($destination) && $destination_type == 0) { + $destination = preg_replace("/\?.+/", "", $destination); + if (!drupal_valid_path($destination)) { + form_set_error('destination', t('Incorrect path, Please Enter valid Path')); + } + } + } /** @@ -296,7 +516,7 @@ function login_destination_edit_form_submit($form, &$form_state) { } drupal_set_message(t('Login destination to %destination has been saved.', array('%destination' => $form_state['values']['destination']))); - + $form_state['redirect'] = 'admin/config/people/login-destination'; } diff --git a/sites/all/modules/contrib/users/login_destination/login_destination.info b/sites/all/modules/contrib/users/login_destination/login_destination.info index 39aff7f7..9d0054a7 100644 --- a/sites/all/modules/contrib/users/login_destination/login_destination.info +++ b/sites/all/modules/contrib/users/login_destination/login_destination.info @@ -1,13 +1,11 @@ - name = Login Destination description = Customize the destination that the user is redirected to after login. core = 7.x -files[] = login_destination.module -files[] = login_destination.admin.inc configure = admin/config/people/login-destination -; Information added by drupal.org packaging script on 2012-12-18 -version = "7.x-1.1" + +; Information added by Drupal.org packaging script on 2015-05-11 +version = "7.x-1.1+6-dev" core = "7.x" project = "login_destination" -datestamp = "1355853150" +datestamp = "1431374284" diff --git a/sites/all/modules/contrib/users/login_destination/login_destination.install b/sites/all/modules/contrib/users/login_destination/login_destination.install index 0c306e0e..49d80de6 100644 --- a/sites/all/modules/contrib/users/login_destination/login_destination.install +++ b/sites/all/modules/contrib/users/login_destination/login_destination.install @@ -58,6 +58,13 @@ function login_destination_schema() { 'default' => 0, 'description' => "The rule's weight.", ), + 'enabled' => array( + 'type' => 'int', + 'not null' => TRUE, + 'unsigned' => TRUE, + 'default' => 1, + 'description' => "The rule enabled/disabled status.", + ), ), 'primary key' => array('id'), 'indexes' => array( @@ -69,12 +76,13 @@ function login_destination_schema() { } /** - * Implementation of hook_install(). + * Implements hook_install(). */ function login_destination_install() { - // update the alter option of 'user/logout' to TRUE (menu_save invokes necessary hooks) + // Update the alter option of 'user/logout' to TRUE, + // (menu_save invokes necessary hooks). $result = db_query("SELECT mlid, menu_name FROM {menu_links} WHERE link_path = 'user/logout' OR link_path = 'user/login' OR link_path = 'user' ORDER BY mlid ASC"); - foreach($result as $res) { + foreach ($result as $res) { $item = menu_link_load($res->mlid); $item['options']['alter'] = TRUE; db_update('menu_links') @@ -87,13 +95,16 @@ function login_destination_install() { } /** - * Implementation of hook_uninstall(). + * Implements hook_uninstall(). */ function login_destination_uninstall() { variable_del('login_destination_preserve_destination'); variable_del('login_destination_profile_redirect'); } +/** + * Implements hook_update_N(). + */ function login_destination_update_7000() { $type = variable_get('ld_condition_type', 'always'); $snippet = variable_get('ld_condition_snippet', ''); @@ -117,7 +128,7 @@ function login_destination_update_7000() { if ($type == 'snippet') { $form_state['values']['destination_type'] = 1; - // syntax for return value has changed. + // Syntax for return value has changed. $form_state['values']['destination'] = ''; } else { @@ -138,3 +149,17 @@ function login_destination_update_7000() { variable_del('ld_url_type'); variable_del('ld_url_destination'); } + +/** + * Implements hook_update_N(). + */ +function login_destination_update_7001() { + $spec = array( + 'type' => 'int', + 'unsigned' => TRUE, + 'not null' => TRUE, + 'default' => 1, + ); + + db_add_field('login_destination', 'enabled', $spec); +} diff --git a/sites/all/modules/contrib/users/login_destination/login_destination.module b/sites/all/modules/contrib/users/login_destination/login_destination.module index 2ad42624..4beda6d5 100644 --- a/sites/all/modules/contrib/users/login_destination/login_destination.module +++ b/sites/all/modules/contrib/users/login_destination/login_destination.module @@ -5,17 +5,17 @@ * Control where users are directed to, once they login */ -// Page constants +// Page constants. define('LOGIN_DESTINATION_REDIRECT_NOTLISTED', 0); define('LOGIN_DESTINATION_REDIRECT_LISTED', 1); define('LOGIN_DESTINATION_REDIRECT_PHP', 2); -// Destination constants +// Destination constants. define('LOGIN_DESTINATION_STATIC', 0); define('LOGIN_DESTINATION_SNIPPET', 1); /** - * Implement hook_help(). + * Implements hook_help(). */ function login_destination_help($path, $arg) { switch ($path) { @@ -24,6 +24,7 @@ function login_destination_help($path, $arg) { $output .= '

' . t('About') . '

'; $output .= '

' . t('The Login Destination module allows you to customize the destination that the user is redirected to after logging in, registering to the site, using a one-time login link or logging out. The destination can be an internal page or an external URL. You may specify certain conditions like pages or user roles and make the destination depend upon them. You may also use a PHP snippets to provide custom conditions and destinations. Note that PHP Filter module has to be enabled and you have to be granted the "Use PHP for settings" permissions to be able to enter PHP code.') . '

'; return $output; + case 'admin/config/people/login-destination': return '

' . t('Login destination rules are evaluated each time a user logs in, registers to the site, uses a one-time login link or logs out. Each rule consists of the destination, path conditions and user roles conditions. First matching rule gets executed.') . '

'; } @@ -36,7 +37,8 @@ function login_destination_menu() { $items['admin/config/people/login-destination'] = array( 'title' => 'Login destinations', 'description' => 'Customize the destination that the user is redirected to after login.', - 'page callback' => 'login_destination_overview', + 'page callback' => 'drupal_get_form', + 'page arguments' => array('login_destination_overview_form'), 'access arguments' => array('administer users'), 'file' => 'login_destination.admin.inc', 'weight' => 10, @@ -102,12 +104,12 @@ function login_destination_load($id) { if (empty($result['roles'])) { $result['roles'] = array(); } - + return $result; } /** - * Implements hook_theme + * Implements hook_theme(). */ function login_destination_theme() { return array( @@ -127,11 +129,15 @@ function login_destination_theme() { 'variables' => array('items' => NULL), 'file' => 'login_destination.admin.inc', ), + 'login_destination_overview_form' => array( + 'file' => 'login_destination.admin.inc', + 'render element' => 'form', + ), ); } /** - * Implements hook_form_alter + * Implements hook_form_alter(). */ function login_destination_form_alter(&$form, &$form_state, $form_id) { // We redirect by using the drupal_goto_alter hook. If we simply @@ -152,14 +158,16 @@ function login_destination_form_alter(&$form, &$form_state, $form_id) { // original submit function from user module. switch ($form_id) { - case 'user_register_form': // user register page - case 'user_login': // user login page + // User register page and user login page. + case 'user_register_form': + case 'user_login': $form['#validate'][] = 'login_destination_validate'; break; } switch ($form_id) { - case 'user_profile_form': // one-time login, password reset + // One-time login, password reset. + case 'user_profile_form': if (isset($_GET['pass-reset-token'])) { // Redirect only from user_pass_reset // You have to explicitally turn on the option to always redirect from @@ -181,20 +189,21 @@ function login_destination_validate($form, &$form_state) { $_GET['q'] = 'user/register'; } break; + case 'user_login': if (drupal_match_path($_GET['q'], 'user/register')) { $_GET['q'] = 'user'; } break; } - + // Fix the current page in case of 403 page. if ($form['#form_id'] == 'user_login') { - if(drupal_get_http_header('Status') == '403 Forbidden') { + if (drupal_get_http_header('Status') == '403 Forbidden') { $_GET['current'] = $_GET['destination']; } } - + } /** @@ -205,7 +214,7 @@ function login_destination_submit($form, &$form_state) { } /** - * Implements hook_menu_link_alter + * Implements hook_menu_link_alter(). */ function login_destination_menu_link_alter(&$item) { // Flag a link to be altered by hook_translated_menu_link_alter(). @@ -218,7 +227,7 @@ function login_destination_menu_link_alter(&$item) { } /** - * Implements hook_translated_menu_link_alter + * Implements hook_translated_menu_link_alter(). */ function login_destination_translated_menu_link_alter(&$item, $map) { global $user; @@ -230,7 +239,7 @@ function login_destination_translated_menu_link_alter(&$item, $map) { } /** - * Implements hook_page_alter + * Implements hook_page_alter(). */ function login_destination_page_alter(&$page) { // Substitute toolbar's pre_render function to change links. @@ -250,7 +259,7 @@ function login_destination_toolbar_pre_render($toolbar) { } /** - * Implements hook_user_login + * Implements hook_user_login(). */ function login_destination_user_login(&$edit, $account) { if (!isset($_POST['form_id']) || $_POST['form_id'] != 'user_pass_reset' || variable_get('login_destination_immediate_redirect', FALSE)) { @@ -259,7 +268,7 @@ function login_destination_user_login(&$edit, $account) { } /** - * Implements hook_user_insert + * Implements hook_user_insert(). */ function login_destination_user_insert(&$edit, $account, $category) { global $user; @@ -272,14 +281,14 @@ function login_destination_user_insert(&$edit, $account, $category) { } /** - * Implements hook_user_logout + * Implements hook_user_logout(). */ function login_destination_user_logout($account) { login_destination_perform_redirect('logout', _login_destination_get_current('logout')); } /** - * Implements hook_drupal_goto_alter + * Implements hook_drupal_goto_alter(). */ function login_destination_drupal_goto_alter(&$path, &$options, &$http_response_code) { // Note that this functionality cannot be backported do 6.x as Drupal 6 does @@ -289,7 +298,7 @@ function login_destination_drupal_goto_alter(&$path, &$options, &$http_response_ if (isset($GLOBALS['destination'])) { $destination = $GLOBALS['destination']; - // alter drupal_goto + // Alter drupal_goto. if (is_array($destination)) { $path = $destination[0]; $options = array(); @@ -307,7 +316,7 @@ function login_destination_drupal_goto_alter(&$path, &$options, &$http_response_ * Pass destination to drupal_goto. */ function login_destination_prepare_goto($destination) { - // Check if $_GET['destination'] should overwrite us + // Check if $_GET['destination'] should overwrite us. if (!isset($_GET['destination']) || !variable_get('login_destination_preserve_destination', FALSE)) { $GLOBALS['destination'] = $destination; } @@ -315,14 +324,18 @@ function login_destination_prepare_goto($destination) { /** * Evaluate rules and perform redirect. + * * This function is intended to be used by external modules. - * @param $trigger - * @param $current if null $_GET['q'] is used + * + * @param string $trigger + * Action of login destination rule. + * @param string $current + * Path, if null $_GET['q'] is used. */ function login_destination_perform_redirect($trigger = '', $current = NULL) { $destination = login_destination_get_destination($trigger, $current); - // Check if we redirect + // Check if we redirect. if ($destination !== FALSE) { login_destination_prepare_goto($destination); } @@ -330,13 +343,22 @@ function login_destination_perform_redirect($trigger = '', $current = NULL) { /** * Process all destination rules and return destination path. + * * This function is intended to be used by external modules. */ function login_destination_get_destination($trigger = '', $current = NULL) { // Get all the login destination rules from the database. $result = db_select('login_destination', 'l') - //->addTag('translatable') - ->fields('l', array('triggers', 'roles', 'pages_type', 'pages', 'destination_type', 'destination')) + ->fields('l', array( + 'triggers', + 'roles', + 'pages_type', + 'pages', + 'destination_type', + 'destination', + 'enabled', + ) + ) ->orderBy('weight') ->execute() ->fetchAll(); @@ -345,16 +367,16 @@ function login_destination_get_destination($trigger = '', $current = NULL) { $current = $_GET['q']; } - // examine path matches + // Examine path matches. foreach ($result as $data) { - // try to match the subsequent rule + // Try to match the subsequent rule. if (_login_destination_match_rule($data, $trigger, $current)) { // Note: Matching rule with empty destination will cancel redirect. return _login_destination_evaluate_rule($data, $trigger); } } - // no rule matched + // No rule matched. return FALSE; } @@ -370,12 +392,11 @@ function _login_destination_eval($code) { } /** - * A helper function to provide role options + * A helper function to provide role options. */ function _login_destination_role_options() { - // user role selection, without anonymous and authentificated user roles. + // User role selection, without anonymous user roles. $role_options = array_map('check_plain', user_roles(TRUE)); - unset($role_options[DRUPAL_AUTHENTICATED_RID]); return $role_options; } @@ -391,38 +412,46 @@ function _login_destination_get_current($trigger = '') { return $_GET['q']; } - // front by default + // Front by default. return ''; } /** * A helper function to determine whether redirection should happen. * - * @return bool TRUE - apply redirect, FALSE - not to apply redirect. + * @return bool + * TRUE - apply redirect, FALSE - not to apply redirect. */ function _login_destination_match_rule($rule, $trigger = '', $current = NULL) { global $user; + // Check rule is enabled or not. + if ($rule->enabled == 0) { + return FALSE; + } + $type = $rule->pages_type; $pages = $rule->pages; $triggers = unserialize($rule->triggers); - if (empty($triggers)) + if (empty($triggers)) { $triggers = array(); + } $roles = unserialize($rule->roles); - if (empty($roles)) + if (empty($roles)) { $roles = array(); + } - // remove non-existent roles + // Remove non-existent roles. $roles = array_intersect_key(_login_destination_role_options(), $roles); - // examine trigger match + // Examine trigger match. if (!(empty($triggers) || array_key_exists($trigger, $triggers))) { return FALSE; } - // examine role matches + // Examine role matches. $roles_intersect = array_intersect_key($roles, $user->roles); if (!empty($roles) && empty($roles_intersect)) { @@ -456,34 +485,34 @@ function _login_destination_match_rule($rule, $trigger = '', $current = NULL) { */ function _login_destination_evaluate_rule($rule, $trigger = '') { if ($rule->destination_type == LOGIN_DESTINATION_STATIC) { - // take only 1st line - if (preg_match("!^(.*?)$!", $rule->destination, $matches) === 1 ) { + // Take only 1st line. + if (preg_match("!^(.*?)$!", $rule->destination, $matches) === 1) { $path = $matches[1]; if (empty($path)) { return FALSE; } - // Current path + // Current path. elseif ($path == '') { return _login_destination_get_current($trigger); } - // External URL + // External URL. elseif (strpos($path, '://') !== FALSE) { return $path; } - // Internal URL + // Internal URL. else { $destination = drupal_parse_url($path); $options = array(); $options['query'] = $destination['query']; $options['fragment'] = $destination['fragment']; - // drupal_goto cares about + // Drupal api, drupal_goto cares about . return array($destination['path'], $options); } } else { - // error - multiple lines + // Error - multiple lines. return ''; } } diff --git a/sites/all/modules/gui/materiobasemod/materio_user.module b/sites/all/modules/gui/materiobasemod/materio_user.module index 00e32762..186c9bc4 100755 --- a/sites/all/modules/gui/materiobasemod/materio_user.module +++ b/sites/all/modules/gui/materiobasemod/materio_user.module @@ -204,25 +204,12 @@ function materio_user_form_alter(&$form, &$form_state, $form_id) { $form['actions']['#type'] = "container"; $form['actions']['submit']['#value'] = t('Join'); - - // $form['termsofservices'] = array( - // '#type' => 'checkbox', - // '#title' => t('I accept') .' '. l(t('the materiO terms of services'), 'node/11183'), - // '#required' => true, - // ); - - // $form['#submit'][] = "materio_user_user_register_form_submit"; } if($form_id == "user_login" ){ // dsm($form); $form['actions']['#type'] = "container"; - // $form['actions']['submit']['#value'] = t('Join'); - - // if( $_GET['q'] == 'node/11187' ){ - // $form['#submit'][] = "materio_user_user_login_form_submit"; - // } } # https://drupal.org/comment/6293810#comment-6293810 diff --git a/sites/all/themes/gui/materiobasetheme/css/styles.css b/sites/all/themes/gui/materiobasetheme/css/styles.css index 3ba87f1e..3cfb50a8 100644 --- a/sites/all/themes/gui/materiobasetheme/css/styles.css +++ b/sites/all/themes/gui/materiobasetheme/css/styles.css @@ -215,7 +215,6 @@ figure { */ /* line 211, ../bower_components/foundation/scss/normalize.scss */ hr { - -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } @@ -368,8 +367,6 @@ input[type="number"]::-webkit-outer-spin-button { input[type="search"] { -webkit-appearance: textfield; /* 1 */ - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; } @@ -514,8 +511,6 @@ html, body { *, *:before, *:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; box-sizing: border-box; } @@ -1500,7 +1495,8 @@ button, .button { background-color: #008CBA; border-color: #007095; color: #FFFFFF; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ button:hover, button:focus, .button:hover, .button:focus { @@ -4050,7 +4046,8 @@ a { #container { margin: 0 auto; position: relative; - transition: padding-top 0.5s ease-out, 1s, ease-out; + -webkit-transition: padding-top 0.5s ease-out, 1s, ease-out; + transition: padding-top 0.5s ease-out, 1s, ease-out; } /** NIVEAU 2 */ @@ -4285,7 +4282,8 @@ body.page-cart #footer:after { /* line 87, ../scss/styles.scss */ .csstransitions .op-visible { opacity: 1; - transition: opacity 0.3s ease-out; + -webkit-transition: opacity 0.3s ease-out; + transition: opacity 0.3s ease-out; } /* line 92, ../scss/styles.scss */ @@ -4299,11 +4297,13 @@ body.page-cart #footer:after { /* line 97, ../scss/styles.scss */ .csstransition .op-hidden { opacity: 0; - transition: visibility 0s 0.3s; + -webkit-transition: visibility 0s 0.3s; + transition: visibility 0s 0.3s; } /* line 100, ../scss/styles.scss */ .csstransition .op-hidden > * { - transition: margin-top 0s 0.3s; + -webkit-transition: margin-top 0s 0.3s; + transition: margin-top 0s 0.3s; } /** colomnized() */ @@ -4448,7 +4448,8 @@ body.page-cart #footer:after { right: 0; margin: 0; height: 0; - transition: height 0.3s ease-out; + -webkit-transition: height 0.3s ease-out; + transition: height 0.3s ease-out; } /* line 268, ../scss/styles.scss */ #header #header-blocks #block-user-login form#user-login-form > div { @@ -4472,46 +4473,72 @@ body.page-cart #footer:after { /* line 278, ../scss/styles.scss */ #header #header-blocks #block-user-login form#user-login-form input.form-text { width: 150px; + height: 2em; } -/* line 280, ../scss/styles.scss */ -#header #header-blocks #block-user-login form#user-login-form #edit-actions { +/* line 282, ../scss/styles.scss */ +#header #header-blocks #block-user-login form#user-login-form .form-actions { margin: 5px 0; padding: 0; background-color: transparent; text-align: right; } -/* line 282, ../scss/styles.scss */ -#header #header-blocks #block-user-login form#user-login-form #edit-actions input.form-submit { - font-size: 12px; - padding: 10px; +/* line 284, ../scss/styles.scss */ +#header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit { + font-size: 16px; + padding: 0.1em 0.6em 0.2em; + border-radius: 0.3em; + background-clip: padding-box; + font-weight: bold; + margin-bottom: 4px; + border: 2px solid #E6DE1C; + background-color: #E6DE1C; + color: #fff; + cursor: pointer; + text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; } -/* line 287, ../scss/styles.scss */ +/* line 64, ../scss/styles.scss */ +#header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:hover, #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:focus { + text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); +} +/* line 67, ../scss/styles.scss */ +#header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:active { + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; + text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); +} +/* line 293, ../scss/styles.scss */ +#header #header-blocks #block-user-login form#user-login-form div.newpass { + text-align: right; +} +/* line 295, ../scss/styles.scss */ #header #header-blocks #block-user-login form#user-login-form div.newpass a { font-size: 12px; color: #686868; } -/* line 298, ../scss/styles.scss */ +/* line 307, ../scss/styles.scss */ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-form, #header #header-blocks #block-user-login.hovered form#user-login-form { height: 300px; z-index: 1000; } @media only screen and (max-width: 40em) { - /* line 307, ../scss/styles.scss */ + /* line 316, ../scss/styles.scss */ #header #header-blocks #block-user-login span.login { display: none; } } -/* line 311, ../scss/styles.scss */ +/* line 320, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav { position: relative; } -/* line 313, ../scss/styles.scss */ +/* line 322, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 { margin: 0; font-size: 12px; line-height: 1.1; } -/* line 318, ../scss/styles.scss */ +/* line 327, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists { position: absolute; z-index: 20; @@ -4522,15 +4549,15 @@ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-for background-clip: padding-box; box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); } -/* line 321, ../scss/styles.scss */ +/* line 330, ../scss/styles.scss */ .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists { background: #FFF; } -/* line 322, ../scss/styles.scss */ +/* line 331, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul { margin: 0; } -/* line 323, ../scss/styles.scss */ +/* line 332, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li { list-style: none; font-size: 12px; @@ -4540,27 +4567,28 @@ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-for width: 200px; height: 0; overflow: hidden; - transition: height 0.3s ease-out; + -webkit-transition: height 0.3s ease-out; + transition: height 0.3s ease-out; } -/* line 330, ../scss/styles.scss */ +/* line 339, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview { white-space: nowrap; cursor: pointer; } -/* line 331, ../scss/styles.scss */ +/* line 340, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list { max-width: 150px; } -/* line 332, ../scss/styles.scss */ +/* line 341, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count { font-weight: 300; padding: 0 5px; } -/* line 335, ../scss/styles.scss */ +/* line 344, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.edit-list { padding-right: 5px; } -/* line 338, ../scss/styles.scss */ +/* line 347, ../scss/styles.scss */ .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list { visibility: hidden; } @@ -4571,78 +4599,80 @@ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-for /* line 119, ../scss/styles.scss */ .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list { opacity: 0; - transition: visibility 0s 0.3s; + -webkit-transition: visibility 0s 0.3s; + transition: visibility 0s 0.3s; } /* line 122, ../scss/styles.scss */ .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * { - transition: margin-top 0s 0.3s; + -webkit-transition: margin-top 0s 0.3s; + transition: margin-top 0s 0.3s; } -/* line 345, ../scss/styles.scss */ +/* line 354, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists { padding-bottom: 5px; } -/* line 347, ../scss/styles.scss */ +/* line 356, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li { height: 15px; padding: 3px 10px; } -/* line 352, ../scss/styles.scss */ +/* line 361, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i { vertical-align: text-bottom; margin: 0 2px 2px 0; } @media only screen and (max-width: 40em) { - /* line 354, ../scss/styles.scss */ + /* line 363, ../scss/styles.scss */ #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title { display: none; } } -/* line 358, ../scss/styles.scss */ +/* line 367, ../scss/styles.scss */ #header #header-blocks #block-ajax-register-ajax-register-block { font-size: 12px; text-transform: lowercase; } -/* line 363, ../scss/styles.scss */ +/* line 372, ../scss/styles.scss */ #header #header-blocks #block-logintoboggan-logintoboggan-logged-in { font-size: 12px; } -/* line 365, ../scss/styles.scss */ +/* line 374, ../scss/styles.scss */ #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i { vertical-align: text-bottom; margin: 0 5px 1px 0; } -/* line 369, ../scss/styles.scss */ +/* line 378, ../scss/styles.scss */ #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account { text-transform: lowercase; } -/* line 370, ../scss/styles.scss */ +/* line 379, ../scss/styles.scss */ #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout { display: none; margin-left: 5px; } -/* line 371, ../scss/styles.scss */ +/* line 380, ../scss/styles.scss */ #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power { margin: 0 0.5em 0 0.5em; } @media only screen and (min-width: 64.063em) and (max-width: 90em) { - /* line 372, ../scss/styles.scss */ + /* line 381, ../scss/styles.scss */ #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power { display: none; } } @media only screen and (min-width: 40.063em) { - /* line 373, ../scss/styles.scss */ + /* line 382, ../scss/styles.scss */ #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout { display: none; } } @media only screen and (max-width: 40em) { - /* line 375, ../scss/styles.scss */ + /* line 384, ../scss/styles.scss */ #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account { display: none; } } -/* line 379, ../scss/styles.scss */ +/* line 388, ../scss/styles.scss */ #header #header-blocks #headerblock-right .block { display: moz-inline-stack; display: inline-block; @@ -4652,15 +4682,15 @@ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-for vertical-align: middle; padding: 0; } -/* line 381, ../scss/styles.scss */ +/* line 390, ../scss/styles.scss */ #header #header-blocks #headerblock-right .block:first-child { padding: 0; } -/* line 385, ../scss/styles.scss */ +/* line 394, ../scss/styles.scss */ #header #header-blocks #block-locale-language { margin-left: 1em; } -/* line 388, ../scss/styles.scss */ +/* line 397, ../scss/styles.scss */ #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li { margin: 0; padding: 0; @@ -4668,60 +4698,61 @@ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-for font-size: 12px; line-height: 1; } -/* line 392, ../scss/styles.scss */ +/* line 401, ../scss/styles.scss */ #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active { display: none; } -/* line 394, ../scss/styles.scss */ +/* line 403, ../scss/styles.scss */ .ie8 #header #header-blocks #block-locale-language { padding-top: 5px; } -/* line 395, ../scss/styles.scss */ +/* line 404, ../scss/styles.scss */ #header #header-blocks #block-locale-language ul { padding-top: 0.155em; } -/* line 396, ../scss/styles.scss */ +/* line 405, ../scss/styles.scss */ #header #header-blocks #block-locale-language li { font-size: 0.9em; padding: 0.33em 0.35em 0.3em; border-radius: 3px; background-clip: padding-box; background-color: #808080; - transition: background-color 0.3s ease-out; + -webkit-transition: background-color 0.3s ease-out; + transition: background-color 0.3s ease-out; } -/* line 400, ../scss/styles.scss */ +/* line 409, ../scss/styles.scss */ #header #header-blocks #block-locale-language li, #header #header-blocks #block-locale-language li > * { color: #fff; text-transform: uppercase; } -/* line 403, ../scss/styles.scss */ +/* line 412, ../scss/styles.scss */ #header #header-blocks #block-locale-language li:hover { background-color: #1A1A1A; } -/* line 432, ../scss/styles.scss */ +/* line 441, ../scss/styles.scss */ .ie8 #header #header-blocks #block-menu-menu-top-menu h2 { display: none; } -/* line 433, ../scss/styles.scss */ +/* line 442, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu h2 i { vertical-align: text-bottom; margin: 0 0 2px 0; } -/* line 436, ../scss/styles.scss */ +/* line 445, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li { font-size: 12px; list-style: none; } -/* line 439, ../scss/styles.scss */ +/* line 448, ../scss/styles.scss */ .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li { display: inline; } @media only screen and (min-width: 40.063em) { - /* line 443, ../scss/styles.scss */ + /* line 452, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu h2 { display: none; } - /* line 444, ../scss/styles.scss */ + /* line 453, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li { display: moz-inline-stack; display: inline-block; @@ -4732,21 +4763,21 @@ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-for padding: 0; margin: 0; } - /* line 448, ../scss/styles.scss */ + /* line 457, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu a { padding: 0 0.5em 0 0; } } @media only screen and (max-width: 40em) { - /* line 430, ../scss/styles.scss */ + /* line 439, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu { position: relative; } - /* line 454, ../scss/styles.scss */ + /* line 463, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu h2 .menu-title { display: none; } - /* line 455, ../scss/styles.scss */ + /* line 464, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu .menu-wrapper { position: absolute; width: 150px; @@ -4754,7 +4785,7 @@ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-for right: 0; padding-top: 5px; } - /* line 457, ../scss/styles.scss */ + /* line 466, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu { background-color: #e6e6e6; border-radius: 5px; @@ -4763,46 +4794,47 @@ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-for margin: 0; text-align: right; } - /* line 460, ../scss/styles.scss */ + /* line 469, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li { height: 0; overflow: hidden; - transition: height 0.3s ease-out; + -webkit-transition: height 0.3s ease-out; + transition: height 0.3s ease-out; } - /* line 464, ../scss/styles.scss */ + /* line 473, ../scss/styles.scss */ #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a { display: block; width: 100%; padding: 2px 5px; font-size: 12px; } - /* line 470, ../scss/styles.scss */ + /* line 479, ../scss/styles.scss */ html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered { z-index: 1000; } - /* line 472, ../scss/styles.scss */ + /* line 481, ../scss/styles.scss */ html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper { display: block; } - /* line 474, ../scss/styles.scss */ + /* line 483, ../scss/styles.scss */ html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper ul.menu li, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper ul.menu li { height: 25px; } } -/* line 481, ../scss/styles.scss */ +/* line 490, ../scss/styles.scss */ #header #header-blocks #block-materio-user-old-database-link a { font-size: 12px; } -/* line 487, ../scss/styles.scss */ +/* line 496, ../scss/styles.scss */ #header #header-blocks #block-materio-user-front-link a { font-size: 12px; } -/* line 490, ../scss/styles.scss */ +/* line 499, ../scss/styles.scss */ #header #header-blocks #block-materio-user-front-link i { vertical-align: text-bottom; margin: 0 2px 2px 0; } -/* line 491, ../scss/styles.scss */ +/* line 500, ../scss/styles.scss */ #header #header-blocks #block-materio-user-front-link span.text { display: none; } @@ -4815,29 +4847,29 @@ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-for \__,_/\__/_/_/_/\__/_/\___/____/ */ -/* line 503, ../scss/styles.scss */ +/* line 512, ../scss/styles.scss */ #utilities { background-color: #fff; margin-top: 60px; } -/* line 506, ../scss/styles.scss */ +/* line 515, ../scss/styles.scss */ .not-logged-in #utilities { overflow: hidden; } -/* line 507, ../scss/styles.scss */ +/* line 516, ../scss/styles.scss */ #utilities > .inner { padding: 0.5em 0; } -/* line 508, ../scss/styles.scss */ +/* line 517, ../scss/styles.scss */ #utilities.closed { height: 0; } -/* line 509, ../scss/styles.scss */ +/* line 518, ../scss/styles.scss */ #utilities.closed .tabs, #utilities.closed .node-didactique { display: none; } @media only screen and (max-width: 40em) { - /* line 503, ../scss/styles.scss */ + /* line 512, ../scss/styles.scss */ #utilities { margin-top: 0; } @@ -4850,7 +4882,7 @@ html.no-touch #header #header-blocks #block-user-login:hover form#user-login-for / / / / / / /_/ / / / / / /_/ /_/ /_/\__,_/_/_/ /_/ */ -/* line 523, ../scss/styles.scss */ +/* line 532, ../scss/styles.scss */ body.home-v2 #main { padding-top: 60px; } @@ -4863,7 +4895,7 @@ body.home-v2 #main { /_/ /_/_/\__, /_/ /_/_/_/\__, /_/ /_/\__/\___/\__,_/ /____/ /____/ */ -/* line 536, ../scss/styles.scss */ +/* line 545, ../scss/styles.scss */ #highlighted { border-radius: 5px; background-clip: padding-box; @@ -4872,11 +4904,11 @@ body.home-v2 #main { position: relative; } @media only screen and (min-width: 40.063em) { - /* line 536, ../scss/styles.scss */ + /* line 545, ../scss/styles.scss */ #highlighted { margin: 20px 0 6px; } - /* line 546, ../scss/styles.scss */ + /* line 555, ../scss/styles.scss */ #highlighted .block { display: moz-inline-stack; display: inline-block; @@ -4885,11 +4917,11 @@ body.home-v2 #main { *display: inline; vertical-align: top; } - /* line 547, ../scss/styles.scss */ + /* line 556, ../scss/styles.scss */ #highlighted .block-materio-didactique { width: 65%; } - /* line 549, ../scss/styles.scss */ + /* line 558, ../scss/styles.scss */ #highlighted .block-materio-didactique .side { display: moz-inline-stack; display: inline-block; @@ -4899,27 +4931,27 @@ body.home-v2 #main { vertical-align: top; position: relative; } - /* line 553, ../scss/styles.scss */ + /* line 562, ../scss/styles.scss */ #highlighted .block-materio-didactique .group-sideleft { width: 65%; } - /* line 554, ../scss/styles.scss */ + /* line 563, ../scss/styles.scss */ #highlighted .block-materio-didactique .group-sideright { width: 30%; } - /* line 556, ../scss/styles.scss */ + /* line 565, ../scss/styles.scss */ #highlighted .block-materio-didactique .field-name-title-field { font-size: 24px; } - /* line 560, ../scss/styles.scss */ + /* line 569, ../scss/styles.scss */ #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright { width: 47%; } - /* line 561, ../scss/styles.scss */ + /* line 570, ../scss/styles.scss */ #highlighted .block-materio-didactique .node.emvideo .group-sideleft { margin-right: 2%; } - /* line 566, ../scss/styles.scss */ + /* line 575, ../scss/styles.scss */ #highlighted #block-materio-user-user-register { width: 30%; padding: 5px; @@ -4927,7 +4959,7 @@ body.home-v2 #main { } } @media only screen { - /* line 573, ../scss/styles.scss */ + /* line 582, ../scss/styles.scss */ #highlighted .block-materio-didactique .side { display: moz-inline-stack; display: inline-block; @@ -4938,20 +4970,20 @@ body.home-v2 #main { } } @media only screen and (max-width: 40em) { - /* line 536, ../scss/styles.scss */ + /* line 545, ../scss/styles.scss */ #highlighted { margin: 10px 0 6px; } - /* line 580, ../scss/styles.scss */ + /* line 589, ../scss/styles.scss */ #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright { width: 100%; } - /* line 583, ../scss/styles.scss */ + /* line 592, ../scss/styles.scss */ #highlighted .block-materio-didactique .node-didactique .field-name-title-field { font-size: 20px; font-weight: normal !important; } - /* line 587, ../scss/styles.scss */ + /* line 596, ../scss/styles.scss */ #highlighted .block-materio-didactique .node-didactique .field-name-title-field:after { content: "\a0\f10b"; font-family: "foundation-icons"; @@ -4965,18 +4997,18 @@ body.home-v2 #main { text-decoration: inherit; font-size: 16px; } - /* line 603, ../scss/styles.scss */ + /* line 612, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .node-didactique { height: auto; height: 30px; overflow: hidden; } - /* line 606, ../scss/styles.scss */ + /* line 615, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .node-didactique.opened { height: auto; } } -/* line 620, ../scss/styles.scss */ +/* line 629, ../scss/styles.scss */ .oldie #highlighted .block { display: moz-inline-stack; display: inline-block; @@ -4984,44 +5016,44 @@ body.home-v2 #main { zoom: 1; *display: inline; } -/* line 625, ../scss/styles.scss */ +/* line 634, ../scss/styles.scss */ #highlighted .block-materio-didactique .node-didactique { font-size: 14px; background-color: #fff; margin: 0 auto; } -/* line 631, ../scss/styles.scss */ +/* line 640, ../scss/styles.scss */ #highlighted .block-materio-didactique .node-didactique .side { position: relative; } -/* line 633, ../scss/styles.scss */ +/* line 642, ../scss/styles.scss */ #highlighted .block-materio-didactique .node-didactique .field-name-title-field { font-weight: 900; font-style: italic; padding: 5px 0; } -/* line 638, ../scss/styles.scss */ +/* line 647, ../scss/styles.scss */ #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel { text-align: center; } -/* line 640, ../scss/styles.scss */ +/* line 649, ../scss/styles.scss */ #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img { display: inline; } -/* line 643, ../scss/styles.scss */ +/* line 652, ../scss/styles.scss */ #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel { display: none; } -/* line 651, ../scss/styles.scss */ +/* line 660, ../scss/styles.scss */ .ie8 #highlighted .block-materio-didactique .node-didactique .player { display: none; } -/* line 657, ../scss/styles.scss */ +/* line 666, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique { position: relative; overflow: hidden; } -/* line 660, ../scss/styles.scss */ +/* line 669, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides { height: 270px; margin: 0; @@ -5029,7 +5061,7 @@ html.js #highlighted .block-materio-didactique .slides { width: 100%; overflow: hidden; } -/* line 662, ../scss/styles.scss */ +/* line 671, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides .node-didactique { position: absolute; width: 100%; @@ -5037,65 +5069,65 @@ html.js #highlighted .block-materio-didactique .slides .node-didactique { top: 0; left: 0; } -/* line 663, ../scss/styles.scss */ +/* line 672, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides .field-name-title-field { height: 30px; } -/* line 664, ../scss/styles.scss */ +/* line 673, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides .group-column-wrapper { height: 240px; } -/* line 666, ../scss/styles.scss */ +/* line 675, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side { height: 100%; } @media only screen and (max-width: 40em) { - /* line 667, ../scss/styles.scss */ + /* line 676, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo { width: 290px; height: 163.125px; } } @media only screen and (min-width: 40.063em) and (max-width: 64em) { - /* line 667, ../scss/styles.scss */ + /* line 676, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo { width: 216px; height: 121.5px; } } @media only screen and (min-width: 64.063em) and (max-width: 90em) { - /* line 667, ../scss/styles.scss */ + /* line 676, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo { width: 216px; height: 121.5px; } } @media only screen and (min-width: 90.063em) and (max-width: 120em) { - /* line 667, ../scss/styles.scss */ + /* line 676, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo { width: 280px; height: 157.5px; } } @media only screen and (min-width: 120.063em) and (max-width: 99999999em) { - /* line 667, ../scss/styles.scss */ + /* line 676, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo { width: 340px; height: 191.25px; } } -/* line 674, ../scss/styles.scss */ +/* line 683, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * { height: 100%; width: 100%; } -/* line 678, ../scss/styles.scss */ +/* line 687, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .tabs { height: 30px; margin: 0; text-align: left; } -/* line 680, ../scss/styles.scss */ +/* line 689, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .tabs > * { display: moz-inline-stack; display: inline-block; @@ -5108,7 +5140,7 @@ html.js #highlighted .block-materio-didactique .tabs > * { cursor: pointer; color: #bfbfbf; } -/* line 682, ../scss/styles.scss */ +/* line 691, ../scss/styles.scss */ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active { color: #3f3f3f; } @@ -5121,19 +5153,19 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig /_.___/_/\____/\___/_/|_| /_/ \___/\__, /_/____/\__/\___/_/ /____/ */ -/* line 697, ../scss/styles.scss */ +/* line 706, ../scss/styles.scss */ #block-materio-user-user-register, #block-materio-user-user-createaccount { min-height: 120px; padding: 5px; background: transparent url("../img/register-block.png") no-repeat 100% 90%; } -/* line 700, ../scss/styles.scss */ +/* line 709, ../scss/styles.scss */ .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount { max-width: 250px; float: right; background-image: none; } -/* line 703, ../scss/styles.scss */ +/* line 712, ../scss/styles.scss */ #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 { font-weight: 900; font-style: italic; @@ -5148,15 +5180,15 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig *display: inline; min-width: 50%; } -/* line 704, ../scss/styles.scss */ +/* line 713, ../scss/styles.scss */ #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 { font-size: 24px; } -/* line 704, ../scss/styles.scss */ +/* line 713, ../scss/styles.scss */ #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 { font-size: 16px; } -/* line 706, ../scss/styles.scss */ +/* line 715, ../scss/styles.scss */ #block-materio-user-user-register form, #block-materio-user-user-createaccount form { margin: 0; background-color: rgba(255, 255, 255, 0.7); @@ -5167,7 +5199,7 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig zoom: 1; *display: inline; } -/* line 708, ../scss/styles.scss */ +/* line 717, ../scss/styles.scss */ #block-materio-user-user-register .form-item, #block-materio-user-user-register .form-wrapper, #block-materio-user-user-createaccount .form-item, #block-materio-user-user-createaccount .form-wrapper { margin: 0; display: moz-inline-stack; @@ -5178,30 +5210,30 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig vertical-align: middle; position: relative; } -/* line 712, ../scss/styles.scss */ +/* line 721, ../scss/styles.scss */ #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account { margin-right: 5px; } -/* line 714, ../scss/styles.scss */ +/* line 723, ../scss/styles.scss */ #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text { font-size: 12px; border-radius: 5px; background-clip: padding-box; margin-bottom: 4px; } -/* line 714, ../scss/styles.scss */ +/* line 723, ../scss/styles.scss */ .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text { margin-right: 5px; } -/* line 715, ../scss/styles.scss */ +/* line 724, ../scss/styles.scss */ #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text { width: 11em; } -/* line 716, ../scss/styles.scss */ +/* line 725, ../scss/styles.scss */ #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text { width: 7em; } -/* line 718, ../scss/styles.scss */ +/* line 727, ../scss/styles.scss */ #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check { position: absolute; bottom: 100%; @@ -5215,18 +5247,19 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig font-size: 10px; background-color: #fff; box-shadow: 0 0 5px rgba(0, 0, 0, 0.6); - transition: bottom 0.1s ease-out; + -webkit-transition: bottom 0.1s ease-out; + transition: bottom 0.1s ease-out; } -/* line 726, ../scss/styles.scss */ +/* line 735, ../scss/styles.scss */ #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error { background-color: #f3968d; color: #fff; } -/* line 732, ../scss/styles.scss */ +/* line 741, ../scss/styles.scss */ #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok { display: none; } -/* line 735, ../scss/styles.scss */ +/* line 744, ../scss/styles.scss */ #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit { font-size: 16px; padding: 0.1em 0.6em 0.2em; @@ -5235,13 +5268,13 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig font-weight: bold; margin-bottom: 4px; } -/* line 742, ../scss/styles.scss */ +/* line 751, ../scss/styles.scss */ #block-materio-user-user-register .form-item-termsofservices, #block-materio-user-user-register #edit-field-newsletter, #block-materio-user-user-createaccount .form-item-termsofservices, #block-materio-user-user-createaccount #edit-field-newsletter { margin-bottom: 0; display: block; line-height: 1; } -/* line 744, ../scss/styles.scss */ +/* line 753, ../scss/styles.scss */ #block-materio-user-user-register .form-item-termsofservices > *, #block-materio-user-user-register #edit-field-newsletter > *, #block-materio-user-user-createaccount .form-item-termsofservices > *, #block-materio-user-user-createaccount #edit-field-newsletter > * { display: moz-inline-stack; display: inline-block; @@ -5251,21 +5284,22 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig vertical-align: middle; margin: 0; } -/* line 745, ../scss/styles.scss */ +/* line 754, ../scss/styles.scss */ #block-materio-user-user-register .form-item-termsofservices label, #block-materio-user-user-register #edit-field-newsletter label, #block-materio-user-user-createaccount .form-item-termsofservices label, #block-materio-user-user-createaccount #edit-field-newsletter label { font-size: 10px; background-color: #fff; border-radius: 3px; background-clip: padding-box; } -/* line 749, ../scss/styles.scss */ +/* line 758, ../scss/styles.scss */ #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit { border: 2px solid #69CDCF; background-color: #69CDCF; color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; } /* line 64, ../scss/styles.scss */ #block-materio-user-user-register #user-register-form .form-submit:hover, #block-materio-user-user-register #user-register-form .form-submit:focus, #block-materio-user-user-createaccount #user-register-form .form-submit:hover, #block-materio-user-user-createaccount #user-register-form .form-submit:focus { @@ -5273,22 +5307,24 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig } /* line 67, ../scss/styles.scss */ #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 752, ../scss/styles.scss */ +/* line 761, ../scss/styles.scss */ #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] { background-color: #ddd; border: 2px solid #ddd; } -/* line 759, ../scss/styles.scss */ +/* line 768, ../scss/styles.scss */ #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit { border: 2px solid #E6DE1C; background-color: #E6DE1C; color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; } /* line 64, ../scss/styles.scss */ #block-materio-user-user-register #user-login .form-submit:hover, #block-materio-user-user-register #user-login .form-submit:focus, #block-materio-user-user-createaccount #user-login .form-submit:hover, #block-materio-user-user-createaccount #user-login .form-submit:focus { @@ -5296,26 +5332,27 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig } /* line 67, ../scss/styles.scss */ #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 765, ../scss/styles.scss */ +/* line 774, ../scss/styles.scss */ #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews { padding-top: 0.5em; } -/* line 767, ../scss/styles.scss */ +/* line 776, ../scss/styles.scss */ #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description { font-size: 12px; } -/* line 771, ../scss/styles.scss */ +/* line 780, ../scss/styles.scss */ #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item { display: block; } -/* line 773, ../scss/styles.scss */ +/* line 782, ../scss/styles.scss */ #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label { font-size: 12px; } -/* line 778, ../scss/styles.scss */ +/* line 787, ../scss/styles.scss */ #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join { display: block; width: 5em; @@ -5329,7 +5366,8 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; text-align: center; text-decoration: none; } @@ -5339,27 +5377,28 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig } /* line 67, ../scss/styles.scss */ #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } @media only screen and (max-width: 40em) { - /* line 697, ../scss/styles.scss */ + /* line 706, ../scss/styles.scss */ #block-materio-user-user-register, #block-materio-user-user-createaccount { background-position: 160% 50%; min-height: 60px; padding: 15px 0; } - /* line 792, ../scss/styles.scss */ + /* line 801, ../scss/styles.scss */ #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text { width: 7em; } } -/* line 797, ../scss/styles.scss */ +/* line 806, ../scss/styles.scss */ #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error { color: #b94a48; font-size: 12px; } -/* line 801, ../scss/styles.scss */ +/* line 810, ../scss/styles.scss */ .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount { padding: 2em; width: 400px; @@ -5369,11 +5408,11 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig background-clip: padding-box; box-shadow: 0 0 7px rgba(0, 0, 0, 0.4); } -/* line 812, ../scss/styles.scss */ +/* line 821, ../scss/styles.scss */ .modal-content #block-materio-user-user-register #user-register-form div.homepage-textfield, .modal-content #block-materio-user-user-createaccount #user-register-form div.homepage-textfield { display: none; } -/* line 814, ../scss/styles.scss */ +/* line 823, ../scss/styles.scss */ .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description { font-size: 12px; } @@ -5386,7 +5425,7 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig \___/\____/_/ /_/\__/\___/_/ /_/\__/ \__/\____/ .___/ /_/ */ -/* line 830, ../scss/styles.scss */ +/* line 839, ../scss/styles.scss */ #content-top { /* @@ -5397,17 +5436,17 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig |___| */ } -/* line 841, ../scss/styles.scss */ +/* line 850, ../scss/styles.scss */ #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists { font-size: 10px; color: #666666; font-weight: 300; } -/* line 844, ../scss/styles.scss */ +/* line 853, ../scss/styles.scss */ .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists { margin-top: 40px; } -/* line 846, ../scss/styles.scss */ +/* line 855, ../scss/styles.scss */ #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 { font-size: 12px; font-weight: 700; @@ -5415,7 +5454,7 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig line-height: 1.2; color: #000; } -/* line 848, ../scss/styles.scss */ +/* line 857, ../scss/styles.scss */ #content-top #block-materio-flag-materio-flag-mybookmarks h2 a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks h2 i.fi-xicon-remove, #content-top #block-materio-flag-materio-flag-mylists h2 a.open-list, #content-top #block-materio-flag-materio-flag-mylists h2 i.fi-xicon-remove { display: moz-inline-stack; display: inline-block; @@ -5425,49 +5464,50 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig cursor: pointer; color: #000; opacity: 0; - transition: opacity 0.1s ease-out; + -webkit-transition: opacity 0.1s ease-out; + transition: opacity 0.1s ease-out; } -/* line 855, ../scss/styles.scss */ +/* line 864, ../scss/styles.scss */ #content-top #block-materio-flag-materio-flag-mybookmarks:hover a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks:hover i.fi-x, #content-top #block-materio-flag-materio-flag-mylists:hover a.open-list, #content-top #block-materio-flag-materio-flag-mylists:hover i.fi-x { opacity: 1; } -/* line 860, ../scss/styles.scss */ +/* line 869, ../scss/styles.scss */ #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] { cursor: pointer; } -/* line 864, ../scss/styles.scss */ +/* line 873, ../scss/styles.scss */ #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks { height: 0; overflow: hidden; } -/* line 866, ../scss/styles.scss */ +/* line 875, ../scss/styles.scss */ #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active { height: auto; } -/* line 869, ../scss/styles.scss */ +/* line 878, ../scss/styles.scss */ #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks article.node.vm-bookmark, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks article.node.vm-bookmark { overflow: hidden; } -/* line 877, ../scss/styles.scss */ +/* line 886, ../scss/styles.scss */ #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section .flaged { height: 0; overflow: hidden; } -/* line 881, ../scss/styles.scss */ +/* line 890, ../scss/styles.scss */ #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active .flaged { height: auto; } -/* line 893, ../scss/styles.scss */ +/* line 902, ../scss/styles.scss */ #tool-bar { position: relative; } -/* line 896, ../scss/styles.scss */ +/* line 905, ../scss/styles.scss */ #tool-bar .inner-content { padding-top: 10px; padding-bottom: 10px; } -/* line 898, ../scss/styles.scss */ +/* line 907, ../scss/styles.scss */ #tool-bar .inner-content > * { display: moz-inline-stack; display: inline-block; @@ -5477,21 +5517,21 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig vertical-align: middle; } @media only screen and (max-width: 40em) { - /* line 896, ../scss/styles.scss */ + /* line 905, ../scss/styles.scss */ #tool-bar .inner-content { padding: 0; } - /* line 905, ../scss/styles.scss */ + /* line 914, ../scss/styles.scss */ #tool-bar .inner-content h1 { line-height: 0.5; } } -/* line 916, ../scss/styles.scss */ +/* line 925, ../scss/styles.scss */ .oldie #tool-bar { background-color: #B1ADAD; padding: 0 10px; } -/* line 918, ../scss/styles.scss */ +/* line 927, ../scss/styles.scss */ #tool-bar .btn-group { padding: 0; border-radius: 3px; @@ -5499,7 +5539,8 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig background-color: #fff; margin: 4px; box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; } /* line 38, ../scss/styles.scss */ #tool-bar .btn-group:hover, #tool-bar .btn-group:focus { @@ -5507,14 +5548,15 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig } /* line 41, ../scss/styles.scss */ #tool-bar .btn-group:active { - transition: box-shadow 0s ease-out; + -webkit-transition: box-shadow 0s ease-out; + transition: box-shadow 0s ease-out; box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 923, ../scss/styles.scss */ +/* line 932, ../scss/styles.scss */ #tool-bar #block-materio-page-title-materio-page-title { margin: 0 10px 0 0; } -/* line 926, ../scss/styles.scss */ +/* line 935, ../scss/styles.scss */ #tool-bar #block-materio-page-title-materio-page-title h1 { margin: 0; font-size: 24px; @@ -5522,16 +5564,16 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig font-weight: 300; line-height: 1; } -/* line 928, ../scss/styles.scss */ +/* line 937, ../scss/styles.scss */ #tool-bar #block-materio-page-title-materio-page-title i { vertical-align: middle; margin-right: 5px; } -/* line 929, ../scss/styles.scss */ +/* line 938, ../scss/styles.scss */ #tool-bar #block-materio-page-title-materio-page-title i.icon-materio-folder { margin-bottom: 2px; } -/* line 930, ../scss/styles.scss */ +/* line 939, ../scss/styles.scss */ #tool-bar #block-materio-page-title-materio-page-title a.edit-list { visibility: hidden; } @@ -5542,32 +5584,35 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig /* line 119, ../scss/styles.scss */ .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list { opacity: 0; - transition: visibility 0s 0.3s; + -webkit-transition: visibility 0s 0.3s; + transition: visibility 0s 0.3s; } /* line 122, ../scss/styles.scss */ .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * { - transition: margin-top 0s 0.3s; + -webkit-transition: margin-top 0s 0.3s; + transition: margin-top 0s 0.3s; } -/* line 932, ../scss/styles.scss */ +/* line 941, ../scss/styles.scss */ #tool-bar #block-materio-page-title-materio-page-title a.edit-list i { margin: 0 0 0 5px; } -/* line 935, ../scss/styles.scss */ +/* line 944, ../scss/styles.scss */ #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list { visibility: visible; } /* line 108, ../scss/styles.scss */ .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list { opacity: 1; - transition: opacity 0.3s ease-out; + -webkit-transition: opacity 0.3s ease-out; + transition: opacity 0.3s ease-out; } @media only screen and (min-width: 40.063em) and (max-width: 64em) { - /* line 923, ../scss/styles.scss */ + /* line 932, ../scss/styles.scss */ #tool-bar #block-materio-page-title-materio-page-title { display: block; } } -/* line 944, ../scss/styles.scss */ +/* line 953, ../scss/styles.scss */ #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link { display: moz-inline-stack; display: inline-block; @@ -5576,42 +5621,42 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig *display: inline; margin: 0 2px; } -/* line 946, ../scss/styles.scss */ +/* line 955, ../scss/styles.scss */ #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active { cursor: normal; } -/* line 947, ../scss/styles.scss */ +/* line 956, ../scss/styles.scss */ #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner { display: none; font-size: 10px; } @media only screen and (max-width: 40em) { - /* line 950, ../scss/styles.scss */ + /* line 959, ../scss/styles.scss */ #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link { display: block; } - /* line 950, ../scss/styles.scss */ + /* line 959, ../scss/styles.scss */ #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) { display: none; } } @media only screen and (max-width: 40em) { - /* line 953, ../scss/styles.scss */ + /* line 962, ../scss/styles.scss */ html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium { display: block; } } @media only screen and (max-width: 40em) { - /* line 957, ../scss/styles.scss */ + /* line 966, ../scss/styles.scss */ html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardbig, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardbig { display: block; } } -/* line 961, ../scss/styles.scss */ +/* line 970, ../scss/styles.scss */ #tool-bar #block-materio-search-api-materio-search-api-search { float: right; } -/* line 965, ../scss/styles.scss */ +/* line 974, ../scss/styles.scss */ #tool-bar #block-materio-search-api-materio-search-api-search > .inner { display: moz-inline-stack; display: inline-block; @@ -5624,7 +5669,8 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig border-radius: 3px; background-clip: padding-box; box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; text-align: right; } /* line 38, ../scss/styles.scss */ @@ -5633,10 +5679,11 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig } /* line 41, ../scss/styles.scss */ #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active { - transition: box-shadow 0s ease-out; + -webkit-transition: box-shadow 0s ease-out; + transition: box-shadow 0s ease-out; box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 972, ../scss/styles.scss */ +/* line 981, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form { text-align: right; display: moz-inline-stack; @@ -5646,7 +5693,7 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig *display: inline; margin: 0; } -/* line 976, ../scss/styles.scss */ +/* line 985, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form .form-item, #tool-bar #materio-search-api-search-form input, #tool-bar #materio-search-api-search-form .form-checkboxes { display: moz-inline-stack; display: inline-block; @@ -5657,20 +5704,20 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig vertical-align: middle; padding: 0; } -/* line 978, ../scss/styles.scss */ +/* line 987, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form .form-checkboxes { padding: 3px; font-size: 12px; } -/* line 980, ../scss/styles.scss */ +/* line 989, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form .form-checkboxes .form-item { margin: 0 5px; } -/* line 982, ../scss/styles.scss */ +/* line 991, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label { font-size: 10px; } -/* line 986, ../scss/styles.scss */ +/* line 995, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form input#edit-searchfield { border: 1px solid #ccc; border-radius: 15px; @@ -5682,105 +5729,107 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig line-height: 1; background-position: 100% 7px; } -/* line 992, ../scss/styles.scss */ +/* line 1001, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing { background-position: 100% -15px; } -/* line 996, ../scss/styles.scss */ +/* line 1005, ../scss/styles.scss */ .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live { background-color: #1a1a1a; } -/* line 1001, ../scss/styles.scss */ +/* line 1010, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form input#edit-create { padding: 3px; } -/* line 1003, ../scss/styles.scss */ +/* line 1012, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form.loading { background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; } -/* line 1005, ../scss/styles.scss */ +/* line 1014, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form.loading input#edit-create { visibility: hidden; } @media only screen and (max-width: 40em) { - /* line 1009, ../scss/styles.scss */ + /* line 1018, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form input#edit-searchfield { width: 16em; } - /* line 1010, ../scss/styles.scss */ + /* line 1019, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form #edit-bundles-filter { display: none; } } -/* line 1015, ../scss/styles.scss */ +/* line 1024, ../scss/styles.scss */ #center { border-radius: 10px; background-clip: padding-box; } -/* line 1018, ../scss/styles.scss */ +/* line 1027, ../scss/styles.scss */ .node-type-page:not(.page-node-11187) #center { background-color: #fff; } -/* line 1019, ../scss/styles.scss */ +/* line 1028, ../scss/styles.scss */ .ie8 #center { height: 100%; margin-top: 20px; } -/* line 1022, ../scss/styles.scss */ +/* line 1031, ../scss/styles.scss */ #content { padding: 1em; - transition: height 0.3s ease-out; + -webkit-transition: height 0.3s ease-out; + transition: height 0.3s ease-out; } -/* line 1025, ../scss/styles.scss */ +/* line 1034, ../scss/styles.scss */ #content.faded { opacity: 0.5; - transition: opacity 0.3s ease-out; + -webkit-transition: opacity 0.3s ease-out; + transition: opacity 0.3s ease-out; } -/* line 1030, ../scss/styles.scss */ +/* line 1039, ../scss/styles.scss */ #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list { padding: 0 0 30px 0; margin: 0 0 20px 0; } -/* line 1033, ../scss/styles.scss */ +/* line 1042, ../scss/styles.scss */ #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading { background-image: url("../img/ajax-loader.gif"); background-position: center bottom; background-repeat: no-repeat; } -/* line 1039, ../scss/styles.scss */ +/* line 1048, ../scss/styles.scss */ #content .materiobase-results p.search-performance, #content .materiobase-results p.flaglist-infos, #content .materiobase-results p.actualities-infos, #content .materiobase-actuality p.search-performance, #content .materiobase-actuality p.flaglist-infos, #content .materiobase-actuality p.actualities-infos, #content .materio-flags-list p.search-performance, #content .materio-flags-list p.flaglist-infos, #content .materio-flags-list p.actualities-infos { font-size: 12px; font-weight: 500; margin: 0; padding: 10px 0 5px 15px; } -/* line 1045, ../scss/styles.scss */ +/* line 1054, ../scss/styles.scss */ #content .materiobase-results .search-results, #content .materiobase-results .actuality-items, #content .materiobase-results .flaglist-items, #content .materiobase-actuality .search-results, #content .materiobase-actuality .actuality-items, #content .materiobase-actuality .flaglist-items, #content .materio-flags-list .search-results, #content .materio-flags-list .actuality-items, #content .materio-flags-list .flaglist-items { font-size: 0; text-align: center; } -/* line 1047, ../scss/styles.scss */ +/* line 1056, ../scss/styles.scss */ #content .materiobase-results .search-results > *, #content .materiobase-results .actuality-items > *, #content .materiobase-results .flaglist-items > *, #content .materiobase-actuality .search-results > *, #content .materiobase-actuality .actuality-items > *, #content .materiobase-actuality .flaglist-items > *, #content .materio-flags-list .search-results > *, #content .materio-flags-list .actuality-items > *, #content .materio-flags-list .flaglist-items > * { font-size: 16px; } -/* line 1049, ../scss/styles.scss */ +/* line 1058, ../scss/styles.scss */ #content .materiobase-results .search-results > *, #content .materiobase-results .actuality-items > *, #content .materiobase-results .flaglist-items > *, #content .materiobase-actuality .search-results > *, #content .materiobase-actuality .actuality-items > *, #content .materiobase-actuality .flaglist-items > *, #content .materio-flags-list .search-results > *, #content .materio-flags-list .actuality-items > *, #content .materio-flags-list .flaglist-items > * { text-align: left; } -/* line 1055, ../scss/styles.scss */ +/* line 1064, ../scss/styles.scss */ #content ul.pager { padding: 1em 0; text-align: left; } -/* line 1057, ../scss/styles.scss */ +/* line 1066, ../scss/styles.scss */ .ie8 #content ul.pager { position: absolute; left: 37px; bottom: 35px; } -/* line 1059, ../scss/styles.scss */ +/* line 1068, ../scss/styles.scss */ #content ul.pager li { margin: 0; display: moz-inline-stack; @@ -5790,31 +5839,31 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig *display: inline; vertical-align: middle; } -/* line 1061, ../scss/styles.scss */ +/* line 1070, ../scss/styles.scss */ #content ul.pager .pager-current, #content ul.pager a { color: #000; font-size: 12px; } -/* line 1062, ../scss/styles.scss */ +/* line 1071, ../scss/styles.scss */ #content ul.pager .pager-current { font-weight: 900; font-size: 14px; } -/* line 1062, ../scss/styles.scss */ +/* line 1071, ../scss/styles.scss */ .ie8 #content ul.pager .pager-current { background: #fff; padding: 0.3em 1em 0.3em 1em; margin-top: 0.05em; border: 1px solid #333333; } -/* line 1063, ../scss/styles.scss */ +/* line 1072, ../scss/styles.scss */ #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a { font-size: 24px; font-weight: 300; } /** #content-bottom */ -/* line 1074, ../scss/styles.scss */ +/* line 1083, ../scss/styles.scss */ #content-bottom { padding-top: 10px; } @@ -5834,15 +5883,15 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig |___|__,|_| |___| |___|___|__,|_| |___|_|_| | _|___|_| |_| |___|_| |_|_|_|__,|_|_|___|___| |_| */ -/* line 1265, ../scss/styles.scss */ +/* line 1274, ../scss/styles.scss */ article.search-performance .inner { padding: 1em; } -/* line 1269, ../scss/styles.scss */ +/* line 1278, ../scss/styles.scss */ article.search-performance p { font-size: 14px; } -/* line 1271, ../scss/styles.scss */ +/* line 1280, ../scss/styles.scss */ article.search-performance a.button { display: block; margin: 10px auto; @@ -5857,7 +5906,8 @@ article.search-performance a.button { color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; text-align: center; text-decoration: none; } @@ -5867,10 +5917,11 @@ article.search-performance a.button:hover, article.search-performance a.button:f } /* line 67, ../scss/styles.scss */ article.search-performance a.button:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 1279, ../scss/styles.scss */ +/* line 1288, ../scss/styles.scss */ article.search-performance.view-mode-cardsmall { width: 327px; height: 140px; @@ -5885,9 +5936,10 @@ article.search-performance.view-mode-cardsmall { background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; } -/* line 1282, ../scss/styles.scss */ +/* line 1291, ../scss/styles.scss */ article.search-performance.view-mode-cardmedium { width: 210px; height: 295px; @@ -5902,13 +5954,14 @@ article.search-performance.view-mode-cardmedium { background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; } -/* line 1284, ../scss/styles.scss */ +/* line 1293, ../scss/styles.scss */ article.search-performance.view-mode-cardmedium .inner { padding: 4em 1em 0; } -/* line 1288, ../scss/styles.scss */ +/* line 1297, ../scss/styles.scss */ article.search-performance.view-mode-cardbig { width: 425px; height: 115px; @@ -5923,11 +5976,12 @@ article.search-performance.view-mode-cardbig { background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; display: block; margin: 0 auto; } -/* line 1292, ../scss/styles.scss */ +/* line 1301, ../scss/styles.scss */ article.search-performance.view-mode-cardfull { width: 850px; height: 115px; @@ -5942,11 +5996,12 @@ article.search-performance.view-mode-cardfull { background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; display: block; margin: 0 auto; } -/* line 1294, ../scss/styles.scss */ +/* line 1303, ../scss/styles.scss */ article.search-performance.view-mode-cardfull .inner { padding: 1em 212px; } @@ -5959,7 +6014,7 @@ article.search-performance.view-mode-cardfull .inner { |_____|__|__|__|__|____/ |_____|_____|_____|__|__|_|_|_|__|__|__|__|__|__|_____| */ -/* line 1309, ../scss/styles.scss */ +/* line 1318, ../scss/styles.scss */ article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark { width: 50px; height: 70px; @@ -5974,42 +6029,45 @@ article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark { background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; margin: 3px; } -/* line 1114, ../scss/styles.scss */ +/* line 1123, ../scss/styles.scss */ article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side { border-radius: 5px; background-clip: padding-box; overflow: hidden; } -/* line 1119, ../scss/styles.scss */ +/* line 1128, ../scss/styles.scss */ article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused { box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); } -/* line 1121, ../scss/styles.scss */ +/* line 1130, ../scss/styles.scss */ article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added { opacity: 0; } -/* line 1123, ../scss/styles.scss */ +/* line 1132, ../scss/styles.scss */ article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated { - transition: margin 0.3s ease-out; + -webkit-transition: margin 0.3s ease-out; + transition: margin 0.3s ease-out; } -/* line 1125, ../scss/styles.scss */ +/* line 1134, ../scss/styles.scss */ article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added { margin-left: -50px; margin-right: 50px; } -/* line 1127, ../scss/styles.scss */ +/* line 1136, ../scss/styles.scss */ .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated { position: absolute; top: 0; left: 0; z-index: 999; } -/* line 1135, ../scss/styles.scss */ +/* line 1144, ../scss/styles.scss */ article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed { - transition: width 0.3s ease-out; + -webkit-transition: width 0.3s ease-out; + transition: width 0.3s ease-out; width: 0; padding-left: 0; padding-right: 0; @@ -6017,7 +6075,7 @@ article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.remove margin-left: 0; overflow: hidden; } -/* line 1145, ../scss/styles.scss */ +/* line 1154, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav { position: absolute; top: 0; @@ -6030,37 +6088,37 @@ article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.na background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1157, ../scss/styles.scss */ +/* line 1166, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a { color: #000; } -/* line 1158, ../scss/styles.scss */ +/* line 1167, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul { background-color: rgba(255, 255, 255, 0.9); } -/* line 1159, ../scss/styles.scss */ +/* line 1168, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op { font-weight: 900; font-size: 14px; } -/* line 1161, ../scss/styles.scss */ +/* line 1170, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul { padding: 0; margin: 0; } -/* line 1163, ../scss/styles.scss */ +/* line 1172, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section { position: relative; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i { margin: 0 5px; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover { cursor: pointer; } -/* line 1169, ../scss/styles.scss */ +/* line 1178, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul { position: absolute; right: 0; @@ -6073,7 +6131,7 @@ article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav background-clip: padding-box; box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); } -/* line 1173, ../scss/styles.scss */ +/* line 1182, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li { padding: 0; margin: 0; @@ -6081,22 +6139,23 @@ article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark display: block; height: 0; overflow: hidden; - transition: height 0.2s ease-out; + -webkit-transition: height 0.2s ease-out; + transition: height 0.2s ease-out; } -/* line 1177, ../scss/styles.scss */ +/* line 1186, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a { display: block; } -/* line 1180, ../scss/styles.scss */ +/* line 1189, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links { width: 160px; font-size: 0; } -/* line 1183, ../scss/styles.scss */ +/* line 1192, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * { font-size: 11px; } -/* line 1188, ../scss/styles.scss */ +/* line 1197, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li { display: moz-inline-stack; display: inline-block; @@ -6107,52 +6166,53 @@ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li, article max-width: 98%; padding-left: 2px; } -/* line 1190, ../scss/styles.scss */ +/* line 1199, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li a { color: #a6a6a6; - transition: color 0.2s ease-out; + -webkit-transition: color 0.2s ease-out; + transition: color 0.2s ease-out; } -/* line 1192, ../scss/styles.scss */ +/* line 1201, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li a.unflag-action { color: #000; text-decoration: none; } -/* line 1196, ../scss/styles.scss */ +/* line 1205, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create { display: block; width: 100%; } -/* line 1198, ../scss/styles.scss */ +/* line 1207, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create > * { margin-top: 1px; padding-top: 1px; border-top: 1px solid #e6e6e6; } -/* line 1199, ../scss/styles.scss */ +/* line 1208, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create a { color: #000; } -/* line 1201, ../scss/styles.scss */ +/* line 1210, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading { background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; } -/* line 1202, ../scss/styles.scss */ +/* line 1211, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading a { visibility: hidden; } -/* line 1207, ../scss/styles.scss */ +/* line 1216, ../scss/styles.scss */ .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul { background: #FFF; } -/* line 1212, ../scss/styles.scss */ +/* line 1221, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul { padding: 5px 5px; } -/* line 1214, ../scss/styles.scss */ +/* line 1223, ../scss/styles.scss */ article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li { height: 17px; } -/* line 1227, ../scss/styles.scss */ +/* line 1236, ../scss/styles.scss */ article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow { position: absolute; top: 0; @@ -6166,7 +6226,7 @@ article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark d background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1233, ../scss/styles.scss */ +/* line 1242, ../scss/styles.scss */ article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span { padding: 3px 0 0 4px; display: moz-inline-stack; @@ -6175,20 +6235,21 @@ article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookm zoom: 1; *display: inline; } -/* line 1236, ../scss/styles.scss */ +/* line 1245, ../scss/styles.scss */ article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade { font-size: 12px; padding-top: 4em; margin-top: -4.5em; + background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em); position: relative; } -/* line 1244, ../scss/styles.scss */ +/* line 1253, ../scss/styles.scss */ article.node-materiau.vm-bookmark .side.oops p, article.node-materiau.vm-bookmark .side .upgrade p, article.node-breve.vm-bookmark .side.oops p, article.node-breve.vm-bookmark .side .upgrade p { padding: 10px; font-size: 12px; } -/* line 1246, ../scss/styles.scss */ +/* line 1255, ../scss/styles.scss */ article.node-materiau.vm-bookmark .side.oops p a, article.node-materiau.vm-bookmark .side .upgrade p a, article.node-breve.vm-bookmark .side.oops p a, article.node-breve.vm-bookmark .side .upgrade p a { display: block; margin: 10px 0; @@ -6202,7 +6263,8 @@ article.node-materiau.vm-bookmark .side.oops p a, article.node-materiau.vm-bookm color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; text-align: center; text-decoration: none; } @@ -6212,14 +6274,15 @@ article.node-materiau.vm-bookmark .side.oops p a:hover, article.node-materiau.vm } /* line 67, ../scss/styles.scss */ article.node-materiau.vm-bookmark .side.oops p a:active, article.node-materiau.vm-bookmark .side .upgrade p a:active, article.node-breve.vm-bookmark .side.oops p a:active, article.node-breve.vm-bookmark .side .upgrade p a:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 1312, ../scss/styles.scss */ +/* line 1321, ../scss/styles.scss */ article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header { display: none; } -/* line 1316, ../scss/styles.scss */ +/* line 1325, ../scss/styles.scss */ article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images { position: relative; z-index: 1; @@ -6236,7 +6299,7 @@ article.node-materiau.vm-bookmark .group-images figure:first-child, article.node position: relative; z-index: 1; } -/* line 1318, ../scss/styles.scss */ +/* line 1327, ../scss/styles.scss */ article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow { display: none; } @@ -6249,7 +6312,7 @@ article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark d |_____|__|__|__|__|____/ |_____|_|_|_|__|__|_____|_____| */ -/* line 1329, ../scss/styles.scss */ +/* line 1338, ../scss/styles.scss */ article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall { width: 100px; height: 140px; @@ -6264,41 +6327,44 @@ article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall { background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; } -/* line 1114, ../scss/styles.scss */ +/* line 1123, ../scss/styles.scss */ article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side { border-radius: 5px; background-clip: padding-box; overflow: hidden; } -/* line 1119, ../scss/styles.scss */ +/* line 1128, ../scss/styles.scss */ article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused { box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); } -/* line 1121, ../scss/styles.scss */ +/* line 1130, ../scss/styles.scss */ article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added { opacity: 0; } -/* line 1123, ../scss/styles.scss */ +/* line 1132, ../scss/styles.scss */ article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated { - transition: margin 0.3s ease-out; + -webkit-transition: margin 0.3s ease-out; + transition: margin 0.3s ease-out; } -/* line 1125, ../scss/styles.scss */ +/* line 1134, ../scss/styles.scss */ article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added { margin-left: -100px; margin-right: 100px; } -/* line 1127, ../scss/styles.scss */ +/* line 1136, ../scss/styles.scss */ .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated { position: absolute; top: 0; left: 0; z-index: 999; } -/* line 1135, ../scss/styles.scss */ +/* line 1144, ../scss/styles.scss */ article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed { - transition: width 0.3s ease-out; + -webkit-transition: width 0.3s ease-out; + transition: width 0.3s ease-out; width: 0; padding-left: 0; padding-right: 0; @@ -6306,7 +6372,7 @@ article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.remo margin-left: 0; overflow: hidden; } -/* line 1145, ../scss/styles.scss */ +/* line 1154, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav { position: absolute; top: 0; @@ -6319,37 +6385,37 @@ article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav. background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1157, ../scss/styles.scss */ +/* line 1166, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a { color: #000; } -/* line 1158, ../scss/styles.scss */ +/* line 1167, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul { background-color: rgba(255, 255, 255, 0.9); } -/* line 1159, ../scss/styles.scss */ +/* line 1168, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op { font-weight: 900; font-size: 14px; } -/* line 1161, ../scss/styles.scss */ +/* line 1170, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul { padding: 0; margin: 0; } -/* line 1163, ../scss/styles.scss */ +/* line 1172, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section { position: relative; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i { margin: 0 5px; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover { cursor: pointer; } -/* line 1169, ../scss/styles.scss */ +/* line 1178, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul { position: absolute; right: 0; @@ -6362,7 +6428,7 @@ article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall n background-clip: padding-box; box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); } -/* line 1173, ../scss/styles.scss */ +/* line 1182, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li { padding: 0; margin: 0; @@ -6370,22 +6436,23 @@ article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmal display: block; height: 0; overflow: hidden; - transition: height 0.2s ease-out; + -webkit-transition: height 0.2s ease-out; + transition: height 0.2s ease-out; } -/* line 1177, ../scss/styles.scss */ +/* line 1186, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a { display: block; } -/* line 1180, ../scss/styles.scss */ +/* line 1189, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links { width: 160px; font-size: 0; } -/* line 1183, ../scss/styles.scss */ +/* line 1192, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * { font-size: 11px; } -/* line 1188, ../scss/styles.scss */ +/* line 1197, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li { display: moz-inline-stack; display: inline-block; @@ -6396,52 +6463,53 @@ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, articl max-width: 98%; padding-left: 2px; } -/* line 1190, ../scss/styles.scss */ +/* line 1199, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li a { color: #a6a6a6; - transition: color 0.2s ease-out; + -webkit-transition: color 0.2s ease-out; + transition: color 0.2s ease-out; } -/* line 1192, ../scss/styles.scss */ +/* line 1201, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li a.unflag-action { color: #000; text-decoration: none; } -/* line 1196, ../scss/styles.scss */ +/* line 1205, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create { display: block; width: 100%; } -/* line 1198, ../scss/styles.scss */ +/* line 1207, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create > * { margin-top: 1px; padding-top: 1px; border-top: 1px solid #e6e6e6; } -/* line 1199, ../scss/styles.scss */ +/* line 1208, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create a { color: #000; } -/* line 1201, ../scss/styles.scss */ +/* line 1210, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading { background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; } -/* line 1202, ../scss/styles.scss */ +/* line 1211, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading a { visibility: hidden; } -/* line 1207, ../scss/styles.scss */ +/* line 1216, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul { background: #FFF; } -/* line 1212, ../scss/styles.scss */ +/* line 1221, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul { padding: 5px 5px; } -/* line 1214, ../scss/styles.scss */ +/* line 1223, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li { height: 17px; } -/* line 1227, ../scss/styles.scss */ +/* line 1236, ../scss/styles.scss */ article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow { position: absolute; top: 0; @@ -6455,7 +6523,7 @@ article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1233, ../scss/styles.scss */ +/* line 1242, ../scss/styles.scss */ article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span { padding: 3px 0 0 4px; display: moz-inline-stack; @@ -6464,20 +6532,21 @@ article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-card zoom: 1; *display: inline; } -/* line 1236, ../scss/styles.scss */ +/* line 1245, ../scss/styles.scss */ article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade { font-size: 12px; padding-top: 4em; margin-top: -4.5em; + background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em); position: relative; } -/* line 1244, ../scss/styles.scss */ +/* line 1253, ../scss/styles.scss */ article.node-materiau.vm-cardsmall .side.oops p, article.node-materiau.vm-cardsmall .side .upgrade p, article.node-breve.vm-cardsmall .side.oops p, article.node-breve.vm-cardsmall .side .upgrade p { padding: 10px; font-size: 12px; } -/* line 1246, ../scss/styles.scss */ +/* line 1255, ../scss/styles.scss */ article.node-materiau.vm-cardsmall .side.oops p a, article.node-materiau.vm-cardsmall .side .upgrade p a, article.node-breve.vm-cardsmall .side.oops p a, article.node-breve.vm-cardsmall .side .upgrade p a { display: block; margin: 10px 0; @@ -6491,7 +6560,8 @@ article.node-materiau.vm-cardsmall .side.oops p a, article.node-materiau.vm-card color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; text-align: center; text-decoration: none; } @@ -6501,21 +6571,22 @@ article.node-materiau.vm-cardsmall .side.oops p a:hover, article.node-materiau.v } /* line 67, ../scss/styles.scss */ article.node-materiau.vm-cardsmall .side.oops p a:active, article.node-materiau.vm-cardsmall .side .upgrade p a:active, article.node-breve.vm-cardsmall .side.oops p a:active, article.node-breve.vm-cardsmall .side .upgrade p a:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 1331, ../scss/styles.scss */ +/* line 1340, ../scss/styles.scss */ article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header { display: none; position: absolute; font-size: 14px; font-weight: 500; } -/* line 1334, ../scss/styles.scss */ +/* line 1343, ../scss/styles.scss */ article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field { font-weight: 700; } -/* line 1335, ../scss/styles.scss */ +/* line 1344, ../scss/styles.scss */ article.node-materiau.vm-cardsmall .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-reference-materio, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation { display: moz-inline-stack; display: inline-block; @@ -6524,11 +6595,11 @@ article.node-materiau.vm-cardsmall .group-header .field-name-field-reference-mat *display: inline; font-size: 12px; } -/* line 1336, ../scss/styles.scss */ +/* line 1345, ../scss/styles.scss */ article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation { float: right; } -/* line 1338, ../scss/styles.scss */ +/* line 1347, ../scss/styles.scss */ article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images { position: relative; z-index: 1; @@ -6548,20 +6619,20 @@ article.node-materiau.vm-cardsmall .group-images figure:first-child, article.nod position: relative; z-index: 1; } -/* line 1341, ../scss/styles.scss */ +/* line 1350, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links { width: 75px; min-width: 75px; } -/* line 1343, ../scss/styles.scss */ +/* line 1352, ../scss/styles.scss */ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li { width: 98%; } -/* line 1345, ../scss/styles.scss */ +/* line 1354, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav { background: #FFF; } -/* line 1347, ../scss/styles.scss */ +/* line 1356, ../scss/styles.scss */ .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav { visibility: hidden; } @@ -6572,13 +6643,15 @@ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, articl /* line 119, ../scss/styles.scss */ .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav { opacity: 0; - transition: visibility 0s 0.3s; + -webkit-transition: visibility 0s 0.3s; + transition: visibility 0s 0.3s; } /* line 122, ../scss/styles.scss */ .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * { - transition: margin-top 0s 0.3s; + -webkit-transition: margin-top 0s 0.3s; + transition: margin-top 0s 0.3s; } -/* line 1349, ../scss/styles.scss */ +/* line 1358, ../scss/styles.scss */ .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow { visibility: hidden; } @@ -6589,11 +6662,13 @@ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, articl /* line 119, ../scss/styles.scss */ .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow { opacity: 0; - transition: visibility 0s 0.3s; + -webkit-transition: visibility 0s 0.3s; + transition: visibility 0s 0.3s; } /* line 122, ../scss/styles.scss */ .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * { - transition: margin-top 0s 0.3s; + -webkit-transition: margin-top 0s 0.3s; + transition: margin-top 0s 0.3s; } /* @@ -6604,16 +6679,16 @@ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, articl |_| |_____|_____|_____|_| |_____|__| |_____|_|_|_|__|__|_____|_____| |_____|__|__|__|__|____/ */ -/* line 1361, ../scss/styles.scss */ +/* line 1370, ../scss/styles.scss */ #tooltip .group-header.smallcard { font-size: 14px; font-weight: 500; } -/* line 1363, ../scss/styles.scss */ +/* line 1372, ../scss/styles.scss */ #tooltip .group-header.smallcard .field-name-title-field { font-weight: 700; } -/* line 1364, ../scss/styles.scss */ +/* line 1373, ../scss/styles.scss */ #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation { display: moz-inline-stack; display: inline-block; @@ -6622,7 +6697,7 @@ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, articl *display: inline; font-size: 12px; } -/* line 1365, ../scss/styles.scss */ +/* line 1374, ../scss/styles.scss */ #tooltip .group-header.smallcard .field-name-field-localisation { float: right; } @@ -6635,7 +6710,7 @@ article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, articl |_____|__|__|__|__|____/ |_|_|_|_____|____/|_____|_____|_|_|_| */ -/* line 1377, ../scss/styles.scss */ +/* line 1386, ../scss/styles.scss */ article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium { width: 210px; height: 295px; @@ -6650,41 +6725,44 @@ article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium { background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; } -/* line 1114, ../scss/styles.scss */ +/* line 1123, ../scss/styles.scss */ article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side { border-radius: 5px; background-clip: padding-box; overflow: hidden; } -/* line 1119, ../scss/styles.scss */ +/* line 1128, ../scss/styles.scss */ article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused { box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); } -/* line 1121, ../scss/styles.scss */ +/* line 1130, ../scss/styles.scss */ article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added { opacity: 0; } -/* line 1123, ../scss/styles.scss */ +/* line 1132, ../scss/styles.scss */ article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated { - transition: margin 0.3s ease-out; + -webkit-transition: margin 0.3s ease-out; + transition: margin 0.3s ease-out; } -/* line 1125, ../scss/styles.scss */ +/* line 1134, ../scss/styles.scss */ article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added { margin-left: -210px; margin-right: 210px; } -/* line 1127, ../scss/styles.scss */ +/* line 1136, ../scss/styles.scss */ .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated { position: absolute; top: 0; left: 0; z-index: 999; } -/* line 1135, ../scss/styles.scss */ +/* line 1144, ../scss/styles.scss */ article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed { - transition: width 0.3s ease-out; + -webkit-transition: width 0.3s ease-out; + transition: width 0.3s ease-out; width: 0; padding-left: 0; padding-right: 0; @@ -6692,7 +6770,7 @@ article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.re margin-left: 0; overflow: hidden; } -/* line 1145, ../scss/styles.scss */ +/* line 1154, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav { position: absolute; top: 0; @@ -6705,37 +6783,37 @@ article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium na background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1157, ../scss/styles.scss */ +/* line 1166, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a { color: #000; } -/* line 1158, ../scss/styles.scss */ +/* line 1167, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul { background-color: rgba(255, 255, 255, 0.9); } -/* line 1159, ../scss/styles.scss */ +/* line 1168, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op { font-weight: 900; font-size: 14px; } -/* line 1161, ../scss/styles.scss */ +/* line 1170, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul { padding: 0; margin: 0; } -/* line 1163, ../scss/styles.scss */ +/* line 1172, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section { position: relative; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i { margin: 0 5px; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover { cursor: pointer; } -/* line 1169, ../scss/styles.scss */ +/* line 1178, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul { position: absolute; right: 0; @@ -6748,7 +6826,7 @@ article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium background-clip: padding-box; box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); } -/* line 1173, ../scss/styles.scss */ +/* line 1182, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li { padding: 0; margin: 0; @@ -6756,22 +6834,23 @@ article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmed display: block; height: 0; overflow: hidden; - transition: height 0.2s ease-out; + -webkit-transition: height 0.2s ease-out; + transition: height 0.2s ease-out; } -/* line 1177, ../scss/styles.scss */ +/* line 1186, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a { display: block; } -/* line 1180, ../scss/styles.scss */ +/* line 1189, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links { width: 160px; font-size: 0; } -/* line 1183, ../scss/styles.scss */ +/* line 1192, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * { font-size: 11px; } -/* line 1188, ../scss/styles.scss */ +/* line 1197, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li { display: moz-inline-stack; display: inline-block; @@ -6782,52 +6861,53 @@ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li, artic max-width: 98%; padding-left: 2px; } -/* line 1190, ../scss/styles.scss */ +/* line 1199, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li a { color: #a6a6a6; - transition: color 0.2s ease-out; + -webkit-transition: color 0.2s ease-out; + transition: color 0.2s ease-out; } -/* line 1192, ../scss/styles.scss */ +/* line 1201, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li a.unflag-action { color: #000; text-decoration: none; } -/* line 1196, ../scss/styles.scss */ +/* line 1205, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create { display: block; width: 100%; } -/* line 1198, ../scss/styles.scss */ +/* line 1207, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create > * { margin-top: 1px; padding-top: 1px; border-top: 1px solid #e6e6e6; } -/* line 1199, ../scss/styles.scss */ +/* line 1208, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create a { color: #000; } -/* line 1201, ../scss/styles.scss */ +/* line 1210, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading { background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; } -/* line 1202, ../scss/styles.scss */ +/* line 1211, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading a { visibility: hidden; } -/* line 1207, ../scss/styles.scss */ +/* line 1216, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul { background: #FFF; } -/* line 1212, ../scss/styles.scss */ +/* line 1221, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul { padding: 5px 5px; } -/* line 1214, ../scss/styles.scss */ +/* line 1223, ../scss/styles.scss */ article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li { height: 17px; } -/* line 1227, ../scss/styles.scss */ +/* line 1236, ../scss/styles.scss */ article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow { position: absolute; top: 0; @@ -6841,7 +6921,7 @@ article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedi background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1233, ../scss/styles.scss */ +/* line 1242, ../scss/styles.scss */ article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span { padding: 3px 0 0 4px; display: moz-inline-stack; @@ -6850,20 +6930,21 @@ article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-car zoom: 1; *display: inline; } -/* line 1236, ../scss/styles.scss */ +/* line 1245, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade { font-size: 12px; padding-top: 4em; margin-top: -4.5em; + background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em); position: relative; } -/* line 1244, ../scss/styles.scss */ +/* line 1253, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .side.oops p, article.node-materiau.vm-cardmedium .side .upgrade p, article.node-breve.vm-cardmedium .side.oops p, article.node-breve.vm-cardmedium .side .upgrade p { padding: 10px; font-size: 12px; } -/* line 1246, ../scss/styles.scss */ +/* line 1255, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .side.oops p a, article.node-materiau.vm-cardmedium .side .upgrade p a, article.node-breve.vm-cardmedium .side.oops p a, article.node-breve.vm-cardmedium .side .upgrade p a { display: block; margin: 10px 0; @@ -6877,7 +6958,8 @@ article.node-materiau.vm-cardmedium .side.oops p a, article.node-materiau.vm-car color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; text-align: center; text-decoration: none; } @@ -6887,10 +6969,11 @@ article.node-materiau.vm-cardmedium .side.oops p a:hover, article.node-materiau. } /* line 67, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .side.oops p a:active, article.node-materiau.vm-cardmedium .side .upgrade p a:active, article.node-breve.vm-cardmedium .side.oops p a:active, article.node-breve.vm-cardmedium .side .upgrade p a:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 1380, ../scss/styles.scss */ +/* line 1389, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side { position: absolute; width: 100%; @@ -6900,11 +6983,11 @@ article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .sid background-color: #fff; cursor: pointer; } -/* line 1382, ../scss/styles.scss */ +/* line 1391, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) { z-index: 1; } -/* line 1385, ../scss/styles.scss */ +/* line 1394, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header { position: absolute; bottom: 0; @@ -6917,20 +7000,21 @@ article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmed line-height: 1; background-color: rgba(255, 255, 255, 0.8); text-shadow: 0 0 4px rgba(255, 255, 255, 0.4); - transition: background-color 0.2s ease-out; + -webkit-transition: background-color 0.2s ease-out; + transition: background-color 0.2s ease-out; border-radius: 0 0 4px 4px; background-clip: padding-box; overflow: hidden; } -/* line 1389, ../scss/styles.scss */ +/* line 1398, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field { font-weight: 700; } -/* line 1390, ../scss/styles.scss */ +/* line 1399, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre { font-size: 14px; } -/* line 1395, ../scss/styles.scss */ +/* line 1404, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-materiau.vm-cardmedium .group-header .field-name-field-authored-on, article.node-breve.vm-cardmedium .group-header .field-name-field-reference-materio, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-authored-on { display: moz-inline-stack; display: inline-block; @@ -6941,36 +7025,37 @@ article.node-materiau.vm-cardmedium .group-header .field-name-field-reference-ma vertical-align: bottom; width: 48%; } -/* line 1396, ../scss/styles.scss */ +/* line 1405, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation { text-align: right; } -/* line 1397, ../scss/styles.scss */ +/* line 1406, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header { background: #fff; font-color: #000; line-height: 1em; padding: 10px; } -/* line 1401, ../scss/styles.scss */ +/* line 1410, ../scss/styles.scss */ article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header { color: #fff; background-color: rgba(0, 0, 0, 0.7); text-shadow: 0 0 4px rgba(0, 0, 0, 0.4); - transition: background-color 0.2s ease-out; + -webkit-transition: background-color 0.2s ease-out; + transition: background-color 0.2s ease-out; } -/* line 1404, ../scss/styles.scss */ +/* line 1413, ../scss/styles.scss */ article.node-materiau.vm-cardmedium.node-breve .group-header .field-name-field-authored-on, article.node-breve.vm-cardmedium.node-breve .group-header .field-name-field-authored-on { font-size: 12px; font-weight: 500; } -/* line 1405, ../scss/styles.scss */ +/* line 1414, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header { background: #000; font-size: 15px; line-height: 1.2em; } -/* line 1412, ../scss/styles.scss */ +/* line 1421, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images { position: relative; z-index: 1; @@ -6987,7 +7072,7 @@ article.node-materiau.vm-cardmedium .group-images figure:first-child, article.no position: relative; z-index: 1; } -/* line 1415, ../scss/styles.scss */ +/* line 1424, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-name-field-description, article.node-materiau.vm-cardmedium .field-name-body, article.node-breve.vm-cardmedium .field-name-field-description, article.node-breve.vm-cardmedium .field-name-body { font-size: 12px; font-weight: 300; @@ -6998,7 +7083,8 @@ article.node-materiau.vm-cardmedium .field-name-field-description, article.node- /* line 152, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-name-field-description.columnized, article.node-materiau.vm-cardmedium .field-name-body.columnized, article.node-breve.vm-cardmedium .field-name-field-description.columnized, article.node-breve.vm-cardmedium .field-name-body.columnized { padding: 0; - transition: margin-left 0.3s ease-out; + -webkit-transition: margin-left 0.3s ease-out; + transition: margin-left 0.3s ease-out; } /* line 154, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-name-field-description.columnized .column > *, article.node-materiau.vm-cardmedium .field-name-body.columnized .column > *, article.node-breve.vm-cardmedium .field-name-field-description.columnized .column > *, article.node-breve.vm-cardmedium .field-name-body.columnized .column > * { @@ -7026,18 +7112,19 @@ article.node-materiau.vm-cardmedium .field-name-field-description.columnized .co article.node-materiau.vm-cardmedium .field-name-field-description.columnized .column-switcher.next-column, article.node-materiau.vm-cardmedium .field-name-body.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .field-name-field-description.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .field-name-body.columnized .column-switcher.next-column { cursor: e-resize; } -/* line 1417, ../scss/styles.scss */ +/* line 1426, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-name-field-description .column > *, article.node-materiau.vm-cardmedium .field-name-body .column > *, article.node-breve.vm-cardmedium .field-name-field-description .column > *, article.node-breve.vm-cardmedium .field-name-body .column > * { padding-right: 25px; } -/* line 1421, ../scss/styles.scss */ +/* line 1430, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper { padding: 5px; } /* line 152, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized { padding: 0; - transition: margin-left 0.3s ease-out; + -webkit-transition: margin-left 0.3s ease-out; + transition: margin-left 0.3s ease-out; } /* line 154, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * { @@ -7065,38 +7152,38 @@ article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column { cursor: e-resize; } -/* line 1424, ../scss/styles.scss */ +/* line 1433, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-name-field-company-fab, article.node-materiau.vm-cardmedium .field-name-field-company-distrib, article.node-breve.vm-cardmedium .field-name-field-company-fab, article.node-breve.vm-cardmedium .field-name-field-company-distrib { font-size: 12px; padding: 5px; font-weight: 300; } -/* line 1426, ../scss/styles.scss */ +/* line 1435, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-name-field-company-fab .field-label, article.node-materiau.vm-cardmedium .field-name-field-company-distrib .field-label, article.node-breve.vm-cardmedium .field-name-field-company-fab .field-label, article.node-breve.vm-cardmedium .field-name-field-company-distrib .field-label { font-size: 10px; text-transform: lowercase; margin: 0; } -/* line 1427, ../scss/styles.scss */ +/* line 1436, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-name-field-company-fab .field-name-field-tode-company, article.node-materiau.vm-cardmedium .field-name-field-company-distrib .field-name-field-tode-company, article.node-breve.vm-cardmedium .field-name-field-company-fab .field-name-field-tode-company, article.node-breve.vm-cardmedium .field-name-field-company-distrib .field-name-field-tode-company { font-size: 14px; } -/* line 1431, ../scss/styles.scss */ +/* line 1440, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-name-field-materiau-ref, article.node-materiau.vm-cardmedium .field-name-field-source, article.node-materiau.vm-cardmedium .field-name-field-attachments, article.node-breve.vm-cardmedium .field-name-field-materiau-ref, article.node-breve.vm-cardmedium .field-name-field-source, article.node-breve.vm-cardmedium .field-name-field-attachments { font-size: 12px; padding: 5px; font-weight: 300; } -/* line 1433, ../scss/styles.scss */ +/* line 1442, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-name-field-materiau-ref a, article.node-materiau.vm-cardmedium .field-name-field-source a, article.node-materiau.vm-cardmedium .field-name-field-attachments a, article.node-breve.vm-cardmedium .field-name-field-materiau-ref a, article.node-breve.vm-cardmedium .field-name-field-source a, article.node-breve.vm-cardmedium .field-name-field-attachments a { color: #000; } -/* line 1435, ../scss/styles.scss */ +/* line 1444, ../scss/styles.scss */ article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label { font-weight: 900; margin: 1em 0 0.5em; } -/* line 1437, ../scss/styles.scss */ +/* line 1446, ../scss/styles.scss */ .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav { visibility: hidden; } @@ -7107,13 +7194,15 @@ article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedi /* line 119, ../scss/styles.scss */ .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav { opacity: 0; - transition: visibility 0s 0.3s; + -webkit-transition: visibility 0s 0.3s; + transition: visibility 0s 0.3s; } /* line 122, ../scss/styles.scss */ .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * { - transition: margin-top 0s 0.3s; + -webkit-transition: margin-top 0s 0.3s; + transition: margin-top 0s 0.3s; } -/* line 1439, ../scss/styles.scss */ +/* line 1448, ../scss/styles.scss */ .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow { visibility: hidden; } @@ -7124,13 +7213,15 @@ article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedi /* line 119, ../scss/styles.scss */ .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow { opacity: 0; - transition: visibility 0s 0.3s; + -webkit-transition: visibility 0s 0.3s; + transition: visibility 0s 0.3s; } /* line 122, ../scss/styles.scss */ .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * { - transition: margin-top 0s 0.3s; + -webkit-transition: margin-top 0s 0.3s; + transition: margin-top 0s 0.3s; } -/* line 1441, ../scss/styles.scss */ +/* line 1450, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav { background: #FFF; } @@ -7142,7 +7233,7 @@ article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedi |_____|__|__|__|__|____/ |_____|_____|_____| */ -/* line 1451, ../scss/styles.scss */ +/* line 1460, ../scss/styles.scss */ article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig { width: 425px; height: 610px; @@ -7157,41 +7248,44 @@ article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig { background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; } -/* line 1114, ../scss/styles.scss */ +/* line 1123, ../scss/styles.scss */ article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side { border-radius: 5px; background-clip: padding-box; overflow: hidden; } -/* line 1119, ../scss/styles.scss */ +/* line 1128, ../scss/styles.scss */ article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused { box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); } -/* line 1121, ../scss/styles.scss */ +/* line 1130, ../scss/styles.scss */ article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added { opacity: 0; } -/* line 1123, ../scss/styles.scss */ +/* line 1132, ../scss/styles.scss */ article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated { - transition: margin 0.3s ease-out; + -webkit-transition: margin 0.3s ease-out; + transition: margin 0.3s ease-out; } -/* line 1125, ../scss/styles.scss */ +/* line 1134, ../scss/styles.scss */ article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added { margin-left: -425px; margin-right: 425px; } -/* line 1127, ../scss/styles.scss */ +/* line 1136, ../scss/styles.scss */ .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated { position: absolute; top: 0; left: 0; z-index: 999; } -/* line 1135, ../scss/styles.scss */ +/* line 1144, ../scss/styles.scss */ article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed { - transition: width 0.3s ease-out; + -webkit-transition: width 0.3s ease-out; + transition: width 0.3s ease-out; width: 0; padding-left: 0; padding-right: 0; @@ -7199,7 +7293,7 @@ article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed margin-left: 0; overflow: hidden; } -/* line 1145, ../scss/styles.scss */ +/* line 1154, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav { position: absolute; top: 0; @@ -7212,37 +7306,37 @@ article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1157, ../scss/styles.scss */ +/* line 1166, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a { color: #000; } -/* line 1158, ../scss/styles.scss */ +/* line 1167, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul { background-color: rgba(255, 255, 255, 0.9); } -/* line 1159, ../scss/styles.scss */ +/* line 1168, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op { font-weight: 900; font-size: 14px; } -/* line 1161, ../scss/styles.scss */ +/* line 1170, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul { padding: 0; margin: 0; } -/* line 1163, ../scss/styles.scss */ +/* line 1172, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section { position: relative; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i { margin: 0 5px; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover { cursor: pointer; } -/* line 1169, ../scss/styles.scss */ +/* line 1178, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul { position: absolute; right: 0; @@ -7255,7 +7349,7 @@ article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.n background-clip: padding-box; box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); } -/* line 1173, ../scss/styles.scss */ +/* line 1182, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li { padding: 0; margin: 0; @@ -7263,22 +7357,23 @@ article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig na display: block; height: 0; overflow: hidden; - transition: height 0.2s ease-out; + -webkit-transition: height 0.2s ease-out; + transition: height 0.2s ease-out; } -/* line 1177, ../scss/styles.scss */ +/* line 1186, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a { display: block; } -/* line 1180, ../scss/styles.scss */ +/* line 1189, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links { width: 160px; font-size: 0; } -/* line 1183, ../scss/styles.scss */ +/* line 1192, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * { font-size: 11px; } -/* line 1188, ../scss/styles.scss */ +/* line 1197, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li { display: moz-inline-stack; display: inline-block; @@ -7289,52 +7384,53 @@ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li, article. max-width: 98%; padding-left: 2px; } -/* line 1190, ../scss/styles.scss */ +/* line 1199, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li a { color: #a6a6a6; - transition: color 0.2s ease-out; + -webkit-transition: color 0.2s ease-out; + transition: color 0.2s ease-out; } -/* line 1192, ../scss/styles.scss */ +/* line 1201, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li a.unflag-action { color: #000; text-decoration: none; } -/* line 1196, ../scss/styles.scss */ +/* line 1205, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create { display: block; width: 100%; } -/* line 1198, ../scss/styles.scss */ +/* line 1207, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create > * { margin-top: 1px; padding-top: 1px; border-top: 1px solid #e6e6e6; } -/* line 1199, ../scss/styles.scss */ +/* line 1208, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create a { color: #000; } -/* line 1201, ../scss/styles.scss */ +/* line 1210, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading { background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; } -/* line 1202, ../scss/styles.scss */ +/* line 1211, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading a { visibility: hidden; } -/* line 1207, ../scss/styles.scss */ +/* line 1216, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul { background: #FFF; } -/* line 1212, ../scss/styles.scss */ +/* line 1221, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul { padding: 5px 5px; } -/* line 1214, ../scss/styles.scss */ +/* line 1223, ../scss/styles.scss */ article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li { height: 17px; } -/* line 1227, ../scss/styles.scss */ +/* line 1236, ../scss/styles.scss */ article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow { position: absolute; top: 0; @@ -7348,7 +7444,7 @@ article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1233, ../scss/styles.scss */ +/* line 1242, ../scss/styles.scss */ article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span { padding: 3px 0 0 4px; display: moz-inline-stack; @@ -7357,20 +7453,21 @@ article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbi zoom: 1; *display: inline; } -/* line 1236, ../scss/styles.scss */ +/* line 1245, ../scss/styles.scss */ article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade { font-size: 12px; padding-top: 4em; margin-top: -4.5em; + background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em); position: relative; } -/* line 1244, ../scss/styles.scss */ +/* line 1253, ../scss/styles.scss */ article.node-materiau.vm-cardbig .side.oops p, article.node-materiau.vm-cardbig .side .upgrade p, article.node-breve.vm-cardbig .side.oops p, article.node-breve.vm-cardbig .side .upgrade p { padding: 10px; font-size: 12px; } -/* line 1246, ../scss/styles.scss */ +/* line 1255, ../scss/styles.scss */ article.node-materiau.vm-cardbig .side.oops p a, article.node-materiau.vm-cardbig .side .upgrade p a, article.node-breve.vm-cardbig .side.oops p a, article.node-breve.vm-cardbig .side .upgrade p a { display: block; margin: 10px 0; @@ -7384,7 +7481,8 @@ article.node-materiau.vm-cardbig .side.oops p a, article.node-materiau.vm-cardbi color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; text-align: center; text-decoration: none; } @@ -7394,10 +7492,11 @@ article.node-materiau.vm-cardbig .side.oops p a:hover, article.node-materiau.vm- } /* line 67, ../scss/styles.scss */ article.node-materiau.vm-cardbig .side.oops p a:active, article.node-materiau.vm-cardbig .side .upgrade p a:active, article.node-breve.vm-cardbig .side.oops p a:active, article.node-breve.vm-cardbig .side .upgrade p a:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 1454, ../scss/styles.scss */ +/* line 1463, ../scss/styles.scss */ article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side { position: absolute; width: 100%; @@ -7409,18 +7508,18 @@ article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side { top: 340px; cursor: pointer; } -/* line 1456, ../scss/styles.scss */ +/* line 1465, ../scss/styles.scss */ article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) { z-index: 1; } -/* line 1459, ../scss/styles.scss */ +/* line 1468, ../scss/styles.scss */ article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 { position: relative; border-radius: 5px 5px 0 0; background-clip: padding-box; overflow: hidden; } -/* line 1461, ../scss/styles.scss */ +/* line 1470, ../scss/styles.scss */ article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header { position: absolute; bottom: 0; @@ -7432,17 +7531,18 @@ article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .g line-height: 1.1; background-color: rgba(255, 255, 255, 0.8); text-shadow: 0 0 4px rgba(255, 255, 255, 0.4); - transition: background-color 0.2s ease-out; + -webkit-transition: background-color 0.2s ease-out; + transition: background-color 0.2s ease-out; } -/* line 1465, ../scss/styles.scss */ +/* line 1474, ../scss/styles.scss */ article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field { font-weight: 700; } -/* line 1466, ../scss/styles.scss */ +/* line 1475, ../scss/styles.scss */ article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre { font-size: 14px; } -/* line 1468, ../scss/styles.scss */ +/* line 1477, ../scss/styles.scss */ article.node-materiau.vm-cardbig .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-materiau.vm-cardbig .group-header .field-name-field-authored-on, article.node-breve.vm-cardbig .group-header .field-name-field-reference-materio, article.node-breve.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-authored-on { display: moz-inline-stack; display: inline-block; @@ -7453,11 +7553,11 @@ article.node-materiau.vm-cardbig .group-header .field-name-field-reference-mater vertical-align: bottom; width: 48%; } -/* line 1469, ../scss/styles.scss */ +/* line 1478, ../scss/styles.scss */ article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation { text-align: right; } -/* line 1470, ../scss/styles.scss */ +/* line 1479, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header { background: #fff; font-color: #000; @@ -7465,26 +7565,27 @@ article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, a padding: 20px; border-bottom: 1px solid #C6C6C6; } -/* line 1474, ../scss/styles.scss */ +/* line 1483, ../scss/styles.scss */ article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header { color: #fff; background-color: rgba(0, 0, 0, 0.7); text-shadow: 0 0 4px rgba(0, 0, 0, 0.4); - transition: background-color 0.2s ease-out; + -webkit-transition: background-color 0.2s ease-out; + transition: background-color 0.2s ease-out; } -/* line 1476, ../scss/styles.scss */ +/* line 1485, ../scss/styles.scss */ article.node-materiau.vm-cardbig.node-breve .group-header .field-name-field-authored-on, article.node-breve.vm-cardbig.node-breve .group-header .field-name-field-authored-on { font-size: 12px; font-weight: 500; } -/* line 1477, ../scss/styles.scss */ +/* line 1486, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header { background: #000; font-color: #fff; line-height: 1em; padding: 20px; } -/* line 1480, ../scss/styles.scss */ +/* line 1489, ../scss/styles.scss */ article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images { position: relative; z-index: 1; @@ -7502,7 +7603,7 @@ article.node-materiau.vm-cardbig .group-images figure:first-child, article.node- position: relative; z-index: 1; } -/* line 1483, ../scss/styles.scss */ +/* line 1492, ../scss/styles.scss */ article.node-materiau.vm-cardbig .field-name-field-description, article.node-materiau.vm-cardbig .field-name-body, article.node-breve.vm-cardbig .field-name-field-description, article.node-breve.vm-cardbig .field-name-body { font-size: 12px; font-weight: 300; @@ -7511,7 +7612,8 @@ article.node-materiau.vm-cardbig .field-name-field-description, article.node-mat /* line 152, ../scss/styles.scss */ article.node-materiau.vm-cardbig .field-name-field-description.columnized, article.node-materiau.vm-cardbig .field-name-body.columnized, article.node-breve.vm-cardbig .field-name-field-description.columnized, article.node-breve.vm-cardbig .field-name-body.columnized { padding: 0; - transition: margin-left 0.3s ease-out; + -webkit-transition: margin-left 0.3s ease-out; + transition: margin-left 0.3s ease-out; } /* line 154, ../scss/styles.scss */ article.node-materiau.vm-cardbig .field-name-field-description.columnized .column > *, article.node-materiau.vm-cardbig .field-name-body.columnized .column > *, article.node-breve.vm-cardbig .field-name-field-description.columnized .column > *, article.node-breve.vm-cardbig .field-name-body.columnized .column > * { @@ -7539,14 +7641,15 @@ article.node-materiau.vm-cardbig .field-name-field-description.columnized .colum article.node-materiau.vm-cardbig .field-name-field-description.columnized .column-switcher.next-column, article.node-materiau.vm-cardbig .field-name-body.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .field-name-field-description.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .field-name-body.columnized .column-switcher.next-column { cursor: e-resize; } -/* line 1487, ../scss/styles.scss */ +/* line 1496, ../scss/styles.scss */ article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper { padding: 10px; } /* line 152, ../scss/styles.scss */ article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized { padding: 0; - transition: margin-left 0.3s ease-out; + -webkit-transition: margin-left 0.3s ease-out; + transition: margin-left 0.3s ease-out; } /* line 154, ../scss/styles.scss */ article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * { @@ -7574,54 +7677,56 @@ article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.pre article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column { cursor: e-resize; } -/* line 1491, ../scss/styles.scss */ +/* line 1500, ../scss/styles.scss */ article.node-materiau.vm-cardbig .field-name-field-company-fab, article.node-materiau.vm-cardbig .field-name-field-company-distrib, article.node-breve.vm-cardbig .field-name-field-company-fab, article.node-breve.vm-cardbig .field-name-field-company-distrib { font-size: 12px; padding: 10px; font-weight: 300; } -/* line 1493, ../scss/styles.scss */ +/* line 1502, ../scss/styles.scss */ article.node-materiau.vm-cardbig .field-name-field-company-fab .field-label, article.node-materiau.vm-cardbig .field-name-field-company-distrib .field-label, article.node-breve.vm-cardbig .field-name-field-company-fab .field-label, article.node-breve.vm-cardbig .field-name-field-company-distrib .field-label { font-size: 10px; text-transform: lowercase; float: none; } -/* line 1494, ../scss/styles.scss */ +/* line 1503, ../scss/styles.scss */ article.node-materiau.vm-cardbig .field-name-field-company-fab .field-name-field-tode-company, article.node-materiau.vm-cardbig .field-name-field-company-distrib .field-name-field-tode-company, article.node-breve.vm-cardbig .field-name-field-company-fab .field-name-field-tode-company, article.node-breve.vm-cardbig .field-name-field-company-distrib .field-name-field-tode-company { font-size: 14px; } -/* line 1498, ../scss/styles.scss */ +/* line 1507, ../scss/styles.scss */ article.node-materiau.vm-cardbig .field-name-field-materiau-ref, article.node-materiau.vm-cardbig .field-name-field-source, article.node-materiau.vm-cardbig .field-name-field-attachments, article.node-breve.vm-cardbig .field-name-field-materiau-ref, article.node-breve.vm-cardbig .field-name-field-source, article.node-breve.vm-cardbig .field-name-field-attachments { font-size: 12px; padding: 10px; font-weight: 300; } -/* line 1499, ../scss/styles.scss */ +/* line 1508, ../scss/styles.scss */ article.node-materiau.vm-cardbig .field-name-field-materiau-ref a, article.node-materiau.vm-cardbig .field-name-field-source a, article.node-materiau.vm-cardbig .field-name-field-attachments a, article.node-breve.vm-cardbig .field-name-field-materiau-ref a, article.node-breve.vm-cardbig .field-name-field-source a, article.node-breve.vm-cardbig .field-name-field-attachments a { color: #000; } -/* line 1501, ../scss/styles.scss */ +/* line 1510, ../scss/styles.scss */ article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label { font-weight: 900; margin: 0 0 0.5em; } -/* line 1505, ../scss/styles.scss */ +/* line 1514, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav { background: #FFF; } -/* line 1508, ../scss/styles.scss */ +/* line 1517, ../scss/styles.scss */ article.node-materiau.vm-cardbig .side.oops p, article.node-materiau.vm-cardbig .side .upgrade p, article.node-breve.vm-cardbig .side.oops p, article.node-breve.vm-cardbig .side .upgrade p { padding: 3em; } -/* line 1510, ../scss/styles.scss */ +/* line 1519, ../scss/styles.scss */ article.node-materiau.vm-cardbig .side.oops p a, article.node-materiau.vm-cardbig .side .upgrade p a, article.node-breve.vm-cardbig .side.oops p a, article.node-breve.vm-cardbig .side .upgrade p a { border: 2px solid #eee; background-color: #eee; color: #fff; - transition: border 0.3s ease-out; - transition: background-color 0.3s ease-out; + -webkit-transition: border 0.3s ease-out; + transition: border 0.3s ease-out; + -webkit-transition: background-color 0.3s ease-out; + transition: background-color 0.3s ease-out; } -/* line 1517, ../scss/styles.scss */ +/* line 1526, ../scss/styles.scss */ article.node-materiau.vm-cardbig:hover .side.oops p a, article.node-materiau.vm-cardbig:hover .side .upgrade p a, article.node-breve.vm-cardbig:hover .side.oops p a, article.node-breve.vm-cardbig:hover .side .upgrade p a { border: 2px solid #69CDCF; background-color: #69CDCF; @@ -7634,7 +7739,7 @@ article.node-materiau.vm-cardbig:hover .side.oops p a, article.node-materiau.vm- |_____|__|__|__|__|____/ |__| |_____|_____|_____| */ -/* line 1530, ../scss/styles.scss */ +/* line 1539, ../scss/styles.scss */ article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull { width: 850px; height: 610px; @@ -7649,42 +7754,45 @@ article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull { background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; font-size: 0px; } -/* line 1114, ../scss/styles.scss */ +/* line 1123, ../scss/styles.scss */ article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side { border-radius: 5px; background-clip: padding-box; overflow: hidden; } -/* line 1119, ../scss/styles.scss */ +/* line 1128, ../scss/styles.scss */ article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused { box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); } -/* line 1121, ../scss/styles.scss */ +/* line 1130, ../scss/styles.scss */ article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added { opacity: 0; } -/* line 1123, ../scss/styles.scss */ +/* line 1132, ../scss/styles.scss */ article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated { - transition: margin 0.3s ease-out; + -webkit-transition: margin 0.3s ease-out; + transition: margin 0.3s ease-out; } -/* line 1125, ../scss/styles.scss */ +/* line 1134, ../scss/styles.scss */ article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added { margin-left: -850px; margin-right: 850px; } -/* line 1127, ../scss/styles.scss */ +/* line 1136, ../scss/styles.scss */ .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated { position: absolute; top: 0; left: 0; z-index: 999; } -/* line 1135, ../scss/styles.scss */ +/* line 1144, ../scss/styles.scss */ article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed { - transition: width 0.3s ease-out; + -webkit-transition: width 0.3s ease-out; + transition: width 0.3s ease-out; width: 0; padding-left: 0; padding-right: 0; @@ -7692,7 +7800,7 @@ article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.remove margin-left: 0; overflow: hidden; } -/* line 1145, ../scss/styles.scss */ +/* line 1154, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav { position: absolute; top: 0; @@ -7705,37 +7813,37 @@ article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.na background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1157, ../scss/styles.scss */ +/* line 1166, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a { color: #000; } -/* line 1158, ../scss/styles.scss */ +/* line 1167, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul { background-color: rgba(255, 255, 255, 0.9); } -/* line 1159, ../scss/styles.scss */ +/* line 1168, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op { font-weight: 900; font-size: 14px; } -/* line 1161, ../scss/styles.scss */ +/* line 1170, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul { padding: 0; margin: 0; } -/* line 1163, ../scss/styles.scss */ +/* line 1172, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section { position: relative; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i { margin: 0 5px; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover { cursor: pointer; } -/* line 1169, ../scss/styles.scss */ +/* line 1178, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul { position: absolute; right: 0; @@ -7748,7 +7856,7 @@ article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav background-clip: padding-box; box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); } -/* line 1173, ../scss/styles.scss */ +/* line 1182, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li { padding: 0; margin: 0; @@ -7756,22 +7864,23 @@ article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull display: block; height: 0; overflow: hidden; - transition: height 0.2s ease-out; + -webkit-transition: height 0.2s ease-out; + transition: height 0.2s ease-out; } -/* line 1177, ../scss/styles.scss */ +/* line 1186, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a { display: block; } -/* line 1180, ../scss/styles.scss */ +/* line 1189, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links { width: 160px; font-size: 0; } -/* line 1183, ../scss/styles.scss */ +/* line 1192, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * { font-size: 11px; } -/* line 1188, ../scss/styles.scss */ +/* line 1197, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li { display: moz-inline-stack; display: inline-block; @@ -7782,52 +7891,53 @@ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li, article max-width: 98%; padding-left: 2px; } -/* line 1190, ../scss/styles.scss */ +/* line 1199, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li a { color: #a6a6a6; - transition: color 0.2s ease-out; + -webkit-transition: color 0.2s ease-out; + transition: color 0.2s ease-out; } -/* line 1192, ../scss/styles.scss */ +/* line 1201, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li a.unflag-action { color: #000; text-decoration: none; } -/* line 1196, ../scss/styles.scss */ +/* line 1205, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create { display: block; width: 100%; } -/* line 1198, ../scss/styles.scss */ +/* line 1207, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create > * { margin-top: 1px; padding-top: 1px; border-top: 1px solid #e6e6e6; } -/* line 1199, ../scss/styles.scss */ +/* line 1208, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create a { color: #000; } -/* line 1201, ../scss/styles.scss */ +/* line 1210, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading { background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; } -/* line 1202, ../scss/styles.scss */ +/* line 1211, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading a { visibility: hidden; } -/* line 1207, ../scss/styles.scss */ +/* line 1216, ../scss/styles.scss */ .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul { background: #FFF; } -/* line 1212, ../scss/styles.scss */ +/* line 1221, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul { padding: 5px 5px; } -/* line 1214, ../scss/styles.scss */ +/* line 1223, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li { height: 17px; } -/* line 1227, ../scss/styles.scss */ +/* line 1236, ../scss/styles.scss */ article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow { position: absolute; top: 0; @@ -7841,7 +7951,7 @@ article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull d background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1233, ../scss/styles.scss */ +/* line 1242, ../scss/styles.scss */ article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span { padding: 3px 0 0 4px; display: moz-inline-stack; @@ -7850,20 +7960,21 @@ article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardf zoom: 1; *display: inline; } -/* line 1236, ../scss/styles.scss */ +/* line 1245, ../scss/styles.scss */ article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade { font-size: 12px; padding-top: 4em; margin-top: -4.5em; + background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em); position: relative; } -/* line 1244, ../scss/styles.scss */ +/* line 1253, ../scss/styles.scss */ article.node-materiau.vm-cardfull .side.oops p, article.node-materiau.vm-cardfull .side .upgrade p, article.node-breve.vm-cardfull .side.oops p, article.node-breve.vm-cardfull .side .upgrade p { padding: 10px; font-size: 12px; } -/* line 1246, ../scss/styles.scss */ +/* line 1255, ../scss/styles.scss */ article.node-materiau.vm-cardfull .side.oops p a, article.node-materiau.vm-cardfull .side .upgrade p a, article.node-breve.vm-cardfull .side.oops p a, article.node-breve.vm-cardfull .side .upgrade p a { display: block; margin: 10px 0; @@ -7877,7 +7988,8 @@ article.node-materiau.vm-cardfull .side.oops p a, article.node-materiau.vm-cardf color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; text-align: center; text-decoration: none; } @@ -7887,18 +7999,19 @@ article.node-materiau.vm-cardfull .side.oops p a:hover, article.node-materiau.vm } /* line 67, ../scss/styles.scss */ article.node-materiau.vm-cardfull .side.oops p a:active, article.node-materiau.vm-cardfull .side .upgrade p a:active, article.node-breve.vm-cardfull .side.oops p a:active, article.node-breve.vm-cardfull .side .upgrade p a:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 1532, ../scss/styles.scss */ +/* line 1541, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav { top: 0; } -/* line 1536, ../scss/styles.scss */ +/* line 1545, ../scss/styles.scss */ article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * { font-size: 16px; } -/* line 1538, ../scss/styles.scss */ +/* line 1547, ../scss/styles.scss */ article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side { display: moz-inline-stack; display: inline-block; @@ -7907,17 +8020,17 @@ article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .sid *display: inline; width: 50%; } -/* line 1539, ../scss/styles.scss */ +/* line 1548, ../scss/styles.scss */ article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left { border-radius: 5px 0 0 5px; background-clip: padding-box; } -/* line 1542, ../scss/styles.scss */ +/* line 1551, ../scss/styles.scss */ article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right { border-radius: 0 5px 5px 0; background-clip: padding-box; } -/* line 1548, ../scss/styles.scss */ +/* line 1557, ../scss/styles.scss */ article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images { position: relative; z-index: 1; @@ -7934,17 +8047,17 @@ article.node-materiau.vm-cardfull .group-images figure:first-child, article.node position: relative; z-index: 1; } -/* line 1550, ../scss/styles.scss */ +/* line 1559, ../scss/styles.scss */ article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header { font-size: 20px; font-weight: 300; padding: 10px; } -/* line 1552, ../scss/styles.scss */ +/* line 1561, ../scss/styles.scss */ article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field { font-weight: 700; } -/* line 1553, ../scss/styles.scss */ +/* line 1562, ../scss/styles.scss */ article.node-materiau.vm-cardfull .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardfull .group-header .field-name-field-localisation, article.node-materiau.vm-cardfull .group-header .field-name-field-authored-on, article.node-breve.vm-cardfull .group-header .field-name-field-reference-materio, article.node-breve.vm-cardfull .group-header .field-name-field-localisation, article.node-breve.vm-cardfull .group-header .field-name-field-authored-on { display: moz-inline-stack; display: inline-block; @@ -7954,29 +8067,30 @@ article.node-materiau.vm-cardfull .group-header .field-name-field-reference-mate font-size: 12px; padding-right: 15px; } -/* line 1557, ../scss/styles.scss */ +/* line 1566, ../scss/styles.scss */ article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header { color: #fff; background-color: rgba(0, 0, 0, 0.7); text-shadow: 0 0 4px rgba(0, 0, 0, 0.4); - transition: background-color 0.2s ease-out; + -webkit-transition: background-color 0.2s ease-out; + transition: background-color 0.2s ease-out; } -/* line 1559, ../scss/styles.scss */ +/* line 1568, ../scss/styles.scss */ article.node-materiau.vm-cardfull.node-breve .group-header .field-name-field-authored-on, article.node-breve.vm-cardfull.node-breve .group-header .field-name-field-authored-on { font-weight: 500; } -/* line 1563, ../scss/styles.scss */ +/* line 1572, ../scss/styles.scss */ article.node-materiau.vm-cardfull .field-name-field-description, article.node-materiau.vm-cardfull .field-name-body, article.node-breve.vm-cardfull .field-name-field-description, article.node-breve.vm-cardfull .field-name-body { font-size: 12px; font-weight: 300; padding: 10px; } -/* line 1567, ../scss/styles.scss */ +/* line 1576, ../scss/styles.scss */ article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments { padding: 10px; font-size: 12px; } -/* line 1573, ../scss/styles.scss */ +/* line 1582, ../scss/styles.scss */ article.node-materiau.vm-cardfull .field-name-field-company-fab, article.node-materiau.vm-cardfull .field-name-field-company-distrib, article.node-breve.vm-cardfull .field-name-field-company-fab, article.node-breve.vm-cardfull .field-name-field-company-distrib { font-size: 12px; padding: 10px; @@ -7988,56 +8102,58 @@ article.node-materiau.vm-cardfull .field-name-field-company-fab, article.node-ma *display: inline; width: 40%; } -/* line 1576, ../scss/styles.scss */ +/* line 1585, ../scss/styles.scss */ article.node-materiau.vm-cardfull .field-name-field-company-fab .field-item, article.node-materiau.vm-cardfull .field-name-field-company-distrib .field-item, article.node-breve.vm-cardfull .field-name-field-company-fab .field-item, article.node-breve.vm-cardfull .field-name-field-company-distrib .field-item { margin-top: 1em; } -/* line 1577, ../scss/styles.scss */ +/* line 1586, ../scss/styles.scss */ article.node-materiau.vm-cardfull .field-name-field-company-fab .field-label, article.node-materiau.vm-cardfull .field-name-field-company-distrib .field-label, article.node-breve.vm-cardfull .field-name-field-company-fab .field-label, article.node-breve.vm-cardfull .field-name-field-company-distrib .field-label { font-size: 10px; text-transform: lowercase; float: none; } -/* line 1578, ../scss/styles.scss */ +/* line 1587, ../scss/styles.scss */ article.node-materiau.vm-cardfull .field-name-field-company-fab .field-name-field-tode-company, article.node-materiau.vm-cardfull .field-name-field-company-distrib .field-name-field-tode-company, article.node-breve.vm-cardfull .field-name-field-company-fab .field-name-field-tode-company, article.node-breve.vm-cardfull .field-name-field-company-distrib .field-name-field-tode-company { font-size: 14px; } -/* line 1581, ../scss/styles.scss */ +/* line 1590, ../scss/styles.scss */ article.node-materiau.vm-cardfull .field-name-field-materiau-ref, article.node-materiau.vm-cardfull .field-name-field-source, article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-materiau-ref, article.node-breve.vm-cardfull .field-name-field-source, article.node-breve.vm-cardfull .field-name-field-attachments { font-size: 12px; padding: 10px; font-weight: 300; } -/* line 1582, ../scss/styles.scss */ +/* line 1591, ../scss/styles.scss */ article.node-materiau.vm-cardfull .field-name-field-materiau-ref a, article.node-materiau.vm-cardfull .field-name-field-source a, article.node-materiau.vm-cardfull .field-name-field-attachments a, article.node-breve.vm-cardfull .field-name-field-materiau-ref a, article.node-breve.vm-cardfull .field-name-field-source a, article.node-breve.vm-cardfull .field-name-field-attachments a { color: #000; } -/* line 1584, ../scss/styles.scss */ +/* line 1593, ../scss/styles.scss */ article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label { font-weight: 900; margin: 0 0 0.5em; } -/* line 1587, ../scss/styles.scss */ +/* line 1596, ../scss/styles.scss */ article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav { margin: 5px; } -/* line 1589, ../scss/styles.scss */ +/* line 1598, ../scss/styles.scss */ article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow { margin: 5px; } -/* line 1592, ../scss/styles.scss */ +/* line 1601, ../scss/styles.scss */ article.node-materiau.vm-cardfull .side.oops p, article.node-materiau.vm-cardfull .side .upgrade p, article.node-breve.vm-cardfull .side.oops p, article.node-breve.vm-cardfull .side .upgrade p { padding: 3em; } -/* line 1594, ../scss/styles.scss */ +/* line 1603, ../scss/styles.scss */ article.node-materiau.vm-cardfull .side.oops p a, article.node-materiau.vm-cardfull .side .upgrade p a, article.node-breve.vm-cardfull .side.oops p a, article.node-breve.vm-cardfull .side .upgrade p a { border: 2px solid #eee; background-color: #eee; color: #fff; - transition: border 0.3s ease-out; - transition: background-color 0.3s ease-out; + -webkit-transition: border 0.3s ease-out; + transition: border 0.3s ease-out; + -webkit-transition: background-color 0.3s ease-out; + transition: background-color 0.3s ease-out; } -/* line 1601, ../scss/styles.scss */ +/* line 1610, ../scss/styles.scss */ article.node-materiau.vm-cardfull:hover .side.oops p a, article.node-materiau.vm-cardfull:hover .side .upgrade p a, article.node-breve.vm-cardfull:hover .side.oops p a, article.node-breve.vm-cardfull:hover .side .upgrade p a { border: 2px solid #69CDCF; background-color: #69CDCF; @@ -8050,12 +8166,12 @@ article.node-materiau.vm-cardfull:hover .side.oops p a, article.node-materiau.vm |___|__,|_| |___| | _|_| |_|_|_|_| |_| */ -/* line 1614, ../scss/styles.scss */ +/* line 1623, ../scss/styles.scss */ body.print-node-materiau { margin: 2em; } -/* line 1618, ../scss/styles.scss */ +/* line 1627, ../scss/styles.scss */ .print-content .node-materiau { width: 850px; height: auto; @@ -8070,43 +8186,46 @@ body.print-node-materiau { background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; padding: 1em; margin: 0; } -/* line 1114, ../scss/styles.scss */ +/* line 1123, ../scss/styles.scss */ .print-content .node-materiau > div.side { border-radius: 5px; background-clip: padding-box; overflow: hidden; } -/* line 1119, ../scss/styles.scss */ +/* line 1128, ../scss/styles.scss */ .print-content .node-materiau.focused { box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); } -/* line 1121, ../scss/styles.scss */ +/* line 1130, ../scss/styles.scss */ .print-content .node-materiau.just-added { opacity: 0; } -/* line 1123, ../scss/styles.scss */ +/* line 1132, ../scss/styles.scss */ .print-content .node-materiau.associated { - transition: margin 0.3s ease-out; + -webkit-transition: margin 0.3s ease-out; + transition: margin 0.3s ease-out; } -/* line 1125, ../scss/styles.scss */ +/* line 1134, ../scss/styles.scss */ .print-content .node-materiau.associated.just-added { margin-left: -850px; margin-right: 850px; } -/* line 1127, ../scss/styles.scss */ +/* line 1136, ../scss/styles.scss */ .modal-content .print-content .node-materiau.associated { position: absolute; top: 0; left: 0; z-index: 999; } -/* line 1135, ../scss/styles.scss */ +/* line 1144, ../scss/styles.scss */ .print-content .node-materiau.removed { - transition: width 0.3s ease-out; + -webkit-transition: width 0.3s ease-out; + transition: width 0.3s ease-out; width: 0; padding-left: 0; padding-right: 0; @@ -8114,7 +8233,7 @@ body.print-node-materiau { margin-left: 0; overflow: hidden; } -/* line 1145, ../scss/styles.scss */ +/* line 1154, ../scss/styles.scss */ .print-content .node-materiau nav.nav { position: absolute; top: 0; @@ -8127,37 +8246,37 @@ body.print-node-materiau { background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1157, ../scss/styles.scss */ +/* line 1166, ../scss/styles.scss */ .print-content .node-materiau nav.nav a { color: #000; } -/* line 1158, ../scss/styles.scss */ +/* line 1167, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul { background-color: rgba(255, 255, 255, 0.9); } -/* line 1159, ../scss/styles.scss */ +/* line 1168, ../scss/styles.scss */ .print-content .node-materiau nav.nav span.op { font-weight: 900; font-size: 14px; } -/* line 1161, ../scss/styles.scss */ +/* line 1170, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul { padding: 0; margin: 0; } -/* line 1163, ../scss/styles.scss */ +/* line 1172, ../scss/styles.scss */ .print-content .node-materiau nav.nav section { position: relative; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ .print-content .node-materiau nav.nav section > i { margin: 0 5px; } -/* line 1166, ../scss/styles.scss */ +/* line 1175, ../scss/styles.scss */ .print-content .node-materiau nav.nav section > i:hover { cursor: pointer; } -/* line 1169, ../scss/styles.scss */ +/* line 1178, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul { position: absolute; right: 0; @@ -8170,7 +8289,7 @@ body.print-node-materiau { background-clip: padding-box; box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); } -/* line 1173, ../scss/styles.scss */ +/* line 1182, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul li { padding: 0; margin: 0; @@ -8178,22 +8297,23 @@ body.print-node-materiau { display: block; height: 0; overflow: hidden; - transition: height 0.2s ease-out; + -webkit-transition: height 0.2s ease-out; + transition: height 0.2s ease-out; } -/* line 1177, ../scss/styles.scss */ +/* line 1186, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul li a { display: block; } -/* line 1180, ../scss/styles.scss */ +/* line 1189, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul.flag-lists-entity-links { width: 160px; font-size: 0; } -/* line 1183, ../scss/styles.scss */ +/* line 1192, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul.flag-lists-entity-links > * { font-size: 11px; } -/* line 1188, ../scss/styles.scss */ +/* line 1197, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul.flag-lists-entity-links li { display: moz-inline-stack; display: inline-block; @@ -8204,52 +8324,53 @@ body.print-node-materiau { max-width: 98%; padding-left: 2px; } -/* line 1190, ../scss/styles.scss */ +/* line 1199, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul.flag-lists-entity-links li a { color: #a6a6a6; - transition: color 0.2s ease-out; + -webkit-transition: color 0.2s ease-out; + transition: color 0.2s ease-out; } -/* line 1192, ../scss/styles.scss */ +/* line 1201, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul.flag-lists-entity-links li a:hover, .print-content .node-materiau nav.nav ul.flag-lists-entity-links li a.unflag-action { color: #000; text-decoration: none; } -/* line 1196, ../scss/styles.scss */ +/* line 1205, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create { display: block; width: 100%; } -/* line 1198, ../scss/styles.scss */ +/* line 1207, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create > * { margin-top: 1px; padding-top: 1px; border-top: 1px solid #e6e6e6; } -/* line 1199, ../scss/styles.scss */ +/* line 1208, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create a { color: #000; } -/* line 1201, ../scss/styles.scss */ +/* line 1210, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul.flag-lists-entity-links li.loading { background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; } -/* line 1202, ../scss/styles.scss */ +/* line 1211, ../scss/styles.scss */ .print-content .node-materiau nav.nav ul.flag-lists-entity-links li.loading a { visibility: hidden; } -/* line 1207, ../scss/styles.scss */ +/* line 1216, ../scss/styles.scss */ .ie8 .print-content .node-materiau nav.nav ul { background: #FFF; } -/* line 1212, ../scss/styles.scss */ +/* line 1221, ../scss/styles.scss */ .print-content .node-materiau nav.nav section:hover ul { padding: 5px 5px; } -/* line 1214, ../scss/styles.scss */ +/* line 1223, ../scss/styles.scss */ .print-content .node-materiau nav.nav section:hover ul li { height: 17px; } -/* line 1227, ../scss/styles.scss */ +/* line 1236, ../scss/styles.scss */ .print-content .node-materiau div.workflow { position: absolute; top: 0; @@ -8263,7 +8384,7 @@ body.print-node-materiau { background-color: rgba(255, 255, 255, 0.9); color: #000; } -/* line 1233, ../scss/styles.scss */ +/* line 1242, ../scss/styles.scss */ .print-content .node-materiau div.workflow span { padding: 3px 0 0 4px; display: moz-inline-stack; @@ -8272,20 +8393,21 @@ body.print-node-materiau { zoom: 1; *display: inline; } -/* line 1236, ../scss/styles.scss */ +/* line 1245, ../scss/styles.scss */ .print-content .node-materiau .field-name-field-description .upgrade { font-size: 12px; padding-top: 4em; margin-top: -4.5em; + background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em); position: relative; } -/* line 1244, ../scss/styles.scss */ +/* line 1253, ../scss/styles.scss */ .print-content .node-materiau .side.oops p, .print-content .node-materiau .side .upgrade p { padding: 10px; font-size: 12px; } -/* line 1246, ../scss/styles.scss */ +/* line 1255, ../scss/styles.scss */ .print-content .node-materiau .side.oops p a, .print-content .node-materiau .side .upgrade p a { display: block; margin: 10px 0; @@ -8299,7 +8421,8 @@ body.print-node-materiau { color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; text-align: center; text-decoration: none; } @@ -8309,21 +8432,22 @@ body.print-node-materiau { } /* line 67, ../scss/styles.scss */ .print-content .node-materiau .side.oops p a:active, .print-content .node-materiau .side .upgrade p a:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 1622, ../scss/styles.scss */ +/* line 1631, ../scss/styles.scss */ .print-content .node-materiau .field-name-title-field { font-weight: 500; font-size: 36px; } -/* line 1625, ../scss/styles.scss */ +/* line 1634, ../scss/styles.scss */ .print-content .node-materiau .field-name-field-nature-titre { font-weight: 500; font-size: 24px; margin-bottom: 0.5em; } -/* line 1629, ../scss/styles.scss */ +/* line 1638, ../scss/styles.scss */ .print-content .node-materiau .group-head-right { position: absolute; top: 0; @@ -8331,7 +8455,7 @@ body.print-node-materiau { padding: 1em; text-align: right; } -/* line 1636, ../scss/styles.scss */ +/* line 1645, ../scss/styles.scss */ .print-content .node-materiau .side { display: moz-inline-stack; display: inline-block; @@ -8340,16 +8464,16 @@ body.print-node-materiau { *display: inline; width: 50%; } -/* line 1640, ../scss/styles.scss */ +/* line 1649, ../scss/styles.scss */ .print-content .node-materiau .side.group-side-right { border-radius: 5px 5px 5px 5px; background-clip: padding-box; } -/* line 1642, ../scss/styles.scss */ +/* line 1651, ../scss/styles.scss */ .print-content .node-materiau .side.group-side-right .field-name-field-materiau-image { float: right; } -/* line 1654, ../scss/styles.scss */ +/* line 1663, ../scss/styles.scss */ .print-content .node-materiau .field-name-field-description, .print-content .node-materiau .field-name-field-company-fab, .print-content .node-materiau .field-name-field-reference-distrib { @@ -8364,13 +8488,13 @@ body.print-node-materiau { /_/ /_/ |_/___/_/ |_/ /_/ */ -/* line 1672, ../scss/styles.scss */ +/* line 1681, ../scss/styles.scss */ .print-site_name { width: 100%; vertical-align: bottom; margin-bottom: 1em; } -/* line 1676, ../scss/styles.scss */ +/* line 1685, ../scss/styles.scss */ .print-site_name h1 { margin: 0; font-size: 36px; @@ -8383,33 +8507,33 @@ body.print-node-materiau { position: relative; line-height: 1.25; } -/* line 1680, ../scss/styles.scss */ +/* line 1689, ../scss/styles.scss */ .print-site_name h1 a { color: inherit; } -/* line 1682, ../scss/styles.scss */ +/* line 1691, ../scss/styles.scss */ .print-site_name h1 a:hover { text-decoration: none; } -/* line 1685, ../scss/styles.scss */ +/* line 1694, ../scss/styles.scss */ .print-site_name span.slogan { font-size: 14px; margin-top: -3px; margin-left: -0.5em; font-weight: 900; } -/* line 1690, ../scss/styles.scss */ +/* line 1699, ../scss/styles.scss */ .ie8 .print-site_name span.slogan { position: absolute; margin-top: 22px; } -/* line 1694, ../scss/styles.scss */ +/* line 1703, ../scss/styles.scss */ .print-content { margin-bottom: 1em; } -/* line 1698, ../scss/styles.scss */ +/* line 1707, ../scss/styles.scss */ .print-footer { margin-bottom: 2em; } @@ -8422,7 +8546,7 @@ body.print-node-materiau { /_/ |_\____/ /_/ \____/\____/\____/_/ /_/_/ /_____/_____/ /_/ /_____/ */ -/* line 1710, ../scss/styles.scss */ +/* line 1719, ../scss/styles.scss */ #autocomplete { border: 0; border-radius: 3px; @@ -8431,21 +8555,21 @@ body.print-node-materiau { text-align: left; margin-left: 2px; } -/* line 1715, ../scss/styles.scss */ +/* line 1724, ../scss/styles.scss */ .oldie #autocomplete { background-color: #545454; } -/* line 1716, ../scss/styles.scss */ +/* line 1725, ../scss/styles.scss */ #autocomplete li { color: #FFF; background-color: transparent; font-size: 12px; } -/* line 1718, ../scss/styles.scss */ +/* line 1727, ../scss/styles.scss */ #autocomplete li.selected { background-color: rgba(0, 0, 0, 0.8); } -/* line 1719, ../scss/styles.scss */ +/* line 1728, ../scss/styles.scss */ #autocomplete li div { padding: 0.1em 5px; } @@ -8453,7 +8577,7 @@ body.print-node-materiau { /** * the old modal api (balck bg) for contextual forms (create new flag list) */ -/* line 1759, ../scss/styles.scss */ +/* line 1768, ../scss/styles.scss */ #modal { background-color: rgba(0, 0, 0, 0.7); border-radius: 5px; @@ -8461,35 +8585,35 @@ body.print-node-materiau { border: 0; font-size: 12px; } -/* line 1729, ../scss/styles.scss */ +/* line 1738, ../scss/styles.scss */ #modal * { color: #fff; background-color: transparent; } -/* line 1731, ../scss/styles.scss */ +/* line 1740, ../scss/styles.scss */ #modal form { background-color: transparent; color: #fff; border: 0px; } -/* line 1734, ../scss/styles.scss */ +/* line 1743, ../scss/styles.scss */ #modal form .form-actions { background-color: transparent; margin: 0; padding: 0; border: 0; } -/* line 1737, ../scss/styles.scss */ +/* line 1746, ../scss/styles.scss */ #modal form input.form-text, #modal form textarea, #modal form div.grippie { background-color: #fff; color: #000; border: 0; } -/* line 1739, ../scss/styles.scss */ +/* line 1748, ../scss/styles.scss */ #modal form .form-actions { text-align: right; } -/* line 1740, ../scss/styles.scss */ +/* line 1749, ../scss/styles.scss */ #modal form input.form-submit { border-style: solid; border-width: 0; @@ -8513,7 +8637,8 @@ body.print-node-materiau { background-color: #008CBA; border-color: #007095; color: #FFFFFF; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ #modal form input.form-submit:hover, #modal form input.form-submit:focus { @@ -8523,7 +8648,7 @@ body.print-node-materiau { #modal form input.form-submit:hover, #modal form input.form-submit:focus { color: #FFFFFF; } -/* line 1743, ../scss/styles.scss */ +/* line 1752, ../scss/styles.scss */ #modal form input.form-submit[name="create"] { border-style: solid; border-width: 0; @@ -8547,7 +8672,8 @@ body.print-node-materiau { background-color: #43AC6A; border-color: #368a55; color: #FFFFFF; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus { @@ -8557,7 +8683,7 @@ body.print-node-materiau { #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus { color: #FFFFFF; } -/* line 1746, ../scss/styles.scss */ +/* line 1755, ../scss/styles.scss */ #modal form input.form-submit[name="save"] { border-style: solid; border-width: 0; @@ -8581,7 +8707,8 @@ body.print-node-materiau { background-color: #43AC6A; border-color: #368a55; color: #FFFFFF; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus { @@ -8591,7 +8718,7 @@ body.print-node-materiau { #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus { color: #FFFFFF; } -/* line 1749, ../scss/styles.scss */ +/* line 1758, ../scss/styles.scss */ #modal form input.form-submit[name="delete"] { border-style: solid; border-width: 0; @@ -8615,7 +8742,8 @@ body.print-node-materiau { background-color: #f04124; border-color: #cf2a0e; color: #FFFFFF; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus { @@ -8625,7 +8753,7 @@ body.print-node-materiau { #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus { color: #FFFFFF; } -/* line 1752, ../scss/styles.scss */ +/* line 1761, ../scss/styles.scss */ #modal form input.form-submit[name="cancel"] { border-style: solid; border-width: 0; @@ -8649,7 +8777,8 @@ body.print-node-materiau { background-color: #e7e7e7; border-color: #b9b9b9; color: #333333; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus { @@ -8659,15 +8788,15 @@ body.print-node-materiau { #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus { color: #333333; } -/* line 1761, ../scss/styles.scss */ +/* line 1770, ../scss/styles.scss */ #modal > * { padding: 10px; } -/* line 1765, ../scss/styles.scss */ +/* line 1774, ../scss/styles.scss */ #modal .form-item-flag-lists-name input { width: 95%; } -/* line 1768, ../scss/styles.scss */ +/* line 1777, ../scss/styles.scss */ #modal .actions { text-align: right; } @@ -8675,7 +8804,7 @@ body.print-node-materiau { /** * the new modal api used for preview and register modal */ -/* line 1776, ../scss/styles.scss */ +/* line 1785, ../scss/styles.scss */ .modal-wrapper { bottom: 0; left: 0; @@ -8686,7 +8815,7 @@ body.print-node-materiau { white-space: nowrap; z-index: 99998; } -/* line 1777, ../scss/styles.scss */ +/* line 1786, ../scss/styles.scss */ .modal-wrapper:before { content: ""; display: inline-block; @@ -8694,11 +8823,11 @@ body.print-node-materiau { margin-right: -0.25em; vertical-align: middle; } -/* line 1784, ../scss/styles.scss */ +/* line 1793, ../scss/styles.scss */ .modal-wrapper:after, .modal-wrapper:before { -moz-box-sizing: border-box; } -/* line 1799, ../scss/styles.scss */ +/* line 1808, ../scss/styles.scss */ .modal-wrapper .modal-bg { background-color: #000; position: absolute; @@ -8708,7 +8837,7 @@ body.print-node-materiau { height: 100%; opacity: 0.5; } -/* line 1807, ../scss/styles.scss */ +/* line 1816, ../scss/styles.scss */ .modal-wrapper .modal-content { position: relative; display: inline-block; @@ -8727,16 +8856,16 @@ body.print-node-materiau { \____//____/\____/_/ |_|\____/_____/_____/_/ /_/ |_/_/ |_/ */ -/* line 1829, ../scss/styles.scss */ +/* line 1838, ../scss/styles.scss */ .jspContainer .jspVerticalBar { background-color: transparent; width: 5px; } -/* line 1833, ../scss/styles.scss */ +/* line 1842, ../scss/styles.scss */ .jspContainer .jspVerticalBar .jspTrack { background-color: transparent; } -/* line 1835, ../scss/styles.scss */ +/* line 1844, ../scss/styles.scss */ .jspContainer .jspVerticalBar .jspTrack .jspDrag { background-color: #ccc; border-radius: 3px; @@ -8751,7 +8880,7 @@ body.print-node-materiau { /_/ \____/\____/_____/_/ /___/_/ */ -/* line 1851, ../scss/styles.scss */ +/* line 1860, ../scss/styles.scss */ #tooltip { position: absolute; z-index: 999; @@ -8764,9 +8893,10 @@ body.print-node-materiau { font-weight: 500; box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 1855, ../scss/styles.scss */ +/* line 1864, ../scss/styles.scss */ #tooltip.op-visible { - transition: opacity 0.1s ease-out; + -webkit-transition: opacity 0.1s ease-out; + transition: opacity 0.1s ease-out; } /* @@ -8778,24 +8908,24 @@ body.print-node-materiau { */ @media only screen and (min-width: 40.063em) and (max-width: 64em) { - /* line 1869, ../scss/styles.scss */ + /* line 1878, ../scss/styles.scss */ #block-feedback-form { bottom: 5px; left: 5px; right: auto; } } -/* line 1873, ../scss/styles.scss */ +/* line 1882, ../scss/styles.scss */ #block-feedback-form h2 { line-height: 1.2; font-size: 14px; margin: 0; } -/* line 1875, ../scss/styles.scss */ +/* line 1884, ../scss/styles.scss */ #block-feedback-form h2 .title { display: none; } -/* line 1878, ../scss/styles.scss */ +/* line 1887, ../scss/styles.scss */ #block-feedback-form #feedback-form-toggle { padding: 2px 3px; border-radius: 3px; @@ -8805,7 +8935,7 @@ body.print-node-materiau { line-height: 2; font-weight: 900; } -/* line 1882, ../scss/styles.scss */ +/* line 1891, ../scss/styles.scss */ #block-feedback-form .content { background-color: rgba(0, 0, 0, 0.7); border-radius: 5px; @@ -8813,35 +8943,35 @@ body.print-node-materiau { border: 0; font-size: 12px; } -/* line 1729, ../scss/styles.scss */ +/* line 1738, ../scss/styles.scss */ #block-feedback-form .content * { color: #fff; background-color: transparent; } -/* line 1731, ../scss/styles.scss */ +/* line 1740, ../scss/styles.scss */ #block-feedback-form .content form { background-color: transparent; color: #fff; border: 0px; } -/* line 1734, ../scss/styles.scss */ +/* line 1743, ../scss/styles.scss */ #block-feedback-form .content form .form-actions { background-color: transparent; margin: 0; padding: 0; border: 0; } -/* line 1737, ../scss/styles.scss */ +/* line 1746, ../scss/styles.scss */ #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie { background-color: #fff; color: #000; border: 0; } -/* line 1739, ../scss/styles.scss */ +/* line 1748, ../scss/styles.scss */ #block-feedback-form .content form .form-actions { text-align: right; } -/* line 1740, ../scss/styles.scss */ +/* line 1749, ../scss/styles.scss */ #block-feedback-form .content form input.form-submit { border-style: solid; border-width: 0; @@ -8865,7 +8995,8 @@ body.print-node-materiau { background-color: #008CBA; border-color: #007095; color: #FFFFFF; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus { @@ -8875,7 +9006,7 @@ body.print-node-materiau { #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus { color: #FFFFFF; } -/* line 1743, ../scss/styles.scss */ +/* line 1752, ../scss/styles.scss */ #block-feedback-form .content form input.form-submit[name="create"] { border-style: solid; border-width: 0; @@ -8899,7 +9030,8 @@ body.print-node-materiau { background-color: #43AC6A; border-color: #368a55; color: #FFFFFF; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus { @@ -8909,7 +9041,7 @@ body.print-node-materiau { #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus { color: #FFFFFF; } -/* line 1746, ../scss/styles.scss */ +/* line 1755, ../scss/styles.scss */ #block-feedback-form .content form input.form-submit[name="save"] { border-style: solid; border-width: 0; @@ -8933,7 +9065,8 @@ body.print-node-materiau { background-color: #43AC6A; border-color: #368a55; color: #FFFFFF; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus { @@ -8943,7 +9076,7 @@ body.print-node-materiau { #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus { color: #FFFFFF; } -/* line 1749, ../scss/styles.scss */ +/* line 1758, ../scss/styles.scss */ #block-feedback-form .content form input.form-submit[name="delete"] { border-style: solid; border-width: 0; @@ -8967,7 +9100,8 @@ body.print-node-materiau { background-color: #f04124; border-color: #cf2a0e; color: #FFFFFF; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus { @@ -8977,7 +9111,7 @@ body.print-node-materiau { #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus { color: #FFFFFF; } -/* line 1752, ../scss/styles.scss */ +/* line 1761, ../scss/styles.scss */ #block-feedback-form .content form input.form-submit[name="cancel"] { border-style: solid; border-width: 0; @@ -9001,7 +9135,8 @@ body.print-node-materiau { background-color: #e7e7e7; border-color: #b9b9b9; color: #333333; - transition: background-color 300ms ease-out; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */ #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus { @@ -9011,11 +9146,11 @@ body.print-node-materiau { #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus { color: #333333; } -/* line 1884, ../scss/styles.scss */ +/* line 1893, ../scss/styles.scss */ .ie8 #block-feedback-form .content { background: #000; } -/* line 1887, ../scss/styles.scss */ +/* line 1896, ../scss/styles.scss */ #block-feedback-form #feedback-status-message { background-color: #fff; padding: 5px; @@ -9029,7 +9164,7 @@ body.print-node-materiau { /_/ /_/ |_/____/_/ |_| /_/ /_/ /_/ |_/_____/____/ */ -/* line 1914, ../scss/styles.scss */ +/* line 1923, ../scss/styles.scss */ #tasks ul.tabs { display: moz-inline-stack; display: inline-block; @@ -9040,23 +9175,23 @@ body.print-node-materiau { padding: 0; margin: 0; } -/* line 1918, ../scss/styles.scss */ +/* line 1927, ../scss/styles.scss */ #tasks ul.tabs li { padding: 0; margin: 2px 5px; border: 0 solid #fff; } -/* line 1919, ../scss/styles.scss */ +/* line 1928, ../scss/styles.scss */ #tasks ul.tabs a { border: 0; color: #7f7f7f; } -/* line 1921, ../scss/styles.scss */ +/* line 1930, ../scss/styles.scss */ #tasks ul.tabs a.active, #tasks ul.tabs a:hover { font-weight: 900; color: #000; } -/* line 1899, ../scss/styles.scss */ +/* line 1908, ../scss/styles.scss */ #tasks ul.tabs.primary a { font-size: 12px; padding: 5px 10px; @@ -9064,11 +9199,11 @@ body.print-node-materiau { border-radius: 3px; background-clip: padding-box; } -/* line 1903, ../scss/styles.scss */ +/* line 1912, ../scss/styles.scss */ #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover { background-color: #e6e6e6; } -/* line 1928, ../scss/styles.scss */ +/* line 1937, ../scss/styles.scss */ #tasks ul.tabs.secondary { font-size: 10px; padding: 0.5em 1em; @@ -9088,20 +9223,20 @@ body.print-node-materiau { |___|___|___|_| */ -/* line 1951, ../scss/styles.scss */ +/* line 1960, ../scss/styles.scss */ .page-user #center, .page-user-edit #center, .page-user-password #center, .page-user-reset #center, .page-toboggan #center { background: #fff url("../img/user-page-bg.gif") no-repeat bottom right; } -/* line 1952, ../scss/styles.scss */ +/* line 1961, ../scss/styles.scss */ .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages { width: 800px; margin: 0 auto; } -/* line 1954, ../scss/styles.scss */ +/* line 1963, ../scss/styles.scss */ .page-user.role-6 #tasks .tabs.primary, .page-user-edit.role-6 #tasks .tabs.primary, .page-user-password.role-6 #tasks .tabs.primary, .page-user-reset.role-6 #tasks .tabs.primary, .page-toboggan.role-6 #tasks .tabs.primary { display: none; } -/* line 1899, ../scss/styles.scss */ +/* line 1908, ../scss/styles.scss */ .page-user.role-6 #tasks .tabs.secondary a, .page-user-edit.role-6 #tasks .tabs.secondary a, .page-user-password.role-6 #tasks .tabs.secondary a, .page-user-reset.role-6 #tasks .tabs.secondary a, .page-toboggan.role-6 #tasks .tabs.secondary a { font-size: 12px; padding: 5px 10px; @@ -9109,23 +9244,23 @@ body.print-node-materiau { border-radius: 3px; background-clip: padding-box; } -/* line 1903, ../scss/styles.scss */ +/* line 1912, ../scss/styles.scss */ .page-user.role-6 #tasks .tabs.secondary a.active, .page-user.role-6 #tasks .tabs.secondary a:hover, .page-user-edit.role-6 #tasks .tabs.secondary a.active, .page-user-edit.role-6 #tasks .tabs.secondary a:hover, .page-user-password.role-6 #tasks .tabs.secondary a.active, .page-user-password.role-6 #tasks .tabs.secondary a:hover, .page-user-reset.role-6 #tasks .tabs.secondary a.active, .page-user-reset.role-6 #tasks .tabs.secondary a:hover, .page-toboggan.role-6 #tasks .tabs.secondary a.active, .page-toboggan.role-6 #tasks .tabs.secondary a:hover { background-color: #e6e6e6; } -/* line 1956, ../scss/styles.scss */ +/* line 1965, ../scss/styles.scss */ .page-user #center > *, .page-user-edit #center > *, .page-user-password #center > *, .page-user-reset #center > *, .page-toboggan #center > * { width: 800px; margin: 0 auto; padding-top: 1em; font-size: 14px; } -/* line 1959, ../scss/styles.scss */ +/* line 1968, ../scss/styles.scss */ .page-user #center > * fieldset, .page-user-edit #center > * fieldset, .page-user-password #center > * fieldset, .page-user-reset #center > * fieldset, .page-toboggan #center > * fieldset { margin-bottom: 1em; border: none; } -/* line 1964, ../scss/styles.scss */ +/* line 1973, ../scss/styles.scss */ .page-user #center > * legend, .page-user-edit #center > * legend, .page-user-password #center > * legend, .page-user-reset #center > * legend, .page-toboggan #center > * legend { font-size: 16px; margin: 0; @@ -9133,16 +9268,16 @@ body.print-node-materiau { line-height: 1; border: 0 solid #fff; } -/* line 1966, ../scss/styles.scss */ +/* line 1975, ../scss/styles.scss */ .page-user #center > * legend a, .page-user-edit #center > * legend a, .page-user-password #center > * legend a, .page-user-reset #center > * legend a, .page-toboggan #center > * legend a { color: #000; } -/* line 1969, ../scss/styles.scss */ +/* line 1978, ../scss/styles.scss */ .page-user #center > * .form-item, .page-user-edit #center > * .form-item, .page-user-password #center > * .form-item, .page-user-reset #center > * .form-item, .page-toboggan #center > * .form-item { margin: 0 0 0.5em 0; width: 100%; } -/* line 1971, ../scss/styles.scss */ +/* line 1980, ../scss/styles.scss */ .page-user #center > * .form-item label, .page-user #center > * .form-item input.form-text, .page-user-edit #center > * .form-item label, .page-user-edit #center > * .form-item input.form-text, .page-user-password #center > * .form-item label, .page-user-password #center > * .form-item input.form-text, .page-user-reset #center > * .form-item label, .page-user-reset #center > * .form-item input.form-text, .page-toboggan #center > * .form-item label, .page-toboggan #center > * .form-item input.form-text { display: moz-inline-stack; display: inline-block; @@ -9151,42 +9286,42 @@ body.print-node-materiau { *display: inline; vertical-align: middle; } -/* line 1974, ../scss/styles.scss */ +/* line 1983, ../scss/styles.scss */ .page-user #center > * .form-item label, .page-user-edit #center > * .form-item label, .page-user-password #center > * .form-item label, .page-user-reset #center > * .form-item label, .page-toboggan #center > * .form-item label { margin-right: 1em; } -/* line 1975, ../scss/styles.scss */ +/* line 1984, ../scss/styles.scss */ .page-user #center > * .form-item input.form-text, .page-user-edit #center > * .form-item input.form-text, .page-user-password #center > * .form-item input.form-text, .page-user-reset #center > * .form-item input.form-text, .page-toboggan #center > * .form-item input.form-text { padding: 2px 4px; width: 20em; } -/* line 1980, ../scss/styles.scss */ +/* line 1989, ../scss/styles.scss */ .page-user #center > * .form-wrapper > .form-item, .page-user-edit #center > * .form-wrapper > .form-item, .page-user-password #center > * .form-wrapper > .form-item, .page-user-reset #center > * .form-wrapper > .form-item, .page-toboggan #center > * .form-wrapper > .form-item { margin: 0 0 2em 0; } -/* line 1984, ../scss/styles.scss */ +/* line 1993, ../scss/styles.scss */ .page-user #center > * .form-type-password-confirm label, .page-user #center > * .form-type-new-password-confirm label, .page-user-edit #center > * .form-type-password-confirm label, .page-user-edit #center > * .form-type-new-password-confirm label, .page-user-password #center > * .form-type-password-confirm label, .page-user-password #center > * .form-type-new-password-confirm label, .page-user-reset #center > * .form-type-password-confirm label, .page-user-reset #center > * .form-type-new-password-confirm label, .page-toboggan #center > * .form-type-password-confirm label, .page-toboggan #center > * .form-type-new-password-confirm label { width: 9em; } -/* line 1985, ../scss/styles.scss */ +/* line 1994, ../scss/styles.scss */ .page-user #center > * .form-type-password-confirm .password-parent, .page-user #center > * .form-type-new-password-confirm .password-parent, .page-user-edit #center > * .form-type-password-confirm .password-parent, .page-user-edit #center > * .form-type-new-password-confirm .password-parent, .page-user-password #center > * .form-type-password-confirm .password-parent, .page-user-password #center > * .form-type-new-password-confirm .password-parent, .page-user-reset #center > * .form-type-password-confirm .password-parent, .page-user-reset #center > * .form-type-new-password-confirm .password-parent, .page-toboggan #center > * .form-type-password-confirm .password-parent, .page-toboggan #center > * .form-type-new-password-confirm .password-parent { width: auto; } -/* line 1986, ../scss/styles.scss */ +/* line 1995, ../scss/styles.scss */ .page-user #center > * .form-type-password-confirm .password-strength, .page-user #center > * .form-type-password-confirm .password-confirm, .page-user #center > * .form-type-new-password-confirm .password-strength, .page-user #center > * .form-type-new-password-confirm .password-confirm, .page-user-edit #center > * .form-type-password-confirm .password-strength, .page-user-edit #center > * .form-type-password-confirm .password-confirm, .page-user-edit #center > * .form-type-new-password-confirm .password-strength, .page-user-edit #center > * .form-type-new-password-confirm .password-confirm, .page-user-password #center > * .form-type-password-confirm .password-strength, .page-user-password #center > * .form-type-password-confirm .password-confirm, .page-user-password #center > * .form-type-new-password-confirm .password-strength, .page-user-password #center > * .form-type-new-password-confirm .password-confirm, .page-user-reset #center > * .form-type-password-confirm .password-strength, .page-user-reset #center > * .form-type-password-confirm .password-confirm, .page-user-reset #center > * .form-type-new-password-confirm .password-strength, .page-user-reset #center > * .form-type-new-password-confirm .password-confirm, .page-toboggan #center > * .form-type-password-confirm .password-strength, .page-toboggan #center > * .form-type-password-confirm .password-confirm, .page-toboggan #center > * .form-type-new-password-confirm .password-strength, .page-toboggan #center > * .form-type-new-password-confirm .password-confirm { width: 15em; margin-top: 0; } -/* line 1992, ../scss/styles.scss */ +/* line 2001, ../scss/styles.scss */ .page-user #center > * .form-type-checkbox input, .page-user-edit #center > * .form-type-checkbox input, .page-user-password #center > * .form-type-checkbox input, .page-user-reset #center > * .form-type-checkbox input, .page-toboggan #center > * .form-type-checkbox input { margin: 0; } -/* line 1993, ../scss/styles.scss */ +/* line 2002, ../scss/styles.scss */ .page-user #center > * .form-type-checkbox label, .page-user-edit #center > * .form-type-checkbox label, .page-user-password #center > * .form-type-checkbox label, .page-user-reset #center > * .form-type-checkbox label, .page-toboggan #center > * .form-type-checkbox label { font-size: 14px; margin: 0; } -/* line 1997, ../scss/styles.scss */ +/* line 2006, ../scss/styles.scss */ .page-user #center > * #edit-language .form-item, .page-user-edit #center > * #edit-language .form-item, .page-user-password #center > * #edit-language .form-item, .page-user-reset #center > * #edit-language .form-item, .page-toboggan #center > * #edit-language .form-item { display: moz-inline-stack; display: inline-block; @@ -9196,31 +9331,31 @@ body.print-node-materiau { width: auto; margin-right: 1em; } -/* line 1999, ../scss/styles.scss */ +/* line 2008, ../scss/styles.scss */ .page-user #center > * #edit-language .form-item input, .page-user #center > * #edit-language .form-item label, .page-user-edit #center > * #edit-language .form-item input, .page-user-edit #center > * #edit-language .form-item label, .page-user-password #center > * #edit-language .form-item input, .page-user-password #center > * #edit-language .form-item label, .page-user-reset #center > * #edit-language .form-item input, .page-user-reset #center > * #edit-language .form-item label, .page-toboggan #center > * #edit-language .form-item input, .page-toboggan #center > * #edit-language .form-item label { margin: 0; } -/* line 2003, ../scss/styles.scss */ +/* line 2012, ../scss/styles.scss */ .page-user #center > * select.form-select, .page-user-edit #center > * select.form-select, .page-user-password #center > * select.form-select, .page-user-reset #center > * select.form-select, .page-toboggan #center > * select.form-select { width: auto; padding: 2px 4px; height: auto; } -/* line 2007, ../scss/styles.scss */ +/* line 2016, ../scss/styles.scss */ .page-user #center > * div.description, .page-user-edit #center > * div.description, .page-user-password #center > * div.description, .page-user-reset #center > * div.description, .page-toboggan #center > * div.description { font-size: 10px; } -/* line 2010, ../scss/styles.scss */ +/* line 2019, ../scss/styles.scss */ .page-user #center > * div.form-actions, .page-user-edit #center > * div.form-actions, .page-user-password #center > * div.form-actions, .page-user-reset #center > * div.form-actions, .page-toboggan #center > * div.form-actions { margin: 0; text-align: right; padding: 1em 0.5em; } -/* line 2017, ../scss/styles.scss */ +/* line 2026, ../scss/styles.scss */ .page-user #center > *#user-profile-form label, .page-user-edit #center > *#user-profile-form label, .page-user-password #center > *#user-profile-form label, .page-user-reset #center > *#user-profile-form label, .page-toboggan #center > *#user-profile-form label { min-width: 10em; } -/* line 2019, ../scss/styles.scss */ +/* line 2028, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-first-name, .page-user #center > * #edit-profile-adherent-field-name, .page-user #center > * #edit-profile-adherent-field-private-quality, .page-user #center > * #edit-profile-adherent-field-service, .page-user #center > * #edit-profile-adherent-field-employee, .page-user #center > * #edit-profile-adherent-field-naf, .page-user #center > * #edit-profile-adherent-field-siret, .page-user-edit #center > * #edit-profile-adherent-field-first-name, .page-user-edit #center > * #edit-profile-adherent-field-name, @@ -9241,7 +9376,7 @@ body.print-node-materiau { width: auto; margin: 0 1em 0.5em 0; } -/* line 2023, ../scss/styles.scss */ +/* line 2032, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-first-name div, .page-user #center > * #edit-profile-adherent-field-name div, .page-user #center > * #edit-profile-adherent-field-private-quality div, .page-user #center > * #edit-profile-adherent-field-service div, .page-user #center > * #edit-profile-adherent-field-employee div, .page-user #center > * #edit-profile-adherent-field-naf div, .page-user #center > * #edit-profile-adherent-field-siret div, .page-user-edit #center > * #edit-profile-adherent-field-first-name div, .page-user-edit #center > * #edit-profile-adherent-field-name div, @@ -9257,31 +9392,31 @@ body.print-node-materiau { margin: 0; padding: 0; } -/* line 2032, ../scss/styles.scss */ +/* line 2041, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-siret label, .page-user-edit #center > * #edit-profile-adherent-field-siret label, .page-user-password #center > * #edit-profile-adherent-field-siret label, .page-user-reset #center > * #edit-profile-adherent-field-siret label, .page-toboggan #center > * #edit-profile-adherent-field-siret label { width: auto; } -/* line 2032, ../scss/styles.scss */ +/* line 2041, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-siret input, .page-user-edit #center > * #edit-profile-adherent-field-siret input, .page-user-password #center > * #edit-profile-adherent-field-siret input, .page-user-reset #center > * #edit-profile-adherent-field-siret input, .page-toboggan #center > * #edit-profile-adherent-field-siret input { width: 8em; } -/* line 2033, ../scss/styles.scss */ +/* line 2042, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-naf input, .page-user-edit #center > * #edit-profile-adherent-field-naf input, .page-user-password #center > * #edit-profile-adherent-field-naf input, .page-user-reset #center > * #edit-profile-adherent-field-naf input, .page-toboggan #center > * #edit-profile-adherent-field-naf input { width: 13em; } -/* line 2035, ../scss/styles.scss */ +/* line 2044, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-organization, .page-user-edit #center > * #edit-profile-adherent-field-organization, .page-user-password #center > * #edit-profile-adherent-field-organization, .page-user-reset #center > * #edit-profile-adherent-field-organization, .page-toboggan #center > * #edit-profile-adherent-field-organization { margin: 2em 0 0 0; } -/* line 2037, ../scss/styles.scss */ +/* line 2046, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-employee label, .page-user-edit #center > * #edit-profile-adherent-field-employee label, .page-user-password #center > * #edit-profile-adherent-field-employee label, .page-user-reset #center > * #edit-profile-adherent-field-employee label, .page-toboggan #center > * #edit-profile-adherent-field-employee label { width: auto; } -/* line 2038, ../scss/styles.scss */ +/* line 2047, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-employee input, .page-user-edit #center > * #edit-profile-adherent-field-employee input, .page-user-password #center > * #edit-profile-adherent-field-employee input, .page-user-reset #center > * #edit-profile-adherent-field-employee input, .page-toboggan #center > * #edit-profile-adherent-field-employee input { width: 4em; } -/* line 2042, ../scss/styles.scss */ +/* line 2051, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-edit #center > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-password #center > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-reset #center > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-toboggan #center > * #edit-profile-adherent-field-private-phone .form-phone-number { display: moz-inline-stack; display: inline-block; @@ -9290,28 +9425,28 @@ body.print-node-materiau { *display: inline; vertical-align: middle; } -/* line 2044, ../scss/styles.scss */ +/* line 2053, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-private-phone .form-phone-number #edit-profile-adherent-field-private-phone-und-0-number, .page-user-edit #center > * #edit-profile-adherent-field-private-phone .form-phone-number #edit-profile-adherent-field-private-phone-und-0-number, .page-user-password #center > * #edit-profile-adherent-field-private-phone .form-phone-number #edit-profile-adherent-field-private-phone-und-0-number, .page-user-reset #center > * #edit-profile-adherent-field-private-phone .form-phone-number #edit-profile-adherent-field-private-phone-und-0-number, .page-toboggan #center > * #edit-profile-adherent-field-private-phone .form-phone-number #edit-profile-adherent-field-private-phone-und-0-number { width: 10em; } -/* line 2048, ../scss/styles.scss */ +/* line 2057, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-adresse-und-0, .page-user-edit #center > * #edit-profile-adherent-field-adresse-und-0, .page-user-password #center > * #edit-profile-adherent-field-adresse-und-0, .page-user-reset #center > * #edit-profile-adherent-field-adresse-und-0, .page-toboggan #center > * #edit-profile-adherent-field-adresse-und-0 { padding: 0; } -/* line 2051, ../scss/styles.scss */ +/* line 2060, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-adresse-und-0 .street-block input, .page-user-edit #center > * #edit-profile-adherent-field-adresse-und-0 .street-block input, .page-user-password #center > * #edit-profile-adherent-field-adresse-und-0 .street-block input, .page-user-reset #center > * #edit-profile-adherent-field-adresse-und-0 .street-block input, .page-toboggan #center > * #edit-profile-adherent-field-adresse-und-0 .street-block input { width: 35em; } -/* line 2054, ../scss/styles.scss */ +/* line 2063, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-adresse-und-0 .locality-block .form-item, .page-user-edit #center > * #edit-profile-adherent-field-adresse-und-0 .locality-block .form-item, .page-user-password #center > * #edit-profile-adherent-field-adresse-und-0 .locality-block .form-item, .page-user-reset #center > * #edit-profile-adherent-field-adresse-und-0 .locality-block .form-item, .page-toboggan #center > * #edit-profile-adherent-field-adresse-und-0 .locality-block .form-item { width: auto; margin-right: 1em; } -/* line 2058, ../scss/styles.scss */ +/* line 2067, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-user-website, .page-user-edit #center > * #edit-profile-adherent-field-user-website, .page-user-password #center > * #edit-profile-adherent-field-user-website, .page-user-reset #center > * #edit-profile-adherent-field-user-website, .page-toboggan #center > * #edit-profile-adherent-field-user-website { margin: 2em 0 0 0; } -/* line 2060, ../scss/styles.scss */ +/* line 2069, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-edit #center > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-password #center > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-reset #center > * #edit-profile-adherent-field-user-website .form-item > *, .page-toboggan #center > * #edit-profile-adherent-field-user-website .form-item > * { display: moz-inline-stack; display: inline-block; @@ -9320,19 +9455,19 @@ body.print-node-materiau { *display: inline; vertical-align: middle; } -/* line 2061, ../scss/styles.scss */ +/* line 2070, ../scss/styles.scss */ .page-user #center > * #edit-profile-adherent-field-user-website input, .page-user-edit #center > * #edit-profile-adherent-field-user-website input, .page-user-password #center > * #edit-profile-adherent-field-user-website input, .page-user-reset #center > * #edit-profile-adherent-field-user-website input, .page-toboggan #center > * #edit-profile-adherent-field-user-website input { width: 35em; } -/* line 2065, ../scss/styles.scss */ +/* line 2074, ../scss/styles.scss */ .page-user #center > *.profile h3, .page-user-edit #center > *.profile h3, .page-user-password #center > *.profile h3, .page-user-reset #center > *.profile h3, .page-toboggan #center > *.profile h3 { border: 0 solid transparent; } -/* line 2066, ../scss/styles.scss */ +/* line 2075, ../scss/styles.scss */ .page-user #center > *.profile .field-label, .page-user-edit #center > *.profile .field-label, .page-user-password #center > *.profile .field-label, .page-user-reset #center > *.profile .field-label, .page-toboggan #center > *.profile .field-label { display: inline; } -/* line 2069, ../scss/styles.scss */ +/* line 2078, ../scss/styles.scss */ .page-user #center > * #edit-mimemail, .page-user #center > * #edit-locale, .page-user #center > * #edit-timezone, .page-user-edit #center > * #edit-mimemail, .page-user-edit #center > * #edit-locale, .page-user-edit #center > * #edit-timezone, .page-user-password #center > * #edit-mimemail, .page-user-password #center > * #edit-locale, .page-user-password #center > * #edit-timezone, .page-user-reset #center > * #edit-mimemail, .page-user-reset #center > * #edit-locale, .page-user-reset #center > * #edit-timezone, .page-toboggan #center > * #edit-mimemail, .page-toboggan #center > * #edit-locale, .page-toboggan #center > * #edit-timezone { padding: 0; } @@ -9344,11 +9479,11 @@ body.print-node-materiau { |_____|_____|_|_|_|__| |_____|_____|_|___|_____|_____|_____| */ -/* line 2082, ../scss/styles.scss */ +/* line 2091, ../scss/styles.scss */ body.node-type-simplenews #content .inner-content { text-align: center; } -/* line 2085, ../scss/styles.scss */ +/* line 2094, ../scss/styles.scss */ body.node-type-simplenews #content article.node.node-simplenews { display: moz-inline-stack; display: inline-block; @@ -9358,7 +9493,7 @@ body.node-type-simplenews #content article.node.node-simplenews { max-width: 600px; padding: 1em 0; } -/* line 2089, ../scss/styles.scss */ +/* line 2098, ../scss/styles.scss */ body.node-type-simplenews #content article.node.node-simplenews tbody { border-top: 0px; } @@ -9370,11 +9505,11 @@ body.node-type-simplenews #content article.node.node-simplenews tbody { |__| |__|__|_____|_____| |_____|_____|_|___| |_| |__|__|_____| |_| */ -/* line 2106, ../scss/styles.scss */ +/* line 2115, ../scss/styles.scss */ .page-node-11175 #main #center { background: #fff url("../img/bg-contact.gif") no-repeat bottom right; } -/* line 2109, ../scss/styles.scss */ +/* line 2118, ../scss/styles.scss */ .page-node-11175 #main .field-name-body p { display: moz-inline-stack; display: inline-block; @@ -9383,7 +9518,7 @@ body.node-type-simplenews #content article.node.node-simplenews tbody { *display: inline; margin: 15px; } -/* line 2111, ../scss/styles.scss */ +/* line 2120, ../scss/styles.scss */ .page-node-11175 #main .field-name-body p strong { font-size: 18px; } @@ -9396,7 +9531,7 @@ body.node-type-simplenews #content article.node.node-simplenews tbody { */ @media only screen and (min-width: 40.063em) { - /* line 2130, ../scss/styles.scss */ + /* line 2139, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-11187 .node-11187 .field-name-body div.column:last-child, body.page-node-11187 .node-11187 .field-name-body div.column-demi, body.page-node-11187 .node-11187 .field-name-body div.column-demi:last-child, body.page-node-11187 .node-11187 .field-name-body div.column-full, body.page-node-11187 .node-11187 .field-name-body div.column-full:last-child, body.page-node-11187 .node-11187 .field-name-body div.column-auto, body.page-node-11187 .node-11187 .field-name-body div.column-auto:last-child { display: moz-inline-stack; display: inline-block; @@ -9406,32 +9541,32 @@ body.node-type-simplenews #content article.node.node-simplenews tbody { margin: 10px; float: none; } - /* line 2134, ../scss/styles.scss */ + /* line 2143, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column { width: 22.4%; } - /* line 2136, ../scss/styles.scss */ + /* line 2145, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column ul.list-text, body.page-node-11187 .node-11187 .field-name-body div.column p.description { min-height: 170px; } - /* line 2139, ../scss/styles.scss */ + /* line 2148, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi { width: 46%; } - /* line 2141, ../scss/styles.scss */ + /* line 2150, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text { min-height: 110px; } - /* line 2143, ../scss/styles.scss */ + /* line 2152, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-full { width: 92%; } - /* line 2147, ../scss/styles.scss */ + /* line 2156, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-auto { width: auto; max-width: 98%; } - /* line 2153, ../scss/styles.scss */ + /* line 2162, ../scss/styles.scss */ body.page-node-11187 #block-materio-user-user-register { width: 600px; margin: 0 auto; @@ -9439,20 +9574,20 @@ body.node-type-simplenews #content article.node.node-simplenews tbody { } } @media only screen and (max-width: 40em) { - /* line 2160, ../scss/styles.scss */ + /* line 2169, ../scss/styles.scss */ body.page-node-11187 #block-system-help { text-align: center; } } -/* line 2164, ../scss/styles.scss */ +/* line 2173, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body { text-align: center; } -/* line 2166, ../scss/styles.scss */ +/* line 2175, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body > * { text-align: left; } -/* line 2167, ../scss/styles.scss */ +/* line 2176, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-11187 .node-11187 .field-name-body div.column-demi, body.page-node-11187 .node-11187 .field-name-body div.column-full, body.page-node-11187 .node-11187 .field-name-body div.column-auto { position: relative; background-color: #fff; @@ -9461,23 +9596,23 @@ body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-111 box-shadow: 0 0 6px rgba(0, 0, 0, 0.5); overflow: hidden; } -/* line 2170, ../scss/styles.scss */ +/* line 2179, ../scss/styles.scss */ .ie8 body.page-node-11187 .node-11187 .field-name-body div.column, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-demi, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-full, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-auto { max-width: 500px; margin: auto; margin-bottom: 15px; border: 1px solid #C6C6C6; } -/* line 2173, ../scss/styles.scss */ +/* line 2182, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column > *, body.page-node-11187 .node-11187 .field-name-body div.column-demi > *, body.page-node-11187 .node-11187 .field-name-body div.column-full > *, body.page-node-11187 .node-11187 .field-name-body div.column-auto > * { padding: 0 10px; } -/* line 2175, ../scss/styles.scss */ +/* line 2184, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column h2, body.page-node-11187 .node-11187 .field-name-body div.column-demi h2, body.page-node-11187 .node-11187 .field-name-body div.column-full h2, body.page-node-11187 .node-11187 .field-name-body div.column-auto h2 { text-align: left; margin: 5px 0 0 15px; } -/* line 2176, ../scss/styles.scss */ +/* line 2185, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-full .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-auto .subtitle { padding: 0 0 0 15px; font-size: 18px; @@ -9485,28 +9620,28 @@ body.page-node-11187 .node-11187 .field-name-body div.column .subtitle, body.pag font-weight: bold; line-height: 1; } -/* line 2181, ../scss/styles.scss */ +/* line 2190, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column ul, body.page-node-11187 .node-11187 .field-name-body div.column-demi ul, body.page-node-11187 .node-11187 .field-name-body div.column-full ul, body.page-node-11187 .node-11187 .field-name-body div.column-auto ul { margin: 0; padding: 0 15px; } -/* line 2182, ../scss/styles.scss */ +/* line 2191, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column li, body.page-node-11187 .node-11187 .field-name-body div.column-demi li, body.page-node-11187 .node-11187 .field-name-body div.column-full li, body.page-node-11187 .node-11187 .field-name-body div.column-auto li { list-style: none; font-size: 12px; } -/* line 2184, ../scss/styles.scss */ +/* line 2193, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column li:before, body.page-node-11187 .node-11187 .field-name-body div.column-demi li:before, body.page-node-11187 .node-11187 .field-name-body div.column-full li:before, body.page-node-11187 .node-11187 .field-name-body div.column-auto li:before { content: "+ "; font-weight: 900; } -/* line 2189, ../scss/styles.scss */ +/* line 2198, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .description, body.page-node-11187 .node-11187 .field-name-body div.column-demi .description, body.page-node-11187 .node-11187 .field-name-body div.column-full .description, body.page-node-11187 .node-11187 .field-name-body div.column-auto .description { font-size: 12px; margin: 0; padding: 0 15px; } -/* line 2193, ../scss/styles.scss */ +/* line 2202, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto .get-link { margin: 0; border-radius: 0 0 5px 5px 0 0 0; @@ -9514,7 +9649,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column .get-link, body.pag border: 1px solid #fff; min-height: 92px; } -/* line 2195, ../scss/styles.scss */ +/* line 2204, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-full .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-auto .get-link a { display: block; width: 100%; @@ -9522,37 +9657,37 @@ body.page-node-11187 .node-11187 .field-name-body div.column .get-link a, body.p color: #1A1A1A; text-decoration: none; } -/* line 2197, ../scss/styles.scss */ +/* line 2206, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto .get-link { background-color: #C8C8C8; } -/* line 2198, ../scss/styles.scss */ +/* line 2207, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column.web .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.web .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.web .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.web .get-link { background-color: #69CDCF; } -/* line 2199, ../scss/styles.scss */ +/* line 2208, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column.webshowroom .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.webshowroom .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.webshowroom .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.webshowroom .get-link { background-color: #D476AE; } -/* line 2200, ../scss/styles.scss */ +/* line 2209, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column.pack4 .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.pack4 .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.pack4 .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.pack4 .get-link { background-color: #E6DE1C; } -/* line 2201, ../scss/styles.scss */ +/* line 2210, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column.etudiants .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.etudiants .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.etudiants .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.etudiants .get-link { background-color: #4BA13D; } -/* line 2203, ../scss/styles.scss */ +/* line 2212, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column.neutral .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.neutral .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.neutral .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.neutral .get-link { min-height: 62px; padding: 15px 0; } -/* line 2211, ../scss/styles.scss */ +/* line 2220, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column h2 { padding: 10px 0 0; font-size: 24px; } -/* line 2213, ../scss/styles.scss */ +/* line 2222, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .get-link { padding: 0; font-size: 24px; @@ -9561,9 +9696,10 @@ body.page-node-11187 .node-11187 .field-name-body div.column .get-link { font-weight: 900; cursor: pointer; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); - transition: text-shadow 0.3s ease-out; + -webkit-transition: text-shadow 0.3s ease-out; + transition: text-shadow 0.3s ease-out; } -/* line 2217, ../scss/styles.scss */ +/* line 2226, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .get-link span { font-size: 20px; } @@ -9573,25 +9709,26 @@ body.page-node-11187 .node-11187 .field-name-body div.column .get-link:hover, bo } /* line 54, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } -/* line 2222, ../scss/styles.scss */ +/* line 2231, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 { padding: 10px 0 0; font-size: 24px; top: 0; } -/* line 2223, ../scss/styles.scss */ +/* line 2232, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle { min-height: 2em; } -/* line 2224, ../scss/styles.scss */ +/* line 2233, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi ul { font-size: 14px; min-height: 120px; } -/* line 2225, ../scss/styles.scss */ +/* line 2234, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { font-size: 14px; text-align: left; @@ -9606,31 +9743,31 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { |__|__|____/|__|__|_____|_____|_____|_____|_|___| |__| |_____|__|__|_|_|_| */ -/* line 2255, ../scss/styles.scss */ +/* line 2264, ../scss/styles.scss */ .node-11186 nav ul.links a.language-link { display: none; } -/* line 2258, ../scss/styles.scss */ +/* line 2267, ../scss/styles.scss */ #webform-client-form-11186 { background-color: #e6e6e6; border-radius: 10px; background-clip: padding-box; } @media only screen and (min-width: 40.063em) { - /* line 2258, ../scss/styles.scss */ + /* line 2267, ../scss/styles.scss */ #webform-client-form-11186 { padding: 10px 30px; } - /* line 2261, ../scss/styles.scss */ + /* line 2270, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options { margin: 10px 0; } - /* line 2263, ../scss/styles.scss */ + /* line 2272, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options label { width: auto; } - /* line 2265, ../scss/styles.scss */ + /* line 2274, ../scss/styles.scss */ #webform-client-form-11186 fieldset { border-radius: 5px; background-clip: padding-box; @@ -9641,22 +9778,22 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { border-right-width: 0; border-bottom-width: 0; } - /* line 2267, ../scss/styles.scss */ + /* line 2276, ../scss/styles.scss */ #webform-client-form-11186 fieldset fieldset { border: 0 solid #ddd; padding: 0; } - /* line 2269, ../scss/styles.scss */ + /* line 2278, ../scss/styles.scss */ #webform-client-form-11186 legend { margin: 0; font-size: 18px; font-weight: 700; } - /* line 2270, ../scss/styles.scss */ + /* line 2279, ../scss/styles.scss */ #webform-client-form-11186 .form-item { margin: 0 20px 0 0; } - /* line 2271, ../scss/styles.scss */ + /* line 2280, ../scss/styles.scss */ #webform-client-form-11186 label { font-size: 12px; width: 10em; @@ -9669,7 +9806,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { margin-right: 1em; border-bottom: 1px solid #cccccc; } - /* line 2272, ../scss/styles.scss */ + /* line 2281, ../scss/styles.scss */ #webform-client-form-11186 .description { font-size: 10px; width: 25em; @@ -9682,40 +9819,40 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { margin-left: 1em; color: #7f7f7f; } - /* line 2273, ../scss/styles.scss */ + /* line 2282, ../scss/styles.scss */ #webform-client-form-11186 input.form-text { width: 13em; } } @media only screen and (min-width: 40.063em) and (max-width: 64em) { - /* line 2258, ../scss/styles.scss */ + /* line 2267, ../scss/styles.scss */ #webform-client-form-11186 { padding: 10px; } - /* line 2278, ../scss/styles.scss */ + /* line 2287, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options { margin: 0 0 10px 0; } - /* line 2280, ../scss/styles.scss */ + /* line 2289, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-item { width: 100%; } - /* line 2281, ../scss/styles.scss */ + /* line 2290, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options label { width: 75%; } - /* line 2283, ../scss/styles.scss */ + /* line 2292, ../scss/styles.scss */ #webform-client-form-11186 legend { margin: 0; font-size: 16px; font-weight: 700; } - /* line 2284, ../scss/styles.scss */ + /* line 2293, ../scss/styles.scss */ #webform-client-form-11186 .form-item { margin: 0; float: none; } - /* line 2285, ../scss/styles.scss */ + /* line 2294, ../scss/styles.scss */ #webform-client-form-11186 label { font-size: 12px; width: 30%; @@ -9727,16 +9864,16 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { vertical-align: middle; margin-right: 0.5em; } - /* line 2286, ../scss/styles.scss */ + /* line 2295, ../scss/styles.scss */ #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select { width: 60%; } - /* line 2287, ../scss/styles.scss */ + /* line 2296, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-infos { font-size: 14px; } } -/* line 2292, ../scss/styles.scss */ +/* line 2301, ../scss/styles.scss */ #webform-client-form-11186 .fieldset-wrapper > .form-item { display: moz-inline-stack; display: inline-block; @@ -9744,7 +9881,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { zoom: 1; *display: inline; } -/* line 2294, ../scss/styles.scss */ +/* line 2303, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left { display: moz-inline-stack; display: inline-block; @@ -9754,7 +9891,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { width: 25%; border: none; } -/* line 2295, ../scss/styles.scss */ +/* line 2304, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right { display: moz-inline-stack; display: inline-block; @@ -9763,7 +9900,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { *display: inline; min-width: 70%; } -/* line 2299, ../scss/styles.scss */ +/* line 2308, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio { border: 1px solid #ddd; border-radius: 5px; @@ -9772,7 +9909,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { margin: 5px 0; background-color: #fff; } -/* line 2301, ../scss/styles.scss */ +/* line 2310, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input { display: moz-inline-stack; display: inline-block; @@ -9782,7 +9919,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { vertical-align: middle; margin: 0px 5px; } -/* line 2302, ../scss/styles.scss */ +/* line 2311, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label { font-size: 20px; font-weight: 700; @@ -9794,41 +9931,41 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { vertical-align: middle; margin: 0; } -/* line 2304, ../scss/styles.scss */ +/* line 2313, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); } -/* line 2305, ../scss/styles.scss */ +/* line 2314, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) { background-color: #69CDCF; } -/* line 2306, ../scss/styles.scss */ +/* line 2315, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) { background-color: #D476AE; } -/* line 2307, ../scss/styles.scss */ +/* line 2316, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) { background-color: #E6DE1C; } -/* line 2309, ../scss/styles.scss */ +/* line 2318, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) { opacity: 0.4; } -/* line 2312, ../scss/styles.scss */ +/* line 2321, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options > label { width: 200px; font-size: 18px; font-weight: 700; } -/* line 2313, ../scss/styles.scss */ +/* line 2322, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options label { border: 0; } -/* line 2316, ../scss/styles.scss */ +/* line 2325, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--me--my-account-email { display: block; } -/* line 2321, ../scss/styles.scss */ +/* line 2330, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description { display: moz-inline-stack; display: inline-block; @@ -9836,11 +9973,11 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { zoom: 1; *display: inline; } -/* line 2324, ../scss/styles.scss */ +/* line 2333, ../scss/styles.scss */ #webform-client-form-11186 #addressfield-wrapper { margin-top: 1em; } -/* line 2325, ../scss/styles.scss */ +/* line 2334, ../scss/styles.scss */ #webform-client-form-11186 .street-block .form-item { display: moz-inline-stack; display: inline-block; @@ -9848,12 +9985,12 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { zoom: 1; *display: inline; } -/* line 2327, ../scss/styles.scss */ +/* line 2336, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--collaborators { margin: 20px 0; overflow: hidden; } -/* line 2329, ../scss/styles.scss */ +/* line 2338, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--collaborators fieldset { display: moz-inline-stack; display: inline-block; @@ -9862,23 +9999,23 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { *display: inline; width: 33%; } -/* line 2330, ../scss/styles.scss */ +/* line 2339, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--collaborators .form-item { display: block; } -/* line 2331, ../scss/styles.scss */ +/* line 2340, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--collaborators label { width: 6em; } -/* line 2332, ../scss/styles.scss */ +/* line 2341, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--collaborators input { width: 11em; } -/* line 2335, ../scss/styles.scss */ +/* line 2344, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-infos { margin: 20px 0; } -/* line 2337, ../scss/styles.scss */ +/* line 2346, ../scss/styles.scss */ #webform-client-form-11186 .form-actions { padding: 0; margin: 0; @@ -9886,7 +10023,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { background-color: transparent; text-align: left; } -/* line 2342, ../scss/styles.scss */ +/* line 2351, ../scss/styles.scss */ #webform-client-form-11186 .form-actions .form-submit { border: 2px solid #69CDCF; background-color: #69CDCF; @@ -9899,7 +10036,8 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { margin-bottom: 9px; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; } /* line 64, ../scss/styles.scss */ #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus { @@ -9907,10 +10045,11 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { } /* line 67, ../scss/styles.scss */ #webform-client-form-11186 .form-actions .form-submit:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 2352, ../scss/styles.scss */ +/* line 2361, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--news-letters > label { margin: 0; font-size: 18px; @@ -9918,7 +10057,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { border: none; line-height: 40px; } -/* line 2353, ../scss/styles.scss */ +/* line 2362, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--news-letters .form-item { display: moz-inline-stack; display: inline-block; @@ -9926,23 +10065,23 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { zoom: 1; *display: inline; } -/* line 2355, ../scss/styles.scss */ +/* line 2364, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label { width: auto; } -/* line 2356, ../scss/styles.scss */ +/* line 2365, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--news-letters .form-item input, #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label { margin: 0; } -/* line 2360, ../scss/styles.scss */ +/* line 2369, ../scss/styles.scss */ #webform-client-form-11186 #edit-submitted-terms-of-services { margin-bottom: 0.5em; } -/* line 2362, ../scss/styles.scss */ +/* line 2371, ../scss/styles.scss */ #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label { margin: 0 0.3em 0 0; } -/* line 2363, ../scss/styles.scss */ +/* line 2372, ../scss/styles.scss */ #webform-client-form-11186 #edit-submitted-terms-of-services label { width: auto; } @@ -9954,45 +10093,45 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { |_____|_____| |_____|__|__|__|__| |_| \___/|_____|_____|_____| |__| |_____|__|__|_|_|_| */ -/* line 2374, ../scss/styles.scss */ +/* line 2383, ../scss/styles.scss */ #uc-cart-view-form { background-color: #e6e6e6; padding: 10px, 30px; display: inline-block; } -/* line 2380, ../scss/styles.scss */ +/* line 2389, ../scss/styles.scss */ #uc-cart-view-form table { width: auto; display: table; background-color: #fff; } -/* line 2384, ../scss/styles.scss */ +/* line 2393, ../scss/styles.scss */ #uc-cart-view-form table thead th { border-bottom: none; padding: 1em; } -/* line 2385, ../scss/styles.scss */ +/* line 2394, ../scss/styles.scss */ #uc-cart-view-form table tbody { border-top: none; } -/* line 2387, ../scss/styles.scss */ +/* line 2396, ../scss/styles.scss */ #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd { background-color: #fff; border-bottom: none; } -/* line 2391, ../scss/styles.scss */ +/* line 2400, ../scss/styles.scss */ #uc-cart-view-form table tbody td { padding: 1em; } -/* line 2398, ../scss/styles.scss */ +/* line 2407, ../scss/styles.scss */ #uc-cart-view-form fieldset { border: none !important; } -/* line 2400, ../scss/styles.scss */ +/* line 2409, ../scss/styles.scss */ #uc-cart-view-form .form-type-uc-quantity input { width: 2em; } -/* line 2404, ../scss/styles.scss */ +/* line 2413, ../scss/styles.scss */ #uc-cart-view-form .form-actions { padding: 0; margin: 0; @@ -10002,11 +10141,11 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { display: block; width: 100%; } -/* line 2411, ../scss/styles.scss */ +/* line 2420, ../scss/styles.scss */ #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after { display: block; } -/* line 2414, ../scss/styles.scss */ +/* line 2423, ../scss/styles.scss */ #uc-cart-view-form .form-actions .form-submit { font-size: 16px; font-weight: bold; @@ -10018,7 +10157,8 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { color: #4D4D4D; cursor: pointer; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); - transition: text-shadow 0.3s ease-out; + -webkit-transition: text-shadow 0.3s ease-out; + transition: text-shadow 0.3s ease-out; text-align: center; text-decoration: none; margin-left: 1em; @@ -10029,10 +10169,11 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { } /* line 54, ../scss/styles.scss */ #uc-cart-view-form .form-actions .form-submit:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } -/* line 2417, ../scss/styles.scss */ +/* line 2426, ../scss/styles.scss */ #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 { font-size: 16px; font-weight: bold; @@ -10044,12 +10185,14 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { color: #4D4D4D; cursor: pointer; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); - transition: text-shadow 0.3s ease-out; + -webkit-transition: text-shadow 0.3s ease-out; + transition: text-shadow 0.3s ease-out; text-align: center; text-decoration: none; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; border-color: #69CDCF; background-color: #69CDCF; color: #fff; @@ -10060,7 +10203,8 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { } /* line 54, ../scss/styles.scss */ #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } /* line 64, ../scss/styles.scss */ @@ -10069,7 +10213,8 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { } /* line 67, ../scss/styles.scss */ #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } @@ -10080,21 +10225,21 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| |__| |_____|__|__|_|_|_| */ -/* line 2431, ../scss/styles.scss */ +/* line 2440, ../scss/styles.scss */ #uc-cart-checkout-form { background-color: #e6e6e6; padding: 10px, 30px; } -/* line 2444, ../scss/styles.scss */ +/* line 2453, ../scss/styles.scss */ #uc-cart-checkout-form fieldset { border: none !important; } -/* line 2446, ../scss/styles.scss */ +/* line 2455, ../scss/styles.scss */ #uc-cart-checkout-form fieldset.form-row { padding-bottom: 20px; margin-bottom: 20px; } -/* line 2452, ../scss/styles.scss */ +/* line 2461, ../scss/styles.scss */ #uc-cart-checkout-form fieldset.form-column { display: moz-inline-stack; display: inline-block; @@ -10106,17 +10251,17 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { float: none; margin: 15px 1em; } -/* line 2455, ../scss/styles.scss */ +/* line 2464, ../scss/styles.scss */ #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper { margin: 10px 0; } -/* line 2462, ../scss/styles.scss */ +/* line 2471, ../scss/styles.scss */ #uc-cart-checkout-form fieldset.form-column-right { border-left: 1px solid #ccc; margin-left: 2em; padding-left: 2em; } -/* line 2468, ../scss/styles.scss */ +/* line 2477, ../scss/styles.scss */ #uc-cart-checkout-form legend { margin: 0; font-size: 18px; @@ -10124,19 +10269,19 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { border: none; line-height: 2; } -/* line 2469, ../scss/styles.scss */ +/* line 2478, ../scss/styles.scss */ #uc-cart-checkout-form .fieldset-description { font-size: 12px; } -/* line 2470, ../scss/styles.scss */ +/* line 2479, ../scss/styles.scss */ #uc-cart-checkout-form .fieldset-wrapper { font-size: 12px; } -/* line 2471, ../scss/styles.scss */ +/* line 2480, ../scss/styles.scss */ #uc-cart-checkout-form .form-item { margin: 0 20px 0 0; } -/* line 2473, ../scss/styles.scss */ +/* line 2482, ../scss/styles.scss */ #uc-cart-checkout-form .description { font-size: 10px; width: 25em; @@ -10149,7 +10294,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { margin-left: 1em; color: #7f7f7f; } -/* line 2476, ../scss/styles.scss */ +/* line 2485, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane > .fieldset-wrapper { display: moz-inline-stack; display: inline-block; @@ -10161,57 +10306,57 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { padding: 10px; background-color: #fff; } -/* line 2483, ../scss/styles.scss */ +/* line 2492, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane table { font-size: 14px; min-width: 20em; } -/* line 2437, ../scss/styles.scss */ +/* line 2446, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane table td.price { width: 4em; } -/* line 2487, ../scss/styles.scss */ +/* line 2496, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane tbody { border: none; } -/* line 2488, ../scss/styles.scss */ +/* line 2497, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane tr { background-color: transparent; border: none; } -/* line 2489, ../scss/styles.scss */ +/* line 2498, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane td { padding: 0 5px; vertical-align: bottom; } -/* line 2492, ../scss/styles.scss */ +/* line 2501, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane td.products { width: auto; } -/* line 2493, ../scss/styles.scss */ +/* line 2502, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane td.products a { color: inherit; font-weight: 700; } -/* line 2495, ../scss/styles.scss */ +/* line 2504, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane td.products ul.product-description { margin: 0; font-size: 12px; } -/* line 2496, ../scss/styles.scss */ +/* line 2505, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane td.products li { list-style: none; } -/* line 2500, ../scss/styles.scss */ +/* line 2509, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane tr.subtotal td { font-size: 16px; font-weight: 700; } -/* line 2504, ../scss/styles.scss */ +/* line 2513, ../scss/styles.scss */ #uc-cart-checkout-form #customer-pane { width: 35em; } -/* line 2507, ../scss/styles.scss */ +/* line 2516, ../scss/styles.scss */ #uc-cart-checkout-form #billing-pane label { font-size: 12px; width: 8em; @@ -10224,18 +10369,18 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { margin-right: 1em; border-bottom: 1px solid #cccccc; } -/* line 2508, ../scss/styles.scss */ +/* line 2517, ../scss/styles.scss */ #uc-cart-checkout-form #billing-pane input.form-text { width: 13em; } -/* line 2518, ../scss/styles.scss */ +/* line 2527, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane .fieldset-wrapper { background-color: #fff; border-radius: 5px; background-clip: padding-box; padding: 10px; } -/* line 2524, ../scss/styles.scss */ +/* line 2533, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div { float: none; border: none; @@ -10246,57 +10391,57 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { *display: inline; margin: 10px 0 20px; } -/* line 2527, ../scss/styles.scss */ +/* line 2536, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div table { font-size: 14px; min-width: 20em; } -/* line 2437, ../scss/styles.scss */ +/* line 2446, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div table td.price { width: 4em; } -/* line 2528, ../scss/styles.scss */ +/* line 2537, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div tbody { border: none; } -/* line 2529, ../scss/styles.scss */ +/* line 2538, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div td { padding: 0 5px; } -/* line 2533, ../scss/styles.scss */ +/* line 2542, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div tr td { font-weight: 500; } -/* line 2535, ../scss/styles.scss */ +/* line 2544, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td { font-size: 16px; font-weight: 700; text-align: right; } -/* line 2542, ../scss/styles.scss */ +/* line 2551, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label { width: auto; border-bottom: none; } -/* line 2543, ../scss/styles.scss */ +/* line 2552, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method { border: 1px solid #ddd; border-radius: 5px; margin: 0.5em; padding: 0.5em; } -/* line 2547, ../scss/styles.scss */ +/* line 2556, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label { font-weight: bold; } -/* line 2551, ../scss/styles.scss */ +/* line 2560, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #payment-details { width: 25em; border-top: none; padding: 0; margin: 0; } -/* line 2557, ../scss/styles.scss */ +/* line 2566, ../scss/styles.scss */ #uc-cart-checkout-form #edit-actions { width: 100%; padding: 1em 0; @@ -10305,7 +10450,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { background-color: transparent; text-align: center; } -/* line 2563, ../scss/styles.scss */ +/* line 2572, ../scss/styles.scss */ #uc-cart-checkout-form #edit-actions .form-submit { font-size: 16px; font-weight: bold; @@ -10317,7 +10462,8 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { color: #4D4D4D; cursor: pointer; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); - transition: text-shadow 0.3s ease-out; + -webkit-transition: text-shadow 0.3s ease-out; + transition: text-shadow 0.3s ease-out; text-align: center; text-decoration: none; margin-left: 1em; @@ -10328,10 +10474,11 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { } /* line 54, ../scss/styles.scss */ #uc-cart-checkout-form #edit-actions .form-submit:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } -/* line 2566, ../scss/styles.scss */ +/* line 2575, ../scss/styles.scss */ #uc-cart-checkout-form #edit-actions .form-submit#edit-continue { font-size: 16px; font-weight: bold; @@ -10343,12 +10490,14 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { color: #4D4D4D; cursor: pointer; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); - transition: text-shadow 0.3s ease-out; + -webkit-transition: text-shadow 0.3s ease-out; + transition: text-shadow 0.3s ease-out; text-align: center; text-decoration: none; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; border-color: #69CDCF; background-color: #69CDCF; color: #fff; @@ -10359,7 +10508,8 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { } /* line 54, ../scss/styles.scss */ #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } /* line 64, ../scss/styles.scss */ @@ -10368,7 +10518,8 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { } /* line 67, ../scss/styles.scss */ #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } @@ -10387,65 +10538,65 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| \___/|__|__|_____|_____|____/|__|__| |_| |_____|_____|_|___| */ -/* line 2593, ../scss/styles.scss */ +/* line 2602, ../scss/styles.scss */ .page-cart-checkout-review #content > .inner-content { display: inline-block; padding: 1em; } -/* line 2601, ../scss/styles.scss */ +/* line 2610, ../scss/styles.scss */ .page-cart-checkout-review #edit-actions { margin: 0; padding: 0; } -/* line 2603, ../scss/styles.scss */ +/* line 2612, ../scss/styles.scss */ .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after { display: block; } -/* line 2607, ../scss/styles.scss */ +/* line 2616, ../scss/styles.scss */ .page-cart-checkout-review #review-instructions { width: 30em; padding: 1em 0; } -/* line 2613, ../scss/styles.scss */ +/* line 2622, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table { border: none; } -/* line 2615, ../scss/styles.scss */ +/* line 2624, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table .pane-title-row { border: none; background-color: transparent; text-align: left; font-size: 18px; } -/* line 2620, ../scss/styles.scss */ +/* line 2629, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table .pane-title-row td { padding: 1em 0 0 0; } -/* line 2623, ../scss/styles.scss */ +/* line 2632, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table table.cart-review tr.odd { background-color: transparent; border: none; } -/* line 2628, ../scss/styles.scss */ +/* line 2637, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table td.title-col { padding: 0; text-align: left; } -/* line 2632, ../scss/styles.scss */ +/* line 2641, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table td.data-col { padding: 0; width: 75%; } -/* line 2636, ../scss/styles.scss */ +/* line 2645, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table .review-button-row { border: none; background-color: transparent; } -/* line 2640, ../scss/styles.scss */ +/* line 2649, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table .review-button-row > td { padding: 3em 0 0 0; } -/* line 2644, ../scss/styles.scss */ +/* line 2653, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table .review-button-row form { margin: 0 0.5em 0 0; display: moz-inline-stack; @@ -10454,13 +10605,13 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { zoom: 1; *display: inline; } -/* line 2651, ../scss/styles.scss */ +/* line 2660, ../scss/styles.scss */ .page-cart-checkout-review #edit-actions { border: 0px; background-color: transparent; text-align: right; } -/* line 2656, ../scss/styles.scss */ +/* line 2665, ../scss/styles.scss */ .page-cart-checkout-review input.form-submit { font-size: 16px; font-weight: bold; @@ -10472,7 +10623,8 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { color: #4D4D4D; cursor: pointer; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); - transition: text-shadow 0.3s ease-out; + -webkit-transition: text-shadow 0.3s ease-out; + transition: text-shadow 0.3s ease-out; text-align: center; text-decoration: none; margin-left: 1em; @@ -10483,10 +10635,11 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { } /* line 54, ../scss/styles.scss */ .page-cart-checkout-review input.form-submit:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } -/* line 2659, ../scss/styles.scss */ +/* line 2668, ../scss/styles.scss */ .page-cart-checkout-review input.form-submit#edit-submit { font-size: 16px; font-weight: bold; @@ -10498,12 +10651,14 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { color: #4D4D4D; cursor: pointer; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); - transition: text-shadow 0.3s ease-out; + -webkit-transition: text-shadow 0.3s ease-out; + transition: text-shadow 0.3s ease-out; text-align: center; text-decoration: none; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; border-color: #69CDCF; background-color: #69CDCF; color: #fff; @@ -10514,7 +10669,8 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { } /* line 54, ../scss/styles.scss */ .page-cart-checkout-review input.form-submit#edit-submit:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } /* line 64, ../scss/styles.scss */ @@ -10523,7 +10679,8 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { } /* line 67, ../scss/styles.scss */ .page-cart-checkout-review input.form-submit#edit-submit:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } @@ -10534,7 +10691,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { |____/|_____|____/|__|__|_____| |_| |_____|__ _|_____|_____| |__| */ -/* line 2675, ../scss/styles.scss */ +/* line 2684, ../scss/styles.scss */ #didactique-page .node-didactique { border-radius: 5px; background-clip: padding-box; @@ -10546,23 +10703,23 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { margin: 1em auto; padding: 1em; } -/* line 2682, ../scss/styles.scss */ +/* line 2691, ../scss/styles.scss */ #didactique-page .node-didactique .field-name-field-emvideo { margin: 1em 0; } -/* line 2686, ../scss/styles.scss */ +/* line 2695, ../scss/styles.scss */ #didactique-page .node-didactique .field-name-title-field { font-size: 24px; font-weight: 900; font-style: italic; padding: 5px 0; } -/* line 2690, ../scss/styles.scss */ +/* line 2699, ../scss/styles.scss */ #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img { max-width: 100%; } @media only screen and (min-width: 40.063em) { - /* line 2695, ../scss/styles.scss */ + /* line 2704, ../scss/styles.scss */ #didactique-page .side { display: moz-inline-stack; display: inline-block; @@ -10571,11 +10728,11 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { *display: inline; vertical-align: top; } - /* line 2696, ../scss/styles.scss */ + /* line 2705, ../scss/styles.scss */ #didactique-page .group-sideleft { width: 60%; } - /* line 2697, ../scss/styles.scss */ + /* line 2706, ../scss/styles.scss */ #didactique-page .group-sideright { width: 39%; } @@ -10589,7 +10746,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { */ @media only screen and (max-width: 40em) { - /* line 2715, ../scss/styles.scss */ + /* line 2724, ../scss/styles.scss */ .page-whoweare #tool-bar #block-materio-page-title-materio-page-title { display: none; } @@ -10603,23 +10760,23 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { |_|_|_|__,|_|_|_|_| |___|_|_|__,|_|_|___|___| */ -/* line 2729, ../scss/styles.scss */ +/* line 2738, ../scss/styles.scss */ .maintenance-page #container, .maintenance-page #header { text-align: center; padding: 0; position: relative; } -/* line 2730, ../scss/styles.scss */ +/* line 2739, ../scss/styles.scss */ .maintenance-page #main { background-color: transparent; } -/* line 2731, ../scss/styles.scss */ +/* line 2740, ../scss/styles.scss */ .maintenance-page #header h1.site-name { font-size: 36px; margin: 0; padding-left: 0; } -/* line 2732, ../scss/styles.scss */ +/* line 2741, ../scss/styles.scss */ .maintenance-page h2.site-slogan { font-size: 16px; font-weight: 300; @@ -10634,69 +10791,69 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { |__| |__|__|__ _| |__| */ -/* line 2742, ../scss/styles.scss */ +/* line 2751, ../scss/styles.scss */ .page-faq-page #main { background: #fff url("../img/bg-faq.png") no-repeat bottom right; } -/* line 2748, ../scss/styles.scss */ +/* line 2757, ../scss/styles.scss */ #content .faq-content .faq-description { font-size: 12px; padding-bottom: 2em; } -/* line 2752, ../scss/styles.scss */ +/* line 2761, ../scss/styles.scss */ #content .faq-content ul.faq-ul-questions-top { margin: 0; } -/* line 2754, ../scss/styles.scss */ +/* line 2763, ../scss/styles.scss */ #content .faq-content ul.faq-ul-questions-top li { list-style: none; } -/* line 2756, ../scss/styles.scss */ +/* line 2765, ../scss/styles.scss */ #content .faq-content ul.faq-ul-questions-top li a { font-size: 18px; font-weight: 500; } -/* line 2762, ../scss/styles.scss */ +/* line 2771, ../scss/styles.scss */ #content .faq-content h3.faq-header { font-size: 20px; font-weight: 700; line-height: 1.2; margin: 0; } -/* line 2765, ../scss/styles.scss */ +/* line 2774, ../scss/styles.scss */ #content .faq-content h3.faq-header a { color: #000; } -/* line 2768, ../scss/styles.scss */ +/* line 2777, ../scss/styles.scss */ #content .faq-content .faq-dl-hide-answer { padding: 0; } -/* line 2771, ../scss/styles.scss */ +/* line 2780, ../scss/styles.scss */ #content .faq-content .faq-category-group { padding-bottom: 1em; } -/* line 2774, ../scss/styles.scss */ +/* line 2783, ../scss/styles.scss */ #content .faq-content .faq-question-answer { padding: 0.3em 0 0 0.8em; } -/* line 2776, ../scss/styles.scss */ +/* line 2785, ../scss/styles.scss */ #content .faq-content .faq-question-answer .faq-question { font-size: 16px; padding: 0; font-weight: 500; } -/* line 2778, ../scss/styles.scss */ +/* line 2787, ../scss/styles.scss */ #content .faq-content .faq-question-answer .faq-question a { color: #000; } -/* line 2780, ../scss/styles.scss */ +/* line 2789, ../scss/styles.scss */ #content .faq-content .faq-question-answer .faq-answer { padding: 0; margin-bottom: 2em; font-size: 12px; } -/* line 2786, ../scss/styles.scss */ +/* line 2795, ../scss/styles.scss */ #content .faq-content .field-name-body img { max-width: 50%; height: auto; @@ -10709,26 +10866,26 @@ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { / __ / /_/ / / / / / / __/ | |/ // __/ /_/ /_/\____/_/ /_/ /_/\___/ |___//____/ */ -/* line 2802, ../scss/styles.scss */ +/* line 2811, ../scss/styles.scss */ body.home-v2 #center { background-color: transparent; padding: 0; } -/* line 2816, ../scss/styles.scss */ +/* line 2825, ../scss/styles.scss */ #home-v2 h2 { font-size: 2.1em; font-weight: 300; } -/* line 2817, ../scss/styles.scss */ +/* line 2826, ../scss/styles.scss */ #home-v2 a { color: #000; } -/* line 2820, ../scss/styles.scss */ +/* line 2829, ../scss/styles.scss */ #home-v2 .field-name-field-liens { margin-top: 1em; } -/* line 2822, ../scss/styles.scss */ +/* line 2831, ../scss/styles.scss */ #home-v2 .field-name-field-liens .field-item { display: moz-inline-stack; display: inline-block; @@ -10737,7 +10894,7 @@ body.home-v2 #center { *display: inline; margin: 0 0.5em 0.5em 0; } -/* line 2823, ../scss/styles.scss */ +/* line 2832, ../scss/styles.scss */ #home-v2 .field-name-field-liens a { font-weight: 700; display: moz-inline-stack; @@ -10750,43 +10907,43 @@ body.home-v2 #center { background-clip: padding-box; background-color: rgba(255, 255, 255, 0.8); } -/* line 2829, ../scss/styles.scss */ +/* line 2838, ../scss/styles.scss */ body.logged-in #home-v2 .field-name-field-liens a.visitor { display: none; } -/* line 2830, ../scss/styles.scss */ +/* line 2839, ../scss/styles.scss */ body.not-logged-in #home-v2 .field-name-field-liens a.member { display: none; } -/* line 2834, ../scss/styles.scss */ +/* line 2843, ../scss/styles.scss */ #home-v2 .panel-separator { clear: both; } -/* line 2835, ../scss/styles.scss */ +/* line 2844, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane { overflow: hidden; } -/* line 2838, ../scss/styles.scss */ +/* line 2847, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-node { border-radius: 5px; background-clip: padding-box; overflow: hidden; } -/* line 2841, ../scss/styles.scss */ +/* line 2850, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-node .pane-content, #home-v2 > .panel-panel > div > .panel-pane.pane-node .node { position: relative; width: 100%; height: 100%; overflow: hidden; } -/* line 2845, ../scss/styles.scss */ +/* line 2854, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-node .links a { background-color: rgba(255, 255, 255, 0.7); border-radius: 5px; background-clip: padding-box; padding: 15px; } -/* line 2851, ../scss/styles.scss */ +/* line 2860, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video { height: auto; background-color: #f7f4ed; @@ -10794,53 +10951,53 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { margin-bottom: 2em; padding-top: 0; } -/* line 2856, ../scss/styles.scss */ +/* line 2865, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video { margin: 0 auto; } @media only screen and (max-width: 40em) { - /* line 2856, ../scss/styles.scss */ + /* line 2865, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video { width: 320px; height: 180px; } } @media only screen and (min-width: 40.063em) and (max-width: 64em) { - /* line 2856, ../scss/styles.scss */ + /* line 2865, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video { width: 640px; height: 360px; } } @media only screen and (min-width: 64.063em) and (max-width: 90em) { - /* line 2856, ../scss/styles.scss */ + /* line 2865, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video { width: 800px; height: 450px; } } @media only screen and (min-width: 90.063em) { - /* line 2856, ../scss/styles.scss */ + /* line 2865, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video { width: 1024px; height: 576px; } } -/* line 2870, ../scss/styles.scss */ +/* line 2879, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video .player, #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video iframe { width: 100%; height: 100%; } -/* line 2876, ../scss/styles.scss */ +/* line 2885, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-title-field { display: none; } -/* line 2880, ../scss/styles.scss */ +/* line 2889, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body { margin-top: 1em; text-align: center; } -/* line 2884, ../scss/styles.scss */ +/* line 2893, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p { text-align: left; display: moz-inline-stack; @@ -10853,27 +11010,27 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { font-size: 0.756em; } @media only screen and (max-width: 40em) { - /* line 2884, ../scss/styles.scss */ + /* line 2893, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p { width: 48%; } } @media only screen and (max-width: 40em) { - /* line 2851, ../scss/styles.scss */ + /* line 2860, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video { margin-top: 0.5em; } } -/* line 2900, ../scss/styles.scss */ +/* line 2909, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 { margin: 2em 0; } -/* line 2902, ../scss/styles.scss */ +/* line 2911, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 ul.menu { margin: 0px; text-align: center; } -/* line 2905, ../scss/styles.scss */ +/* line 2914, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li { margin: 0 1em 0 0; padding: 0px; @@ -10885,7 +11042,7 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { zoom: 1; *display: inline; } -/* line 2908, ../scss/styles.scss */ +/* line 2917, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li a { background-color: #4d4d4d; border-radius: 5px; @@ -10894,56 +11051,57 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { color: #f7f4ed; font-size: 18px; font-weight: 500; - transition: opacity,background-color 0.2s ease-out; + -webkit-transition: opacity,background-color 0.2s ease-out; + transition: opacity,background-color 0.2s ease-out; } -/* line 2920, ../scss/styles.scss */ +/* line 2929, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(1):hover a { background-color: #ff7400; color: #4d4d4d; } -/* line 2924, ../scss/styles.scss */ +/* line 2933, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(2):hover a { background-color: #79e644; color: #4d4d4d; } -/* line 2928, ../scss/styles.scss */ +/* line 2937, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(3):hover a { background-color: #69cdcf; color: #4d4d4d; } -/* line 2932, ../scss/styles.scss */ +/* line 2941, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(4):hover a { background-color: #e6de1c; color: #4d4d4d; } -/* line 2936, ../scss/styles.scss */ +/* line 2945, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(5):hover a { background-color: #d476ae; color: #4d4d4d; } -/* line 2940, ../scss/styles.scss */ +/* line 2949, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(6):hover a { background-color: #772e88; color: #4d4d4d; } -/* line 2944, ../scss/styles.scss */ +/* line 2953, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(7):hover a { background-color: #e62326; color: #4d4d4d; } @media only screen and (max-width: 40em) { - /* line 2900, ../scss/styles.scss */ + /* line 2909, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 { display: none; } } -/* line 2953, ../scss/styles.scss */ +/* line 2962, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register { padding: 2em 0; background: transparent url("../img/register-block.png") no-repeat 100% 90%; text-align: center; } -/* line 2957, ../scss/styles.scss */ +/* line 2966, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .pane-content { display: moz-inline-stack; display: inline-block; @@ -10952,7 +11110,7 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { *display: inline; text-align: left; } -/* line 2961, ../scss/styles.scss */ +/* line 2970, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 { font-weight: 900; font-style: italic; @@ -10966,15 +11124,15 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { *display: inline; vertical-align: middle; } -/* line 2962, ../scss/styles.scss */ +/* line 2971, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2 { font-size: 24px; } -/* line 2962, ../scss/styles.scss */ +/* line 2971, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 { font-size: 16px; } -/* line 2964, ../scss/styles.scss */ +/* line 2973, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register form { margin: 0 1em; padding: 0px; @@ -10985,7 +11143,7 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { *display: inline; vertical-align: middle; } -/* line 2966, ../scss/styles.scss */ +/* line 2975, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-wrapper { margin: 0; position: relative; @@ -10996,30 +11154,30 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { *display: inline; vertical-align: middle; } -/* line 2970, ../scss/styles.scss */ +/* line 2979, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-account { margin-right: 5px; } -/* line 2972, ../scss/styles.scss */ +/* line 2981, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text { font-size: 12px; border-radius: 5px; background-clip: padding-box; margin-bottom: 4px; } -/* line 2972, ../scss/styles.scss */ +/* line 2981, ../scss/styles.scss */ .ie8 #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text { margin-right: 5px; } -/* line 2973, ../scss/styles.scss */ +/* line 2982, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-mail input.form-text, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-name input.form-text { width: 11em; } -/* line 2974, ../scss/styles.scss */ +/* line 2983, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-pass input.form-text { width: 7em; } -/* line 2976, ../scss/styles.scss */ +/* line 2985, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check { position: absolute; bottom: 100%; @@ -11033,18 +11191,19 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { font-size: 10px; background-color: #fff; box-shadow: 0 0 5px rgba(0, 0, 0, 0.6); - transition: bottom 0.1s ease-out; + -webkit-transition: bottom 0.1s ease-out; + transition: bottom 0.1s ease-out; } -/* line 2984, ../scss/styles.scss */ +/* line 2993, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.error { background-color: #f3968d; color: #fff; } -/* line 2990, ../scss/styles.scss */ +/* line 2999, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.ok { display: none; } -/* line 2993, ../scss/styles.scss */ +/* line 3002, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-submit { font-size: 16px; padding: 0.1em 0.6em 0.2em; @@ -11053,13 +11212,13 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { font-weight: bold; margin-bottom: 4px; } -/* line 3000, ../scss/styles.scss */ +/* line 3009, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-termsofservices, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-field-newsletter { margin-bottom: 0; display: block; line-height: 1; } -/* line 3002, ../scss/styles.scss */ +/* line 3011, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-termsofservices > *, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-field-newsletter > * { display: moz-inline-stack; display: inline-block; @@ -11069,21 +11228,22 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { vertical-align: middle; margin: 0; } -/* line 3003, ../scss/styles.scss */ +/* line 3012, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-termsofservices label, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-field-newsletter label { font-size: 10px; background-color: #fff; border-radius: 3px; background-clip: padding-box; } -/* line 3007, ../scss/styles.scss */ +/* line 3016, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit { border: 2px solid #69CDCF; background-color: #69CDCF; color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; } /* line 64, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:hover, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:focus { @@ -11091,22 +11251,24 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { } /* line 67, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 3010, ../scss/styles.scss */ +/* line 3019, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit[disabled] { background-color: #ddd; border: 2px solid #ddd; } -/* line 3017, ../scss/styles.scss */ +/* line 3026, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit { border: 2px solid #E6DE1C; background-color: #E6DE1C; color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; } /* line 64, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:hover, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:focus { @@ -11114,14 +11276,15 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { } /* line 67, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 3023, ../scss/styles.scss */ +/* line 3032, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-simplenews { display: none; } -/* line 3025, ../scss/styles.scss */ +/* line 3034, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join { display: moz-inline-stack; display: inline-block; @@ -11140,7 +11303,8 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { color: #fff; cursor: pointer; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); - transition: text-shadow 0.2s ease-out; + -webkit-transition: text-shadow 0.2s ease-out; + transition: text-shadow 0.2s ease-out; text-align: center; text-decoration: none; } @@ -11150,147 +11314,152 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { } /* line 67, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join:active { - transition: text-shadow 0s ease-out; + -webkit-transition: text-shadow 0s ease-out; + transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } @media only screen and (max-width: 40em) { - /* line 2953, ../scss/styles.scss */ + /* line 2962, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register { background-position: 160% 50%; min-height: 60px; padding: 15px 0; } - /* line 3039, ../scss/styles.scss */ + /* line 3048, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-mail input.form-text, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-name input.form-text { width: 7em; } } -/* line 3044, ../scss/styles.scss */ +/* line 3053, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .message-error { color: #b94a48; font-size: 12px; } -/* line 3049, ../scss/styles.scss */ +/* line 3058, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; height: 450px; margin-top: 15px; background-color: #fff; position: relative; } -/* line 2811, ../scss/styles.scss */ +/* line 2820, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 3057, ../scss/styles.scss */ +/* line 3066, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content { width: 100%; height: 100%; position: relative; } -/* line 3059, ../scss/styles.scss */ +/* line 3068, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .node { position: absolute; height: 100%; width: 100%; } -/* line 3060, ../scss/styles.scss */ +/* line 3069, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau { position: absolute; width: 100%; height: 100%; overflow: hidden; } -/* line 3062, ../scss/styles.scss */ +/* line 3071, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img { width: 100%; margin-top: -10%; } -/* line 3064, ../scss/styles.scss */ +/* line 3073, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper { position: relative; z-index: 2; width: 30%; margin: 3em 2em; } -/* line 3070, ../scss/styles.scss */ +/* line 3079, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content { background-color: rgba(255, 255, 255, 0.8); padding: 1em; border-radius: 5px; background-clip: padding-box; } -/* line 3074, ../scss/styles.scss */ +/* line 3083, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-title-field { font-size: 2.1em; font-weight: 300; } -/* line 3077, ../scss/styles.scss */ +/* line 3086, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-body { margin-top: 0.5em; } -/* line 3083, ../scss/styles.scss */ +/* line 3092, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom:after { content: url("../img/bulle.png"); - transform: scale(0.8); + -webkit-transform: scale(0.8); + -ms-transform: scale(0.8); + transform: scale(0.8); position: absolute; bottom: -120px; right: -20px; z-index: 10; } @media only screen and (max-width: 40em) { - /* line 3049, ../scss/styles.scss */ + /* line 3058, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom { height: 210px; margin-top: 10px; } - /* line 3095, ../scss/styles.scss */ + /* line 3104, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau { position: absolute; width: 200%; height: 100%; overflow: hidden; } - /* line 3097, ../scss/styles.scss */ + /* line 3106, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img { margin-top: -100px; margin-left: -200px; } - /* line 3099, ../scss/styles.scss */ + /* line 3108, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper { width: auto; padding: 2%; margin: 2%; } - /* line 3103, ../scss/styles.scss */ + /* line 3112, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .field-name-body { font-size: 0.756em; margin-top: 0.5em; } - /* line 3109, ../scss/styles.scss */ + /* line 3118, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom:after { opacity: 0.4; } } -/* line 3114, ../scss/styles.scss */ +/* line 3123, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; height: 450px; margin-top: 30px; background-color: #FFF; position: relative; } -/* line 2811, ../scss/styles.scss */ +/* line 2820, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 3120, ../scss/styles.scss */ +/* line 3129, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .links a { background-color: #e6e6e6; } -/* line 3122, ../scss/styles.scss */ +/* line 3131, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau { display: moz-inline-stack; display: inline-block; @@ -11301,11 +11470,11 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { height: 100%; overflow: hidden; } -/* line 3124, ../scss/styles.scss */ +/* line 3133, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau img { max-width: 2000px; } -/* line 3127, ../scss/styles.scss */ +/* line 3136, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper { display: moz-inline-stack; display: inline-block; @@ -11317,75 +11486,78 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { border-radius: 5px; background-clip: padding-box; } -/* line 3132, ../scss/styles.scss */ +/* line 3141, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-title-field { font-size: 2.1em; font-weight: 300; } -/* line 3135, ../scss/styles.scss */ +/* line 3144, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-body { margin-top: 1em; } -/* line 3138, ../scss/styles.scss */ +/* line 3147, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-field-liens a { background-color: rgba(230, 230, 230, 0.8); } -/* line 3141, ../scss/styles.scss */ +/* line 3150, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd:after { content: url("../img/boule.png"); - transform: scale(0.8); + -webkit-transform: scale(0.8); + -ms-transform: scale(0.8); + transform: scale(0.8); position: absolute; bottom: -50px; left: -50px; } @media only screen and (max-width: 40em) { - /* line 3114, ../scss/styles.scss */ + /* line 3123, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd { height: auto; } - /* line 3151, ../scss/styles.scss */ + /* line 3160, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau { width: 100%; display: block; height: 310px; overflow: hidden; } - /* line 3154, ../scss/styles.scss */ + /* line 3163, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper { display: block; width: 100%; z-index: 1; } - /* line 3155, ../scss/styles.scss */ + /* line 3164, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd:after { opacity: 0.6; z-index: 0; } } -/* line 3159, ../scss/styles.scss */ +/* line 3168, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; position: relative; height: 300px; margin-top: 30px; background-color: #000; color: #FFF; } -/* line 2811, ../scss/styles.scss */ +/* line 2820, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 3166, ../scss/styles.scss */ +/* line 3175, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations a { color: #FFF; } -/* line 3168, ../scss/styles.scss */ +/* line 3177, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations .node { padding: 0 0 0 30%; width: 70%; } -/* line 3171, ../scss/styles.scss */ +/* line 3180, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations .node:before { content: " "; background: transparent url("../img/formations.png") no-repeat center center; @@ -11397,44 +11569,45 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { width: 30%; height: 100%; } -/* line 3184, ../scss/styles.scss */ +/* line 3193, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper { padding: 1em; position: relative; } -/* line 3186, ../scss/styles.scss */ +/* line 3195, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-title-field { font-size: 2.1em; font-weight: 300; } -/* line 3189, ../scss/styles.scss */ +/* line 3198, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-body { margin-top: 1em; } @media only screen and (max-width: 40em) { - /* line 3159, ../scss/styles.scss */ + /* line 3168, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations { height: auto; } } -/* line 3197, ../scss/styles.scss */ +/* line 3206, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; background-color: #FFF; height: 300px; margin-top: 30px; } -/* line 2811, ../scss/styles.scss */ +/* line 2820, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 3203, ../scss/styles.scss */ +/* line 3212, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .node { padding: 0 30% 0 0; width: 70%; } -/* line 3206, ../scss/styles.scss */ +/* line 3215, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .node:before { content: " "; background: transparent url("../img/services.png") no-repeat center center; @@ -11446,34 +11619,35 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { width: 30%; height: 100%; } -/* line 3219, ../scss/styles.scss */ +/* line 3228, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper { padding: 1em; position: relative; } -/* line 3221, ../scss/styles.scss */ +/* line 3230, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-title-field { font-size: 2.1em; font-weight: 300; } -/* line 3224, ../scss/styles.scss */ +/* line 3233, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-body { margin-top: 1em; } -/* line 3227, ../scss/styles.scss */ +/* line 3236, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-field-liens a { background-color: rgba(230, 230, 230, 0.8); } @media only screen and (max-width: 40em) { - /* line 3197, ../scss/styles.scss */ + /* line 3206, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services { height: auto; } } -/* line 3235, ../scss/styles.scss */ +/* line 3244, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; position: relative; margin-top: 30px; padding: 1em; @@ -11481,15 +11655,15 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { border-radius: 10px; background-clip: padding-box; } -/* line 2811, ../scss/styles.scss */ +/* line 2820, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 3242, ../scss/styles.scss */ +/* line 3251, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication, #home-v2 > .panel-panel > div > .panel-pane.publication a, #home-v2 > .panel-panel > div > .panel-pane.publication h1, #home-v2 > .panel-panel > div > .panel-pane.publication h2 { color: #fff; } -/* line 3246, ../scss/styles.scss */ +/* line 3255, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row { display: moz-inline-stack; display: inline-block; @@ -11498,19 +11672,19 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { *display: inline; width: 30%; } -/* line 3249, ../scss/styles.scss */ +/* line 3258, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row h1 { display: none; } @media only screen and (max-width: 40em) { - /* line 3254, ../scss/styles.scss */ + /* line 3263, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row { display: block; width: 90%; margin-bottom: 1em; } } -/* line 3260, ../scss/styles.scss */ +/* line 3269, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 { background-color: #e6e6e6; border-radius: 10px; @@ -11520,12 +11694,12 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { padding-bottom: 1em; position: relative; } -/* line 3267, ../scss/styles.scss */ +/* line 3276, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 h2 { font-size: 30px; } @media only screen and (min-width: 40.063em) { - /* line 3270, ../scss/styles.scss */ + /* line 3279, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper { width: 100%; margin-left: auto; @@ -11543,7 +11717,7 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:after { clear: both; } - /* line 3272, ../scss/styles.scss */ + /* line 3281, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel { overflow: hidden; padding-left: 0.9375rem; @@ -11553,25 +11727,25 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { padding: 0em; margin-left: 1em; } - /* line 3277, ../scss/styles.scss */ + /* line 3286, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel.panel-col-first { width: auto; } - /* line 3278, ../scss/styles.scss */ + /* line 3287, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel:not(.panel-col-first) { width: 31%; } - /* line 3279, ../scss/styles.scss */ + /* line 3288, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside { margin: 0; } - /* line 3280, ../scss/styles.scss */ + /* line 3289, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel article.node, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel article.node-breve.vm-cardbig { margin: 0; height: 610px; } } -/* line 3285, ../scss/styles.scss */ +/* line 3294, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom { width: 100%; margin-left: auto; @@ -11591,22 +11765,22 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:after { clear: both; } -/* line 3287, ../scss/styles.scss */ +/* line 3296, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom > .inside { padding-left: 0.9375rem; padding-right: 0.9375rem; width: 100%; float: left; } -/* line 3291, ../scss/styles.scss */ +/* line 3300, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom p { display: none; } -/* line 3292, ../scss/styles.scss */ +/* line 3301, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes { margin: 0 0 0.5em 0; } -/* line 3294, ../scss/styles.scss */ +/* line 3303, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item { display: moz-inline-stack; display: inline-block; @@ -11615,11 +11789,11 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { *display: inline; margin-right: 1em; } -/* line 3296, ../scss/styles.scss */ +/* line 3305, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item label, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item input { vertical-align: middle; } -/* line 3300, ../scss/styles.scss */ +/* line 3309, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail { display: moz-inline-stack; display: inline-block; @@ -11628,7 +11802,7 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { *display: inline; margin: 0; } -/* line 3302, ../scss/styles.scss */ +/* line 3311, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail label, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail input { display: moz-inline-stack; display: inline-block; @@ -11637,7 +11811,7 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { *display: inline; margin-right: 1em; } -/* line 3305, ../scss/styles.scss */ +/* line 3314, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom #edit-subscribe, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom #edit-unsubscribe { display: moz-inline-stack; display: inline-block; @@ -11645,18 +11819,19 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { zoom: 1; *display: inline; } -/* line 3311, ../scss/styles.scss */ +/* line 3320, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews { border-radius: 5px; background-clip: padding-box; background-color: #FFF; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s ease-out; + -webkit-transition: box-shadow 0.3s ease-out; + transition: box-shadow 0.3s ease-out; overflow: hidden; position: relative; margin: 7px; } -/* line 3318, ../scss/styles.scss */ +/* line 3327, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a { position: absolute; bottom: 0; @@ -11664,13 +11839,13 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { background-color: #FFF; text-align: center; } -/* line 3323, ../scss/styles.scss */ +/* line 3332, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a h1 { padding: 10px; margin: 0; font-size: 1em; } -/* line 3332, ../scss/styles.scss */ +/* line 3341, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2:after { content: url("../img/point.png"); position: absolute; @@ -11678,19 +11853,19 @@ body.not-logged-in #home-v2 .field-name-field-liens a.member { right: 10px; } @media only screen and (max-width: 40em) { - /* line 3260, ../scss/styles.scss */ + /* line 3269, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 { background-color: transparent; } - /* line 3343, ../scss/styles.scss */ + /* line 3352, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel.panel-col-first { max-width: 100%; } - /* line 3344, ../scss/styles.scss */ + /* line 3353, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel:not(.panel-col-first) { display: none; } - /* line 3346, ../scss/styles.scss */ + /* line 3355, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2:after { z-index: -1; opacity: 0.4; @@ -11712,8 +11887,6 @@ div.messages { color: #3a87ad; background: #d9edf7; border: 1px solid #bce8f1; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; border-radius: 5px; font-size: 12px; } @@ -11757,8 +11930,6 @@ div.messages.status { color: #3a87ad; background: #d9edf7; border: 1px solid #bce8f1; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; border-radius: 5px; font-size: 12px; margin: 0 0 10px 0; diff --git a/sites/all/themes/gui/materiobasetheme/scss/styles.scss b/sites/all/themes/gui/materiobasetheme/scss/styles.scss index 3c379940..e37f8691 100644 --- a/sites/all/themes/gui/materiobasetheme/scss/styles.scss +++ b/sites/all/themes/gui/materiobasetheme/scss/styles.scss @@ -275,18 +275,27 @@ $headerouterheight:$headerheight+$headerpaddingtop+$headerpaddingbottom; @include fs10; } // label{width:30%;} - input.form-text{width:150px;} + input.form-text{ + width:150px; height:2em; + } - #edit-actions{ + .form-actions{ margin: 5px 0; padding: 0; background-color:transparent; text-align: right; input.form-submit{ - @include fs12; - padding: 10px; + // @include fs12; + @include fs16; padding: 0.1em 0.6em 0.2em; @include rounded(0.3em); + font-weight:bold; + margin-bottom:4px; + border: 2px solid #E6DE1C; background-color:#E6DE1C; color:#fff; // noire/jaune + @include shadowTextBtnBlack(); } } - div.newpass a{ - @include fs12; - color:#686868; + div.newpass{ + text-align: right; + a{ + @include fs12; + color:#686868; + } } // div.register a{