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/Rules/ImportRule.cs
View file @
f28f5a2c
using
ExCSS.Model
;
using
ExCSS.Model.Extensions
;
using
Svg.
ExCSS.Model
;
using
Svg.
ExCSS.Model.Extensions
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
ImportRule
:
RuleSet
,
ISupportsMedia
{
...
...
Source/External/ExCSS/Model/Rules/KeyframeRule.cs
View file @
f28f5a2c
using
ExCSS.Model
;
using
ExCSS.Model.Extensions
;
using
Svg.
ExCSS.Model
;
using
Svg.
ExCSS.Model.Extensions
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
KeyframeRule
:
RuleSet
,
ISupportsDeclarations
{
...
...
Source/External/ExCSS/Model/Rules/KeyframesRule.cs
View file @
f28f5a2c
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
ExCSS.Model.Extensions
;
using
Svg.
ExCSS.Model.Extensions
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
KeyframesRule
:
RuleSet
,
IRuleContainer
{
...
...
Source/External/ExCSS/Model/Rules/MediaRule.cs
View file @
f28f5a2c
using
System
;
using
System.Linq
;
using
ExCSS.Model
;
using
ExCSS.Model.Extensions
;
using
Svg.
ExCSS.Model
;
using
Svg.
ExCSS.Model.Extensions
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
MediaRule
:
ConditionalRule
,
ISupportsMedia
{
...
...
Source/External/ExCSS/Model/Rules/NamespaceRule.cs
View file @
f28f5a2c
using
ExCSS.Model.Extensions
;
using
Svg.
ExCSS.Model.Extensions
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
NamespaceRule
:
RuleSet
{
...
...
Source/External/ExCSS/Model/Rules/PageRule.cs
View file @
f28f5a2c
using
ExCSS.Model
;
using
ExCSS.Model.Extensions
;
using
Svg.
ExCSS.Model
;
using
Svg.
ExCSS.Model.Extensions
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
PageRule
:
RuleSet
,
ISupportsSelector
,
ISupportsDeclarations
{
...
...
Source/External/ExCSS/Model/Rules/RuleSet.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
abstract
class
RuleSet
{
...
...
Source/External/ExCSS/Model/Rules/StyleDeclaration.cs
View file @
f28f5a2c
...
...
@@ -4,7 +4,7 @@ using System.Collections.Generic;
using
System.Text
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
StyleDeclaration
:
IList
<
Property
>
{
...
...
Source/External/ExCSS/Model/Rules/StyleRule.cs
View file @
f28f5a2c
using
System
;
using
ExCSS.Model
;
using
ExCSS.Model.Extensions
;
using
Svg.
ExCSS.Model
;
using
Svg.
ExCSS.Model.Extensions
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
StyleRule
:
RuleSet
,
ISupportsSelector
,
ISupportsDeclarations
{
...
...
Source/External/ExCSS/Model/Rules/SupportsRule.cs
View file @
f28f5a2c
using
System.Linq
;
using
ExCSS.Model.Extensions
;
using
Svg.
ExCSS.Model.Extensions
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
SupportsRule
:
ConditionalRule
{
...
...
Source/External/ExCSS/Model/Selector/AggregateSelectorList.cs
View file @
f28f5a2c
...
...
@@ -2,7 +2,7 @@
using
System.Text
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
AggregateSelectorList
:
SelectorList
{
...
...
Source/External/ExCSS/Model/Selector/BaseSelector.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
abstract
class
BaseSelector
{
...
...
Source/External/ExCSS/Model/Selector/CombinatorSelector.cs
View file @
f28f5a2c
using
System
;
using
ExCSS.Model
;
using
Svg.
ExCSS.Model
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
struct
CombinatorSelector
{
...
...
Source/External/ExCSS/Model/Selector/ComplexSelector.cs
View file @
f28f5a2c
...
...
@@ -4,7 +4,7 @@ using System.Collections.Generic;
using
System.Collections
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
ComplexSelector
:
BaseSelector
,
IEnumerable
<
CombinatorSelector
>
{
...
...
Source/External/ExCSS/Model/Selector/FirstChildSelector.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
internal
sealed
class
FirstChildSelector
:
BaseSelector
,
IToString
{
...
...
Source/External/ExCSS/Model/Selector/LastChildSelector.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
internal
sealed
class
LastChildSelector
:
BaseSelector
,
IToString
{
...
...
Source/External/ExCSS/Model/Selector/MultipleSelectorList.cs
View file @
f28f5a2c
using
System.Text
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
MultipleSelectorList
:
SelectorList
,
IToString
{
...
...
Source/External/ExCSS/Model/Selector/NthChildSelector.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
internal
abstract
class
NthChildSelector
:
BaseSelector
,
IToString
{
...
...
Source/External/ExCSS/Model/Selector/NthFirstChildSelector.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
internal
sealed
class
NthFirstChildSelector
:
NthChildSelector
,
IToString
{
...
...
Source/External/ExCSS/Model/Selector/NthLastChildSelector.cs
View file @
f28f5a2c
using
System
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
internal
sealed
class
NthLastChildSelector
:
NthChildSelector
,
IToString
{
...
...
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