viniBaxter-desk_front 300.0.6 → 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/bootstrap/_tables.scss +12 -9
- data/lib/viniBaxter/sass/desk_front/dashkit/_type.scss +44 -13
- data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/administrate/components/_attributes.scss +12 -1
- metadata +2 -2
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
|
@@ -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
|
+
}
|
@@ -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
|
+
}
|
data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/administrate/components/_attributes.scss
CHANGED
@@ -25,11 +25,22 @@
|
|
25
25
|
.attribute-data--text,
|
26
26
|
.cell-data--text {
|
27
27
|
a {
|
28
|
-
text-decoration: underline;
|
28
|
+
// text-decoration: underline;
|
29
29
|
font-weight: 200;
|
30
30
|
font-style: italic;
|
31
31
|
font-size: $font-size-sm;
|
32
32
|
}
|
33
|
+
|
34
|
+
a[target=_blank] {
|
35
|
+
text-decoration: underline;
|
36
|
+
}
|
37
|
+
|
38
|
+
|
39
|
+
p {
|
40
|
+
a {
|
41
|
+
text-decoration: underline;
|
42
|
+
}
|
43
|
+
}
|
33
44
|
}
|
34
45
|
|
35
46
|
|
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
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-02-
|
11
|
+
date: 2022-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|