alecpl
2012-04-19 5d66a4bcf3ad5d584255184776f1f04451c929fc
commit | author | age
19b34b 1 /**
T 2  * Roundcube webmail CSS hacks for IE 7
3  *
4  * Copyright (c) 2012, The Roundcube Dev Team
5  *
6  * The contents are subject to the Creative Commons Attribution-ShareAlike
7  * License. It is allowed to copy, distribute, transmit and to adapt the work
8  * by keeping credits to the original autors in the README file.
9  * See http://creativecommons.org/licenses/by-sa/3.0/ for details.
10  *
11  * $Id$
12  */
13
14 input.button {
15     display: inline;
16     font-size: 90%;
17 }
18
19 a.iconbutton,
20 a.deletebutton,
21 .boxpagenav a.icon,
22 .pagenav a.button span.inner,
23 .boxfooter .listbutton .inner,
24 .attachmentslist li a.delete,
25 .attachmentslist li a.cancelupload,
26 #messagepreviewheader .iconlink {
27     /* workaround for text-indent which also offsets the background image */
28     text-indent: 0;
29     font-size: 0;
30     line-height: 0;
31     overflow: hidden;
32     text-align: right;
33     text-decoration: none;
34 }
35
36 .boxpagenav a.icon {
37     color: #bbd3da;
38 }
39
40 .pagenav a.button,
41 .pagenav a.button span.inner,
42 #messagepreviewheader .iconlink,
43 #uploadform a.iconlink {
44     display: inline;
45 }
46
ec366b 47 .dropbutton .dropbuttontip {
T 48     right: -2px;
49 }
50
0cd919 51 #login-form #message div {
5effd5 52     float: left;
0cd919 53     display: block;
T 54     width: 200px;
55     margin-left: 130px;
56     white-space: nowrap;
57     text-align: left;
58 }
59
19b34b 60 #messagepreviewheader .iconlink {
T 61     color: #fff;
62     height: 14px;
63 }
64
65 #uploadform a.iconlink {
66     text-indent: 0px;
67 }
68
69 .boxfooter .countdisplay {
70     top: -12px;
71 }
72
73 ul.toolbarmenu li a {
74     width: 140px;
75 }
76
77 #threadselectmenu li a {
78     width: 160px;
79 }
80
81 #messagemenu li a {
82     width: 170px;
83 }
84
ec366b 85 #rcmKSearchpane {
T 86     width: 400px;
87 }
88 #rcmKSearchpane ul li {
89     width: 380px;
90     text-overflow: ellipsis;
91 }
92
93
19b34b 94 table.listing,
T 95 table.records-table {
96     display: block;
97     width: auto;
98     border-collapse: expression('separate', cellSpacing = '0');
99 }
100
ec366b 101 .records-table tbody td span {
T 102     white-space: nowrap;
103 }
104
19b34b 105 table.listing {
T 106     width: 100%;
107 }
108
109 ul.toolbarmenu li label {
110     margin: 0;
111     padding: 3px 8px;
112 }
113
114 #quicksearchbar input {
115     padding-top: 4px;
116     padding-bottom: 4px;
117 }
118
119 #messagelistfooter #listcontrols,
120 #messagelistfooter #listselectors,
121 #messagelistfooter #countcontrols,
122 .pagenav .countdisplay {
123     display: inline;
124 }
125
126 #messagelistfooter #countcontrols {
127     position: relative;
128     top: -4px;
129 }
130
131 #messagecontframe,
132 #preferences-frame {
133     position: absolute;
134     left: 0;
135     right: 0;
136     top: 0;
137     bottom: 0;
138 }
139
140 #composeoptionsbox {
141     padding-top: 2px;
142 }
143
144 #composeoptionstoggle {
145     display: inline;
146     top: 3px;
147 }
148
149 .propform {
150     margin: 0;
151 }
152
153 .propform fieldset legend {
154     color: #333;
155     margin-left: -5px;
156     padding-left: 0;
157 }
158
159 .contactfieldgroup legend {
160     margin-left: -14px;
161 }
162
163 .contactfieldcontent .contactfieldbutton {
164     top: -6px;
165 }
166
167 .tabsbar {
168     height: 15px;
169     padding-bottom: 15px;
170 }
171
172 .tabsbar .tablink {
173     padding: 0 1px 0 0;
174 }
175