| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 vertical-align: top; | 72 vertical-align: top; |
| 73 } | 73 } |
| 74 | 74 |
| 75 #link-handling { | 75 #link-handling { |
| 76 position: absolute; | 76 position: absolute; |
| 77 top: 10px; | 77 top: 10px; |
| 78 right: 0; | 78 right: 0; |
| 79 padding-right: 4px; | 79 padding-right: 4px; |
| 80 } | 80 } |
| 81 | 81 |
| 82 /* This checkbox just overlaps the main content on smalls screens and doesn't |
| 83 make a lot of sense as currently designed.*/ |
| 84 @media only screen and (max-width: 400px) { |
| 85 #link-handling { display: none; } |
| 86 } |
| 87 |
| 82 #new-window-for-links { | 88 #new-window-for-links { |
| 83 vertical-align: text-bottom; | 89 vertical-align: text-bottom; |
| 84 } | 90 } |
| 85 | 91 |
| 86 #onebar details { | 92 #onebar details { |
| 87 padding-left: 2px; | 93 padding-left: 2px; |
| 88 padding-right: 2px; | 94 padding-right: 2px; |
| 89 display: inline-block; | 95 display: inline-block; |
| 90 vertical-align: top; | 96 vertical-align: top; |
| 91 } | 97 } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 111 .topbar { | 117 .topbar { |
| 112 display: flex; | 118 display: flex; |
| 113 align-items: center; | 119 align-items: center; |
| 114 } | 120 } |
| 115 | 121 |
| 116 .treestatus { | 122 .treestatus { |
| 117 display: inline-block; | 123 display: inline-block; |
| 118 margin: 4px; | 124 margin: 4px; |
| 119 font-size: 11px; | 125 font-size: 11px; |
| 120 } | 126 } |
| OLD | NEW |