roda-debug_bar 0.2.0 → 0.2.1

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: 1a81b9b197aece30bf9fb928d9395a6f8a1926053c3cd3d2e6c6e03bf7560bf5
4
- data.tar.gz: 1f33f1cc90ccb8d77dda10f75af4d52b7ef58401151baaabe5b148079ece2f9a
3
+ metadata.gz: baf180849090a2ccbbb53956154adee24d012387230c2ecf895cdda9dd69664f
4
+ data.tar.gz: 622d259d1aa55214e91b2ebf9d850e41814ef55d24ef6fdb722327fe9b2f02cb
5
5
  SHA512:
6
- metadata.gz: 9742307c5e57fe1ec22ad37061d64bf2239d30f12ecfaec07f806ae16ebb2d2aabf4acbf81c6f8e27059ed460fbad6cf6ea1be469a6683cca35c356a1f74844f
7
- data.tar.gz: 78cf79cf7353d43112235a731d41b9ce4d7a4391b0f8c74244e0d661d0233ef1c36673e726243f2c295617d1a50fb260164067436ffe94917b1524cd07674b6f
6
+ metadata.gz: 1be406548ca3f14b70a481c24862495835c15ef1fd068c8444d835f71b6d77d8af5e0f7e679bb93d6cabf3157ca4e6f1d1014e6fc18b1566b7650f0010e39591
7
+ data.tar.gz: d19d1cb1f3524e8e0ad139dffbf37b38acaf1c4038f0a4302526ab5e5beebe370e1ad07847c144ac1ae1a70fdaa3c26a9ac50a4785ca3354d3b04c530226e087
@@ -26,6 +26,7 @@
26
26
  <% end %>
27
27
 
28
28
  <!-- This is so tailwind generates the dynamically used styles -->
29
+ <div hidden class="fill-blue-600 fill-red-600 fill-yellow-600"></div>
29
30
  <div hidden class="text-blue-900 text-red-900 text-yellow-900"></div>
30
31
 
31
32
  <span class="ml-1 text-<%= color %>-900">
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module DebugBar
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
data/public/out.css CHANGED
@@ -582,14 +582,14 @@ video:where(.debug-bar,.debug-bar *):where(:not(.no-tailwind,.no-tailwind *)) {
582
582
  margin-left: 1.5rem;
583
583
  }
584
584
 
585
- .mr-2 {
586
- margin-right: 0.5rem;
587
- }
588
-
589
585
  .mr-1 {
590
586
  margin-right: 0.25rem;
591
587
  }
592
588
 
589
+ .mr-2 {
590
+ margin-right: 0.5rem;
591
+ }
592
+
593
593
  .block {
594
594
  display: block;
595
595
  }
@@ -610,13 +610,17 @@ video:where(.debug-bar,.debug-bar *):where(:not(.no-tailwind,.no-tailwind *)) {
610
610
  display: none;
611
611
  }
612
612
 
613
+ .size-4 {
614
+ width: 1rem;
615
+ height: 1rem;
616
+ }
617
+
613
618
  .size-5 {
614
619
  width: 1.25rem;
615
620
  height: 1.25rem;
616
621
  }
617
622
 
618
- .size-4 {
619
- width: 1rem;
623
+ .h-4 {
620
624
  height: 1rem;
621
625
  }
622
626
 
@@ -632,14 +636,14 @@ video:where(.debug-bar,.debug-bar *):where(:not(.no-tailwind,.no-tailwind *)) {
632
636
  height: 1.75rem;
633
637
  }
634
638
 
635
- .h-4 {
636
- height: 1rem;
637
- }
638
-
639
639
  .w-16 {
640
640
  width: 4rem;
641
641
  }
642
642
 
643
+ .w-4 {
644
+ width: 1rem;
645
+ }
646
+
643
647
  .w-64 {
644
648
  width: 16rem;
645
649
  }
@@ -656,10 +660,6 @@ video:where(.debug-bar,.debug-bar *):where(:not(.no-tailwind,.no-tailwind *)) {
656
660
  width: 100%;
657
661
  }
658
662
 
659
- .w-4 {
660
- width: 1rem;
661
- }
662
-
663
663
  .flex-1 {
664
664
  flex: 1 1 0%;
665
665
  }
@@ -743,6 +743,11 @@ video:where(.debug-bar,.debug-bar *):where(:not(.no-tailwind,.no-tailwind *)) {
743
743
  border-color: transparent;
744
744
  }
745
745
 
746
+ .bg-blue-400 {
747
+ --tw-bg-opacity: 1;
748
+ background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
749
+ }
750
+
746
751
  .bg-gray-100 {
747
752
  --tw-bg-opacity: 1;
748
753
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
@@ -773,9 +778,16 @@ video:where(.debug-bar,.debug-bar *):where(:not(.no-tailwind,.no-tailwind *)) {
773
778
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
774
779
  }
775
780
 
776
- .bg-blue-400 {
777
- --tw-bg-opacity: 1;
778
- background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
781
+ .fill-blue-600 {
782
+ fill: #2563eb;
783
+ }
784
+
785
+ .fill-red-600 {
786
+ fill: #dc2626;
787
+ }
788
+
789
+ .fill-yellow-600 {
790
+ fill: #ca8a04;
779
791
  }
780
792
 
781
793
  .p-4 {
@@ -810,6 +822,10 @@ video:where(.debug-bar,.debug-bar *):where(:not(.no-tailwind,.no-tailwind *)) {
810
822
  padding-bottom: 0.5rem;
811
823
  }
812
824
 
825
+ .pl-1 {
826
+ padding-left: 0.25rem;
827
+ }
828
+
813
829
  .pl-2 {
814
830
  padding-left: 0.5rem;
815
831
  }
@@ -822,10 +838,6 @@ video:where(.debug-bar,.debug-bar *):where(:not(.no-tailwind,.no-tailwind *)) {
822
838
  padding-top: 0.5rem;
823
839
  }
824
840
 
825
- .pl-1 {
826
- padding-left: 0.25rem;
827
- }
828
-
829
841
  .text-center {
830
842
  text-align: center;
831
843
  }
@@ -857,6 +869,11 @@ video:where(.debug-bar,.debug-bar *):where(:not(.no-tailwind,.no-tailwind *)) {
857
869
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
858
870
  }
859
871
 
872
+ .text-blue-900 {
873
+ --tw-text-opacity: 1;
874
+ color: rgb(30 58 138 / var(--tw-text-opacity, 1));
875
+ }
876
+
860
877
  .text-gray-500 {
861
878
  --tw-text-opacity: 1;
862
879
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
@@ -872,19 +889,19 @@ video:where(.debug-bar,.debug-bar *):where(:not(.no-tailwind,.no-tailwind *)) {
872
889
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
873
890
  }
874
891
 
875
- .text-white {
892
+ .text-red-900 {
876
893
  --tw-text-opacity: 1;
877
- color: rgb(255 255 255 / var(--tw-text-opacity, 1));
894
+ color: rgb(127 29 29 / var(--tw-text-opacity, 1));
878
895
  }
879
896
 
880
- .text-blue-900 {
897
+ .text-white {
881
898
  --tw-text-opacity: 1;
882
- color: rgb(30 58 138 / var(--tw-text-opacity, 1));
899
+ color: rgb(255 255 255 / var(--tw-text-opacity, 1));
883
900
  }
884
901
 
885
- .text-red-900 {
902
+ .text-yellow-600 {
886
903
  --tw-text-opacity: 1;
887
- color: rgb(127 29 29 / var(--tw-text-opacity, 1));
904
+ color: rgb(202 138 4 / var(--tw-text-opacity, 1));
888
905
  }
889
906
 
890
907
  .text-yellow-900 {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roda-debug_bar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Avi Feher Sternlieb