| OLD | NEW |
| 1 html { | 1 html { |
| 2 height: 100%; | 2 height: 100%; |
| 3 } | 3 } |
| 4 | 4 |
| 5 body { | 5 body { |
| 6 cursor: default; | 6 cursor: default; |
| 7 position: absolute; | 7 position: absolute; |
| 8 top: 0; | 8 top: 0; |
| 9 bottom: 0; | 9 bottom: 0; |
| 10 left: 0; | 10 left: 0; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 background-color: rgba(125, 173, 217, 0.5); | 149 background-color: rgba(125, 173, 217, 0.5); |
| 150 z-index: 250; | 150 z-index: 250; |
| 151 } | 151 } |
| 152 | 152 |
| 153 .overview-grid-window { | 153 .overview-grid-window { |
| 154 background-color: white; | 154 background-color: white; |
| 155 position: absolute; | 155 position: absolute; |
| 156 left: 0; | 156 left: 0; |
| 157 right: 0; | 157 right: 0; |
| 158 top: 0; | 158 top: 0; |
| 159 bottom: 60px; | 159 height: 20px; |
| 160 z-index: 150; | 160 z-index: 150; |
| 161 } | 161 } |
| 162 | 162 |
| 163 .overview-grid-dividers-background { | 163 .overview-grid-dividers-background { |
| 164 left: 0%; | 164 left: 0%; |
| 165 right: 0%; | 165 right: 0%; |
| 166 top: 0px; | 166 top: 0px; |
| 167 bottom: 60px; | 167 height: 20px; |
| 168 background-color: black; | 168 background-color: black; |
| 169 position: absolute; | 169 position: absolute; |
| 170 } | 170 } |
| 171 | 171 |
| 172 .overview-grid-window-rulers { | 172 .overview-grid-window-rulers { |
| 173 top: 0; | 173 top: 0; |
| 174 bottom: 0; | 174 bottom: 0; |
| 175 position: absolute; | 175 position: absolute; |
| 176 opacity: 0.2; | 176 opacity: 0.2; |
| 177 border-right: 1px solid black; | 177 border-right: 1px solid black; |
| 178 border-left: 1px solid black; | 178 border-left: 1px solid black; |
| 179 z-index: 150; | 179 z-index: 150; |
| 180 pointer-events: none; | 180 pointer-events: none; |
| 181 } | 181 } |
| 182 | 182 |
| 183 .overview-grid-window-resizer { | 183 .overview-grid-window-resizer { |
| 184 position: absolute; | 184 position: absolute; |
| 185 top: 0px; | 185 top: 0px; |
| 186 bottom: 60px; | 186 height: 20px; |
| 187 width: 5px; | 187 width: 5px; |
| 188 margin-left: -3px; | 188 margin-left: -3px; |
| 189 margin-right: -2px; | 189 margin-right: -2px; |
| 190 background-color: rgb(153, 153, 153); | 190 background-color: rgb(153, 153, 153); |
| 191 z-index: 500; | 191 z-index: 500; |
| 192 cursor: ew-resize; | 192 cursor: ew-resize; |
| 193 -webkit-border-radius: 2px; | 193 -webkit-border-radius: 2px; |
| 194 -webkit-box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1
px 0; | 194 -webkit-box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1
px 0; |
| 195 } | 195 } |
| 196 | 196 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 white-space: nowrap; | 235 white-space: nowrap; |
| 236 text-overflow: ellipsis; | 236 text-overflow: ellipsis; |
| 237 overflow: hidden; | 237 overflow: hidden; |
| 238 line-height: 16px; | 238 line-height: 16px; |
| 239 } | 239 } |
| 240 | 240 |
| 241 .sidebar-label { | 241 .sidebar-label { |
| 242 font-size: 11px; | 242 font-size: 11px; |
| 243 } | 243 } |
| 244 | 244 |
| OLD | NEW |