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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a00d60a438ddf4103202b3437537b8491e721f1d6422e4c6fc3405326054173
|
4
|
+
data.tar.gz: e533d7156e3f945f633cb90c99a63839c12ec4e597ffead7d7bf4258367e4068
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 341407d96731cec6bc49d4cdfc73533fbb182d3585f4fb06bc8a2a29f208f2668f5f62bac8e4168d09a76e4c6c72e21112e4cc99dc58192fa75db65e9666f26c
|
7
|
+
data.tar.gz: 6ae6797dfe0b47db8891ec13c1a07dfda2403b144db6c5701a06fd81650766170fc73648dff10eb3459587b9d375797cbe164b0f69ed8b1b08619f6eba8cd77d
|
@@ -25,7 +25,7 @@
|
|
25
25
|
// @import "custom/images";
|
26
26
|
// @import "custom/input-group";
|
27
27
|
// @import "custom/info-areas";
|
28
|
-
|
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
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
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
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
24
|
+
.arrow-margin-left,
|
25
|
+
.arrow-margin-right {
|
26
|
+
position: absolute;
|
27
|
+
}
|
28
28
|
|
29
|
-
|
30
|
-
|
31
|
-
|
29
|
+
.arrow-margin-right {
|
30
|
+
right: 0;
|
31
|
+
}
|
32
32
|
|
33
|
-
|
34
|
-
|
35
|
-
|
33
|
+
.arrow-margin-left {
|
34
|
+
left: 0;
|
35
|
+
}
|
36
36
|
|
37
|
-
|
38
|
-
|
39
|
-
|
37
|
+
.page-item.active > .page-link {
|
38
|
+
color: $white;
|
39
|
+
box-shadow: $box-shadow;
|
40
40
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
41
|
+
&,
|
42
|
+
&:focus,
|
43
|
+
&:hover {
|
44
|
+
@include diagonal-gradient($primary, $primary-states);
|
45
45
|
|
46
|
-
|
47
|
-
}
|
46
|
+
color: $white;
|
48
47
|
}
|
48
|
+
}
|
49
49
|
|
50
|
-
|
51
|
-
|
52
|
-
|
50
|
+
.page-item.disabled > .page-link {
|
51
|
+
opacity: 0.5;
|
52
|
+
}
|
53
53
|
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
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
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
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
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
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
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
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
|
-
|
98
|
-
|
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
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
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
|
-
|
139
|
-
|
143
|
+
display: none !important;
|
144
|
+
}
|
140
145
|
}
|
141
146
|
}
|
Binary file
|
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:
|
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-
|
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:
|