2018-07-13 09:11:16 +00:00
|
|
|
@if ($debug)
|
|
|
|
*
|
2018-07-13 13:24:58 +00:00
|
|
|
background-color: $debug-element-background-color
|
|
|
|
border: $debug-element-border-color 1px solid
|
2018-07-13 09:11:16 +00:00
|
|
|
box-sizing: border-box
|
|
|
|
position: relative
|
2018-07-13 13:24:58 +00:00
|
|
|
|
|
|
|
&::after
|
2018-07-13 12:41:58 +00:00
|
|
|
content: attr(class) // sass-lint:disable-line variable-for-property
|
2018-07-13 09:11:16 +00:00
|
|
|
z-index: 99999
|
2018-07-13 13:24:58 +00:00
|
|
|
box-shadow: 0 0 10px $debug-label-shadow-color
|
2018-07-13 09:11:16 +00:00
|
|
|
position: absolute
|
|
|
|
left: 0
|
|
|
|
top: 0
|
2018-07-13 13:24:58 +00:00
|
|
|
color: $debug-label-text-color
|
|
|
|
background: $debug-label-background-color
|
|
|
|
border: $debug-label-border-color 1px solid
|
2018-07-13 09:11:16 +00:00
|
|
|
padding: 4px
|
|
|
|
font-size: 12px
|
|
|
|
font-weight: bold
|
|
|
|
font-family: monospace
|