pacem-less 0.52.1-stokes → 0.52.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.
@@ -83,3 +83,20 @@ each(range(12), {
83
83
  .border-radius-bottomright-0 {
84
84
  border-bottom-right-radius: 0;
85
85
  }
86
+
87
+ //.border-top-size--0,
88
+ .border-top-size-0 {
89
+ border-top-width: 0 !important;
90
+ }
91
+ //.border-right-size--0,
92
+ .border-right-size-0 {
93
+ border-right-width: 0 !important;
94
+ }
95
+ //.border-left-size--0,
96
+ .border-left-size-0 {
97
+ border-left-width: 0 !important;
98
+ }
99
+ //.border-bottom-size--0,
100
+ .border-bottom-size-0 {
101
+ border-bottom-width: 0 !important;
102
+ }
@@ -171,6 +171,7 @@ table.@{PCSS}-datatable {
171
171
  display: flex;
172
172
  box-sizing: border-box;
173
173
  padding: @grid_spacing/3 @grid_spacing/2;
174
+ border-top: 0 solid @color_border;
174
175
  border-bottom: 1px solid @color_border;
175
176
  min-width: 0;
176
177
 
@@ -237,6 +238,7 @@ table.@{PCSS}-datatable {
237
238
  border-left: 1px solid @color_border;
238
239
  border-right: 1px solid @color_border;
239
240
  border-top: 1px solid @color_border;
241
+ border-bottom: 0 !important;
240
242
  position: relative;
241
243
 
242
244
  @_clr_row_alt: fade(@color_background_alt, 20);
@@ -342,6 +344,66 @@ table.@{PCSS}-datatable {
342
344
  .ToolButtons(@grid_spacing);
343
345
  }
344
346
 
347
+ &.border-solid {
348
+ border-left-style: solid;
349
+ border-top-style: solid;
350
+ border-right-style: solid;
351
+
352
+ .@{PCSS}-headcell,
353
+ .@{PCSS}-datacell,
354
+ .@{PCSS}-footcell {
355
+ border-bottom-style: solid;
356
+ }
357
+ }
358
+
359
+ &.border-dotted {
360
+ border-left-style: dotted;
361
+ border-top-style: dotted;
362
+ border-right-style: dotted;
363
+
364
+ .@{PCSS}-headcell,
365
+ .@{PCSS}-datacell,
366
+ .@{PCSS}-footcell {
367
+ border-bottom-style: dotted;
368
+ }
369
+ }
370
+
371
+ &.border-dashed {
372
+ border-left-style: dashed;
373
+ border-top-style: dashed;
374
+ border-right-style: dashed;
375
+
376
+ .@{PCSS}-headcell,
377
+ .@{PCSS}-datacell,
378
+ .@{PCSS}-footcell {
379
+ border-bottom-style: dashed;
380
+ }
381
+ }
382
+
383
+ .@{PCSS}-headcell,
384
+ .@{PCSS}-datacell,
385
+ .@{PCSS}-footcell {
386
+ &.border-solid {
387
+ border-bottom-style: solid;
388
+ }
389
+ }
390
+
391
+ .@{PCSS}-headcell,
392
+ .@{PCSS}-datacell,
393
+ .@{PCSS}-footcell {
394
+ &.border-dotted {
395
+ border-bottom-style: dotted;
396
+ }
397
+ }
398
+
399
+ .@{PCSS}-headcell,
400
+ .@{PCSS}-datacell,
401
+ .@{PCSS}-footcell {
402
+ &.border-dashed {
403
+ border-bottom-style: dashed;
404
+ }
405
+ }
406
+
345
407
  &.datatable-no-sideborders {
346
408
  border-left-width: 0;
347
409
  border-right-width: 0;
@@ -358,11 +420,35 @@ table.@{PCSS}-datatable {
358
420
  border-top: 1px solid @color_border;
359
421
  border-bottom-width: 0;
360
422
  }
423
+
424
+ &.border-dotted {
425
+ .@{PCSS}-footcell {
426
+ border-top-style: dotted;
427
+ }
428
+ }
429
+
430
+ &.border-dashed {
431
+ .@{PCSS}-footcell {
432
+ border-top-style: dashed;
433
+ }
434
+ }
361
435
  }
362
436
 
363
437
  &.datatable-norows {
364
438
  .@{PCSS}-datarow {
365
- .Inert();
439
+ background-color: transparent;
440
+ }
441
+
442
+ .@{PCSS}-datacell:hover ~ .@{PCSS}-datarow {
443
+ background-color: @datarow_hover_color;
444
+
445
+ + .@{PCSS}-datacell ~ .@{PCSS}-datarow {
446
+ background-color: transparent;
447
+
448
+ &.datarow-alt {
449
+ background-color: transparent;
450
+ }
451
+ }
366
452
  }
367
453
  }
368
454
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.52.1-stokes",
2
+ "version": "0.52.1",
3
3
  "name": "pacem-less",
4
4
  "homepage": "https://js.pacem.it",
5
5
  "repository": {