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