Mercurial > p > roundup > code
annotate share/roundup/templates/devel/html/style.css @ 7531:913a73b9fab5 2.3.0
Update for 2.3.0 release
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 12 Jul 2023 23:00:25 -0400 |
| parents | 7ed1893ea3ac |
| children |
| rev | line source |
|---|---|
| 4434 | 1 /* layout*/ |
| 2 body | |
| 3 { | |
| 4 font-family: sans-serif, Arial, Helvetica; | |
| 5 background-color: white; | |
| 6 color: #333; | |
| 7 margin:0; | |
| 8 padding: 0 3em 0 13em; | |
| 9 } | |
| 10 body > .header { margin: 0 0 0 -13em;} | |
| 11 body > .footer { margin: 0 0 0 -13em; clear:both;} | |
| 12 body > .navigation | |
| 13 { | |
| 14 margin-left: -13em; | |
| 15 width: 13em; | |
| 16 float: left; | |
| 17 } | |
| 18 body > .content | |
| 19 { | |
| 20 width: 100%; | |
| 21 margin: 0; | |
| 22 } | |
| 23 body > .header > #searchbox { position: absolute; right: 1em; top: 1em;} | |
| 24 | |
| 25 /* style */ | |
| 26 | |
| 27 .footer { padding: 1em;} | |
| 28 | |
| 29 :link { color: #bb0000; text-decoration: none;} | |
| 30 :visited { color: #770000; text-decoration: none;} | |
| 31 | |
| 32 .header h1 { margin-left: 1em; } | |
| 33 | |
| 34 body | |
| 35 { | |
| 36 font-family: sans-serif, Arial, Helvetica; | |
| 37 background-color: #f5f5f5; | |
| 38 color: #333; | |
| 39 } | |
| 40 | |
| 41 .menu { padding: 0; margin-right: 1em;} | |
| 42 .menu ul | |
| 43 { | |
| 44 padding: 0; | |
| 45 margin: 0; | |
| 46 } | |
| 47 .menu li | |
| 48 { | |
| 49 margin: 5pt 0; | |
| 50 } | |
| 51 .menu > ul > li > * | |
| 52 { | |
| 53 display: block; | |
| 54 padding: 2pt 2pt 2pt 10pt; | |
| 55 border: solid thin #dadada; | |
| 56 background-color:#ffffff; | |
| 57 } | |
| 58 .menu > ul > li.current > * | |
| 59 { | |
| 60 background-color:#dddddd; | |
| 61 } | |
| 62 | |
| 63 .menu ul li:first-child { margin-top:0;} | |
| 64 .menu ul { list-style-type:none;} | |
| 65 | |
| 66 /* sub-menus are indented */ | |
| 67 .menu > ul > li > ul, | |
| 68 .menu > ul > li.current > ul | |
| 69 { | |
| 70 border: none; | |
| 71 background-color: inherit; | |
| 72 margin: 0; | |
| 73 } | |
| 74 .menu ul ul | |
| 75 { | |
| 76 margin-left: 2em; | |
| 77 font-size: smaller; | |
| 78 margin: 0 0 0 5pt; | |
| 79 } | |
| 80 | |
| 81 /* sub-menu items draw a separator */ | |
| 82 .menu ul ul > li | |
| 83 { | |
| 84 margin: 0; | |
| 85 padding: 0; | |
| 86 border: none; | |
| 87 border-top: solid thin #dadada; | |
| 88 background-color: inherit; | |
| 89 } | |
| 90 .menu ul ul > li:first-child | |
| 91 { | |
| 92 border-top: none; | |
| 93 } | |
| 94 | |
| 95 .footer | |
| 96 { | |
| 97 font-size: small; | |
| 98 text-align: center; | |
| 99 color: lightgrey; | |
| 100 } | |
| 101 | |
| 102 .content | |
| 103 { | |
| 104 padding: 1em; | |
| 105 border: solid thin #dadada; | |
| 106 background-color: #ffffff; | |
| 107 } | |
| 108 | |
|
4862
7ed1893ea3ac
issue2550793: Wrap messages with very long lines in the web interface.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
4434
diff
changeset
|
109 pre { |
|
7ed1893ea3ac
issue2550793: Wrap messages with very long lines in the web interface.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
4434
diff
changeset
|
110 white-space: pre-wrap; |
|
7ed1893ea3ac
issue2550793: Wrap messages with very long lines in the web interface.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
4434
diff
changeset
|
111 } |
|
7ed1893ea3ac
issue2550793: Wrap messages with very long lines in the web interface.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
4434
diff
changeset
|
112 |
| 4434 | 113 #search { text-align: right; } |
| 114 | |
| 115 p.ok-message | |
| 116 { | |
| 117 background-color: #eeffee; | |
| 118 border: 1px solid #009900; | |
| 119 padding: 5px; | |
| 120 color: #009900; | |
| 121 font-weight: bold; | |
| 122 } | |
| 123 p.error-message | |
| 124 { | |
| 125 background-color: #ffeeee; | |
| 126 border: 1px solid #990000; | |
| 127 padding: 5px; | |
| 128 color: #990000; | |
| 129 font-weight: bold; | |
| 130 } | |
| 131 | |
| 132 table | |
| 133 { | |
| 134 border-collapse: collapse; | |
| 135 border-spacing: 1px; | |
| 136 width: 100%; | |
| 137 background-color: #fafafa; | |
| 138 } | |
| 139 | |
| 140 tr.odd { background-color:#f5f5f5; } | |
| 141 | |
| 142 input, textarea { border-width: 1px; } |
