]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - html/html/themes/ipfire/include/css/style-rounded.css
Merge branch 'fifteen' of ssh://git.ipfire.org/pub/git/ipfire-2.x into fifteen-layout
[people/teissler/ipfire-2.x.git] / html / html / themes / ipfire / include / css / style-rounded.css
CommitLineData
935f311e
MT
1
2.bigbox {
3 margin-top: 1em;
4 border-radius: 8px 8px 8px 8px;
5 -webkit-border-radius: 8px 8px 8px 8px;
6}
7
8#main_inner .post {
9 border-radius: 8px 8px 8px 8px;
10 -webkit-border-radius: 8px 8px 8px 8px;
11}
12
13#cssmenu a {
14 border-radius: 8px 8px 8px 8px;
15 -webkit-border-radius: 8px 8px 8px 8px;
16}
17
18#cssmenu .has-sub ul li a {
19 border-radius: 7px 7px 7px 7px;
20}
21
22#cssmenu .has-sub ul li:hover a {
23 box-shadow: inset 0 5px 1px rgba(0, 0, 0, 0.15);
24 -webkit-box-shadow: inset 0 5px 1px rgba(0, 0, 0, 0.15);
25}
26
27/* Table */
28/* when using class='bordered' after tabletag */
29
30table {
31 *border-collapse: collapse; /* IE7 and lower */
32 border-spacing: 0;
33}
34
918bacac 35.tbl th:first-child{
935f311e
MT
36 -moz-border-radius: 6px 0 0 0;
37 -webkit-border-radius: 6px 0 0 0;
38 border-radius: 6px 0 0 0;
935f311e
MT
39}
40
918bacac 41.tbl th:last-child {
935f311e
MT
42 -moz-border-radius: 0 6px 0 0;
43 -webkit-border-radius: 0 6px 0 0;
44 border-radius: 0 6px 0 0;
935f311e
MT
45}
46
918bacac 47.tbl th:only-child{
935f311e
MT
48 -moz-border-radius: 6px 6px 0 0;
49 -webkit-border-radius: 6px 6px 0 0;
50 border-radius: 6px 6px 0 0;
935f311e
MT
51}
52
918bacac 53.tbl tr:first-child td:first-child{
935f311e
MT
54 -moz-border-radius: 6px 0 0 0;
55 -webkit-border-radius: 6px 0 0 0;
56 border-radius: 6px 0 0 0;
935f311e
MT
57}
58
918bacac 59.tbl tr:first-child td:last-child{
935f311e
MT
60 -moz-border-radius: 0 6px 0 0;
61 -webkit-border-radius: 0 6px 0 0;
62 border-radius: 0 6px 0 0;
935f311e
MT
63}
64
918bacac 65.tbl tr:first-child td:only-child{
935f311e
MT
66 -moz-border-radius: 6px 6px 0 0;
67 -webkit-border-radius: 6px 6px 0 0;
68 border-radius: 6px 6px 0 0;
935f311e
MT
69}
70
918bacac 71.tbl tr:last-child td:first-child {
935f311e
MT
72 -moz-border-radius: 0 0 0 6px;
73 -webkit-border-radius: 0 0 0 6px;
74 border-radius: 0 0 0 6px;
935f311e
MT
75}
76
918bacac 77.tbl tr:last-child td:last-child {
935f311e
MT
78 -moz-border-radius: 0 0 6px 0;
79 -webkit-border-radius: 0 0 6px 0;
80 border-radius: 0 0 6px 0;
935f311e
MT
81}
82
918bacac 83.tbl tr:last-child td:only-child {
935f311e
MT
84 -moz-border-radius: 0 0 6px 6px;
85 -webkit-border-radius: 0 0 6px 6px;
86 border-radius: 0 0 6px 6px;
935f311e 87}