style/queries/
mod.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5//! Code shared between [media queries][mq] and [container queries][cq].
6//!
7//! [mq]: https://drafts.csswg.org/mediaqueries/
8//! [cq]: https://drafts.csswg.org/css-contain-3/#container-rule
9
10pub mod condition;
11
12#[macro_use]
13pub mod feature;
14pub mod feature_expression;
15pub mod values;
16
17pub use self::condition::QueryCondition;
18pub use self::feature::FeatureFlags;
19pub use self::feature_expression::{FeatureType, QueryFeatureExpression};