Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. BrowserSpecificStylesSniff.php

BrowserSpecificStylesSniff::$specificStylesheets

A list of specific stylesheet suffixes we allow.

These stylesheets contain browser specific styles so this sniff ignore them files in the form: *_moz.css and *_ie7.css etc.

Type: array

File

vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/CSS/BrowserSpecificStylesSniff.php, line 36

Class

BrowserSpecificStylesSniff

Namespace

PHP_CodeSniffer\Standards\MySource\Sniffs\CSS

Code

protected $specificStylesheets = [
    'moz' => true,
    'ie' => true,
    'ie7' => true,
    'ie8' => true,
    'webkit' => true,
];

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal