redmine-neopoly_style 0.1.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/neopoly_style/_additional_favicons.html.erb +20 -0
- data/assets/images/favicons/android-chrome-144x144.png +0 -0
- data/assets/images/favicons/android-chrome-192x192.png +0 -0
- data/assets/images/favicons/android-chrome-36x36.png +0 -0
- data/assets/images/favicons/android-chrome-48x48.png +0 -0
- data/assets/images/favicons/android-chrome-72x72.png +0 -0
- data/assets/images/favicons/android-chrome-96x96.png +0 -0
- data/assets/images/favicons/apple-touch-icon-114x114.png +0 -0
- data/assets/images/favicons/apple-touch-icon-120x120.png +0 -0
- data/assets/images/favicons/apple-touch-icon-144x144.png +0 -0
- data/assets/images/favicons/apple-touch-icon-152x152.png +0 -0
- data/assets/images/favicons/apple-touch-icon-180x180.png +0 -0
- data/assets/images/favicons/apple-touch-icon-57x57.png +0 -0
- data/assets/images/favicons/apple-touch-icon-60x60.png +0 -0
- data/assets/images/favicons/apple-touch-icon-72x72.png +0 -0
- data/assets/images/favicons/apple-touch-icon-76x76.png +0 -0
- data/assets/images/favicons/apple-touch-icon-precomposed.png +0 -0
- data/assets/images/favicons/apple-touch-icon.png +0 -0
- data/assets/images/favicons/browserconfig.xml +12 -0
- data/assets/images/favicons/favicon-16x16.png +0 -0
- data/assets/images/favicons/favicon-32x32.png +0 -0
- data/assets/images/favicons/favicon-96x96.png +0 -0
- data/assets/images/favicons/favicon.ico +0 -0
- data/assets/images/favicons/manifest.json +41 -0
- data/assets/images/favicons/mstile-144x144.png +0 -0
- data/assets/images/favicons/mstile-150x150.png +0 -0
- data/assets/images/favicons/mstile-310x150.png +0 -0
- data/assets/images/favicons/mstile-310x310.png +0 -0
- data/assets/images/favicons/mstile-70x70.png +0 -0
- data/assets/images/favicons/safari-pinned-tab.svg +42 -0
- data/assets/stylesheets/neopoly_style.css +1 -1
- data/assets/stylesheets/neopoly_style_responsive.css +9 -0
- data/lib/assets/stylesheets/_config.sass +2 -1
- data/lib/assets/stylesheets/_layout.sass +4 -4
- data/lib/assets/stylesheets/neopoly_style_responsive.sass +42 -0
- data/lib/neopoly_style/hooks.rb +11 -3
- data/lib/neopoly_style/patches/application_helper_patch.rb +1 -2
- data/lib/neopoly_style/version.rb +1 -1
- data/lib/redmine-neopoly_style.rb +6 -0
- data/rakelib/assets.rake +10 -5
- metadata +34 -4
- data/assets/images/favicon.ico +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f70a6f482f86d261320ebcff80d4f3380fdd8307
|
4
|
+
data.tar.gz: 32d50f706b16d5c1d42207198dcdfeaaa92a28cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d741318ccace15e13b8d1ff1ba22f0e86df1437fd832264ded1a51969e9e884ba06ac257606f93169a0685fee79251c871d1511f42cd6932108e0a1d954ef5c8
|
7
|
+
data.tar.gz: dc784d16e4baef81070a26eb6d57291c8f2de12401b94743f9bb325a99311eacbbe65a1d8feab5b27182817eb1acfca72682434b44b5fb1c18f3efdca5cb6286
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<link rel="apple-touch-icon" sizes="57x57" href="<%= image_path(NeopolyStyle.favicon("apple-touch-icon-57x57.png")) %>">
|
2
|
+
<link rel="apple-touch-icon" sizes="60x60" href="<%= image_path(NeopolyStyle.favicon("apple-touch-icon-60x60.png")) %>">
|
3
|
+
<link rel="apple-touch-icon" sizes="72x72" href="<%= image_path(NeopolyStyle.favicon("apple-touch-icon-72x72.png")) %>">
|
4
|
+
<link rel="apple-touch-icon" sizes="76x76" href="<%= image_path(NeopolyStyle.favicon("apple-touch-icon-76x76.png")) %>">
|
5
|
+
<link rel="apple-touch-icon" sizes="114x114" href="<%= image_path(NeopolyStyle.favicon("apple-touch-icon-114x114.png")) %>">
|
6
|
+
<link rel="apple-touch-icon" sizes="120x120" href="<%= image_path(NeopolyStyle.favicon("apple-touch-icon-120x120.png")) %>">
|
7
|
+
<link rel="apple-touch-icon" sizes="144x144" href="<%= image_path(NeopolyStyle.favicon("apple-touch-icon-144x144.png")) %>">
|
8
|
+
<link rel="apple-touch-icon" sizes="152x152" href="<%= image_path(NeopolyStyle.favicon("apple-touch-icon-152x152.png")) %>">
|
9
|
+
<link rel="apple-touch-icon" sizes="180x180" href="<%= image_path(NeopolyStyle.favicon("apple-touch-icon-180x180.png")) %>">
|
10
|
+
<link rel="icon" type="image/png" sizes="32x32" href="<%= image_path(NeopolyStyle.favicon("favicon-32x32.png")) %>">
|
11
|
+
<link rel="icon" type="image/png" sizes="192x192" href="<%= image_path(NeopolyStyle.favicon("android-chrome-192x192.png")) %>">
|
12
|
+
<link rel="icon" type="image/png" sizes="96x96" href="<%= image_path(NeopolyStyle.favicon("favicon-96x96.png")) %>">
|
13
|
+
<link rel="icon" type="image/png" sizes="16x16" href="<%= image_path(NeopolyStyle.favicon("favicon-16x16.png")) %>">
|
14
|
+
<link rel="manifest" href="<%= image_path(NeopolyStyle.favicon("manifest.json")) %>">
|
15
|
+
<link rel="mask-icon" color="#504c84" href="<%= image_path(NeopolyStyle.favicon("safari-pinned-tab.svg")) %>">
|
16
|
+
<link rel="shortcut icon" href="<%= image_path(NeopolyStyle.favicon("favicon.ico")) %>">
|
17
|
+
<meta name="msapplication-TileColor" content="#504c84">
|
18
|
+
<meta name="msapplication-TileImage" content="<%= image_path(NeopolyStyle.favicon("mstile-144x144.png")) %>">
|
19
|
+
<meta name="msapplication-config" content="<%= image_path(NeopolyStyle.favicon("browserconfig.xml")) %>">
|
20
|
+
<meta name="theme-color" content="#504c84">
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<browserconfig>
|
3
|
+
<msapplication>
|
4
|
+
<tile>
|
5
|
+
<square70x70logo src="/plugin_assets/neopoly_style/images/favicons/mstile-70x70.png"/>
|
6
|
+
<square150x150logo src="/plugin_assets/neopoly_style/images/favicons/mstile-150x150.png"/>
|
7
|
+
<square310x310logo src="/plugin_assets/neopoly_style/images/favicons/mstile-310x310.png"/>
|
8
|
+
<wide310x150logo src="/plugin_assets/neopoly_style/images/favicons/mstile-310x150.png"/>
|
9
|
+
<TileColor>#504c84</TileColor>
|
10
|
+
</tile>
|
11
|
+
</msapplication>
|
12
|
+
</browserconfig>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,41 @@
|
|
1
|
+
{
|
2
|
+
"name": "Neopoly",
|
3
|
+
"icons": [
|
4
|
+
{
|
5
|
+
"src": "\/plugin_assets\/neopoly_style\/images\/favicons\/android-chrome-36x36.png",
|
6
|
+
"sizes": "36x36",
|
7
|
+
"type": "image\/png",
|
8
|
+
"density": 0.75
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"src": "\/plugin_assets\/neopoly_style\/images\/favicons\/android-chrome-48x48.png",
|
12
|
+
"sizes": "48x48",
|
13
|
+
"type": "image\/png",
|
14
|
+
"density": 1
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"src": "\/plugin_assets\/neopoly_style\/images\/favicons\/android-chrome-72x72.png",
|
18
|
+
"sizes": "72x72",
|
19
|
+
"type": "image\/png",
|
20
|
+
"density": 1.5
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"src": "\/plugin_assets\/neopoly_style\/images\/favicons\/android-chrome-96x96.png",
|
24
|
+
"sizes": "96x96",
|
25
|
+
"type": "image\/png",
|
26
|
+
"density": 2
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"src": "\/plugin_assets\/neopoly_style\/images\/favicons\/android-chrome-144x144.png",
|
30
|
+
"sizes": "144x144",
|
31
|
+
"type": "image\/png",
|
32
|
+
"density": 3
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"src": "\/plugin_assets\/neopoly_style\/images\/favicons\/android-chrome-192x192.png",
|
36
|
+
"sizes": "192x192",
|
37
|
+
"type": "image\/png",
|
38
|
+
"density": 4
|
39
|
+
}
|
40
|
+
]
|
41
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,42 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
9
|
+
viewBox="0 0 875 875"
|
10
|
+
height="875"
|
11
|
+
width="875"
|
12
|
+
xml:space="preserve"
|
13
|
+
version="1.1"
|
14
|
+
id="svg3336"
|
15
|
+
sodipodi:docname="safari-pinned-tab.svg"><sodipodi:namedview
|
16
|
+
pagecolor="#ffffff"
|
17
|
+
bordercolor="#666666"
|
18
|
+
borderopacity="1"
|
19
|
+
objecttolerance="10"
|
20
|
+
gridtolerance="10"
|
21
|
+
guidetolerance="10"
|
22
|
+
id="namedview12"
|
23
|
+
showgrid="false" /><metadata
|
24
|
+
id="metadata3342"><rdf:RDF><cc:Work
|
25
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
26
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
27
|
+
id="defs3340"><clipPath
|
28
|
+
id="clipPath3350"
|
29
|
+
clipPathUnits="userSpaceOnUse"><path
|
30
|
+
id="path3352"
|
31
|
+
d="M 0,700 700,700 700,0 0,0 0,700 Z" /></clipPath></defs><g
|
32
|
+
transform="matrix(8.3644621,0,0,-8.3644617,-2482.239,3494.6517)"
|
33
|
+
id="g3344"><g
|
34
|
+
transform="translate(251.70213,6.7021277)"
|
35
|
+
id="g3346"><g
|
36
|
+
clip-path="url(#clipPath3350)"
|
37
|
+
id="g3348"><g
|
38
|
+
transform="translate(83.7754,356.6362)"
|
39
|
+
id="g3354"><path
|
40
|
+
id="path3356"
|
41
|
+
style="fill:#494a8c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
42
|
+
d="m 0,0 c -0.282,-0.032 -1.985,-0.194 -2.549,-0.227 -0.271,-0.017 -2.255,-0.086 -2.963,-0.081 -0.708,0.002 -1.403,0.02 -2.087,0.053 -0.051,0.004 -0.911,0.085 -0.911,0.085 -2.529,0.216 -4.879,0.663 -6.936,1.376 -5.963,2.044 -9.585,6.115 -10.985,11.341 -1.401,5.228 -0.323,10.651 3.819,15.402 4.23,4.775 11.597,8.989 20.395,11.347 8.885,2.381 17.373,2.414 23.422,0.394 5.217,-1.788 8.928,-5.124 10.427,-9.508 0.214,-0.626 0.406,-1.268 0.581,-1.921 C 33.614,23.035 32.512,17.698 28.37,12.947 26.952,11.308 25.161,9.71 23.09,8.265 22.878,8.121 22.652,7.984 22.435,7.842 22.393,7.814 22.348,7.787 22.305,7.758 21.73,7.387 21.136,7.024 20.524,6.668 19.914,6.31 19.28,5.966 18.632,5.628 18.394,5.504 18.161,5.378 17.918,5.257 17.413,5.004 16.899,4.76 16.375,4.521 16.12,4.404 15.857,4.293 15.597,4.179 14.846,3.852 14.081,3.538 13.294,3.24 12.799,3.051 12.3,2.865 11.79,2.688 11.423,2.561 11.055,2.438 10.683,2.318 9.864,2.052 9.032,1.8 8.179,1.567 8.118,1.55 7.791,1.463 7.73,1.446 6.875,1.222 6.028,1.025 5.187,0.845 4.804,0.763 4.423,0.686 4.043,0.612 3.513,0.511 2.987,0.422 2.464,0.338 1.634,0.203 0.814,0.092 0,0 m 12.339,-2.054 1.008,0.432 c 13.755,-15.816 31.606,-27.957 52.992,-36.145 l 0,93.097 -105.48,0 0,-105.48 17.776,0 c 20.738,-0.011 39.488,18.611 33.704,48.096"/></g></g></g></g></svg>
|
@@ -19,7 +19,7 @@ h2, .wiki h1, h3, .wiki h2 { color: #222; }
|
|
19
19
|
|
20
20
|
body, #wrapper, #main { background-color: #EEE; }
|
21
21
|
|
22
|
-
#header { background-color: #
|
22
|
+
#header { background-color: #504c84; background-image: -webkit-gradient(linear, left top, left bottom, from(#504c84), to(#3d455f)); background-image: -moz-linear-gradient(center top, #504c84 0%, #504c84 #3d455f); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$theme-color', endColorstr='#3d455f'); padding: 10px 0 35px 10px; background-position-y: 11%; height: auto; min-height: initial; }
|
23
23
|
#header > h1 { height: 26px; margin: 0 24px; font-weight: normal; line-height: 14px; }
|
24
24
|
|
25
25
|
#main { margin: 15px 15px 0 15px; }
|
@@ -0,0 +1,9 @@
|
|
1
|
+
@media (max-width: 899px) { #header { height: 64px; padding-top: 0; }
|
2
|
+
#header .jump-box-arrow:before { top: 0; }
|
3
|
+
.flyout-menu { background: #504c84; }
|
4
|
+
.flyout-menu a, .flyout-menu a:link, .flyout-menu a:visited { color: #FFF; }
|
5
|
+
.flyout-menu h1, .flyout-menu h2, .flyout-menu h3 { margin: 0; padding: 0; color: white; border-top: 1px solid #D7D7D7; border-bottom: 1px solid #D7D7D7; background-color: #292743; height: 20px; font-size: 11px; line-height: 19px; letter-spacing: 0.1em; text-transform: uppercase; }
|
6
|
+
.flyout-menu .flyout-menu__sidebar { display: none; }
|
7
|
+
.flyout-menu .personal-wiki-page { display: none; }
|
8
|
+
#content > .wiki > .apps.side { display: none; }
|
9
|
+
#content > div.contextual { margin: 0 0 6px 0; padding: 0; text-align: center; } }
|
@@ -1,5 +1,6 @@
|
|
1
1
|
$font-main: "Lucida Grande", verdana, arial, helvetica, sans-serif
|
2
2
|
|
3
|
+
$theme-color: #504c84
|
3
4
|
$content-color: #FFF
|
4
5
|
$shadow-color: #CCC
|
5
6
|
$border-color: #D7D7D7
|
@@ -24,4 +25,4 @@ $ui-widget-header-background-color: $segment-color
|
|
24
25
|
$ui-widget-header-border-color: #CCC
|
25
26
|
$ui-widget-header-color: #000
|
26
27
|
$ui-widget-state-background-color: #FCFCFC
|
27
|
-
$ui-widget-dialog-color: #444
|
28
|
+
$ui-widget-dialog-color: #444
|
@@ -2,10 +2,10 @@ body, #wrapper, #main
|
|
2
2
|
background-color: $silent-color
|
3
3
|
|
4
4
|
#header
|
5
|
-
background-color:
|
6
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(
|
7
|
-
background-image: -moz-linear-gradient(center top,
|
8
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='
|
5
|
+
background-color: $theme-color
|
6
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from($theme-color), to(#3d455f))
|
7
|
+
background-image: -moz-linear-gradient(center top, $theme-color 0%, $theme-color #3d455f )
|
8
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$theme-color', endColorstr='#3d455f')
|
9
9
|
padding: 10px 0 35px 10px
|
10
10
|
background-position-y: 11%
|
11
11
|
height: auto
|
@@ -0,0 +1,42 @@
|
|
1
|
+
@import "config"
|
2
|
+
|
3
|
+
@media (max-width: 899px)
|
4
|
+
#header
|
5
|
+
height: 64px
|
6
|
+
padding-top: 0
|
7
|
+
|
8
|
+
.jump-box-arrow:before
|
9
|
+
top: 0
|
10
|
+
|
11
|
+
.flyout-menu
|
12
|
+
background: $theme-color
|
13
|
+
|
14
|
+
a, a:link, a:visited
|
15
|
+
color: $content-color
|
16
|
+
|
17
|
+
h1, h2, h3
|
18
|
+
margin: 0
|
19
|
+
padding: 0
|
20
|
+
color: white
|
21
|
+
border-top: 1px solid $border-color
|
22
|
+
border-bottom: 1px solid $border-color
|
23
|
+
background-color: darken($theme-color, 20%)
|
24
|
+
height: 20px
|
25
|
+
font-size: 11px
|
26
|
+
line-height: 19px
|
27
|
+
letter-spacing: .1em
|
28
|
+
text-transform: uppercase
|
29
|
+
|
30
|
+
.flyout-menu__sidebar
|
31
|
+
display: none
|
32
|
+
.personal-wiki-page
|
33
|
+
display: none
|
34
|
+
|
35
|
+
#content
|
36
|
+
> .wiki > .apps.side
|
37
|
+
display: none
|
38
|
+
|
39
|
+
> div.contextual
|
40
|
+
margin: 0 0 6px 0
|
41
|
+
padding: 0
|
42
|
+
text-align: center
|
data/lib/neopoly_style/hooks.rb
CHANGED
@@ -3,8 +3,8 @@ module NeopolyStyle
|
|
3
3
|
class Hooks < Redmine::Hook::ViewListener
|
4
4
|
# Inject javascript and stylesheet tags
|
5
5
|
# @param _context [Hash] ignored
|
6
|
-
def view_layouts_base_html_head(
|
7
|
-
javascript_tags + stylesheet_tags
|
6
|
+
def view_layouts_base_html_head(context)
|
7
|
+
javascript_tags + stylesheet_tags + additional_favicons(context)
|
8
8
|
end
|
9
9
|
|
10
10
|
private
|
@@ -14,7 +14,15 @@ module NeopolyStyle
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def stylesheet_tags
|
17
|
-
stylesheet_link_tag
|
17
|
+
stylesheet_link_tag("neopoly_style", plugin: "neopoly_style") +
|
18
|
+
stylesheet_link_tag("neopoly_style_responsive", plugin: "neopoly_style")
|
19
|
+
end
|
20
|
+
|
21
|
+
def additional_favicons(context)
|
22
|
+
context[:controller].send(:render_to_string, {
|
23
|
+
partial: "neopoly_style/additional_favicons",
|
24
|
+
locals: context
|
25
|
+
})
|
18
26
|
end
|
19
27
|
end
|
20
28
|
end
|
@@ -4,4 +4,10 @@ require "neopoly_style/engine"
|
|
4
4
|
|
5
5
|
# Redmine plugin for custom style overrides
|
6
6
|
module NeopolyStyle
|
7
|
+
FAVICON_BASE = "/plugin_assets/neopoly_style/images/favicons"
|
8
|
+
|
9
|
+
def favicon(name = "favicon.ico")
|
10
|
+
"#{FAVICON_BASE}/#{name}"
|
11
|
+
end
|
12
|
+
module_function :favicon
|
7
13
|
end
|
data/rakelib/assets.rake
CHANGED
@@ -7,14 +7,19 @@ namespace :assets do
|
|
7
7
|
File.join(*segments)
|
8
8
|
end
|
9
9
|
|
10
|
+
CSS_FILES = %w(neopoly_style neopoly_style_responsive)
|
11
|
+
|
10
12
|
desc "Convert SASS stylesheets to CSS"
|
11
13
|
task :stylesheets do
|
12
14
|
require "sass"
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
|
16
|
+
CSS_FILES.each do |name|
|
17
|
+
input = path("lib", "assets", "stylesheets", "#{name}.sass")
|
18
|
+
output = path("assets", "stylesheets", "#{name}.css")
|
19
|
+
engine = Sass::Engine.for_file(input, syntax: :sass, style: :compact)
|
20
|
+
File.write(output, engine.render)
|
21
|
+
puts "Build: #{output}"
|
22
|
+
end
|
18
23
|
end
|
19
24
|
end
|
20
25
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redmine-neopoly_style
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonas Thiel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -93,10 +93,40 @@ files:
|
|
93
93
|
- LICENSE.txt
|
94
94
|
- README.md
|
95
95
|
- Rakefile
|
96
|
+
- app/views/neopoly_style/_additional_favicons.html.erb
|
96
97
|
- assets/images/dark-overlay.png
|
97
|
-
- assets/images/
|
98
|
+
- assets/images/favicons/android-chrome-144x144.png
|
99
|
+
- assets/images/favicons/android-chrome-192x192.png
|
100
|
+
- assets/images/favicons/android-chrome-36x36.png
|
101
|
+
- assets/images/favicons/android-chrome-48x48.png
|
102
|
+
- assets/images/favicons/android-chrome-72x72.png
|
103
|
+
- assets/images/favicons/android-chrome-96x96.png
|
104
|
+
- assets/images/favicons/apple-touch-icon-114x114.png
|
105
|
+
- assets/images/favicons/apple-touch-icon-120x120.png
|
106
|
+
- assets/images/favicons/apple-touch-icon-144x144.png
|
107
|
+
- assets/images/favicons/apple-touch-icon-152x152.png
|
108
|
+
- assets/images/favicons/apple-touch-icon-180x180.png
|
109
|
+
- assets/images/favicons/apple-touch-icon-57x57.png
|
110
|
+
- assets/images/favicons/apple-touch-icon-60x60.png
|
111
|
+
- assets/images/favicons/apple-touch-icon-72x72.png
|
112
|
+
- assets/images/favicons/apple-touch-icon-76x76.png
|
113
|
+
- assets/images/favicons/apple-touch-icon-precomposed.png
|
114
|
+
- assets/images/favicons/apple-touch-icon.png
|
115
|
+
- assets/images/favicons/browserconfig.xml
|
116
|
+
- assets/images/favicons/favicon-16x16.png
|
117
|
+
- assets/images/favicons/favicon-32x32.png
|
118
|
+
- assets/images/favicons/favicon-96x96.png
|
119
|
+
- assets/images/favicons/favicon.ico
|
120
|
+
- assets/images/favicons/manifest.json
|
121
|
+
- assets/images/favicons/mstile-144x144.png
|
122
|
+
- assets/images/favicons/mstile-150x150.png
|
123
|
+
- assets/images/favicons/mstile-310x150.png
|
124
|
+
- assets/images/favicons/mstile-310x310.png
|
125
|
+
- assets/images/favicons/mstile-70x70.png
|
126
|
+
- assets/images/favicons/safari-pinned-tab.svg
|
98
127
|
- assets/javascripts/neopoly_style.js
|
99
128
|
- assets/stylesheets/neopoly_style.css
|
129
|
+
- assets/stylesheets/neopoly_style_responsive.css
|
100
130
|
- lib/assets/stylesheets/_config.sass
|
101
131
|
- lib/assets/stylesheets/_context_menu.sass
|
102
132
|
- lib/assets/stylesheets/_forms.sass
|
@@ -109,6 +139,7 @@ files:
|
|
109
139
|
- lib/assets/stylesheets/_tags.sass
|
110
140
|
- lib/assets/stylesheets/_typography.sass
|
111
141
|
- lib/assets/stylesheets/neopoly_style.sass
|
142
|
+
- lib/assets/stylesheets/neopoly_style_responsive.sass
|
112
143
|
- lib/neopoly_style/engine.rb
|
113
144
|
- lib/neopoly_style/hooks.rb
|
114
145
|
- lib/neopoly_style/infos.rb
|
@@ -145,4 +176,3 @@ signing_key:
|
|
145
176
|
specification_version: 4
|
146
177
|
summary: Custom style overrides for Redmine
|
147
178
|
test_files: []
|
148
|
-
has_rdoc:
|
data/assets/images/favicon.ico
DELETED
Binary file
|