Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 iframe.widget { | |
| 2 position: absolute; | |
| 3 width: 100%; | |
|
lushnikov
2016/09/29 21:10:33
i failed to diff this against the other version ma
einbinder
2016/09/29 22:33:17
Done.
| |
| 4 height: 100%; | |
| 5 left: 10px; | |
| 6 right: 10px; | |
| 7 top: 10px; | |
| 8 bottom: 10px; | |
| 9 } | |
| 10 | |
| 11 .hidden { | |
| 12 display: none !important; | |
| 13 } | |
| 14 | |
| 15 .monospace { | |
| 16 font-size: 10px !important; | |
| 17 font-family: monospace; | |
| 18 } | |
| 19 | |
| 20 .highlighted-search-result { | |
| 21 border-radius: 1px; | |
| 22 padding: 1px; | |
| 23 margin: -1px; | |
| 24 background-color: rgba(255, 255, 0, 0.8); | |
| 25 } | |
| 26 | |
| 27 .-theme-with-dark-background .highlighted-search-result, | |
| 28 :host-context(.-theme-with-dark-background) .highlighted-search-result { | |
| 29 background-color: hsl(133, 100%, 30%); | |
| 30 color: #333; | |
| 31 } | |
| 32 | |
| 33 .link { | |
| 34 cursor: pointer; | |
| 35 text-decoration: underline; | |
| 36 color: rgb(17, 85, 204); | |
| 37 } | |
| 38 | |
| 39 input { | |
| 40 background-color: white; | |
| 41 } | |
| 42 | |
| 43 :host-context(.-theme-with-dark-background) input[type="checkbox"]::not(.-theme- preserve) { | |
| 44 -webkit-filter: invert(80%); | |
| 45 } | |
| 46 | |
| 47 input[type="search"]:focus, | |
| 48 input[type="text"]:focus { | |
| 49 outline: auto rgb(56, 121, 217); | |
| 50 } | |
| 51 | |
| 52 .highlighted-search-result.current-search-result { | |
| 53 border-radius: 1px; | |
| 54 padding: 100px; | |
| 55 background-color: rgba(255, 127, 0, 0.8); | |
| 56 } | |
| 57 | |
| 58 .dimmed { | |
| 59 opacity: 0.6; | |
| 60 } | |
| 61 | |
| 62 .editing { | |
| 63 -webkit-user-select: text; | |
| 64 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), | |
| 65 0 2px 4px rgba(0, 0, 0, 0.2), | |
| 66 0 2px 6px rgba(0, 0, 0, 0.1); | |
| 67 background-color: white; | |
| 68 -webkit-user-modify: read-write-plaintext-only; | |
| 69 text-overflow: clip !important; | |
| 70 padding-left: 2px; | |
| 71 margin-left: -2px; | |
| 72 padding-right: 2px; | |
| 73 margin-right: -2px; | |
| 74 margin-bottom: -1px; | |
| 75 padding-bottom: 1px; | |
| 76 opacity: 1.0 !important; | |
| 77 } | |
| OLD | NEW |