viniBaxter-desk_front 13.0.0 → 14.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 737558cfc0374e9f2820cee3231d7b70767734059c59aa2f78a6ff7b3a677234
4
- data.tar.gz: 71dae2c2679b22e342de46139e55fc4851c0f4f3e17a13d1edab8741a0465651
3
+ metadata.gz: 3a00d60a438ddf4103202b3437537b8491e721f1d6422e4c6fc3405326054173
4
+ data.tar.gz: e533d7156e3f945f633cb90c99a63839c12ec4e597ffead7d7bf4258367e4068
5
5
  SHA512:
6
- metadata.gz: 300e0d5e82c13efc720b305dfdf46a7927997c375a48891684e8d240ebc00f6b9a346d26e109db32ae99d89d45e6a4d627bc25f4363fdd9a00cc9d77f50045db
7
- data.tar.gz: d57a78baae3ebd611301da6524a95433e8ce1df9af4537b3d7f3594199aacdfec4fa26a2f1915329c9b6110e72078748bfe0db30111ae9388769dab947f3e9a6
6
+ metadata.gz: 341407d96731cec6bc49d4cdfc73533fbb182d3585f4fb06bc8a2a29f208f2668f5f62bac8e4168d09a76e4c6c72e21112e4cc99dc58192fa75db65e9666f26c
7
+ data.tar.gz: 6ae6797dfe0b47db8891ec13c1a07dfda2403b144db6c5701a06fd81650766170fc73648dff10eb3459587b9d375797cbe164b0f69ed8b1b08619f6eba8cd77d
@@ -1,5 +1,5 @@
1
1
  module ViniBaxter
2
2
  module DeskFront
3
- VERSION = "13.0.0"
3
+ VERSION = "14.0.0"
4
4
  end
5
5
  end
@@ -25,7 +25,7 @@
25
25
  // @import "custom/images";
26
26
  // @import "custom/input-group";
27
27
  // @import "custom/info-areas";
28
- // @import "custom/pagination";
28
+ @import 'custom/pagination';
29
29
  // @import "custom/pills";
30
30
  // @import "custom/popover";
31
31
  // @import "custom/progress";
@@ -1,141 +1,146 @@
1
1
  .pagination {
2
- .page-item .page-link {
3
- border: 0;
4
- border-radius: 30px !important;
5
- transition: all .3s;
6
- margin: 0 3px;
7
- min-width: 30px;
8
- text-align: center;
9
- height: 30px;
10
- line-height: 30px;
11
- cursor: pointer;
12
- text-transform: uppercase;
13
- outline: none;
14
-
15
- &:hover,
16
- &:focus {
17
- background-color: rgba($white, 0.1);
18
- color: $white;
19
- border: none;
20
- box-shadow: none;
21
- }
2
+ .page-item .page-link {
3
+ border: 0;
4
+ border-radius: 30px !important;
5
+ transition: all 0.3s;
6
+ margin: 0 3px;
7
+ min-width: 30px;
8
+ text-align: center;
9
+ height: 30px;
10
+ line-height: 30px;
11
+ cursor: pointer;
12
+ text-transform: uppercase;
13
+ outline: none;
14
+
15
+ &:hover,
16
+ &:focus {
17
+ background-color: rgba($white, 0.1);
18
+ color: $white;
19
+ border: none;
20
+ box-shadow: none;
22
21
  }
22
+ }
23
23
 
24
- .arrow-margin-left,
25
- .arrow-margin-right {
26
- position: absolute;
27
- }
24
+ .arrow-margin-left,
25
+ .arrow-margin-right {
26
+ position: absolute;
27
+ }
28
28
 
29
- .arrow-margin-right {
30
- right: 0;
31
- }
29
+ .arrow-margin-right {
30
+ right: 0;
31
+ }
32
32
 
33
- .arrow-margin-left {
34
- left: 0;
35
- }
33
+ .arrow-margin-left {
34
+ left: 0;
35
+ }
36
36
 
37
- .page-item.active > .page-link {
38
- color: $white;
39
- box-shadow: $box-shadow;
37
+ .page-item.active > .page-link {
38
+ color: $white;
39
+ box-shadow: $box-shadow;
40
40
 
41
- &,
42
- &:focus,
43
- &:hover{
44
- @include diagonal-gradient($primary, $primary-states);
41
+ &,
42
+ &:focus,
43
+ &:hover {
44
+ @include diagonal-gradient($primary, $primary-states);
45
45
 
46
- color: $white;
47
- }
46
+ color: $white;
48
47
  }
48
+ }
49
49
 
50
- .page-item.disabled > .page-link{
51
- opacity: .5;
52
- }
50
+ .page-item.disabled > .page-link {
51
+ opacity: 0.5;
52
+ }
53
53
 
54
- // Colors
55
- &.pagination-info{
56
- .page-item.active > .page-link{
57
- &,
58
- &:focus,
59
- &:hover{
60
- @include diagonal-gradient($info, $info-states);
61
- }
62
- }
54
+ // Colors
55
+ &.pagination-info {
56
+ .page-item.active > .page-link {
57
+ &,
58
+ &:focus,
59
+ &:hover {
60
+ @include diagonal-gradient($info, $info-states);
61
+ }
63
62
  }
63
+ }
64
64
 
65
- &.pagination-success{
66
- .page-item.active > .page-link{
67
- &,
68
- &:focus,
69
- &:hover{
70
- @include diagonal-gradient($success, $success-states);
71
- }
72
- }
65
+ &.pagination-success {
66
+ .page-item.active > .page-link {
67
+ &,
68
+ &:focus,
69
+ &:hover {
70
+ @include diagonal-gradient($success, $success-states);
71
+ }
73
72
  }
73
+ }
74
74
 
75
- &.pagination-primary{
76
- .page-item.active > .page-link{
77
- &,
78
- &:focus,
79
- &:hover{
80
- @include diagonal-gradient($primary, $primary-states);
81
-
82
- }
83
- }
75
+ &.pagination-primary {
76
+ .page-item.active > .page-link {
77
+ &,
78
+ &:focus,
79
+ &:hover {
80
+ @include diagonal-gradient($primary, $primary-states);
81
+ }
84
82
  }
83
+ }
85
84
 
86
- &.pagination-warning{
87
- .page-item.active > .page-link{
88
- &,
89
- &:focus,
90
- &:hover{
91
- @include diagonal-gradient($warning, $warning-states);
85
+ &.pagination-warning {
86
+ .page-item.active > .page-link {
87
+ &,
88
+ &:focus,
89
+ &:hover {
90
+ @include diagonal-gradient($warning, $warning-states);
91
+ }
92
+ }
93
+ }
94
+ &.pagination-dark {
95
+ .page-item.active > .page-link {
96
+ &,
97
+ &:focus,
98
+ &:hover {
99
+ @include diagonal-gradient($dark, $warning);
100
+ }
101
+ }
102
+ }
92
103
 
93
- }
94
- }
104
+ &.pagination-danger {
105
+ .page-item.active > .page-link {
106
+ &,
107
+ &:focus,
108
+ &:hover {
109
+ @include diagonal-gradient($danger, $danger-states);
110
+ }
95
111
  }
112
+ }
96
113
 
97
- &.pagination-danger{
98
- .page-item.active > .page-link{
99
- &,
100
- &:focus,
101
- &:hover{
102
- @include diagonal-gradient($danger, $danger-states);
114
+ &.pagination-neutral {
115
+ .page-item > .page-link {
116
+ color: $white;
103
117
 
104
- }
105
- }
118
+ &:focus,
119
+ &:hover {
120
+ background-color: $opacity-2;
121
+ color: $white;
122
+ }
106
123
  }
107
124
 
108
- &.pagination-neutral{
109
- .page-item > .page-link{
110
- color: $white;
111
-
112
- &:focus,
113
- &:hover{
114
- background-color: $opacity-2;
115
- color: $white;
116
- }
117
- }
118
-
119
- .page-item.active > .page-link{
120
- &,
121
- &:focus,
122
- &:hover{
123
- background-color: $white;
124
- border-color: $white;
125
- color: $brand-primary;
126
- }
127
- }
125
+ .page-item.active > .page-link {
126
+ &,
127
+ &:focus,
128
+ &:hover {
129
+ background-color: $white;
130
+ border-color: $white;
131
+ color: $brand-primary;
132
+ }
128
133
  }
129
-
134
+ }
130
135
  }
131
136
 
132
- @include media-breakpoint-down(sm){
137
+ @include media-breakpoint-down(sm) {
133
138
  div.dataTables_paginate ul.pagination {
134
139
  .page-item:first-of-type,
135
140
  .page-item:nth-of-type(2),
136
141
  .page-item:nth-of-type(8),
137
142
  .page-item:last-of-type {
138
- display: none !important;
139
- }
143
+ display: none !important;
144
+ }
140
145
  }
141
146
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: viniBaxter-desk_front
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.0.0
4
+ version: 14.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - viny baxter
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-06-05 00:00:00.000000000 Z
11
+ date: 2020-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -352,6 +352,7 @@ files:
352
352
  - lib/viniBaxter/sass/desk_front/landing/spa_landing/theme/utilities/_visibility.scss
353
353
  - lib/viniBaxter/sass/desk_front/theme-dark.scss
354
354
  - lib/viniBaxter/sass/desk_front/theme.scss
355
+ - viniBaxter-desk_front-13.0.0.gem
355
356
  - viniBaxter-desk_front.gemspec
356
357
  homepage:
357
358
  licenses: