mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-04-09 23:45:56 -04:00
- Added no_extra_spaces_at_end_of_line_test to File_Structure_Test. - Updated Gallery_Filters to exclude testing code that isn't ours. - Removed existing extra spaces. New test now passes.
19 lines
240 B
CSS
19 lines
240 B
CSS
/**
|
|
* Fix display in IE 6 and 7
|
|
*/
|
|
|
|
.g-unavailable {
|
|
filter: alpha(opacity=40);
|
|
}
|
|
|
|
.g-unavailable:hover {
|
|
filter: alpha(opacity=100);
|
|
}
|
|
|
|
tr.g-error td,
|
|
tr.g-info td,
|
|
tr.g-success td,
|
|
tr.g-warning td {
|
|
background: none !important;
|
|
}
|