Skip to content

Commit c4921ee

Browse files
committed
Add InProgress status and mark float/clear as InProgress
1 parent 33f064a commit c4921ee

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

data/css-property-groups.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
{ "value": "counter", "status": "No" }
5858
]
5959
},
60-
{ "name": "float", "status": "No", "issues": ["DioxusLabs/taffy#437", "linebender/parley#99"] },
61-
{ "name": "clear", "status": "No", "issues": ["DioxusLabs/taffy#437", "linebender/parley#99"] },
60+
{ "name": "float", "status": "InProgress", "issues": ["DioxusLabs/taffy#437", "linebender/parley#99"] },
61+
{ "name": "clear", "status": "InProgress", "issues": ["DioxusLabs/taffy#437", "linebender/parley#99"] },
6262
{ "name": "order", "status": "Yes" },
6363
{ "name": "zoom", "status": "No" }
6464
]

src/routes/support_matrix.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ pub enum PropStatus {
198198
Yes,
199199
No,
200200
Partial,
201+
InProgress,
201202
}
202203

203204
impl PropStatus {
@@ -206,6 +207,7 @@ impl PropStatus {
206207
Self::Yes => "✅ Supported",
207208
Self::No => "❌ Not supported",
208209
Self::Partial => "⚠️ Partial support",
210+
Self::InProgress => "🚧 In Progress",
209211
}
210212
}
211213
}
@@ -216,6 +218,7 @@ impl PropStatus {
216218
Self::Yes => "css-prop--supported",
217219
Self::No => "css-prop--not-supported",
218220
Self::Partial => "css-prop--partial-support",
221+
Self::InProgress => "css-prop--in-progress",
219222
}
220223
}
221224
}

static/index.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,10 @@ table td {
320320
background: rgba(242, 165, 59, 0.3);
321321
}
322322

323+
.css-prop--in-progress {
324+
background: rgba(76, 32, 234, 0.3);
325+
}
326+
323327
.css-prop--split-by-value {
324328
background: rgba(244, 232, 210, 0.3);
325329
}

styles/table.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ table {
4646
background: rgba(242, 165, 59, 0.3);
4747
}
4848

49+
.css-prop--in-progress {
50+
background: rgba(76, 32, 234, 0.3);
51+
}
52+
4953
.css-prop--split-by-value {
5054
background: rgba(244, 232, 210, 0.3);
5155
}

0 commit comments

Comments
 (0)