Changeset 90:ae439159d833
- Timestamp:
- 02/08/12 10:16:39 (13 years ago)
- Author:
- František Kučera <franta-hg@…>
- Branch:
- default
- Message:
-
#15 Tabulky: čísla budou zarovnaná doprava
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
r86
|
r90
|
|
8 | 8 | a img { |
9 | 9 | border: none; |
| 10 | } |
| 11 | |
| 12 | a:hover { |
| 13 | text-shadow: 1px 1px 1px #eee; |
| 14 | } |
| 15 | a[href^="https://"]:hover { |
| 16 | text-shadow: 1px 1px 1px #6f6; |
| 17 | } |
| 18 | a[href^="http://"]:hover { |
| 19 | text-shadow: 1px 1px 1px #66f; |
10 | 20 | } |
11 | 21 | |
… |
… |
|
45 | 55 | #nabídka a:hover { |
46 | 56 | color: #77bed2; |
| 57 | text-shadow: none; |
47 | 58 | } |
48 | 59 | |
… |
… |
|
117 | 128 | padding-right: 6px; |
118 | 129 | } |
| 130 | td.číslo { |
| 131 | text-align: right; |
| 132 | } |
119 | 133 | thead tr { |
120 | 134 | background: grey; |
-
r87
|
r90
|
|
96 | 96 | */ |
97 | 97 | PrintStream vstupProcesu = new PrintStream(p.getOutputStream()); |
98 | | vstupProcesu.print(zdroják.toString()); |
| 98 | vstupProcesu.print(zdroják); |
99 | 99 | vstupProcesu.close(); |
100 | 100 | |
-
r71
|
r90
|
|
69 | 69 | <xsl:for-each select="tokenize(., $oddělovač)"> |
70 | 70 | <xsl:if test="normalize-space(.)"> |
71 | | <td><xsl:value-of select="normalize-space(.)"/></td> |
| 71 | <xsl:element name="td"> |
| 72 | <xsl:if test="number(normalize-space(.))"> |
| 73 | <xsl:attribute name="class">číslo</xsl:attribute> |
| 74 | </xsl:if> |
| 75 | <xsl:value-of select="normalize-space(.)"/> |
| 76 | </xsl:element> |
72 | 77 | </xsl:if> |
73 | 78 | </xsl:for-each> |