mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
13 lines
303 B
SCSS
13 lines
303 B
SCSS
// Editor variables
|
|
$state-danger-bg: #f2dede;
|
|
$state-danger-border: darken($state-danger-bg, 5%);
|
|
$text-color: #fff;
|
|
|
|
body.mceContentBody a.ss-broken {
|
|
background-color: $state-danger-bg;
|
|
border: 1px $state-danger-border solid;
|
|
color: $text-color;
|
|
padding: 1px;
|
|
text-decoration: underline;
|
|
}
|