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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd6db0d830c37133a21a7958ce6758f20d40fa1ebc2e0f24ed3f23fdbcedd4e0
4
- data.tar.gz: 5ee1df2523ce87a2fdd2664b66938af5e3d4013783dd1046945b6dd6c6d693c4
3
+ metadata.gz: faef0cbf7ca73b72262d752b5ed048e4f66e5c8c5edc4816de47a798fed6851a
4
+ data.tar.gz: 888617bc232b53cc0688c294a8a26548d37e8286257be577d7a6d2bd3e69ceb0
5
5
  SHA512:
6
- metadata.gz: f858c136b80c1801a0114167bf27b3d81d121b887691ef0b1f9c5b0eef2e64042909225cdec6e0401a291c1a57a4b61f9b84832de3204ee70a813776344a35f1
7
- data.tar.gz: f74c010c7a0199984bbea311f6921fbd83937ea781f671f1ead9a8a57415dfbf34dab4693d493509b55309ec8619799e7678d93497f0604358fa66a6c59bf716
6
+ metadata.gz: c1ee176f453ad47068aabb4b5dc9c6b1c6b8ca7097223241b814e8c54792bbc826c5cfd0befa43b004b80a719e1478e01346402ca3094cddc5cba0a17d888d86
7
+ data.tar.gz: 3a2f44d27822575a206719edc534d5e39f9fa04a90cce024b0542043b9efdcae7c26b37e3ff46ca58f5d31bc518c72bc3090785fb266604931588561451989c9
@@ -2,7 +2,7 @@ module ViniBaxter
2
2
  module DeskFront
3
3
  MAJOR = 300
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 7
6
6
  PRE = "STUDIO"
7
7
 
8
8
  VERSION = [MAJOR, MINOR, TINY].compact.join(".")
@@ -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
+ }
@@ -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, .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
+ }
@@ -16,11 +16,11 @@
16
16
  color: $input-color;
17
17
  }
18
18
 
19
- .ql-toolbar + .ql-container {
19
+ .ql-toolbar+.ql-container {
20
20
  margin-top: -$border-width;
21
21
  }
22
22
 
23
- .ql-toolbar + .ql-container .ql-editor {
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, &:after {
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: "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;
@@ -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;
@@ -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
  }
@@ -503,6 +503,10 @@
503
503
  }
504
504
 
505
505
  &.main-panel-dashboard-light {
506
+ @include media-breakpoint-up(xl) {
507
+ overflow-y: hidden;
508
+ }
509
+
506
510
  &[data='light'] {
507
511
  border-top: 2px solid $nft-dark;
508
512
 
@@ -0,0 +1,5 @@
1
+ @import 'desk_front/bootstrap/bootstrap';
2
+ @import 'desk_front/v2lrf-dashboard/index';
3
+ @import 'desk_front/landing/landing';
4
+ @import 'desk_front/v2lrf-dashboard/new_nav';
5
+ @import 'desk_front/dashkit/dashkit';
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.1
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: 2021-12-23 00:00:00.000000000 Z
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-boostrap.scss
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.1.2
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: []
@@ -1,2 +0,0 @@
1
- // bootstrap
2
- @import 'desk_front/bootstrap/bootstrap';
@@ -1,2 +0,0 @@
1
- // Template core Dashkit but could be what you want
2
- @import 'desk_front/dashkit/dashkit';
@@ -1,6 +0,0 @@
1
- // ViniBaxter
2
- @import 'desk_front/v2lrf-dashboard/index';
3
-
4
- // some exteranals components
5
- @import 'desk_front/landing/landing';
6
- @import 'desk_front/v2lrf-dashboard/new_nav';
@@ -1,5 +0,0 @@
1
- @import 'desk_front-boostrap';
2
-
3
- @import 'desk_front-v2lrf-dashboard';
4
-
5
- @import 'desk_front-template';