viniBaxter-desk_front 300.0.7 → 300.0.12

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: faef0cbf7ca73b72262d752b5ed048e4f66e5c8c5edc4816de47a798fed6851a
4
- data.tar.gz: 888617bc232b53cc0688c294a8a26548d37e8286257be577d7a6d2bd3e69ceb0
3
+ metadata.gz: 3fdf2506558b7321fe06b93420d4347865ace48d14a78cd39c4168896b72becf
4
+ data.tar.gz: f0c362cf853295e12de00527fd636d2680d12805ae7c7062588efff7abec32f6
5
5
  SHA512:
6
- metadata.gz: c1ee176f453ad47068aabb4b5dc9c6b1c6b8ca7097223241b814e8c54792bbc826c5cfd0befa43b004b80a719e1478e01346402ca3094cddc5cba0a17d888d86
7
- data.tar.gz: 3a2f44d27822575a206719edc534d5e39f9fa04a90cce024b0542043b9efdcae7c26b37e3ff46ca58f5d31bc518c72bc3090785fb266604931588561451989c9
6
+ metadata.gz: 1df8f83b4f4eefdf5a833cda9a14ae6f23f934961526091931320f04d0e7423bc6dea9048ecb71df531ce51066376c84eda92818d493d31d2116bb2d605e0df6
7
+ data.tar.gz: 24506f2c91be9f3a470f99678aae15f5dcc0f899c44172c4143861f12f17a28dd164b535cc975134ce289c5e19ddfb7e9e5a6894a4775655df411e706f0ac48c
@@ -2,7 +2,7 @@ module ViniBaxter
2
2
  module DeskFront
3
3
  MAJOR = 300
4
4
  MINOR = 0
5
- TINY = 7
5
+ TINY = 12
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
+ }
@@ -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
 
@@ -503,10 +496,6 @@
503
496
  }
504
497
 
505
498
  &.main-panel-dashboard-light {
506
- @include media-breakpoint-up(xl) {
507
- overflow-y: hidden;
508
- }
509
-
510
499
  &[data='light'] {
511
500
  border-top: 2px solid $nft-dark;
512
501
 
@@ -515,11 +504,23 @@
515
504
  }
516
505
 
517
506
  .v2lrf-by-nucleo {
518
- color: $nft-dark !important
507
+ color: $nft-dark;
508
+ }
509
+ }
510
+ &[neomorphism='flat'] {
511
+ }
512
+ &[neomorphism='in'] {
513
+ @include media-breakpoint-up(xl) {
514
+ overflow-y: hidden;
515
+ }
516
+ }
517
+ &[neomorphism='out'] {
518
+ @include media-breakpoint-up(xl) {
519
+ overflow-y: hidden;
519
520
  }
520
521
  }
521
522
 
522
- >.content {
523
+ > .content {
523
524
  padding: 60px 0px 30px 230px;
524
525
  position: absolute;
525
526
  width: 100%;
@@ -534,7 +535,8 @@
534
535
  background-color: $nft-white;
535
536
 
536
537
  @include media-breakpoint-up(xl) {
537
- &.no-shadow {}
538
+ &.no-shadow {
539
+ }
538
540
 
539
541
  min-height: $heigh-value-1NTF;
540
542
  z-index: 200;
@@ -602,16 +604,13 @@
602
604
 
603
605
  // backdrop-filter: saturate(101.8%) blur(7px) !important;
604
606
  // background-color: rgba(255, 255, 255, 0.9) !important;
605
-
606
607
  }
607
-
608
608
  }
609
609
  }
610
610
  }
611
611
  }
612
612
 
613
613
  .perfect-scrollbar-on {
614
-
615
614
  .sidebar,
616
615
  .main-panel {
617
616
  height: 100%;
@@ -625,12 +624,7 @@
625
624
  padding-bottom: 45px;
626
625
  background: #141e30;
627
626
  /* 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));
627
+ background: -webkit-gradient(linear, left top, right top, from(#0c2646), color-stop(60%, #204065), to(#2a5788));
634
628
  background: linear-gradient(to right, #0c2646 0%, #204065 60%, #2a5788 100%);
635
629
  position: relative;
636
630
  overflow: hidden;
@@ -768,7 +762,6 @@
768
762
  }
769
763
 
770
764
  @include media-breakpoint-up(lg) {
771
-
772
765
  .sidebar,
773
766
  .main-panel,
774
767
  .sidebar-wrapper {
@@ -811,17 +804,16 @@
811
804
  }
812
805
 
813
806
  .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 {
807
+ > .nav [data-toggle='collapse'] ~ div > ul > li > a .sidebar-normal,
808
+ .user .info [data-toggle='collapse'] ~ div > ul > li > a .sidebar-normal,
809
+ .user .info > a > span,
810
+ > .nav li > a p {
819
811
  @include transform-translate-x(-25px);
820
812
  opacity: 0;
821
813
  }
822
814
  }
823
815
 
824
- .nav [data-toggle='collapse']~div>ul>li>a .sidebar-mini-icon {
816
+ .nav [data-toggle='collapse'] ~ div > ul > li > a .sidebar-mini-icon {
825
817
  opacity: 1;
826
818
  }
827
819
  }
@@ -844,30 +836,28 @@
844
836
  .sidebar-wrapper {
845
837
  width: $sidebar-width;
846
838
 
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 {
839
+ > .nav li > a p,
840
+ > .nav [data-toggle='collapse'] ~ div > ul > li > a .sidebar-normal,
841
+ .user .info [data-toggle='collapse'] ~ div > ul > li > a .sidebar-normal,
842
+ .user .info > a > span {
851
843
  @include transform-translate-x(0px);
852
844
  opacity: 1;
853
845
  }
854
846
  }
855
847
 
856
- .nav [data-toggle='collapse']~div>ul>li>a .sidebar-mini-icon {
848
+ .nav [data-toggle='collapse'] ~ div > ul > li > a .sidebar-mini-icon {
857
849
  opacity: 0;
858
850
  }
859
851
  }
860
-
861
852
  }
862
853
 
863
-
864
854
  .main-panel {
865
- >.content {
855
+ > .content {
866
856
  padding-left: 130px;
867
857
  }
868
858
 
869
859
  &.main-panel-dashboard-light {
870
- >.content {
860
+ > .content {
871
861
  background: $nft-soft-lighter;
872
862
  padding-left: 80px;
873
863
  position: absolute;
@@ -1022,7 +1012,7 @@
1022
1012
  transform: translate3d(0px, 0, 0);
1023
1013
  }
1024
1014
 
1025
- .sidebar-mini .sidebar .sidebar-wrapper>.nav li>a p {
1015
+ .sidebar-mini .sidebar .sidebar-wrapper > .nav li > a p {
1026
1016
  opacity: 1;
1027
1017
  }
1028
1018
 
@@ -1034,4 +1024,4 @@
1034
1024
  .minimize-sidebar {
1035
1025
  display: none;
1036
1026
  }
1037
- }
1027
+ }
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.7
4
+ version: 300.0.12
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-05 00:00:00.000000000 Z
11
+ date: 2022-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler