Revert "Moving SVG CSS to the main page CSS"

This reverts commit ac0389c7fa.
This commit is contained in:
Jeff Avallone 2016-05-31 08:36:44 -04:00
parent 639d00d8df
commit 21b4915f41
3 changed files with 66 additions and 69 deletions

View File

@ -1,10 +1,12 @@
<div class="svg"> <div class="svg">
<svg <svg
class="regexp-svg"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
version="1.1"> version="1.1">
<defs>
<style type="text/css">{{> svg_styles}}</style>
</defs>
<metadata> <metadata>
<rdf:RDF> <rdf:RDF>
<cc:License rdf:about="http://creativecommons.org/licenses/by/3.0/"> <cc:License rdf:about="http://creativecommons.org/licenses/by/3.0/">

View File

@ -1,6 +1,5 @@
@import 'base'; @import 'base';
@import 'reset'; @import 'reset';
@import 'svg';
body { body {
font-family: sans-serif; font-family: sans-serif;

View File

@ -1,11 +1,8 @@
@import 'base'; @import 'base';
#open-iconic { svg {
display: none;
}
svg.regexp-svg {
background-color: $white; background-color: $white;
}
text, tspan { text, tspan {
font: 12px Arial; font: 12px Arial;
@ -68,4 +65,3 @@ svg.regexp-svg {
.quote { .quote {
fill: $light-gray; fill: $light-gray;
} }
}