| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 6 Code distributed by Google as part of the polymer project is also | 6 Code distributed by Google as part of the polymer project is also |
| 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 #drawerPanel, [drawer] { | 10 #drawerPanel, [drawer] { |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 background-color: #fff; | 117 background-color: #fff; |
| 118 letter-spacing: 0.05em; | 118 letter-spacing: 0.05em; |
| 119 font-size: 24px; | 119 font-size: 24px; |
| 120 font-weight: 400; | 120 font-weight: 400; |
| 121 color: #5265a2; | 121 color: #5265a2; |
| 122 } | 122 } |
| 123 | 123 |
| 124 #frame { | 124 #frame { |
| 125 display: block; | 125 display: block; |
| 126 width: 100%; | 126 width: 100%; |
| 127 min-height: 500px; | 127 min-height: 600px; |
| 128 border: none; | 128 border: none; |
| 129 } | 129 } |
| 130 | 130 |
| 131 /* narrow layout */ | 131 /* narrow layout */ |
| 132 #drawerPanel[narrow] [main] { | 132 #drawerPanel[narrow] [main] { |
| 133 background-color: #fff; | 133 background-color: #fff; |
| 134 } | 134 } |
| 135 | 135 |
| 136 #drawerPanel[narrow] #card { | 136 #drawerPanel[narrow] #card { |
| 137 margin: 0; | 137 margin: 0; |
| 138 box-shadow: none; | 138 box-shadow: none; |
| 139 position: absolute; | 139 position: absolute; |
| 140 top: 0px; | 140 top: 0px; |
| 141 right: 0; | 141 right: 0; |
| 142 bottom: 0; | 142 bottom: 0; |
| 143 left: 0; | 143 left: 0; |
| 144 } | 144 } |
| 145 | 145 |
| 146 #drawerPanel[narrow] #frame { | 146 #drawerPanel[narrow] #frame { |
| 147 position: absolute; |
| 147 min-height: 100%; | 148 min-height: 100%; |
| 148 } | 149 } |
| 149 | 150 |
| 150 #drawerPanel[narrow] #frameContainer { | 151 #drawerPanel[narrow] #frameContainer { |
| 151 position: absolute; | 152 position: absolute; |
| 152 top: 0; | 153 top: 0; |
| 153 right: 0; | 154 right: 0; |
| 154 bottom: 0; | 155 bottom: 0; |
| 155 left: 0; | 156 left: 0; |
| 156 overflow: auto; | 157 overflow: auto; |
| 157 } | 158 } |
| OLD | NEW |