Giter VIP home page Giter VIP logo

Comments (2)

ju1ius avatar ju1ius commented on May 2, 2024

here is a working code for computing specificity. It supports everything but the negation pseudo-class:

// in class CSSParser
const
  NON_ID_ATTRIBUTES_AND_PSEUDO_CLASSES_RX = '/
    (\.[\w]+)                    # classes
    |
    \[(\w+)                      # attributes
    |
    (\:(                         # pseudo classes
      link|visited|active
      |hover|focus
      |lang
      |target
      |enabled|disabled|checked|indeterminate
      |root
      |nth-child|nth-last-child|nth-of-type|nth-last-of-type
      |first-child|last-child|first-of-type|last-of-type
      |only-child|only-of-type
      |empty|contains
    ))
  /ix',
  ELEMENTS_AND_PSEUDO_ELEMENTS_RX = '/
    ((^|[\s\+\>\~]+)[\w]+ # elements
    |                   
    \:{1,2}(                 # pseudo-elements
      after|before
      |first-letter|first-line
      |selection
    )
  )/ix';

public static function computeSpecificity($selector)
{
  $a = 0;
  $b = substr_count($selector, '#');
  $c = preg_match_all(self::NON_ID_ATTRIBUTES_AND_PSEUDO_CLASSES_RX, $selector, $matches);
  $d = preg_match_all(self::ELEMENTS_AND_PSEUDO_ELEMENTS_RX, $selector, $matches);
  return ($a*1000) + ($b*100) + ($c*10) + $d;
}

from php-css-parser.

sabberworm avatar sabberworm commented on May 2, 2024

I’m closing this as I dont’t think there will ever be a merge method.

from php-css-parser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.