trusty-cms 5.4.0 → 5.4.2

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: f2de43e8b919112d79f1e8ab3b2880934f1eeb7effe4a4c105f74d3a38d9e93c
4
- data.tar.gz: c5e946563f4c5514e650b656b28f3900102ef4dc6d2d6c0d122a7ffbb695b9a4
3
+ metadata.gz: c5155f60b36888c067eb72401e5a456d21267aa5f92f6f737444b005aa948d8f
4
+ data.tar.gz: 6116741019fe8f21da6aafa50b0c8ba424b011d3887149b5cdd557853f70a9c9
5
5
  SHA512:
6
- metadata.gz: cf8e256abffa03675cccf05e30b7ccc0866a09f47cf4ee69cb770d3b4258020d2f4d3ba8982da54cd9546d5b0fc20e8150a39ff7517a33436f2dadc9f6419823
7
- data.tar.gz: 5f52ac094adfe7c1d2c4cc947e627c0079c06832bf65bc10067d97d811329dda356b3af5d96d0820567d3c42ceabc3c09cf604a555ae69e8953cc27f43c2df56
6
+ metadata.gz: d649068474570c158c4079d668a009c07532ceebda1b2aba259d23f53deb99065309e283773664882fa91faa11b97d5968570ea6aad8cffc363dc7ab521ea68c
7
+ data.tar.gz: 3654a2ae4837b7e9a36bb061207ea2252301ddf56ad2bd5d1ecd698efb0d64aea5e2c1ca6e2caff36d5f16e3c786af6d73529198f07b4d6f66e2ceda64a8e10f
@@ -11,7 +11,6 @@
11
11
  @import "partials/header";
12
12
  @import "partials/sidebar";
13
13
  @import "partials/table";
14
- @import "partials/avatars";
15
14
  @import "partials/dropdown";
16
15
  @import "partials/drawer";
17
16
  @import "partials/messages";
@@ -157,11 +157,6 @@ table.index#users {
157
157
  padding-bottom: 8px;
158
158
  padding-top: 8px;
159
159
 
160
- img.avatar {
161
- margin-right: 4px;
162
- vertical-align: center;
163
- }
164
-
165
160
  .login {
166
161
  color: #9eb3bf;
167
162
  font-size: 90%;
@@ -274,6 +274,8 @@ en:
274
274
  settings: 'Settings'
275
275
  show_all: 'Show all'
276
276
  slug: 'Slug'
277
+ snippets: 'Snippets'
278
+ snippet: 'Snippet'
277
279
  status: 'Status'
278
280
  # Warnings and info text:
279
281
  testing: Testing
data/lib/trusty_cms.rb CHANGED
@@ -2,6 +2,6 @@ TRUSTY_CMS_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..')) unle
2
2
 
3
3
  unless defined? TrustyCms::VERSION
4
4
  module TrustyCms
5
- VERSION = '5.4.0'.freeze
5
+ VERSION = '5.4.2'.freeze
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.4.0
4
+ version: 5.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - TrustyCms CMS dev team
@@ -631,7 +631,6 @@ files:
631
631
  - app/assets/stylesheets/admin/modules/_buttons.scss
632
632
  - app/assets/stylesheets/admin/modules/_links.scss
633
633
  - app/assets/stylesheets/admin/partials/_actions.scss
634
- - app/assets/stylesheets/admin/partials/_avatars.scss
635
634
  - app/assets/stylesheets/admin/partials/_content.scss
636
635
  - app/assets/stylesheets/admin/partials/_dateinput.scss
637
636
  - app/assets/stylesheets/admin/partials/_drawer.scss
@@ -1,13 +0,0 @@
1
- img.avatar {
2
- background: white;
3
- border: none;
4
- border-radius: 3px;
5
- box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
6
- padding: 4px;
7
-
8
- &.avatar_32x32 {
9
- border-radius: 2px;
10
- box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
11
- padding: 2px;
12
- }
13
- }