viniBaxter-desk_front 300.0.6 → 300.0.11

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: 482d2ac7412afcdd91fb402fe47ab18d094a34d3054bb17bd9c920293e92d0e5
4
- data.tar.gz: 6267d9d5c73620fe3e79500fd0f48d2f4441435b4b376ba9af2877a546e34529
3
+ metadata.gz: 1db86624c3e9947536f7bc8d923c3180be26c3a5d8a4f5ca9d825822d0b2f938
4
+ data.tar.gz: c8a92c2b3915b4aacbb48692bd69b83d97cdd3fa3f9e7b0e2f5ecbc6b4b2d4d2
5
5
  SHA512:
6
- metadata.gz: faf9ed4fc244da829638e1f659c1035d60652066c81834f190c2afa18c488a6873b3cccd7b6041e1f9bc0ff9021bdd720c26dbf57205889fd9f482a7b63667c1
7
- data.tar.gz: 48af7d4e934f186772dc5794c5c82fe353d6585468c247669100798685da7b55dd8a9c0eab55fceaaadb7e560a2e5aefa770dca54a8dd95a682ae9c521b07463
6
+ metadata.gz: 11d8cdf7b0413f94e8d1398b911c87c581c5c94c7bf254a635ef55083c703771cbb1c42d687a6699927f5aca9c989eca77dac8f76cfdce341e84b4c82e795809
7
+ data.tar.gz: 582e10f95991708bed2154c6e8f970c45ac13f215183df2e4b2de96a3ce31884801b891042e605ecee0f999d178e655dfc50492bda6d41849fd7ef0a94049ee4
@@ -2,7 +2,7 @@ module ViniBaxter
2
2
  module DeskFront
3
3
  MAJOR = 300
4
4
  MINOR = 0
5
- TINY = 6
5
+ TINY = 11
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
+ }
@@ -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
 
@@ -47,6 +47,14 @@
47
47
  object-fit: cover;
48
48
  }
49
49
 
50
+ .thumbnail-picture-img {
51
+ width: auto;
52
+ height: 100%;
53
+ max-height: 156px;
54
+ object-fit: cover;
55
+ }
56
+
57
+
50
58
  .avatar-title {
51
59
  display: flex;
52
60
  align-items: center;
@@ -124,6 +132,12 @@
124
132
  font-size: $avatar-size-xl / 3;
125
133
  }
126
134
 
135
+ .thumbnail-picture {
136
+ width: auto;
137
+ height: auto;
138
+ font-size: $avatar-size-xl / 3;
139
+ }
140
+
127
141
  .avatar-xxl {
128
142
  width: $avatar-size-xl;
129
143
  height: $avatar-size-xl;
@@ -33,7 +33,6 @@
33
33
  margin-left: 20px;
34
34
  border-radius: 5px;
35
35
 
36
-
37
36
  .sidebar-wrapper {
38
37
  width: $full-width;
39
38
  min-height: 100%;
@@ -54,9 +53,9 @@
54
53
  border: none;
55
54
  }
56
55
 
57
- >.nav,
56
+ > .nav,
58
57
  .user .info {
59
- [data-toggle='collapse']~div>ul>li>a {
58
+ [data-toggle='collapse'] ~ div > ul > li > a {
60
59
  span {
61
60
  display: inline-block;
62
61
  @extend .animation-transition-general;
@@ -98,15 +97,14 @@
98
97
  }
99
98
  }
100
99
 
101
- [data-toggle='collapse']~div>ul>li:hover>a {
102
-
100
+ [data-toggle='collapse'] ~ div > ul > li:hover > a {
103
101
  .sidebar-mini-icon,
104
102
  .sidebar-normal {
105
103
  color: $white;
106
104
  }
107
105
  }
108
106
 
109
- .nav [data-toggle='collapse']~div>ul>li>a .sidebar-mini-icon {
107
+ .nav [data-toggle='collapse'] ~ div > ul > li > a .sidebar-mini-icon {
110
108
  opacity: 0;
111
109
  }
112
110
  }
@@ -134,8 +132,6 @@
134
132
  }
135
133
  }
136
134
 
137
-
138
-
139
135
  &.sidebar-dashboard-light {
140
136
  @include nav-setup($nft-dark, 'ntf', nil);
141
137
  }
@@ -272,7 +268,6 @@
272
268
  }
273
269
  }
274
270
 
275
-
276
271
  &[data='blue'] {
277
272
  @include nav-setup($white, 'normal', $white);
278
273
  @include linear-gradient($info-states, $info);
@@ -333,7 +328,6 @@
333
328
  }
334
329
  }
335
330
 
336
-
337
331
  .user {
338
332
  padding-bottom: 20px;
339
333
  margin: 20px auto 0;
@@ -375,11 +369,11 @@
375
369
  }
376
370
 
377
371
  .info {
378
- >a {
372
+ > a {
379
373
  display: block;
380
374
  line-height: 18px;
381
375
 
382
- >span {
376
+ > span {
383
377
  @extend .animation-transition-general;
384
378
  display: block;
385
379
  position: relative;
@@ -406,13 +400,12 @@
406
400
 
407
401
  .off-canvas-sidebar {
408
402
  .nav {
409
-
410
- >li>a,
411
- >li>a:hover {
403
+ > li > a,
404
+ > li > a:hover {
412
405
  color: $white;
413
406
  }
414
407
 
415
- >li>a:focus {
408
+ > li > a:focus {
416
409
  background: rgba(200, 200, 200, 0.2);
417
410
  }
418
411
  }
@@ -489,12 +482,12 @@
489
482
  }
490
483
  }
491
484
 
492
- >.content {
485
+ > .content {
493
486
  padding: 80px 30px 30px 280px;
494
487
  min-height: calc(100vh - 70px);
495
488
  }
496
489
 
497
- >.navbar {
490
+ > .navbar {
498
491
  margin-bottom: 0;
499
492
  }
500
493
 
@@ -515,11 +508,11 @@
515
508
  }
516
509
 
517
510
  .v2lrf-by-nucleo {
518
- color: $nft-dark !important
511
+ color: $nft-dark;
519
512
  }
520
513
  }
521
514
 
522
- >.content {
515
+ > .content {
523
516
  padding: 60px 0px 30px 230px;
524
517
  position: absolute;
525
518
  width: 100%;
@@ -534,7 +527,8 @@
534
527
  background-color: $nft-white;
535
528
 
536
529
  @include media-breakpoint-up(xl) {
537
- &.no-shadow {}
530
+ &.no-shadow {
531
+ }
538
532
 
539
533
  min-height: $heigh-value-1NTF;
540
534
  z-index: 200;
@@ -602,16 +596,13 @@
602
596
 
603
597
  // backdrop-filter: saturate(101.8%) blur(7px) !important;
604
598
  // background-color: rgba(255, 255, 255, 0.9) !important;
605
-
606
599
  }
607
-
608
600
  }
609
601
  }
610
602
  }
611
603
  }
612
604
 
613
605
  .perfect-scrollbar-on {
614
-
615
606
  .sidebar,
616
607
  .main-panel {
617
608
  height: 100%;
@@ -625,12 +616,7 @@
625
616
  padding-bottom: 45px;
626
617
  background: #141e30;
627
618
  /* fallback for old browsers */
628
- background: -webkit-gradient(linear,
629
- left top,
630
- right top,
631
- from(#0c2646),
632
- color-stop(60%, #204065),
633
- to(#2a5788));
619
+ background: -webkit-gradient(linear, left top, right top, from(#0c2646), color-stop(60%, #204065), to(#2a5788));
634
620
  background: linear-gradient(to right, #0c2646 0%, #204065 60%, #2a5788 100%);
635
621
  position: relative;
636
622
  overflow: hidden;
@@ -768,7 +754,6 @@
768
754
  }
769
755
 
770
756
  @include media-breakpoint-up(lg) {
771
-
772
757
  .sidebar,
773
758
  .main-panel,
774
759
  .sidebar-wrapper {
@@ -811,17 +796,16 @@
811
796
  }
812
797
 
813
798
  .sidebar-wrapper {
814
-
815
- >.nav [data-toggle='collapse']~div>ul>li>a .sidebar-normal,
816
- .user .info [data-toggle='collapse']~div>ul>li>a .sidebar-normal,
817
- .user .info>a>span,
818
- >.nav li>a p {
799
+ > .nav [data-toggle='collapse'] ~ div > ul > li > a .sidebar-normal,
800
+ .user .info [data-toggle='collapse'] ~ div > ul > li > a .sidebar-normal,
801
+ .user .info > a > span,
802
+ > .nav li > a p {
819
803
  @include transform-translate-x(-25px);
820
804
  opacity: 0;
821
805
  }
822
806
  }
823
807
 
824
- .nav [data-toggle='collapse']~div>ul>li>a .sidebar-mini-icon {
808
+ .nav [data-toggle='collapse'] ~ div > ul > li > a .sidebar-mini-icon {
825
809
  opacity: 1;
826
810
  }
827
811
  }
@@ -844,30 +828,28 @@
844
828
  .sidebar-wrapper {
845
829
  width: $sidebar-width;
846
830
 
847
- >.nav li>a p,
848
- >.nav [data-toggle='collapse']~div>ul>li>a .sidebar-normal,
849
- .user .info [data-toggle='collapse']~div>ul>li>a .sidebar-normal,
850
- .user .info>a>span {
831
+ > .nav li > a p,
832
+ > .nav [data-toggle='collapse'] ~ div > ul > li > a .sidebar-normal,
833
+ .user .info [data-toggle='collapse'] ~ div > ul > li > a .sidebar-normal,
834
+ .user .info > a > span {
851
835
  @include transform-translate-x(0px);
852
836
  opacity: 1;
853
837
  }
854
838
  }
855
839
 
856
- .nav [data-toggle='collapse']~div>ul>li>a .sidebar-mini-icon {
840
+ .nav [data-toggle='collapse'] ~ div > ul > li > a .sidebar-mini-icon {
857
841
  opacity: 0;
858
842
  }
859
843
  }
860
-
861
844
  }
862
845
 
863
-
864
846
  .main-panel {
865
- >.content {
847
+ > .content {
866
848
  padding-left: 130px;
867
849
  }
868
850
 
869
851
  &.main-panel-dashboard-light {
870
- >.content {
852
+ > .content {
871
853
  background: $nft-soft-lighter;
872
854
  padding-left: 80px;
873
855
  position: absolute;
@@ -1022,7 +1004,7 @@
1022
1004
  transform: translate3d(0px, 0, 0);
1023
1005
  }
1024
1006
 
1025
- .sidebar-mini .sidebar .sidebar-wrapper>.nav li>a p {
1007
+ .sidebar-mini .sidebar .sidebar-wrapper > .nav li > a p {
1026
1008
  opacity: 1;
1027
1009
  }
1028
1010
 
@@ -1034,4 +1016,4 @@
1034
1016
  .minimize-sidebar {
1035
1017
  display: none;
1036
1018
  }
1037
- }
1019
+ }
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.6
4
+ version: 300.0.11
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-04 00:00:00.000000000 Z
11
+ date: 2022-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler