项目作者: fraoustin

项目描述 :
Redmine Theme Material
高级语言: CSS
项目地址: git://github.com/fraoustin/RTMaterial.git
创建时间: 2019-12-01T09:45:25Z
项目社区:https://github.com/fraoustin/RTMaterial

开源协议:

下载


RedmineThemeMaterrial

RTMaterial is a theme for redmine.

web

web

The theme use two colors: Primary and Accent.

You can change the default theme: you can copy theme in stylesheet\colors in stylesheet\ and rename theme color.css.

You can change the default icon: you can copy icon in stylesheet\ico in favicon\ and rename theme favicon.ico.

Sample

  1. cp stylesheet\colors\color-blue-red.css stylesheet\
  2. mv stylesheet\colors.css stylesheet\color.css.default
  3. mv stylesheet\color-blue-red.css stylesheet\color.css
  4. mv stylesheet\ico\icon-blue.ico favicon\favicon.ico

the link for explication on install theme ion redmine https://www.redmine.org/projects/redmine/wiki/Themes

You can add a specific color theme by project: You must use https://github.com/fraoustin/redmine_rtmaterial plugin.

List of color:

  • red
  • pink
  • purple
  • deepPurple
  • indigo
  • blue
  • lightBlue
  • cyan
  • teal
  • green
  • lightGreen
  • lime
  • yellow
  • amber
  • orange
  • deepOrange
  • brown
  • grey
  • blueGrey

You can load a specific theme

You can use palette of color from https://material-ui.com/customization/color/

Icons from https://feathericons.com/

Install with local redmine

::

  1. cd /usr/src/redmine/public/themes
  2. git clone https://github.com/fraoustin/RTMaterial.git
  3. #

Use Docker

Your Dockerfile for Redmine 5.X

::

  1. FROM redmine:5.x
  2. WORKDIR /usr/src/redmine/public/themes
  3. RUN git clone https://github.com/fraoustin/RTMaterial.git
  4. WORKDIR /usr/src/redmine/public/themes/RTMaterial/stylesheets
  5. RUN cp colors/color-red-blue.css colors.css
  6. RUN cp ico/icon-red.ico ../favicon/favicon.ico

Your Dockerfile for Redmine 6.0

::

  1. FROM redmine:6.0
  2. WORKDIR /usr/src/redmine/public/themes
  3. RUN git clone https://github.com/fraoustin/RTMaterial.git
  4. WORKDIR /usr/src/redmine/public/themes/RTMaterial/stylesheets
  5. RUN cp colors/color-red-blue.css colors.css
  6. RUN cp ico/icon-red.ico ../favicon/favicon.ico
  7. RUN ln -s /usr/src/redmine/public/themes/RTMaterial /usr/src/redmine/themes/RTMaterial

You can use

::

  1. docker build -t myredmine .
  2. docker run -d -p 3000:3000 --name myredmine myredmine