Title: [250071] trunk/Tools
Revision
250071
Author
zhifei_f...@apple.com
Date
2019-09-18 17:23:20 -0700 (Wed, 18 Sep 2019)

Log Message

[results.webkit.org] fix missing col classes
https://bugs.webkit.org/show_bug.cgi?id=201949

Reviewed by Jonathan Bedard.

* resultsdbpy/resultsdbpy/view/static/library/css/webkit.css:
(@media screen and (min-width: 768px)):
(.row):
(.col-1):
(.col-2):
(.col-3):
(.col-4):
(.col-5):
(.col-6):
(.col-7):
(.col-8):
(.col-9):
(.col-10):
(.col-11):
(.col-12):
(@media screen and (min-width: 600px)):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (250070 => 250071)


--- trunk/Tools/ChangeLog	2019-09-19 00:07:48 UTC (rev 250070)
+++ trunk/Tools/ChangeLog	2019-09-19 00:23:20 UTC (rev 250071)
@@ -1,3 +1,27 @@
+2019-09-18  Zhifei Fang  <zhifei_f...@apple.com>
+
+        [results.webkit.org] fix missing col classes
+        https://bugs.webkit.org/show_bug.cgi?id=201949
+
+        Reviewed by Jonathan Bedard.
+
+        * resultsdbpy/resultsdbpy/view/static/library/css/webkit.css:
+        (@media screen and (min-width: 768px)):
+        (.row):
+        (.col-1):
+        (.col-2):
+        (.col-3):
+        (.col-4):
+        (.col-5):
+        (.col-6):
+        (.col-7):
+        (.col-8):
+        (.col-9):
+        (.col-10):
+        (.col-11):
+        (.col-12):
+        (@media screen and (min-width: 600px)):
+
 2019-09-18  Ryan Haddad  <ryanhad...@apple.com>
 
         Update flakiness dashboard configuration for iOS 13 queues

Modified: trunk/Tools/resultsdbpy/resultsdbpy/view/static/library/css/webkit.css (250070 => 250071)


--- trunk/Tools/resultsdbpy/resultsdbpy/view/static/library/css/webkit.css	2019-09-19 00:07:48 UTC (rev 250070)
+++ trunk/Tools/resultsdbpy/resultsdbpy/view/static/library/css/webkit.css	2019-09-19 00:23:20 UTC (rev 250071)
@@ -330,12 +330,13 @@
   display: flex;
   flex-direction: column;
 }
-
+/* size xs */
 [class*="col-"] {
   width: 100%;
   padding: var(--colPaddingSize) 0;
 }
 
+/* size s */
 @media screen and (min-width: 600px) {
   .row {
     display: flex;
@@ -391,6 +392,62 @@
   }
 }
 
+/* size m */
+@media screen and (min-width: 768px) {
+  .row {
+    display: flex;
+    flex-direction: row;
+  }
+
+  .col-1 {
+    width: 8.33%;
+  }
+
+  .col-2 {
+    width: 16.66%;
+  }
+
+  .col-3 {
+    width: 25%;
+  }
+
+  .col-4 {
+    width: 33.33%;
+  }
+
+  .col-5 {
+    width: 41.66%;
+  }
+
+  .col-6 {
+    width: 50%;
+  }
+
+  .col-7 {
+    width: 58.33%;
+  }
+
+  .col-8 {
+    width: 66.66%;
+  }
+
+  .col-9 {
+    width: 75%;
+  }
+
+  .col-10 {
+    width: 83.33%;
+  }
+
+  .col-11 {
+    width: 91.66%;
+  }
+
+  .col-12 {
+    width: 100%;
+  }
+}
+
 .hide-for-xs {
   display: none;
 }
@@ -2567,4 +2624,3 @@
     display: none;
   }
 }
-
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to