Beispiel #1
0
        public CssCharset(QuotedStringValue charset, int start, int stop)
        {
            Charset = charset;

            Start = start;
            Stop  = stop;
        }
Beispiel #2
0
 public void WriteCharset(QuotedStringValue charset)
 {
     // you have to be really precise about this
     // http://www.w3.org/TR/CSS2/syndata.html#charset
     _wrapped.Write("@charset \"");
     _wrapped.Write(charset.Value);
     _wrapped.Write("\";");
 }
Beispiel #3
0
        public SpriteBlock(QuotedStringValue output, List <SpriteRule> sprites, int start, int stop, string filePath)
        {
            OutputFile = output;
            Sprites    = sprites.AsReadOnly();

            Start    = start;
            Stop     = stop;
            FilePath = filePath;
        }
Beispiel #4
0
        public SpriteRule(string name, QuotedStringValue path, int start, int stop, string file)
        {
            MixinName      = name;
            SpriteFilePath = path;

            Start    = start;
            Stop     = stop;
            FilePath = file;
        }