mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
style: Rename pointing to inherited_ui.
And also merge values::*::pointing into values::*::ui. Bug: 1460192 Reviewed-by: heycam MozReview-Commit-ID: FM4gWEszahB
This commit is contained in:
parent
4ab0e85ed5
commit
db0134e697
12 changed files with 103 additions and 134 deletions
|
@ -4,4 +4,18 @@
|
|||
|
||||
//! Computed values for UI properties
|
||||
|
||||
use values::computed::Number;
|
||||
use values::computed::color::Color;
|
||||
use values::computed::url::ComputedImageUrl;
|
||||
use values::generics::ui as generics;
|
||||
|
||||
pub use values::specified::ui::MozForceBrokenImageIcon;
|
||||
|
||||
/// A computed value for the `caret-color` property.
|
||||
pub type CaretColor = generics::CaretColor<Color>;
|
||||
|
||||
/// A computed value for the `cursor` property.
|
||||
pub type Cursor = generics::Cursor<CursorImage>;
|
||||
|
||||
/// A computed value for item of `image cursors`.
|
||||
pub type CursorImage = generics::CursorImage<ComputedImageUrl, Number>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue