jobdone-shared-files 0.0.1-beta.6 → 0.0.1-beta.8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jobdone-shared-files",
3
- "version": "0.0.1-beta.6",
3
+ "version": "0.0.1-beta.8",
4
4
  "description": "Shared JS and SCSS for Jobdone Enterprise.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -451,11 +451,14 @@ th, td{
451
451
  }
452
452
  }
453
453
 
454
- // @property --rotate {
455
- // syntax: "<angle>";
456
- // initial-value: 132deg;
457
- // inherits: false;
458
- // }
454
+ .btn-link-light-bg {
455
+ &:hover {
456
+ color: var(--bs-btn-color)
457
+ background-color: rgba(var(--bs-link-color-rgb), .1);
458
+ text-decoration: none;
459
+ }
460
+ }
461
+
459
462
 
460
463
  @keyframes gradient-position {
461
464
  0% {
@@ -115,10 +115,12 @@ $aside-transition: .5s;
115
115
  }
116
116
  }
117
117
 
118
-
119
-
120
118
  .thead-sticky{
121
119
  position: sticky;
122
- top: 2.75rem;
120
+ top: 2.7rem;
123
121
  z-index: 10;
122
+ }
123
+
124
+ .modal-long-content .overflow-y-auto{
125
+ height: 75vh;
124
126
  }
@@ -215,6 +215,7 @@
215
215
  vertical-align: middle !important;
216
216
  }
217
217
 
218
+ // TODO: 待刪除,已改成 LayoutBase 的 .btn-link-light-bg
218
219
  @mixin linkBtn() {
219
220
  text-decoration: none;
220
221
  letter-spacing: 0.5px;
@@ -4,4 +4,7 @@ $gradient-blue-light: linear-gradient(295deg, rgba(#4483E0, .1) 13.42%, rgba(#C6
4
4
  $primary-bg-light: rgba(var(--bs-link-color-rgb), .07);
5
5
  $primary-sub-highlight: rgba(var(--bs-link-color-rgb), .5);
6
6
 
7
- $zindex-max: 2000 !default;
7
+ $zindex-max: 2000 !default;
8
+
9
+
10
+ $table-danger-bg: lighten($danger, 42%);