OLD | NEW |
---|---|
1 html { | 1 html { |
2 height: 100%; | 2 height: 100%; |
3 } | 3 } |
4 | 4 |
5 body { | 5 body { |
6 height: 100%; | 6 height: 100%; |
7 width: 100%; | 7 width: 100%; |
8 position: relative; | 8 position: relative; |
9 overflow: hidden; | 9 overflow: hidden; |
10 margin: 0; | 10 margin: 0; |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
92 font-size: 10px !important; | 92 font-size: 10px !important; |
93 font-family: monospace; | 93 font-family: monospace; |
94 } | 94 } |
95 | 95 |
96 body /deep/ .highlighted-search-result { | 96 body /deep/ .highlighted-search-result { |
97 border-radius: 1px; | 97 border-radius: 1px; |
98 padding: 1px; | 98 padding: 1px; |
99 margin: -1px; | 99 margin: -1px; |
100 background-color: rgba(255, 255, 0, 0.8); | 100 background-color: rgba(255, 255, 0, 0.8); |
101 } | 101 } |
102 | |
103 | |
104 /* TODO: Come up with a design */ | |
lushnikov
2014/11/07 16:27:19
Please, remove the comment. We'll anyway land this
aknudsen
2014/11/08 12:00:53
Acknowledged.
aknudsen
2014/11/09 00:02:14
Done.
| |
105 .current-search-result { | |
lushnikov
2014/11/07 16:27:19
given the suggestion in one of other comments to n
aknudsen
2014/11/08 12:00:52
Acknowledged.
aknudsen
2014/11/09 00:02:14
Done.
| |
106 border-radius: 1px; | |
107 padding: 1px; | |
108 margin: -1px; | |
109 background-color: rgba(255, 127, 0, 0.8); | |
110 } | |
OLD | NEW |