CSS

CSS class '.panel'

10.3.0

CSS class .panel is removed since foundation 6.x. It must replaced by .callout

Have I used the class '.panel'?

Please send this queries to your database. If you have used .panel, you will get some hits.

SELECT
  uid,
  pid,
  header,
  tx_start_additionalclassdefined,
  tx_start_classpanel
FROM
  tt_content
WHERE
  (
        tx_start_additionalclassdefined LIKE '%panel%' 
    OR  tx_start_classpanel LIKE '%panel%'
  );
Copied!
SELECT
  uid,
  pid,
  header,
  bodytext,
  pi_flexform

FROM
  tt_content
WHERE
  (
        bodytext LIKE '%panel%'
    OR  pi_flexform LIKE '%panel%'
  );
Copied!

Replace '.panel' with '.callout'

tx_start_additionalclassdefined

UPDATE
  tt_content
SET
  tx_start_additionalclassdefined =
REPLACE
  (
    tx_start_additionalclassdefined,
    'panel',
    'callout'
  )
WHERE
  tx_start_additionalclassdefined LIKE '%panel%'
-- AND uid = 35666
Copied!

tx_start_classpanel

UPDATE
  tt_content
SET
  tx_start_classpanel =
REPLACE
  (
    tx_start_classpanel,
    'panel',
    'callout'
  )
WHERE
  tx_start_classpanel LIKE '%panel%'
-- AND uid = 47640
Copied!

pi_flexform

UPDATE
  tt_content
SET
  pi_flexform =
REPLACE
  (
    pi_flexform,
    'panel',
    'callout'
  )
WHERE
  pi_flexform LIKE '%panel%'
-- AND uid = 47640
Copied!

bodytext

UPDATE
  tt_content
SET
  bodytext =
REPLACE
  (
    bodytext,
    'panel',
    'callout'
  )
WHERE
  bodytext LIKE '%panel%'
-- AND uid = 47640
Copied!