2014-03-14 06:04:34 +01:00
|
|
|
```sass
|
2017-10-30 22:27:16 +01:00
|
|
|
// This CSS won't print because %equal-heights is never extended.
|
|
|
|
%equal-heights
|
|
|
|
display: flex
|
|
|
|
flex-wrap: wrap
|
|
|
|
|
|
|
|
// This CSS will print because %message-shared is extended.
|
|
|
|
%message-shared
|
2014-03-14 06:04:34 +01:00
|
|
|
border: 1px solid #ccc
|
|
|
|
padding: 10px
|
|
|
|
color: #333
|
|
|
|
|
2017-10-30 22:27:16 +01:00
|
|
|
.message
|
|
|
|
@extend %message-shared
|
2015-08-14 07:51:12 +02:00
|
|
|
|
2014-03-14 06:04:34 +01:00
|
|
|
.success
|
2017-10-30 22:27:16 +01:00
|
|
|
@extend %message-shared
|
2014-03-14 06:04:34 +01:00
|
|
|
border-color: green
|
|
|
|
|
2015-08-14 07:51:12 +02:00
|
|
|
|
2014-03-14 06:04:34 +01:00
|
|
|
.error
|
2017-10-30 22:27:16 +01:00
|
|
|
@extend %message-shared
|
2014-03-14 06:04:34 +01:00
|
|
|
border-color: red
|
|
|
|
|
2015-08-14 07:51:12 +02:00
|
|
|
|
2014-03-14 06:04:34 +01:00
|
|
|
.warning
|
2017-10-30 22:27:16 +01:00
|
|
|
@extend %message-shared
|
2014-03-14 06:04:34 +01:00
|
|
|
border-color: yellow
|
2015-08-14 07:51:12 +02:00
|
|
|
|
2014-03-14 06:04:34 +01:00
|
|
|
```
|