Changes between Version 19 and Version 20 of WebInspectorCodingStyleGuide
- Timestamp:
- Dec 12, 2015, 8:43:57 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebInspectorCodingStyleGuide
v19 v20 215 215 216 216 }}} 217 218 == CSS 219 220 === z-index 221 222 Z-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 230 Read more about the rationale in [https://bugs.webkit.org/show_bug.cgi?id=151978 Bug 151978].