mirror of
https://github.com/servo/servo.git
synced 2025-08-09 23:45:35 +01:00
Merge CSSColor into Color.
This commit is contained in:
parent
bf77f81ed6
commit
7568a19688
25 changed files with 181 additions and 264 deletions
|
@ -3,18 +3,18 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
use style_traits::ToCss;
|
||||
use values::specified::{BorderStyle, Color, CSSColor};
|
||||
use values::specified::{BorderStyle, Color};
|
||||
use std::fmt;
|
||||
|
||||
fn serialize_directional_border<W, I,>(dest: &mut W,
|
||||
width: &I,
|
||||
style: &BorderStyle,
|
||||
color: &CSSColor)
|
||||
color: &Color)
|
||||
-> fmt::Result where W: fmt::Write, I: ToCss {
|
||||
width.to_css(dest)?;
|
||||
dest.write_str(" ")?;
|
||||
style.to_css(dest)?;
|
||||
if color.parsed != Color::CurrentColor {
|
||||
if *color != Color::CurrentColor {
|
||||
dest.write_str(" ")?;
|
||||
color.to_css(dest)?;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue