Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 html { | |
| 2 font-family: 'segoe ui', 'arial', 'helvetica', 'sans-serif'; | |
| 3 font-size: 13px; | |
| 4 } | |
| 5 | |
| 6 #avatar-menu { | |
| 7 background-color: rgba(255, 255, 255, 0.75); | |
| 8 border: 1px solid rgba(0, 0, 0, 0.3); | |
| 9 height: 150px; | |
| 10 overflow: auto; | |
| 11 width: 337px; | |
| 12 } | |
| 13 | |
| 14 .avatar-button { | |
| 15 height: 38px; | |
| 16 padding: 4px; | |
| 17 width: 38px; | |
| 18 } | |
| 19 | |
| 20 .avatar-button-selected { | |
| 21 background-color: #bbcee9; | |
| 22 } | |
| 23 | |
| 24 #profile-name { | |
| 25 font-size: 125%; | |
| 26 } | |
| 27 | |
| 28 div.page > h3 { | |
| 29 color: #4b4b4b | |
| 30 font-size: 105%; | |
| 31 font-weight: bold; | |
| 32 } | |
| 33 | |
| 34 div > p { | |
| 35 color: rgb(75, 75, 75); | |
| 36 } | |
| 37 | |
| 38 .page * input[type="button"], | |
| 39 .page * input[type="button"] { | |
| 40 min-height: 26px; | |
| 41 min-width: 87px; | |
| 42 } | |
| 43 | |
| 44 .overlay { | |
| 45 background: -webkit-linear-gradient(white, rgb(235, 235, 235)); | |
| 46 bottom: 0; | |
| 47 left: 0; | |
| 48 position: fixed; | |
| 49 right: 0; | |
| 50 top: 0; | |
| 51 } | |
| 52 | |
| 53 .action-area { | |
| 54 -webkit-box-align: center; | |
| 55 -webkit-box-orient: horizontal; | |
| 56 -webkit-box-pack: end; | |
| 57 display: -webkit-box; | |
| 58 margin-top: 20px; | |
| 59 } | |
| 60 | |
| 61 .button-strip { | |
| 62 -webkit-box-orient: horizontal; | |
| 63 display: -webkit-box; | |
| 64 } | |
| 65 | |
| 66 html[toolkit=views] .button-strip { | |
| 67 -webkit-box-direction: reverse; | |
| 68 } | |
| 69 | |
| 70 .button-strip > input { | |
| 71 -webkit-margin-start: 10px; | |
| 72 display: block; | |
| 73 } | |
| 74 | |
| 75 #new-profile-overlay { | |
| 76 margin-left: auto; | |
| 77 margin-right: auto; | |
| 78 margin-top: 66px; | |
| 79 padding: 10px; | |
| 80 width: 500px; | |
| 81 } | |
| 82 | |
| 83 #footer { | |
| 84 bottom: 0; | |
| 85 position: fixed; | |
| 86 width: 100%; | |
| 87 } | |
| 88 | |
| 89 #footer-content { | |
| 90 -webkit-box-align: center; | |
| 91 display: -webkit-box; | |
| 92 height: 49px; | |
| 93 } | |
| 94 | |
| 95 #footer-content > * { | |
| 96 margin: 0 9px; | |
| 97 } | |
| 98 | |
| 99 #outer-input-area { | |
| 100 width:100%; | |
|
James Hawkins
2011/07/01 01:52:48
Space after colon.
sail
2011/07/01 18:08:56
Done.
| |
| 101 text-align:center; | |
| 102 } | |
| 103 | |
| 104 #inner-input-area { | |
| 105 display: inline-block; | |
| 106 text-align: left; | |
| 107 } | |
| OLD | NEW |