Title: [123232] trunk/Tools
- Revision
- 123232
- Author
- [email protected]
- Date
- 2012-07-20 10:53:03 -0700 (Fri, 20 Jul 2012)
Log Message
Baseline align text in the flakiness dashboard toolbar
https://bugs.webkit.org/show_bug.cgi?id=91784
Reviewed by Ojan Vafai.
Baseline align the flex items.
* TestResultServer/static-dashboards/flakiness_dashboard.css:
(.forms): Add box-align: baseline
(.forms > *): Use block display to force flex items rather than box.
(#tests-form): Add box-align: baseline
(#tests-form > *): Use block display to force flex items rather than box.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (123231 => 123232)
--- trunk/Tools/ChangeLog 2012-07-20 17:50:32 UTC (rev 123231)
+++ trunk/Tools/ChangeLog 2012-07-20 17:53:03 UTC (rev 123232)
@@ -1,3 +1,18 @@
+2012-07-20 Tony Chang <[email protected]>
+
+ Baseline align text in the flakiness dashboard toolbar
+ https://bugs.webkit.org/show_bug.cgi?id=91784
+
+ Reviewed by Ojan Vafai.
+
+ Baseline align the flex items.
+
+ * TestResultServer/static-dashboards/flakiness_dashboard.css:
+ (.forms): Add box-align: baseline
+ (.forms > *): Use block display to force flex items rather than box.
+ (#tests-form): Add box-align: baseline
+ (#tests-form > *): Use block display to force flex items rather than box.
+
2012-07-20 Sheriff Bot <[email protected]>
Unreviewed, rolling out r123220.
Modified: trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.css (123231 => 123232)
--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.css 2012-07-20 17:50:32 UTC (rev 123231)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.css 2012-07-20 17:53:03 UTC (rev 123232)
@@ -49,19 +49,21 @@
}
.forms {
display: -webkit-box;
+ -webkit-box-align: baseline;
}
.forms > * {
- display: -webkit-box;
+ display: block;
}
.forms span {
padding: 0px 3px;
}
#tests-form {
display: -webkit-box;
+ -webkit-box-align: baseline;
-webkit-box-flex: 1;
}
#tests-form > * {
- display: -webkit-box;
+ display: block;
}
#tests-input {
display: -webkit-box;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes