Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 252 padding: 2px 4px 0 0; | 252 padding: 2px 4px 0 0; |
| 253 list-style: none; | 253 list-style: none; |
| 254 clear: both; | 254 clear: both; |
| 255 display: flex; | 255 display: flex; |
| 256 } | 256 } |
| 257 | 257 |
| 258 .styles-section.matched-styles .style-properties { | 258 .styles-section.matched-styles .style-properties { |
| 259 padding-left: 0; | 259 padding-left: 0; |
| 260 } | 260 } |
| 261 | 261 |
| 262 .styles-element-state-pane { | |
| 263 overflow: hidden; | |
| 264 height: 66px; | |
| 265 padding-left: 2px; | |
| 266 border-bottom: 1px solid rgb(189, 189, 189); | |
| 267 } | |
| 268 | |
| 269 @keyframes styles-element-state-pane-slidein { | 262 @keyframes styles-element-state-pane-slidein { |
| 270 from { | 263 from { |
| 271 margin-top: -60px; | 264 margin-top: -60px; |
| 272 } | 265 } |
| 273 to { | 266 to { |
| 274 margin-top: 0px; | 267 margin-top: 0px; |
| 275 } | 268 } |
| 276 } | 269 } |
| 277 | 270 |
| 278 @keyframes styles-element-state-pane-slideout { | 271 @keyframes styles-element-state-pane-slideout { |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 289 animation-duration: 0.1s; | 282 animation-duration: 0.1s; |
| 290 animation-direction: normal; | 283 animation-direction: normal; |
| 291 } | 284 } |
| 292 | 285 |
| 293 .styles-sidebar-toolbar-pane-container { | 286 .styles-sidebar-toolbar-pane-container { |
| 294 position: relative; | 287 position: relative; |
| 295 overflow: hidden; | 288 overflow: hidden; |
| 296 flex-shrink: 0; | 289 flex-shrink: 0; |
| 297 } | 290 } |
| 298 | 291 |
| 299 .styles-element-state-pane { | |
|
luoe
2017/06/06 18:38:17
This selector is a dupe of L262. In the new file,
| |
| 300 background-color: #f3f3f3; | |
| 301 border-bottom: 1px solid rgb(189, 189, 189); | |
| 302 margin-top: 0; | |
| 303 } | |
| 304 | |
| 305 .styles-element-classes-pane { | |
| 306 background-color: #f3f3f3; | |
| 307 border-bottom: 1px solid rgb(189, 189, 189); | |
| 308 padding: 6px 2px 2px; | |
| 309 } | |
| 310 | |
| 311 .styles-element-classes-container { | |
| 312 display: flex; | |
| 313 flex-wrap: wrap; | |
| 314 justify-content: flex-start; | |
| 315 } | |
| 316 | |
| 317 .styles-element-classes-pane label { | |
| 318 margin-right: 15px; | |
| 319 } | |
| 320 | |
| 321 .styles-element-classes-pane .title-container { | |
| 322 padding-bottom: 2px; | |
| 323 } | |
| 324 | |
| 325 .styles-element-classes-pane .new-class-input { | |
| 326 padding-left: 3px; | |
| 327 padding-right: 3px; | |
| 328 overflow: hidden; | |
| 329 border: 1px solid #ddd; | |
| 330 line-height: 15px; | |
| 331 margin-left: 3px; | |
| 332 width: calc(100% - 7px); | |
| 333 background-color: #fff; | |
| 334 cursor: text; | |
| 335 } | |
| 336 | |
| 337 .styles-element-state-pane > div { | |
| 338 margin: 8px 4px 6px; | |
| 339 } | |
| 340 | |
| 341 .styles-element-state-pane > table { | |
| 342 width: 100%; | |
| 343 border-spacing: 0; | |
| 344 } | |
| 345 | |
| 346 .styles-element-state-pane td { | |
| 347 padding: 0; | |
| 348 } | |
| 349 | |
| 350 .styles-animations-controls-pane > * { | 292 .styles-animations-controls-pane > * { |
| 351 margin: 6px 4px; | 293 margin: 6px 4px; |
| 352 } | 294 } |
| 353 | 295 |
| 354 .styles-animations-controls-pane { | 296 .styles-animations-controls-pane { |
| 355 border-bottom: 1px solid rgb(189, 189, 189); | 297 border-bottom: 1px solid rgb(189, 189, 189); |
| 356 height: 60px; | 298 height: 60px; |
| 357 overflow: hidden; | 299 overflow: hidden; |
| 358 background-color: #eee; | 300 background-color: #eee; |
| 359 } | 301 } |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 531 display: flex; | 473 display: flex; |
| 532 flex-direction: row; | 474 flex-direction: row; |
| 533 align-items: center; | 475 align-items: center; |
| 534 } | 476 } |
| 535 | 477 |
| 536 .elements-tree-header-frame { | 478 .elements-tree-header-frame { |
| 537 margin-left: 6px; | 479 margin-left: 6px; |
| 538 margin-right: 6px; | 480 margin-right: 6px; |
| 539 flex: none; | 481 flex: none; |
| 540 } | 482 } |
| OLD | NEW |