Changes between Initial Version and Version 1 of Ticket #24306, comment 30
- Timestamp:
- 06/08/2013 11:35:55 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24306, comment 30
initial v1 1 1 Missed your update to the selector earlier to 2 2 {{{ 3 3 [class*="your-plugin-prefix-"] * 4 4 }}} 5 5 That would mostly work and is certainly useful if you have elements all over the place. Otherwise if your plugin uses a container as me and cello expressions are using the following also mostly works (as mentioned in an earlier post). 6 6 {{{ 7 7 .plugin-container, .plugin-container * { 8 8 box-sizing: content-box; … … 10 10 -webkit-box-sizing: content-box; 11 11 } 12 12 }}} 13 13 However both methods are problematic when applied to the top level widget box as it appends the widget class for which twelve thirteen has defined both width and padding. 14 14