Rails 3.2.12文件图标不正确

时间:2016-02-18 20:34:32

标签: ruby-on-rails ruby-on-rails-3 file icons

存在文件图标故障,其中包含上传到应用程序的文件类型。例如,带有" .xlsx"的文件扩展名显示为带有单词图标而不是excel图标。

我如下所示进行了更新,但无济于事。关于我应该在哪里寻找的任何想法?

li.page {
  background-position: 0 1px;
  background-repeat: no-repeat;
  padding-left: 20px;
}

li.default {
  background-image: url(page_green.png);
}

li.xls {
  background-image: url(page_excel.png);
}

li.xlsx {
  background-image: url(page_excel.png);
}

li.doc {
  background-image: url(page_word.png);
}

li.docx {
  background-image: url(page_word.png);
}` 

enter image description here

0 个答案:

没有答案