OLD | NEW |
1 /* | 1 /* |
2 | 2 |
3 General CSS Notes | 3 General CSS Notes |
4 ================= | 4 ================= |
5 | 5 |
6 z-indexes | 6 z-indexes |
7 ---------- | 7 ---------- |
8 The rule of thumb for the z-index values to use is setup below | 8 The rule of thumb for the z-index values to use is setup below |
9 | 9 |
10 - Ground level: < 100 is for things that are flat on the surface without | 10 - Ground level: < 100 is for things that are flat on the surface without |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 float: left; | 192 float: left; |
193 } | 193 } |
194 ul.menu { | 194 ul.menu { |
195 margin: 0; | 195 margin: 0; |
196 padding: 0; | 196 padding: 0; |
197 list-style: none; | 197 list-style: none; |
198 } | 198 } |
199 .alert { | 199 .alert { |
200 letter-spacing: normal; | 200 letter-spacing: normal; |
201 } | 201 } |
| 202 .clearall { |
| 203 clear: both; |
| 204 } |
202 .hidden { | 205 .hidden { |
203 display: none; | 206 display: none; |
204 visibility: hidden; | 207 visibility: hidden; |
205 } | 208 } |
206 .divider { | 209 .divider { |
207 padding: 5px; | 210 padding: 5px; |
208 } | 211 } |
209 table tr.highlighted td { | 212 table tr.highlighted td { |
210 background-color: pink !important; | 213 background-color: pink !important; |
211 } | 214 } |
(...skipping 1732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1944 @import "browser/tabview.less"; | 1947 @import "browser/tabview.less"; |
1945 @import "juju-inspector.less"; | 1948 @import "juju-inspector.less"; |
1946 | 1949 |
1947 /** Views **/ | 1950 /** Views **/ |
1948 @import "browser/editorial.less"; | 1951 @import "browser/editorial.less"; |
1949 @import "browser/minimized.less"; | 1952 @import "browser/minimized.less"; |
1950 @import "browser/search.less"; | 1953 @import "browser/search.less"; |
1951 | 1954 |
1952 /** Cookies **/ | 1955 /** Cookies **/ |
1953 @import "cookies.less"; | 1956 @import "cookies.less"; |
OLD | NEW |