itsf_backend 3.0.4 → 3.0.5

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
  SHA1:
3
- metadata.gz: 07af8cc2e2ab8396168802970c885dbd26506548
4
- data.tar.gz: ffe76fa84e16afb63e92c3209db9b3a58732e6a7
3
+ metadata.gz: c9d63d52566409ce45c4d8d9b2a5168e873ea88e
4
+ data.tar.gz: f2eda22c050efbbe298b864b230d3224bceefd1b
5
5
  SHA512:
6
- metadata.gz: ae1a76c1ad627c9860bc5ce5d3b0f111bfa13de9717c0440827896c2debb76f1ec4f9a070b805314cfb666dca58a31090f86eaeb4f7d0acf10511bf55715772a
7
- data.tar.gz: 84a7bb1afe36e360391a382407e42d5256e3a82055ae1621f66b79accc7d05527aa741b41c8172e9990027cc7dc18046fd001247aa15675dbd98f007632d946f
6
+ metadata.gz: 415f2ce2951dfcda0127e10aabeff557066c441ce594f58be2ed5db6be5e5f2378b30fdf25760879cb8982201e466f0a2824f0c33514667e60abbf478b86838f
7
+ data.tar.gz: 56c0fdf98915b8d64199fe58d083c1c1b486496c43544772b16ea338478b7e327c0ecb72a2a5cda1ff3bd78dd74f66f13b6c8d1115827ce828716b61226879ae
@@ -28,7 +28,6 @@
28
28
  @import "application/navigation-logo.css.less";
29
29
  @import "application/panel-footer-pagination.css.less";
30
30
  @import "application/panel-with-actions.css.less";
31
- /* @import "application/sidebar.css.less"; */
32
31
  @import "application/table-actions.css.less";
33
32
  @import "application/table-responsive.css.less";
34
33
  @import "application/tab-with-nav.css.less";
@@ -1,5 +1,5 @@
1
- #main-navigation:not(.sidebar-nav) #navigation-logo {
1
+ #auxiliary-navigation:not(.sidebar-nav) #navigation-logo, #main-navigation:not(.sidebar-nav) #navigation-logo {
2
2
  margin-top: 6px;
3
3
  margin-right: 8px;
4
-
4
+ margin-left: 6px;
5
5
  }
@@ -1,5 +1,3 @@
1
- @media (min-width: 768px) {
2
- #vertical-navigation {
3
- margin-top: 60px;
4
- }
1
+ #vertical-navigation {
2
+ margin-top: 60px;
5
3
  }
@@ -2,7 +2,9 @@
2
2
  %span.icon-bar
3
3
  %span.icon-bar
4
4
  %span.icon-bar
5
-
5
+ #navigation-logo.pull-left
6
+ = render 'layouts/itsf/backend/logo'
7
+ = Itsf::Backend::Configuration.title_link.call(self)
6
8
  .navbar-collapse.collapse.navbar-responsive-collapse
7
9
  %ul.nav.navbar-nav.pull-right
8
10
  = render_i18n_navigation
@@ -107,6 +107,8 @@ de:
107
107
  layouts:
108
108
  itsf:
109
109
  backend:
110
+ auxiliary_navigation:
111
+ title: "%{application_name}"
110
112
  base:
111
113
  title: "%{application_name}"
112
114
  main_navigation:
@@ -1,5 +1,5 @@
1
1
  module Itsf
2
2
  module Backend
3
- VERSION = '3.0.4'
3
+ VERSION = '3.0.5'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itsf_backend
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.4
4
+ version: 3.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Vasquez Angel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-12 00:00:00.000000000 Z
11
+ date: 2017-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -489,7 +489,6 @@ files:
489
489
  - app/assets/stylesheets/itsf/backend/application/navigation-logo.css.less
490
490
  - app/assets/stylesheets/itsf/backend/application/panel-footer-pagination.css.less
491
491
  - app/assets/stylesheets/itsf/backend/application/panel-with-actions.css.less
492
- - app/assets/stylesheets/itsf/backend/application/sidebar.css.less
493
492
  - app/assets/stylesheets/itsf/backend/application/tab-with-nav.css.less
494
493
  - app/assets/stylesheets/itsf/backend/application/table-actions.css.less
495
494
  - app/assets/stylesheets/itsf/backend/application/table-responsive.css.less
@@ -1,159 +0,0 @@
1
- /*!
2
- * Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
3
- * Code licensed under the Apache License v2.0.
4
- * For details, see http://www.apache.org/licenses/LICENSE-2.0.
5
- */
6
-
7
- /* Toggle Styles */
8
-
9
- #wrapper {
10
- padding-left: 0;
11
- -webkit-transition: all 0.5s ease;
12
- -moz-transition: all 0.5s ease;
13
- -o-transition: all 0.5s ease;
14
- transition: all 0.5s ease;
15
- }
16
-
17
- #wrapper.toggled {
18
- padding-left: 250px;
19
- }
20
-
21
- #sidebar-wrapper {
22
- z-index: 1000;
23
- position: fixed;
24
- left: 250px;
25
- width: 0;
26
- height: 100%;
27
- margin-left: -250px;
28
- overflow-y: auto;
29
- /*background: #000;*/
30
- -webkit-transition: all 0.5s ease;
31
- -moz-transition: all 0.5s ease;
32
- -o-transition: all 0.5s ease;
33
- transition: all 0.5s ease;
34
- }
35
-
36
- #wrapper.toggled #sidebar-wrapper {
37
- width: 250px;
38
- }
39
-
40
- #page-content-wrapper {
41
- width: 100%;
42
- position: absolute;
43
- padding: 15px;
44
- }
45
-
46
- #wrapper.toggled #page-content-wrapper {
47
- position: absolute;
48
- margin-right: -250px;
49
- }
50
-
51
- /* Sidebar Styles */
52
-
53
- #sidebar-wrapper {
54
- padding: 20px;
55
-
56
- .panel {
57
- margin-top: 0px;
58
-
59
- .list-group {
60
- margin-bottom: 0px;
61
- }
62
-
63
- .list-group-item {
64
- border-left: none;
65
- border-right: none;
66
- border-radius: 0px;
67
- }
68
-
69
- .list-group-item:last-child {
70
- border-bottom: none;
71
- }
72
- }
73
-
74
- .panel:not(:first-child) {
75
- border-top-left-radius: 0px;
76
- border-top-right-radius: 0px;
77
- }
78
-
79
- .panel:not(:last-child) {
80
- border-bottom-left-radius: 0px;
81
- border-bottom-right-radius: 0px;
82
- border-bottom: 0px;
83
- }
84
- }
85
-
86
- /*
87
- .sidebar-nav {
88
- position: absolute;
89
- top: 0;
90
- width: 250px;
91
- margin: 0;
92
- padding: 0;
93
- list-style: none;
94
- }
95
-
96
- .sidebar-nav li {
97
- text-indent: 20px;
98
- line-height: 40px;
99
- }
100
-
101
- .sidebar-nav li a {
102
- display: block;
103
- text-decoration: none;
104
- color: #999999;
105
- }
106
-
107
- .sidebar-nav li a:hover {
108
- text-decoration: none;
109
- color: #fff;
110
- background: rgba(255,255,255,0.2);
111
- }
112
-
113
- .sidebar-nav li a:active,
114
- .sidebar-nav li a:focus {
115
- text-decoration: none;
116
- }
117
-
118
- .sidebar-nav > .sidebar-brand {
119
- height: 65px;
120
- font-size: 18px;
121
- line-height: 60px;
122
- }
123
-
124
- .sidebar-nav > .sidebar-brand a {
125
- color: #999999;
126
- }
127
-
128
- .sidebar-nav > .sidebar-brand a:hover {
129
- color: #fff;
130
- background: none;
131
- }
132
- */
133
- @media(min-width:768px) {
134
- #wrapper {
135
- padding-left: 250px;
136
- }
137
-
138
- #wrapper.toggled {
139
- padding-left: 0;
140
- }
141
-
142
- #sidebar-wrapper {
143
- width: 250px;
144
- }
145
-
146
- #wrapper.toggled #sidebar-wrapper {
147
- width: 0;
148
- }
149
-
150
- #page-content-wrapper {
151
- padding: 20px;
152
- position: relative;
153
- }
154
-
155
- #wrapper.toggled #page-content-wrapper {
156
- position: relative;
157
- margin-right: 0;
158
- }
159
- }