playbook_ui 14.24.0.pre.alpha.PLAY2329atstickypinnedborderbug9341 → 14.24.0.pre.alpha.PLAY2360circleiconbuttonvariantdatabug9404

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: b4bcd01928a1206101c4f1114282157e444180512d88336787c76a7c02ac0f38
4
- data.tar.gz: c36481e5d7b6cd6039e91311281e025c94881bac1a73b88c320e931f52e2a603
3
+ metadata.gz: 98c5c478e464b03b5475af0b166abedeb9108930b4910793931f49a4741eed76
4
+ data.tar.gz: 2441f66670e67af47e3e43d8ec7ce5655397775f492e7fa0703846f27533dc1e
5
5
  SHA512:
6
- metadata.gz: 3952ef8877853f5e4ba677af55bb771ccaf72f611b67c61fe55f2ea2472fcfeea4ec19353062e6cf45f5604e1e35901b877fd2efcd8849f5e2a105445b32fae3
7
- data.tar.gz: ac83e80bdd45398cf028a175d65490dd4f66b8322f9f4231230e0946d02498198a2ea550b5f403b6c832c9976e3fd2d9bd602488ff77039b63d97f0155c3921a
6
+ metadata.gz: 47c8f860c92388bf92a90786dd656ccc45855a90126d2808fadfc5defa9d37c4c3f4ae8e47b5a67c2e203bb32db3b70b7ffda104a65afa2cc87fedadd3c8cf34
7
+ data.tar.gz: 624c4bd1ebc4a0d0d815cb1a653e217dfb333b2ce4e7f76603ba585cb6d64f5a2f83c53170db29925cc52d48a7f9abc3267fd3f4ab4c79511a48eaa3fc89a3ee
@@ -971,40 +971,6 @@
971
971
  }
972
972
  }
973
973
  }
974
-
975
- // Firefox-specific fix for last-header-cell and last-cell vertical borders
976
- @-moz-document url-prefix() {
977
- .pb_advanced_table_header {
978
- .last-header-cell {
979
- border-right: none !important;
980
- box-shadow: 1px 0 0 0 $border_light !important;
981
- }
982
- }
983
-
984
- .pb_advanced_table_body {
985
- .last-cell {
986
- border-right: none !important;
987
- box-shadow: 1px 0 0 0 $border_light !important;
988
- }
989
- }
990
-
991
- // Dark mode Firefox fixes
992
- &.dark {
993
- .pb_advanced_table_header {
994
- .last-header-cell {
995
- border-right: none !important;
996
- box-shadow: 1px 0 0 0 $border_dark !important;
997
- }
998
- }
999
-
1000
- .pb_advanced_table_body {
1001
- .last-cell {
1002
- border-right: none !important;
1003
- box-shadow: 1px 0 0 0 $border_dark !important;
1004
- }
1005
- }
1006
- }
1007
- }
1008
974
  }
1009
975
 
1010
976
  // Outside of the pb_advanced_table class for popover
@@ -1,5 +1,5 @@
1
1
  <%= pb_content_tag do %>
2
- <%= pb_rails("button", props: {type: object.type, loading: object.loading, link: object.link, new_window:object.new_window, variant: object.variant, target: object.target, disabled: object.disabled, dark: object.dark}) do %>
2
+ <%= pb_rails("button", props: {type: object.type, loading: object.loading, link: object.link, new_window:object.new_window, variant: object.variant, target: object.target, disabled: object.disabled, dark: object.dark, data: object.data}) do %>
3
3
  <%= pb_rails("icon", props: {icon: object.icon, fixed_width: true, dark: object.dark}) %>
4
4
  <% end %>
5
5
  <% end %>
@@ -7,7 +7,7 @@
7
7
  thead tr:not(:first-child) th {
8
8
  border-right: 1px solid $border_light !important;
9
9
  }
10
-
10
+
11
11
  @media screen and (min-width: $screen-xs-min) {
12
12
  tr:hover, .pb_table_tr:hover {
13
13
  td:last-child, .pb_table_td:last-child {
@@ -15,53 +15,5 @@
15
15
  }
16
16
  }
17
17
  }
18
-
19
- // Firefox-specific fix for sticky elements
20
- @-moz-document url-prefix() {
21
- // Target sticky headers
22
- &.sticky-header {
23
- th:not(:last-child) {
24
- border-right: none !important;
25
- box-shadow: 1px 0 0 0 $border_light !important;
26
- }
27
-
28
- .pb_advanced_table_body {
29
- .pinned-row {
30
- td:not(:first-child):not(:last-child) {
31
- border-right: none !important;
32
- box-shadow: 1px 0 0 0 $border_light !important;
33
- }
34
- }
35
- }
36
- }
37
-
38
- // Target sticky left columns
39
- &.sticky-left-column {
40
- td[style="left"], th[style="left"] {
41
- border-right: none !important;
42
- box-shadow: 1px 0 0 0 $border_light !important;
43
- }
44
- }
45
-
46
- // Target sticky right columns
47
- &.sticky-right-column {
48
- td[style="right"], th[style="right"] {
49
- border-right: none !important;
50
- box-shadow: 1px 0 0 0 $border_light !important;
51
- }
52
- }
53
-
54
- // Handle hover states in Firefox
55
- @media screen and (min-width: $screen-xs-min) {
56
- tr:hover, .pb_table_tr:hover {
57
- td:last-child, .pb_table_td:last-child {
58
- &[style="left"], &[style="right"] {
59
- border-right: none !important;
60
- box-shadow: 1px 0 0 0 darken($border_light, 10%) !important;
61
- }
62
- }
63
- }
64
- }
65
- }
66
18
  }
67
19
  }