Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 html { | 1 html { |
| 2 height: 100%; | 2 height: 100%; |
| 3 } | 3 } |
| 4 | 4 |
| 5 body { | 5 body { |
| 6 background: white; | 6 background: white; |
| 7 display: -webkit-box; | 7 display: -webkit-box; |
| 8 height: 100%; | 8 height: 100%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 overflow: hidden; | 10 overflow: hidden; |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 30 | 30 |
| 31 body #main:after { | 31 body #main:after { |
| 32 content: ''; | 32 content: ''; |
| 33 display: block; | 33 display: block; |
| 34 } | 34 } |
| 35 | 35 |
| 36 /* Layout: Sidebar */ | 36 /* Layout: Sidebar */ |
| 37 | 37 |
| 38 .sidebar { | 38 .sidebar { |
| 39 -webkit-user-select: none; | 39 -webkit-user-select: none; |
| 40 border: 1px solid #a0a0a0; | |
| 40 background: white; | 41 background: white; |
| 41 height: 100%; | 42 height: 100%; |
| 42 overflow-x: hidden; | 43 overflow-x: hidden; |
| 43 overflow-y: auto; | 44 overflow-y: auto; |
| 44 position: relative; | 45 position: relative; |
| 45 width: 310px; | 46 width: 310px; |
| 46 z-index: 2000; | 47 z-index: 2000; |
| 47 } | 48 } |
| 48 | 49 |
| 49 .sidebar header { | 50 .sidebar header { |
| (...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 715 -webkit-animation-delay: 300ms; | 716 -webkit-animation-delay: 300ms; |
| 716 } | 717 } |
| 717 | 718 |
| 718 #two-sided-div { | 719 #two-sided-div { |
| 719 margin-top: 10px; | 720 margin-top: 10px; |
| 720 } | 721 } |
| 721 | 722 |
| 722 input[disabled] + label { | 723 input[disabled] + label { |
| 723 color: gray; | 724 color: gray; |
| 724 } | 725 } |
| OLD | NEW |