Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* TODO(thestig) make mainview float rather than fixed */ | |
| 2 body { | |
| 3 font-size: 100%; | |
| 4 -webkit-user-select: none; | |
| 5 } | |
| 6 | |
| 7 #settings-title { | |
| 8 -webkit-padding-end: 24px; | |
| 9 padding-top: 1em; | |
| 10 padding-bottom: 1em; | |
| 11 text-align: end; | |
| 12 font-size: 125%; | |
| 13 font-weight: normal; | |
| 14 color: #53627d; | |
| 15 margin: 0; | |
| 16 } | |
| 17 | |
| 18 #main-content { | |
| 19 background-color: #5d626c; | |
| 20 display: -webkit-box; | |
| 21 position: absolute; | |
| 22 left: 0; | |
| 23 right: 0; | |
| 24 top: 0; | |
| 25 bottom: 0; | |
| 26 } | |
| 27 | |
| 28 #navbar-container { | |
| 29 background-color: #f8fafd; | |
| 30 position: relative; | |
| 31 width: 300px; | |
| 32 z-index: 2; | |
| 33 } | |
| 34 | |
| 35 #destination-container { | |
| 36 background-color: #ffffff; | |
| 37 padding: 10px; | |
| 38 } | |
| 39 | |
| 40 #options-container { | |
| 41 padding: 10px; | |
| 42 } | |
| 43 | |
| 44 #mainview { | |
| 45 -webkit-box-align: stretch; | |
| 46 background: -webkit-gradient(linear, | |
| 47 left top, | |
| 48 right top, | |
| 49 from(#a4a4a4), | |
| 50 color-stop(0.02, #cccccc), | |
| 51 to(#cccccc)); | |
| 52 margin: 0; | |
|
arv (Not doing code reviews)
2010/10/06 21:53:10
margin is 0 by default
| |
| 53 position: relative; | |
| 54 left: 0; | |
| 55 right: 0; | |
| 56 top: 0; | |
| 57 bottom: 0; | |
|
arv (Not doing code reviews)
2010/10/06 21:53:10
you can remove left, top, right and bottom here si
| |
| 58 z-index: 1; | |
| 59 } | |
| 60 | |
| 61 #mainview-content { | |
| 62 width: 480px; | |
| 63 padding: 10px 24px; | |
| 64 } | |
| 65 | |
| 66 #thumbnails { | |
| 67 background: -webkit-gradient(linear, | |
| 68 left top, | |
| 69 right top, | |
| 70 from(#cccccc), | |
| 71 to(#5d626c)); | |
| 72 margin: 0; | |
|
arv (Not doing code reviews)
2010/10/06 21:53:10
same here
| |
| 73 position: relative; | |
| 74 left: 0; | |
| 75 right: 0; | |
| 76 top: 0; | |
| 77 bottom: 0; | |
| 78 z-index: 1; | |
| 79 } | |
| 80 | |
| 81 #thumbnails-content { | |
| 82 width: 160px; | |
| 83 padding: 10px; | |
| 84 } | |
| 85 | |
| 86 .hidden { | |
| 87 display: none; | |
| 88 } | |
| 89 | |
| 90 select { | |
| 91 margin: 0px; | |
|
arv (Not doing code reviews)
2010/10/06 21:53:10
s/0px/0/
| |
| 92 } | |
| 93 | |
| 94 .link-button { | |
| 95 background-color: transparent; | |
| 96 border: none; | |
| 97 color: blue; | |
| 98 cursor: pointer; | |
| 99 text-decoration: underline; | |
|
arv (Not doing code reviews)
2010/10/06 21:53:10
also. padding: 0
| |
| 100 } | |
| 101 | |
| 102 .text-button { | |
| 103 background-color: transparent; | |
| 104 border-color: transparent; | |
| 105 } | |
| OLD | NEW |