OLD | NEW |
(Empty) | |
| 1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 /* |
| 6 * The #doxygen-ref is an id tag which encompasses code generated by doxygen |
| 7 * and allows override of standard html tags while not affecting the rest |
| 8 * of the page such as sidebars. |
| 9 */ |
| 10 |
| 11 #doxygen-ref table { |
| 12 margin: 0; |
| 13 } |
| 14 |
| 15 #doxygen-ref td { |
| 16 border: none; |
| 17 } |
| 18 |
| 19 #doxygen-ref tr { |
| 20 border: none; |
| 21 } |
| 22 |
| 23 #doxygen-ref .memitem { |
| 24 margin-top: 2em; |
| 25 } |
| 26 |
| 27 #doxygen-ref .memproto { |
| 28 background-color: #e1e1e4; |
| 29 border: 1px solid #e1e1f4; |
| 30 font-weight: bold; |
| 31 border-radius: 8px; |
| 32 -moz-border-radius: 8px; |
| 33 -webkit-border-radius: 8px; |
| 34 } |
OLD | NEW |