diff options
Diffstat (limited to 'components/style/values/computed/mod.rs')
-rw-r--r-- | components/style/values/computed/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/style/values/computed/mod.rs b/components/style/values/computed/mod.rs index b5bb04a8963..50ad4bbb82d 100644 --- a/components/style/values/computed/mod.rs +++ b/components/style/values/computed/mod.rs @@ -23,7 +23,7 @@ use super::generics::grid::TrackList as GenericTrackList; use super::specified; pub use app_units::Au; -pub use cssparser::Color as CSSColor; +pub use cssparser::Color; pub use properties::animated_properties::TransitionProperty; pub use self::background::BackgroundSize; pub use self::border::{BorderImageSlice, BorderImageWidth, BorderImageSideWidth}; @@ -402,7 +402,7 @@ pub struct Shadow { pub offset_y: Au, pub blur_radius: Au, pub spread_radius: Au, - pub color: CSSColor, + pub color: Color, pub inset: bool, } @@ -584,4 +584,4 @@ impl ClipRectOrAuto { } /// <color> | auto -pub type ColorOrAuto = Either<CSSColor, Auto>; +pub type ColorOrAuto = Either<Color, Auto>; |