Changeset 250071 in webkit


Ignore:
Timestamp:
Sep 18, 2019 5:23:20 PM (5 years ago)
Author:
zhifei_fang@apple.com
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)):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r250059 r250071  
     12019-09-18  Zhifei Fang  <zhifei_fang@apple.com>
     2
     3        [results.webkit.org] fix missing col classes
     4        https://bugs.webkit.org/show_bug.cgi?id=201949
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * resultsdbpy/resultsdbpy/view/static/library/css/webkit.css:
     9        (@media screen and (min-width: 768px)):
     10        (.row):
     11        (.col-1):
     12        (.col-2):
     13        (.col-3):
     14        (.col-4):
     15        (.col-5):
     16        (.col-6):
     17        (.col-7):
     18        (.col-8):
     19        (.col-9):
     20        (.col-10):
     21        (.col-11):
     22        (.col-12):
     23        (@media screen and (min-width: 600px)):
     24
    1252019-09-18  Ryan Haddad  <ryanhaddad@apple.com>
    226
  • trunk/Tools/resultsdbpy/resultsdbpy/view/static/library/css/webkit.css

    r249646 r250071  
    331331  flex-direction: column;
    332332}
    333 
     333/* size xs */
    334334[class*="col-"] {
    335335  width: 100%;
     
    337337}
    338338
     339/* size s */
    339340@media screen and (min-width: 600px) {
    340341  .row {
     
    388389
    389390  .col-s-12 {
     391    width: 100%;
     392  }
     393}
     394
     395/* size m */
     396@media screen and (min-width: 768px) {
     397  .row {
     398    display: flex;
     399    flex-direction: row;
     400  }
     401
     402  .col-1 {
     403    width: 8.33%;
     404  }
     405
     406  .col-2 {
     407    width: 16.66%;
     408  }
     409
     410  .col-3 {
     411    width: 25%;
     412  }
     413
     414  .col-4 {
     415    width: 33.33%;
     416  }
     417
     418  .col-5 {
     419    width: 41.66%;
     420  }
     421
     422  .col-6 {
     423    width: 50%;
     424  }
     425
     426  .col-7 {
     427    width: 58.33%;
     428  }
     429
     430  .col-8 {
     431    width: 66.66%;
     432  }
     433
     434  .col-9 {
     435    width: 75%;
     436  }
     437
     438  .col-10 {
     439    width: 83.33%;
     440  }
     441
     442  .col-11 {
     443    width: 91.66%;
     444  }
     445
     446  .col-12 {
    390447    width: 100%;
    391448  }
     
    25682625  }
    25692626}
    2570 
Note: See TracChangeset for help on using the changeset viewer.