Commit b499110f6c514c297cd4b0312d802f343a34d92f
1 parent
9248e117
Exists in
master
and in
39 other branches
Fixing css for trac 1.0
Showing
1 changed file
with
26 additions
and
2 deletions
Show diff stats
src/proxy/diazo/trac.xml
| @@ -10,11 +10,35 @@ | @@ -10,11 +10,35 @@ | ||
| 10 | 10 | ||
| 11 | <after theme-children="/html/head"> | 11 | <after theme-children="/html/head"> |
| 12 | <style> | 12 | <style> |
| 13 | - .navbar .nav ul { font-size: 14px; text-align: left; } | ||
| 14 | - .navbar .nav li { border: 0; padding: 0; } | 13 | + .navbar .nav ul { font-size: 14px; text-align: left; padding: 5px 0; } |
| 14 | + .navbar .nav li { border: 0; padding: 0; white-space: normal; display: list-item;} | ||
| 15 | :link:not(.btn), | 15 | :link:not(.btn), |
| 16 | :visited:not(.btn) { border: 0; color: rgb(66, 139, 202); } | 16 | :visited:not(.btn) { border: 0; color: rgb(66, 139, 202); } |
| 17 | :link, :visited { border: 0; } | 17 | :link, :visited { border: 0; } |
| 18 | + h1 { font-size: 24px; margin: 0.15em 1em 0.5em 0px; } | ||
| 19 | + h2 { font-size: 20px } | ||
| 20 | + h3 { font-size: 16px } | ||
| 21 | + h4 { font-size: 14px } | ||
| 22 | + input[type="checkbox"], input[type="radio"] { margin: 0 4px; } | ||
| 23 | + fieldset { padding: 1em; margin: 1em 0; border: 1px solid rgb(215, 215, 215); } | ||
| 24 | + label { font-weight: 400; } | ||
| 25 | + legend { margin-bottom: 0; width: auto; } | ||
| 26 | + input, textarea, select { margin: 2px; } | ||
| 27 | + | ||
| 28 | + .wikitoolbar, | ||
| 29 | + .wikitoolbar:before, | ||
| 30 | + .wikitoolbar:after { | ||
| 31 | + -moz-box-sizing: content-box; | ||
| 32 | + -webkit-box-sizing: content-box; | ||
| 33 | + } | ||
| 34 | + .wikitoolbar :link, | ||
| 35 | + .wikitoolbar :visited { | ||
| 36 | + border-width: 1px; | ||
| 37 | + border-style: solid; | ||
| 38 | + border-color: #fff #fff #fff #ccc; | ||
| 39 | + -moz-box-sizing: content-box; | ||
| 40 | + -webkit-box-sizing: content-box; | ||
| 41 | + } | ||
| 18 | </style> | 42 | </style> |
| 19 | </after> | 43 | </after> |
| 20 | 44 |