viniBaxter-desk_front 300.0.1 → 300.0.7
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 +4 -4
- data/lib/viniBaxter/desk_front/version.rb +1 -1
- data/lib/viniBaxter/sass/desk_front/.DS_Store +0 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap/_tables.scss +12 -9
- data/lib/viniBaxter/sass/desk_front/bootstrap/bootstrap.scss +0 -7
- data/lib/viniBaxter/sass/desk_front/dashkit/_type.scss +44 -13
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_quill.scss +6 -4
- data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/administrate/base/_tables.scss +1 -1
- data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/administrate/components/_attributes.scss +25 -0
- data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/administrate/components/_cells.scss +1 -1
- data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/mixins/_nav-setup-ntf.scss +2 -2
- data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/new_nav/_sidebar-and-main-panel.scss +4 -0
- data/lib/viniBaxter/sass/desk_front-studio.scss +5 -0
- metadata +8 -11
- data/lib/viniBaxter/sass/desk_front-boostrap.scss +0 -2
- data/lib/viniBaxter/sass/desk_front-template.scss +0 -2
- data/lib/viniBaxter/sass/desk_front-v2lrf-dashboard.scss +0 -6
- data/lib/viniBaxter/sass/desk_front.scss +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: faef0cbf7ca73b72262d752b5ed048e4f66e5c8c5edc4816de47a798fed6851a
|
4
|
+
data.tar.gz: 888617bc232b53cc0688c294a8a26548d37e8286257be577d7a6d2bd3e69ceb0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1ee176f453ad47068aabb4b5dc9c6b1c6b8ca7097223241b814e8c54792bbc826c5cfd0befa43b004b80a719e1478e01346402ca3094cddc5cba0a17d888d86
|
7
|
+
data.tar.gz: 3a2f44d27822575a206719edc534d5e39f9fa04a90cce024b0542043b9efdcae7c26b37e3ff46ca58f5d31bc518c72bc3090785fb266604931588561451989c9
|
Binary file
|
@@ -13,6 +13,7 @@
|
|
13
13
|
padding: $table-cell-padding;
|
14
14
|
vertical-align: top;
|
15
15
|
border-top: $table-border-width solid $table-border-color;
|
16
|
+
border-right: $table-border-width solid $table-border-color;
|
16
17
|
}
|
17
18
|
|
18
19
|
thead th {
|
@@ -20,7 +21,7 @@
|
|
20
21
|
border-bottom: (2 * $table-border-width) solid $table-border-color;
|
21
22
|
}
|
22
23
|
|
23
|
-
tbody
|
24
|
+
tbody+tbody {
|
24
25
|
border-top: (2 * $table-border-width) solid $table-border-color;
|
25
26
|
}
|
26
27
|
}
|
@@ -30,6 +31,7 @@
|
|
30
31
|
//
|
31
32
|
|
32
33
|
.table-sm {
|
34
|
+
|
33
35
|
th,
|
34
36
|
td {
|
35
37
|
padding: $table-cell-padding-xs;
|
@@ -49,6 +51,7 @@
|
|
49
51
|
}
|
50
52
|
|
51
53
|
thead {
|
54
|
+
|
52
55
|
th,
|
53
56
|
td {
|
54
57
|
border-bottom-width: 2 * $table-border-width;
|
@@ -57,10 +60,11 @@
|
|
57
60
|
}
|
58
61
|
|
59
62
|
.table-borderless {
|
63
|
+
|
60
64
|
th,
|
61
65
|
td,
|
62
66
|
thead th,
|
63
|
-
tbody
|
67
|
+
tbody+tbody {
|
64
68
|
border: 0;
|
65
69
|
}
|
66
70
|
}
|
@@ -93,12 +97,11 @@
|
|
93
97
|
// Exact selectors below required to override `.table-striped` and prevent
|
94
98
|
// inheritance to nested tables.
|
95
99
|
|
96
|
-
@each $color,
|
97
|
-
|
98
|
-
|
100
|
+
@each $color,
|
101
|
+
$value in $theme-colors {
|
102
|
+
@include table-row-variant($color,
|
99
103
|
theme-color-level($color, $table-bg-level),
|
100
|
-
theme-color-level($color, $table-border-level)
|
101
|
-
);
|
104
|
+
theme-color-level($color, $table-border-level));
|
102
105
|
}
|
103
106
|
|
104
107
|
@include table-row-variant(active, $table-active-bg);
|
@@ -174,10 +177,10 @@
|
|
174
177
|
-webkit-overflow-scrolling: touch;
|
175
178
|
|
176
179
|
// Prevent double border on horizontal scroll due to use of `display: block;`
|
177
|
-
|
180
|
+
>.table-bordered {
|
178
181
|
border: 0;
|
179
182
|
}
|
180
183
|
}
|
181
184
|
}
|
182
185
|
}
|
183
|
-
}
|
186
|
+
}
|
@@ -1,10 +1,3 @@
|
|
1
|
-
/*!
|
2
|
-
* Bootstrap v4.5.2 (https://getbootstrap.com/)
|
3
|
-
* Copyright 2011-2020 The Bootstrap Authors
|
4
|
-
* Copyright 2011-2020 Twitter, Inc.
|
5
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
6
|
-
*/
|
7
|
-
|
8
1
|
@import 'mixins';
|
9
2
|
@import 'root';
|
10
3
|
@import 'reboot';
|
@@ -7,7 +7,8 @@
|
|
7
7
|
// Bootstrap Overrides =====================================
|
8
8
|
//
|
9
9
|
|
10
|
-
h1,
|
10
|
+
h1,
|
11
|
+
.h1 {
|
11
12
|
margin-bottom: $headings-margin-bottom;
|
12
13
|
font-size: 1.5rem;
|
13
14
|
|
@@ -16,32 +17,48 @@ h1, .h1 {
|
|
16
17
|
}
|
17
18
|
}
|
18
19
|
|
19
|
-
h2,
|
20
|
+
h2,
|
21
|
+
.h2 {
|
20
22
|
margin-bottom: $headings-margin-bottom;
|
21
23
|
}
|
22
24
|
|
23
|
-
h3,
|
25
|
+
h3,
|
26
|
+
.h3 {
|
24
27
|
margin-bottom: ($headings-margin-bottom * .75);
|
25
28
|
}
|
26
29
|
|
27
|
-
h4,
|
30
|
+
h4,
|
31
|
+
.h4 {
|
28
32
|
margin-bottom: ($headings-margin-bottom * .5);
|
29
33
|
}
|
30
34
|
|
31
|
-
h5,
|
35
|
+
h5,
|
36
|
+
.h5 {
|
32
37
|
margin-bottom: ($headings-margin-bottom * .5);
|
33
38
|
}
|
34
39
|
|
35
|
-
h6,
|
40
|
+
h6,
|
41
|
+
.h6 {
|
36
42
|
margin-bottom: ($headings-margin-bottom * .5);
|
37
43
|
}
|
38
44
|
|
39
45
|
|
40
46
|
// Links
|
41
47
|
|
42
|
-
h1,
|
43
|
-
|
44
|
-
|
48
|
+
h1,
|
49
|
+
.h1,
|
50
|
+
h2,
|
51
|
+
.h2,
|
52
|
+
h3,
|
53
|
+
.h3,
|
54
|
+
h4,
|
55
|
+
.h4,
|
56
|
+
h5,
|
57
|
+
.h5,
|
58
|
+
h6,
|
59
|
+
.h6 {
|
60
|
+
|
61
|
+
>a {
|
45
62
|
color: inherit;
|
46
63
|
}
|
47
64
|
}
|
@@ -57,7 +74,18 @@ h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
|
|
57
74
|
|
58
75
|
// Headings
|
59
76
|
|
60
|
-
h1,
|
77
|
+
h1,
|
78
|
+
.h1,
|
79
|
+
h2,
|
80
|
+
.h2,
|
81
|
+
h3,
|
82
|
+
.h3,
|
83
|
+
h4,
|
84
|
+
.h4,
|
85
|
+
h5,
|
86
|
+
.h5,
|
87
|
+
h6,
|
88
|
+
.h6 {
|
61
89
|
letter-spacing: $headings-letter-spacing;
|
62
90
|
}
|
63
91
|
|
@@ -67,7 +95,9 @@ h6.text-uppercase {
|
|
67
95
|
|
68
96
|
// Bold, strong
|
69
97
|
|
70
|
-
b,
|
98
|
+
b,
|
99
|
+
strong {
|
100
|
+
font-family: "suisseBook" !important;
|
71
101
|
font-weight: $font-weight-bold;
|
72
102
|
}
|
73
103
|
|
@@ -76,9 +106,10 @@ b, strong {
|
|
76
106
|
//
|
77
107
|
// Removes focus outline
|
78
108
|
|
79
|
-
a,
|
109
|
+
a,
|
110
|
+
button {
|
80
111
|
|
81
112
|
&:focus {
|
82
113
|
outline: none !important;
|
83
114
|
}
|
84
|
-
}
|
115
|
+
}
|
@@ -16,11 +16,11 @@
|
|
16
16
|
color: $input-color;
|
17
17
|
}
|
18
18
|
|
19
|
-
.ql-toolbar
|
19
|
+
.ql-toolbar+.ql-container {
|
20
20
|
margin-top: -$border-width;
|
21
21
|
}
|
22
22
|
|
23
|
-
.ql-toolbar
|
23
|
+
.ql-toolbar+.ql-container .ql-editor {
|
24
24
|
border-top-left-radius: 0;
|
25
25
|
border-top-right-radius: 0;
|
26
26
|
}
|
@@ -75,6 +75,7 @@
|
|
75
75
|
font-style: normal;
|
76
76
|
color: $input-placeholder-color;
|
77
77
|
}
|
78
|
+
|
78
79
|
.ql-editor:focus {
|
79
80
|
color: #12263F;
|
80
81
|
background-color: #FFFFFF;
|
@@ -167,7 +168,8 @@
|
|
167
168
|
|
168
169
|
// Arrow
|
169
170
|
|
170
|
-
&:before,
|
171
|
+
&:before,
|
172
|
+
&:after {
|
171
173
|
content: '';
|
172
174
|
position: absolute;
|
173
175
|
left: 50%;
|
@@ -287,4 +289,4 @@
|
|
287
289
|
.ql-editor img {
|
288
290
|
max-width: 100%;
|
289
291
|
height: auto;
|
290
|
-
}
|
292
|
+
}
|
@@ -38,7 +38,7 @@ tbody tr {
|
|
38
38
|
|
39
39
|
td,
|
40
40
|
th {
|
41
|
-
font-feature-settings:
|
41
|
+
font-feature-settings: $base-font;
|
42
42
|
font-kerning: normal;
|
43
43
|
font-variant-ligatures: common-ligatures, contextual;
|
44
44
|
font-variant-numeric: lining-nums, tabular-nums;
|
data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/administrate/components/_attributes.scss
CHANGED
@@ -18,8 +18,33 @@
|
|
18
18
|
margin-bottom: 0rem;
|
19
19
|
margin-left: 0rem;
|
20
20
|
width: calc(85% - 1rem);
|
21
|
+
|
22
|
+
}
|
23
|
+
|
24
|
+
/* Suffix */
|
25
|
+
.attribute-data--text,
|
26
|
+
.cell-data--text {
|
27
|
+
a {
|
28
|
+
// text-decoration: underline;
|
29
|
+
font-weight: 200;
|
30
|
+
font-style: italic;
|
31
|
+
font-size: $font-size-sm;
|
32
|
+
}
|
33
|
+
|
34
|
+
a[target=_blank] {
|
35
|
+
text-decoration: underline;
|
36
|
+
}
|
37
|
+
|
38
|
+
|
39
|
+
p {
|
40
|
+
a {
|
41
|
+
text-decoration: underline;
|
42
|
+
}
|
43
|
+
}
|
21
44
|
}
|
22
45
|
|
46
|
+
|
47
|
+
|
23
48
|
.attribute--nested {
|
24
49
|
border: $base-border;
|
25
50
|
padding: $small-spacing;
|
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: 300.0.
|
4
|
+
version: 300.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- viny baxter
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -82,10 +82,7 @@ files:
|
|
82
82
|
- lib/viniBaxter/desk_front/engine.rb
|
83
83
|
- lib/viniBaxter/desk_front/version.rb
|
84
84
|
- lib/viniBaxter/sass/.DS_Store
|
85
|
-
- lib/viniBaxter/sass/desk_front-
|
86
|
-
- lib/viniBaxter/sass/desk_front-template.scss
|
87
|
-
- lib/viniBaxter/sass/desk_front-v2lrf-dashboard.scss
|
88
|
-
- lib/viniBaxter/sass/desk_front.scss
|
85
|
+
- lib/viniBaxter/sass/desk_front-studio.scss
|
89
86
|
- lib/viniBaxter/sass/desk_front/.DS_Store
|
90
87
|
- lib/viniBaxter/sass/desk_front/bootstrap/_alert.scss
|
91
88
|
- lib/viniBaxter/sass/desk_front/bootstrap/_badge.scss
|
@@ -335,11 +332,11 @@ files:
|
|
335
332
|
- lib/viniBaxter/sass/desk_front/v2lrf-dashboard/new_nav/_sidebar-and-main-panel.scss
|
336
333
|
- lib/viniBaxter/sass/desk_front/v2lrf-dashboard/new_nav/_white-content.scss
|
337
334
|
- viniBaxter-desk_front.gemspec
|
338
|
-
homepage:
|
335
|
+
homepage:
|
339
336
|
licenses:
|
340
337
|
- MIT
|
341
338
|
metadata: {}
|
342
|
-
post_install_message:
|
339
|
+
post_install_message:
|
343
340
|
rdoc_options: []
|
344
341
|
require_paths:
|
345
342
|
- lib
|
@@ -354,8 +351,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
354
351
|
- !ruby/object:Gem::Version
|
355
352
|
version: '0'
|
356
353
|
requirements: []
|
357
|
-
rubygems_version: 3.
|
358
|
-
signing_key:
|
354
|
+
rubygems_version: 3.2.32
|
355
|
+
signing_key:
|
359
356
|
specification_version: 4
|
360
357
|
summary: test on front
|
361
358
|
test_files: []
|