source: trunk/FACT++/www/smartfact/index.css@ 13804

Last change on this file since 13804 was 13804, checked in by tbretz, 12 years ago
Implemented the possibility to display always a square graphics and allow scrollbars if the table overflows in y
File size: 3.5 KB
Line 
1body {
2 overflow-x: hidden;
3 overflow-y: auto;
4}
5
6.thead {
7 background: #23a0da url(img/gradient.png) bottom left repeat-x;
8 color: #09415b;
9 padding: 2px 6px 2px 6px;
10/* padding: 4px 6px;*/
11 border-color: #1379a8;
12 border-style: solid;
13 border-width: 1px 1px 1px 1px;
14 text-shadow: 0 1px 0 #37b2eb;
15 /*-moz-border-radius: 5px 5px 0 0;*/
16 /*-webkit-border-top-left-radius: 5px;*/
17 /*-webkit-border-top-right-radius: 5px;*/
18 font-size: 13px;
19}
20
21.thead a {
22 color: #09415b;
23 text-decoration: none;
24}
25/*
26.tcat {
27 background: #444;
28 color: #fff;
29 padding: 4px 6px;
30 font-size: 12px;
31}
32
33.tcat a {
34 color: #fff;
35}
36*/
37
38.tcol0 {
39 border-left: 1px solid #ccc;
40 border-bottom: 1px solid #ccc;
41 text-align:left;
42 padding-left:5px;
43 margin:0;
44}
45
46.tcol1 {
47 border-bottom: 1px solid #ccc;
48 padding-left:3px;
49 padding-right:3px;
50 margin:0;
51}
52
53.tcol2 {
54 border-right: 1px solid #ccc;
55 border-bottom: 1px solid #ccc;
56 text-align:right;
57 margin:0;
58 padding-right:5px;
59}
60
61.description {
62 text-align:left;
63}
64
65.tcell1 {
66 font-weight:bolder;
67 text-align:left;
68}
69
70.tcell2 {
71 text-align:right;
72}
73
74
75.tcell3 {
76 text-align:center;
77}
78
79/*
80.trow3 {
81 background: #eee;
82 border-bottom: 1px solid #ccc;
83 padding: 4px;
84}
85*/
86
87.icon_black {
88 -webkit-box-shadow: rgba(255, 255, 255, 0.398438) 0px 1px 0px 0px;
89 /*background-attachment: scroll;*/
90 /*background-clip: border-box;*/
91 background-color: rgba(0, 0, 0, 0);
92 background-image: url(img/icons-18-black.png);
93 /*background-origin: padding-box;*/
94 background-repeat: no-repeat;
95 box-shadow: rgba(255, 255, 255, 0.398438) 0px 1px 0px 0px;
96 padding: 0;
97 margin:0;
98 white-space: nowrap;
99 width: 18px;
100 height: 18px;
101 zoom: 1;
102}
103
104.icon_white {
105 -webkit-box-shadow: rgba(255, 255, 255, 0.398438) 1px 1px 0px 0px;
106 /*background-attachment: scroll;*/
107 /*background-clip: border-box;*/
108 background-color: rgba(0, 0, 0, 0.398438);
109 background-image: url(img/icons-18-white.png);
110 /*background-origin: padding-box;*/
111 background-repeat: no-repeat;
112 box-shadow: rgba(255, 255, 255, 0.398438) 1px 1px 0px 0px;
113 padding: 0;
114 margin:0;
115 white-space: nowrap;
116 width: 18px;
117 height: 18px;
118 zoom: 1;
119}
120
121.icon_color {
122 /*-webkit-box-shadow: rgba(255, 255, 255, 0.398438) 1px 1px 0px 0px;*/
123 /*background-attachment: scroll;*/
124 /*background-clip: border-box;*/
125 /*background-color: rgba(0, 0, 0, 0.398438);*/
126 background-image: url(img/icons.png);
127 /*background-origin: padding-box;*/
128 background-repeat: no-repeat;
129 /*box-shadow: rgba(255, 255, 255, 0.398438) 1px 1px 0px 0px;*/
130 padding: 0;
131 margin:0;
132 white-space: nowrap;
133 width: 18px;
134 height: 18px;
135 zoom: 1.;
136}
137
138/*
139.trow_shaded {
140 background: #ffdde0;
141 border-bottom: 1px solid #fcc;
142}
143
144.trow_selected td {
145 background: #FFFBD9;
146}
147
148.trow_sep {
149 background: #ddd;
150 color: #555;
151 padding: 4px;
152 text-align: center;
153
154 font-size: 12px;
155 font-weight: bold;
156}
157*/
158.tfoot {
159 background: #737373 url(img/gradient.png) bottom left repeat-x;
160 color: #fff;
161 border-color: #525252;
162 border-style: solid;
163 border-width: 2px 1px 1px 1px;
164 vertical-align: middle;
165 padding: 0px 6px 4px 6px;
166 /*-moz-border-radius: 0 0 5px 5px;*/
167 /*-webkit-border-bottom-left-radius: 5px;*/
168 /*-webkit-border-bottom-right-radius: 5px;*/
169 text-shadow: 0 -1px 0 #333;
170 font-size: 12px;
171}
172
173.tfoot a {
174 color: #fff;
175 text-decoration: none;
176}
177
178.container
179{
180 padding: 0;
181 margin: 0;
182 width: 100%;
183 border-left: 1px solid #ccc;
184 border-right: 1px solid #ccc;
185}
Note: See TracBrowser for help on using the repository browser.