Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ImportedProjects
SVG
Commits
f28f5a2c
Commit
f28f5a2c
authored
Jan 17, 2019
by
Matt Schneeberger
Committed by
mrbean-bremen
Jan 19, 2019
Browse files
Rename namespace for ExCSS
parent
42db3781
Changes
74
Hide whitespace changes
Inline
Side-by-side
Source/External/ExCSS/Model/Selector/NthLastOfTypeSelector.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
internal
sealed
class
NthLastOfTypeSelector
:
NthChildSelector
,
IToString
{
...
...
Source/External/ExCSS/Model/Selector/NthOfTypeSelector.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
internal
sealed
class
NthOfTypeSelector
:
NthChildSelector
,
IToString
{
...
...
Source/External/ExCSS/Model/Selector/SelectorFactory.cs
View file @
f28f5a2c
using
System
;
using
System.Globalization
;
using
ExCSS.Model
;
using
ExCSS.Model.TextBlocks
;
using
Svg.
ExCSS.Model
;
using
Svg.
ExCSS.Model.TextBlocks
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
internal
sealed
class
SelectorFactory
{
...
...
Source/External/ExCSS/Model/Selector/SelectorList.cs
View file @
f28f5a2c
...
...
@@ -2,7 +2,7 @@
using
System.Collections.Generic
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
abstract
class
SelectorList
:
BaseSelector
,
IEnumerable
<
BaseSelector
>
{
...
...
Source/External/ExCSS/Model/Selector/SimpleSelector.cs
View file @
f28f5a2c
using
System
;
using
ExCSS.Model
;
using
Svg.
ExCSS.Model
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
sealed
class
SimpleSelector
:
BaseSelector
{
...
...
Source/External/ExCSS/Model/Specification.cs
View file @
f28f5a2c
namespace
ExCSS.Model
namespace
Svg.
ExCSS.Model
{
internal
static
class
Specification
{
...
...
Source/External/ExCSS/Model/TextBlocks/Block.cs
View file @
f28f5a2c
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
abstract
class
Block
{
...
...
Source/External/ExCSS/Model/TextBlocks/BracketBlock.cs
View file @
f28f5a2c
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
BracketBlock
:
Block
{
...
...
Source/External/ExCSS/Model/TextBlocks/CharacterBlock.cs
View file @
f28f5a2c
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
abstract
class
CharacterBlock
:
Block
{
...
...
Source/External/ExCSS/Model/TextBlocks/CommentBlock.cs
View file @
f28f5a2c
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
CommentBlock
:
Block
{
...
...
Source/External/ExCSS/Model/TextBlocks/DelimiterBlock.cs
View file @
f28f5a2c
using
System.Globalization
;
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
DelimiterBlock
:
CharacterBlock
{
...
...
Source/External/ExCSS/Model/TextBlocks/MatchBlock.cs
View file @
f28f5a2c
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
MatchBlock
:
Block
{
...
...
Source/External/ExCSS/Model/TextBlocks/NumericBlock.cs
View file @
f28f5a2c
using
System
;
using
System.Globalization
;
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
NumericBlock
:
Block
{
...
...
Source/External/ExCSS/Model/TextBlocks/PipeBlock.cs
View file @
f28f5a2c
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
PipeBlock
:
Block
{
...
...
Source/External/ExCSS/Model/TextBlocks/RangeBlock.cs
View file @
f28f5a2c
using
System.Collections.Generic
;
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
RangeBlock
:
Block
{
...
...
Source/External/ExCSS/Model/TextBlocks/SpecialCharacter.cs
View file @
f28f5a2c
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
SpecialCharacter
:
CharacterBlock
{
...
...
Source/External/ExCSS/Model/TextBlocks/StringBlock.cs
View file @
f28f5a2c
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
StringBlock
:
Block
{
...
...
Source/External/ExCSS/Model/TextBlocks/SymbolBlock.cs
View file @
f28f5a2c
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
SymbolBlock
:
Block
{
...
...
Source/External/ExCSS/Model/TextBlocks/UnitBlock.cs
View file @
f28f5a2c
using
System
;
using
System.Globalization
;
namespace
ExCSS.Model.TextBlocks
namespace
Svg.
ExCSS.Model.TextBlocks
{
internal
class
UnitBlock
:
Block
{
...
...
Source/External/ExCSS/Model/Values/GenericFunction.cs
View file @
f28f5a2c
using
System.Collections.Generic
;
using
System.Text
;
using
ExCSS.Model
;
using
Svg.
ExCSS.Model
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
GenericFunction
:
Term
{
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment