style: Move user-select outside of mako.

This is the first step to unprefix user-select.

This has no behavior change, it's just a nicer way to do the same thing which
allows us to unship individual values more easily using parse(condition).

Differential Revision: https://phabricator.services.mozilla.com/D11580
This commit is contained in:
Emilio Cobos Álvarez 2018-11-11 17:57:41 +01:00
parent fcada8a71e
commit 1aa6725f9a
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
8 changed files with 47 additions and 9 deletions

View file

@ -10,7 +10,7 @@ use crate::values::computed::Number;
use crate::values::generics::ui as generics;
use crate::values::{Auto, Either};
pub use crate::values::specified::ui::MozForceBrokenImageIcon;
pub use crate::values::specified::ui::{MozForceBrokenImageIcon, UserSelect};
/// auto | <color>
pub type ColorOrAuto = Either<Color, Auto>;