intranet-core 2.4.0 → 2.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ba7fae26118e05ab115341089026cbbff79721a77bccb8412a6db8713c048d36
4
- data.tar.gz: d759168cea8f4500321fec20e1bd555a54033e1ccebbcdb335596b1b55c5b211
3
+ metadata.gz: e9d5ce66790b8b308a7f4d366aaa0a24a4d8e4c8ea82d31c6a5b78dd93fb2a49
4
+ data.tar.gz: eaff940db100fbebae0ebc6fd7c204ce6a33117e7b2c779a5f4961da162a230f
5
5
  SHA512:
6
- metadata.gz: 8c3c35cd768e6eed859d44343f40b93293ac3bd11f5b13cb9586e85cff96de7bef93a83774c5f2479397c15c16f2a3de0b571d3d5453454e847dbdff04ff4711
7
- data.tar.gz: 7e26eb4903abd95964ae9ecf1f810d631043a92d32974ffbc81ee6ebf62c670b8427f65fb2feee6798899a18c542c40154acd26b7a77beecbe28a10cf23a40bc
6
+ metadata.gz: b48372ac7f9d356b60685ac561aee1d3b3a596c188493082a8107194c0d08f9230b654796057a83a2b463138baee381045263971f7fc063ff20ffcfcf3b91c5d
7
+ data.tar.gz: 0f6ea7adb342e03243ef249a17773f7bf4db6593a09386888451948103b7730e4cc0244173bd397befb4960301d9f3a33cffc00839b273444538f714af927f31
@@ -6,7 +6,7 @@ module Intranet
6
6
  NAME = 'intranet-core'
7
7
 
8
8
  # The version of the gem, according to semantic versionning.
9
- VERSION = '2.4.0'
9
+ VERSION = '2.4.1'
10
10
 
11
11
  # The URL of the gem homepage.
12
12
  HOMEPAGE_URL = 'https://rubygems.org/gems/intranet-core'
@@ -3,6 +3,7 @@
3
3
  %head
4
4
  %title= Socket.gethostname.capitalize + ' | ' + body[:title]
5
5
  %meta{charset: 'utf-8'}
6
+ %meta{name: 'viewport', content: 'width=device-width, initial-scale=1.0'}
6
7
  %link{rel: 'icon', type: 'image/x-icon', href: '/design/favicon.ico'}
7
8
  %link{rel: 'stylesheet', type: 'text/css', href: '/design/style.css'}
8
9
  - body[:stylesheets].each do |url|
@@ -30,12 +30,6 @@ body {
30
30
  -ms-text-size-adjust: none;
31
31
  font-size-adjust: none;
32
32
  }
33
- /* Mobile devices only */
34
- @media only screen and (max-width: 600px), only screen and (max-device-width: 600px) {
35
- body {
36
- font-size: 1.8rem;
37
- }
38
- }
39
33
 
40
34
  a {
41
35
  color: inherit;
@@ -72,7 +66,7 @@ header nav ul {
72
66
  header nav > ul > li {
73
67
  display: inline-block;
74
68
  }
75
- header nav > ul > li a, header a#closemenu {
69
+ header nav > ul > li a {
76
70
  display: block;
77
71
  padding: 16px 20px;
78
72
  margin: 0px;
@@ -141,14 +135,11 @@ header a#openmenu, header a#closemenu {
141
135
  }
142
136
  header nav > ul {
143
137
  height: auto;
144
- margin: 0px 0px 50px; /* top sides bottom */
145
138
  }
146
139
  header nav > ul > li {
147
140
  display: block;
148
141
  }
149
142
  header nav > ul > li a {
150
- color: rgba(255, 255, 255, 1.0);
151
- margin-top: 35px;
152
143
  padding: 10px 150px 10px 40px; /* top right bottom left */
153
144
  }
154
145
  header nav > ul > li > ul {
@@ -156,14 +147,9 @@ header a#openmenu, header a#closemenu {
156
147
  position: static; /* reset absolute positionning */
157
148
  }
158
149
  header nav > ul > li > ul > li a {
159
- color: rgba(255, 255, 255, 0.7);
160
150
  margin: 0px;
161
151
  padding: 10px 100px 10px 90px; /* top right bottom left */
162
152
  }
163
- header nav li a:hover {
164
- color: inherit;
165
- background-color: #c2c2c2;
166
- }
167
153
  }
168
154
 
169
155
  /* breadcrumb navigation menu */
@@ -180,7 +166,7 @@ ul.breadcrumb li+li:before {
180
166
  padding: 4px;
181
167
  content: "/\00a0";
182
168
  }
183
- ul.breadcrumb li a, main article a {
169
+ main a {
184
170
  color: #748ea3;
185
171
  }
186
172
 
@@ -195,7 +181,7 @@ ul.breadcrumb li a, main article a {
195
181
 
196
182
  body > main {
197
183
  background: #f7f8fa;
198
- padding: 57px 0px; /* height of the navigation bar */
184
+ padding: 58px 0px; /* height of the navigation bar */
199
185
  }
200
186
 
201
187
  body > main section, body > main article, body > main hr, body > footer p {
@@ -213,10 +199,7 @@ body > main hr {
213
199
 
214
200
  /* Mobile devices only */
215
201
  @media only screen and (max-width: 600px), only screen and (max-device-width: 600px) {
216
- body > main {
217
- padding: 100px 0px;
218
- }
219
- body > main section, main hr, footer p {
202
+ body > main section, body > main hr, body > footer p {
220
203
  width: 90%;
221
204
  }
222
205
  }
@@ -308,4 +291,3 @@ section#error p img {
308
291
  section#error a {
309
292
  color: #748ea3;
310
293
  }
311
-
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: intranet-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ebling Mis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-22 00:00:00.000000000 Z
11
+ date: 2021-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: haml