regexper-static/src/sass/svg.scss

72 lines
1.0 KiB
SCSS
Raw Normal View History

@import 'base';
2016-03-10 21:53:54 +00:00
#open-iconic {
display: none;
}
2016-03-10 21:52:57 +00:00
svg.regexp-svg {
background-color: $white;
2016-03-10 21:52:57 +00:00
text, tspan {
font: 12px Arial;
}
2016-03-10 21:52:57 +00:00
path {
fill-opacity: 0;
stroke-width: 2px;
stroke: $black;
}
2016-03-10 21:52:57 +00:00
circle {
fill: $gray;
stroke-width: 2px;
stroke: $black;
}
2016-03-10 21:52:57 +00:00
.anchor text, .any-character text {
fill: $white;
}
2016-03-10 21:52:57 +00:00
.anchor rect, .any-character rect {
fill: $gray;
}
2016-03-10 21:52:57 +00:00
.escape text, .charset-escape text, .literal text {
fill: $black;
}
2016-03-10 21:52:57 +00:00
.escape rect, .charset-escape rect {
fill: $green;
}
2016-03-10 21:52:57 +00:00
.literal rect {
fill: $blue;
}
2016-03-10 21:52:57 +00:00
.charset .charset-box {
fill: $tan;
}
2016-03-10 21:52:57 +00:00
.subexp .subexp-label tspan,
.charset .charset-label tspan,
.match-fragment .repeat-label tspan {
font-size: 10px;
}
2016-03-10 21:52:57 +00:00
.subexp .subexp-label tspan,
.charset .charset-label tspan {
dominant-baseline: text-after-edge;
}
2016-03-10 21:52:57 +00:00
.subexp .subexp-box {
stroke: $light-gray;
stroke-dasharray: 6,2;
stroke-width: 2px;
fill-opacity: 0;
}
2016-03-10 21:52:57 +00:00
.quote {
fill: $light-gray;
}
}