viniBaxter-desk_front 300.0.2 → 300.0.8

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: 62584c17edf48ab450f6adfdb42af3a225b3b927d107a47afcbd84dc8709145f
4
- data.tar.gz: ec0c47bfc4bb63f02f7e0e028fb3326847bae93b2f2be4fbc0fe42a10f99490f
3
+ metadata.gz: 0703cdf67ca82e2895667009be30e8e4489637bf6fb9987f0a55f4dafd8e0d9f
4
+ data.tar.gz: df106aabc4b26524d1688e3db9278e264f72edfd56566815ed2b174afdfd098c
5
5
  SHA512:
6
- metadata.gz: 2b70ad622773d562b357126e2e570810833288151594e53f2a8d5a945643efd0b6193930002420b3946eead2db4e6b6106f7ef7bfff45eca81f4c49ece5d5df7
7
- data.tar.gz: 35b37fc29079a23d3c39e74407378aad560e27f5c3692c4f64dd8af29b87889f7c88501c8c2834db29a3479073bacb228f0275405882e75ed619d1ed59dffc97
6
+ metadata.gz: 9f7e4f31873bad9cb5be2e5a7e755738a73901f932cfb2135ef7a71edfe6de5a9e3669c04b4fa52623a55ea1e2ece85295a0c741b53945b7e1b8c45503af4aca
7
+ data.tar.gz: fda0a85d6de83d93fa15b83cbb558daa30bcc0d9aec19125b499d3f4a9d1ace204c801e3e3305638bb99793119a26d3f148bb6629d9062c7e5667a647e82793a
@@ -2,7 +2,7 @@ module ViniBaxter
2
2
  module DeskFront
3
3
  MAJOR = 300
4
4
  MINOR = 0
5
- TINY = 2
5
+ TINY = 8
6
6
  PRE = "STUDIO"
7
7
 
8
8
  VERSION = [MAJOR, MINOR, TINY].compact.join(".")
@@ -66,10 +66,10 @@ body {
66
66
  }
67
67
 
68
68
  a,
69
- p {
70
- font-weight: $font-weight-light;
71
- @include font-size($paragraph-font-size);
72
- }
69
+ p {
70
+ font-weight: $font-weight-light;
71
+ // @include font-size($paragraph-font-size);
72
+ }
73
73
  }
74
74
 
75
75
  // Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
@@ -200,6 +200,7 @@ sup {
200
200
  sub {
201
201
  bottom: -0.25em;
202
202
  }
203
+
203
204
  sup {
204
205
  top: -0.5em;
205
206
  }
@@ -371,7 +372,8 @@ select {
371
372
  // controls in Android 4.
372
373
  // 2. Correct the inability to style clickable types in iOS and Safari.
373
374
  button,
374
- [type="button"], // 1
375
+ [type="button"],
376
+ // 1
375
377
  [type="reset"],
376
378
  [type="submit"] {
377
379
  -webkit-appearance: button; // 2
@@ -379,6 +381,7 @@ button,
379
381
 
380
382
  // Opinionated: add "hand" cursor to non-disabled button elements.
381
383
  @if $enable-pointer-cursor-for-buttons {
384
+
382
385
  button,
383
386
  [type='button'],
384
387
  [type='reset'],
@@ -495,4 +498,4 @@ template {
495
498
  // Needed for proper display in IE 10-.
496
499
  [hidden] {
497
500
  display: none !important;
498
- }
501
+ }
@@ -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 + 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 + 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, $value in $theme-colors {
97
- @include table-row-variant(
98
- $color,
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
- > .table-bordered {
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, .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, .h2 {
20
+ h2,
21
+ .h2 {
20
22
  margin-bottom: $headings-margin-bottom;
21
23
  }
22
24
 
23
- h3, .h3 {
25
+ h3,
26
+ .h3 {
24
27
  margin-bottom: ($headings-margin-bottom * .75);
25
28
  }
26
29
 
27
- h4, .h4 {
30
+ h4,
31
+ .h4 {
28
32
  margin-bottom: ($headings-margin-bottom * .5);
29
33
  }
30
34
 
31
- h5, .h5 {
35
+ h5,
36
+ .h5 {
32
37
  margin-bottom: ($headings-margin-bottom * .5);
33
38
  }
34
39
 
35
- h6, .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, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
43
-
44
- > a {
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, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
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, strong {
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, button {
109
+ a,
110
+ button {
80
111
 
81
112
  &:focus {
82
113
  outline: none !important;
83
114
  }
84
- }
115
+ }
@@ -38,7 +38,7 @@ tbody tr {
38
38
 
39
39
  td,
40
40
  th {
41
- font-feature-settings: "kern", "liga", "clig", "calt", "lnum", "tnum";
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;
@@ -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
 
@@ -1,5 +1,5 @@
1
1
  .cell-label {
2
- padding-top: 0.15em;
2
+ // padding-top: 0.15em;
3
3
 
4
4
  &:hover {
5
5
  a {
@@ -104,8 +104,8 @@
104
104
  position: absolute;
105
105
  height: 6px;
106
106
  width: 6px;
107
- top: 17px;
108
- left: -4px;
107
+ top: 40%;
108
+ left: 3px;
109
109
  background: $color;
110
110
  border-radius: 50%;
111
111
  }
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.2
4
+ version: 300.0.8
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-01-15 00:00:00.000000000 Z
11
+ date: 2022-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler