Changes between Version 19 and Version 20 of WebInspectorCodingStyleGuide


Ignore:
Timestamp:
Dec 12, 2015 8:43:57 PM (8 years ago)
Author:
Nikita Vasilyev
Comment:

Add CSS z-index

Legend:

Unmodified
Added
Removed
Modified
  • WebInspectorCodingStyleGuide

    v19 v20  
    215215
    216216}}}
     217
     218== CSS
     219
     220=== z-index
     221
     222Z-index variables are defined in [https://trac.webkit.org/browser/trunk/Source/WebInspectorUI/UserInterface/Views/Variables.css Variables.css]. Usage example:
     223
     224{{{
     225.popover {
     226    z-index: var(--z-index-popover);
     227}
     228}}}
     229
     230Read more about the rationale in [https://bugs.webkit.org/show_bug.cgi?id=151978 Bug 151978].