sdga-ui 1.0.5 → 1.0.6
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/.github/workflows/deploy.yml +15 -1
- package/README.md +12 -20
- package/css/dga-ui.css +182 -197
- package/css/dga-ui.css.map +1 -1
- package/demo-angular/README.md +34 -2
- package/demo-angular/angular.json +6 -1
- package/demo-angular/package-lock.json +152 -11
- package/demo-angular/package.json +7 -4
- package/demo-angular/public/i18n/ar.json +3 -0
- package/demo-angular/public/i18n/en.json +3 -0
- package/demo-angular/src/app/views/links/links.component.html +11 -130
- package/demo-angular/src/app/views/links/links.component.scss +1 -50
- package/demo-angular/src/app/views/links/links.component.ts +5 -109
- package/package.json +3 -2
- package/theme/components/_cards.scss +0 -1
- package/theme/components/_pagination.scss +2 -2
- package/theme/config/_base.scss +2 -41
- package/theme/customizations/_alerts.scss +5 -13
- package/theme/customizations/_links.scss +71 -83
- package/theme/customizations/_toasts.scss +2 -1
- package/theme/dga-ui.scss +1 -2
- package/demo-angular/public/.nojekyll +0 -0
- package/theme/customizations/_utilities.scss +0 -138
|
@@ -28,9 +28,23 @@ jobs:
|
|
|
28
28
|
with:
|
|
29
29
|
node-version: '20'
|
|
30
30
|
|
|
31
|
+
- name: Wait for npm publish
|
|
32
|
+
run: |
|
|
33
|
+
VERSION=$(node -p "require('./package.json').version")
|
|
34
|
+
echo "Waiting for sdga-ui@$VERSION to be available on npm..."
|
|
35
|
+
for i in {1..30}; do
|
|
36
|
+
if npm view sdga-ui@$VERSION version 2>/dev/null; then
|
|
37
|
+
echo "Package sdga-ui@$VERSION is now available!"
|
|
38
|
+
exit 0
|
|
39
|
+
fi
|
|
40
|
+
echo "Attempt $i/30: Package not yet available, waiting 10 seconds..."
|
|
41
|
+
sleep 10
|
|
42
|
+
done
|
|
43
|
+
echo "Warning: Package may not be available yet, proceeding anyway..."
|
|
44
|
+
|
|
31
45
|
- name: Install dependencies
|
|
32
46
|
working-directory: ./demo-angular
|
|
33
|
-
run: npm
|
|
47
|
+
run: npm run use:npm
|
|
34
48
|
|
|
35
49
|
- name: Build Angular app
|
|
36
50
|
working-directory: ./demo-angular
|
package/README.md
CHANGED
|
@@ -19,10 +19,12 @@ Check out the live demo and explore all components:
|
|
|
19
19
|
|
|
20
20
|
* Government-inspired design system
|
|
21
21
|
* Full compatibility with Bootstrap
|
|
22
|
+
* **Built-in RTL support** (no need to import Bootstrap RTL separately)
|
|
22
23
|
* Custom color palette and typography
|
|
23
24
|
* Standardized spacing & component overrides
|
|
24
25
|
* Utility classes for layout and theming
|
|
25
26
|
* Light / dark mode friendly (optional)
|
|
27
|
+
* IBM Plex Sans Arabic font included
|
|
26
28
|
* Easy to integrate into any frontend project
|
|
27
29
|
|
|
28
30
|
---
|
|
@@ -69,6 +71,16 @@ Import the theme in your SCSS file:
|
|
|
69
71
|
|
|
70
72
|
All Bootstrap components automatically adopt the DGA UI theme.
|
|
71
73
|
|
|
74
|
+
### **RTL Support**
|
|
75
|
+
|
|
76
|
+
DGA UI has built-in RTL (Right-to-Left) support for Arabic and other RTL languages. Simply add the `dir="rtl"` attribute to your HTML tag:
|
|
77
|
+
|
|
78
|
+
```html
|
|
79
|
+
<html dir="rtl" lang="ar">
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
No need to import Bootstrap's RTL CSS separately – it's already integrated!
|
|
83
|
+
|
|
72
84
|
---
|
|
73
85
|
|
|
74
86
|
## **📁 File Structure**
|
|
@@ -137,16 +149,6 @@ The theme is organized into three main sections:
|
|
|
137
149
|
|
|
138
150
|
---
|
|
139
151
|
|
|
140
|
-
## **📚 Roadmap**
|
|
141
|
-
|
|
142
|
-
* React / Angular UI components
|
|
143
|
-
* Icon set
|
|
144
|
-
* Forms enhancement
|
|
145
|
-
* Grid templates
|
|
146
|
-
* Additional themes (municipal, ministry, authority variants)
|
|
147
|
-
|
|
148
|
-
---
|
|
149
|
-
|
|
150
152
|
## **🤝 Contributing**
|
|
151
153
|
|
|
152
154
|
Contributions are welcome!
|
|
@@ -163,13 +165,3 @@ MIT License — free for personal and commercial use.
|
|
|
163
165
|
## **👤 Author**
|
|
164
166
|
|
|
165
167
|
Created and maintained by **Mahmoud**.
|
|
166
|
-
|
|
167
|
-
---
|
|
168
|
-
|
|
169
|
-
If you want, I can also generate:
|
|
170
|
-
|
|
171
|
-
✅ A logo
|
|
172
|
-
✅ A color palette for the authority theme
|
|
173
|
-
✅ Example screenshots/mockups
|
|
174
|
-
✅ NPM keywords
|
|
175
|
-
Just tell me!
|
package/css/dga-ui.css
CHANGED
|
@@ -1860,10 +1860,9 @@
|
|
|
1860
1860
|
--dga-heading-color: inherit;
|
|
1861
1861
|
--dga-link-color: #1B8354;
|
|
1862
1862
|
--dga-link-color-rgb: 27, 131, 84;
|
|
1863
|
-
--dga-link-decoration:
|
|
1864
|
-
--dga-link-hover-color: rgb(
|
|
1865
|
-
--dga-link-hover-color-rgb:
|
|
1866
|
-
--dga-link-hover-decoration: underline;
|
|
1863
|
+
--dga-link-decoration: underline;
|
|
1864
|
+
--dga-link-hover-color: rgb(21.6, 104.8, 67.2);
|
|
1865
|
+
--dga-link-hover-color-rgb: 22, 105, 67;
|
|
1867
1866
|
--dga-code-color: #d63384;
|
|
1868
1867
|
--dga-highlight-color: #161616;
|
|
1869
1868
|
--dga-highlight-bg: rgb(255, 242.6, 205.4);
|
|
@@ -2115,11 +2114,10 @@ sup {
|
|
|
2115
2114
|
|
|
2116
2115
|
a {
|
|
2117
2116
|
color: rgba(var(--dga-link-color-rgb), var(--dga-link-opacity, 1));
|
|
2118
|
-
text-decoration:
|
|
2117
|
+
text-decoration: underline;
|
|
2119
2118
|
}
|
|
2120
2119
|
a:hover {
|
|
2121
2120
|
--dga-link-color-rgb: var(--dga-link-hover-color-rgb);
|
|
2122
|
-
text-decoration: underline;
|
|
2123
2121
|
}
|
|
2124
2122
|
|
|
2125
2123
|
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
|
@@ -2508,7 +2506,7 @@ progress {
|
|
|
2508
2506
|
.container-lg,
|
|
2509
2507
|
.container-md,
|
|
2510
2508
|
.container-sm {
|
|
2511
|
-
--dga-gutter-x:
|
|
2509
|
+
--dga-gutter-x: 1.5rem;
|
|
2512
2510
|
--dga-gutter-y: 0;
|
|
2513
2511
|
width: 100%;
|
|
2514
2512
|
padding-right: calc(var(--dga-gutter-x) * 0.5);
|
|
@@ -4946,6 +4944,7 @@ textarea.form-control-lg {
|
|
|
4946
4944
|
line-height: var(--dga-btn-line-height);
|
|
4947
4945
|
color: var(--dga-btn-color);
|
|
4948
4946
|
text-align: center;
|
|
4947
|
+
text-decoration: none;
|
|
4949
4948
|
vertical-align: middle;
|
|
4950
4949
|
cursor: pointer;
|
|
4951
4950
|
user-select: none;
|
|
@@ -4962,7 +4961,6 @@ textarea.form-control-lg {
|
|
|
4962
4961
|
}
|
|
4963
4962
|
.btn:hover {
|
|
4964
4963
|
color: var(--dga-btn-hover-color);
|
|
4965
|
-
text-decoration: none;
|
|
4966
4964
|
background-color: var(--dga-btn-hover-bg);
|
|
4967
4965
|
border-color: var(--dga-btn-hover-border-color);
|
|
4968
4966
|
}
|
|
@@ -8621,9 +8619,6 @@ textarea.form-control-lg {
|
|
|
8621
8619
|
--dga-btn-disabled-border-color: transparent;
|
|
8622
8620
|
--dga-btn-box-shadow: 0 0 0 #000;
|
|
8623
8621
|
--dga-btn-focus-shadow-rgb: none;
|
|
8624
|
-
text-decoration: none;
|
|
8625
|
-
}
|
|
8626
|
-
.btn-link:hover, .btn-link:focus-visible {
|
|
8627
8622
|
text-decoration: underline;
|
|
8628
8623
|
}
|
|
8629
8624
|
.btn-link:focus-visible {
|
|
@@ -8947,6 +8942,7 @@ textarea.form-control-lg {
|
|
|
8947
8942
|
font-weight: 400;
|
|
8948
8943
|
color: var(--dga-dropdown-link-color);
|
|
8949
8944
|
text-align: inherit;
|
|
8945
|
+
text-decoration: none;
|
|
8950
8946
|
white-space: nowrap;
|
|
8951
8947
|
background-color: transparent;
|
|
8952
8948
|
border: 0;
|
|
@@ -8954,7 +8950,6 @@ textarea.form-control-lg {
|
|
|
8954
8950
|
}
|
|
8955
8951
|
.dropdown-item:hover, .dropdown-item:focus {
|
|
8956
8952
|
color: var(--dga-dropdown-link-hover-color);
|
|
8957
|
-
text-decoration: none;
|
|
8958
8953
|
background-color: var(--dga-dropdown-link-hover-bg);
|
|
8959
8954
|
}
|
|
8960
8955
|
.dropdown-item.active, .dropdown-item:active {
|
|
@@ -9130,6 +9125,7 @@ textarea.form-control-lg {
|
|
|
9130
9125
|
font-size: var(--dga-nav-link-font-size);
|
|
9131
9126
|
font-weight: var(--dga-nav-link-font-weight);
|
|
9132
9127
|
color: var(--dga-nav-link-color);
|
|
9128
|
+
text-decoration: none;
|
|
9133
9129
|
background: none;
|
|
9134
9130
|
border: 0;
|
|
9135
9131
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
|
|
@@ -9141,7 +9137,6 @@ textarea.form-control-lg {
|
|
|
9141
9137
|
}
|
|
9142
9138
|
.nav-link:hover, .nav-link:focus {
|
|
9143
9139
|
color: var(--dga-nav-link-hover-color);
|
|
9144
|
-
text-decoration: none;
|
|
9145
9140
|
}
|
|
9146
9141
|
.nav-link:focus-visible {
|
|
9147
9142
|
outline: 0;
|
|
@@ -9291,11 +9286,11 @@ textarea.form-control-lg {
|
|
|
9291
9286
|
margin-right: var(--dga-navbar-brand-margin-end);
|
|
9292
9287
|
font-size: var(--dga-navbar-brand-font-size);
|
|
9293
9288
|
color: var(--dga-navbar-brand-color);
|
|
9289
|
+
text-decoration: none;
|
|
9294
9290
|
white-space: nowrap;
|
|
9295
9291
|
}
|
|
9296
9292
|
.navbar-brand:hover, .navbar-brand:focus {
|
|
9297
9293
|
color: var(--dga-navbar-brand-hover-color);
|
|
9298
|
-
text-decoration: none;
|
|
9299
9294
|
}
|
|
9300
9295
|
|
|
9301
9296
|
.navbar-nav {
|
|
@@ -9755,9 +9750,6 @@ textarea.form-control-lg {
|
|
|
9755
9750
|
margin-bottom: 0;
|
|
9756
9751
|
}
|
|
9757
9752
|
|
|
9758
|
-
.card-link:hover {
|
|
9759
|
-
text-decoration: none;
|
|
9760
|
-
}
|
|
9761
9753
|
.card-link + .card-link {
|
|
9762
9754
|
margin-left: var(--dga-card-spacer-x);
|
|
9763
9755
|
}
|
|
@@ -10048,10 +10040,10 @@ textarea.form-control-lg {
|
|
|
10048
10040
|
--dga-pagination-border-width: 1px;
|
|
10049
10041
|
--dga-pagination-border-color: #D2D6DB;
|
|
10050
10042
|
--dga-pagination-border-radius: 0.25rem;
|
|
10051
|
-
--dga-pagination-hover-color:
|
|
10043
|
+
--dga-pagination-hover-color: var(--dga-link-hover-color);
|
|
10052
10044
|
--dga-pagination-hover-bg: #E5E7EB;
|
|
10053
10045
|
--dga-pagination-hover-border-color: #D2D6DB;
|
|
10054
|
-
--dga-pagination-focus-color:
|
|
10046
|
+
--dga-pagination-focus-color: var(--dga-link-hover-color);
|
|
10055
10047
|
--dga-pagination-focus-bg: #E5E7EB;
|
|
10056
10048
|
--dga-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(27, 131, 84, 0.25);
|
|
10057
10049
|
--dga-pagination-active-color: #FFFFFF;
|
|
@@ -10071,6 +10063,7 @@ textarea.form-control-lg {
|
|
|
10071
10063
|
padding: var(--dga-pagination-padding-y) var(--dga-pagination-padding-x);
|
|
10072
10064
|
font-size: var(--dga-pagination-font-size);
|
|
10073
10065
|
color: var(--dga-pagination-color);
|
|
10066
|
+
text-decoration: none;
|
|
10074
10067
|
background-color: var(--dga-pagination-bg);
|
|
10075
10068
|
border: var(--dga-pagination-border-width) solid var(--dga-pagination-border-color);
|
|
10076
10069
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
@@ -10083,7 +10076,6 @@ textarea.form-control-lg {
|
|
|
10083
10076
|
.page-link:hover {
|
|
10084
10077
|
z-index: 2;
|
|
10085
10078
|
color: var(--dga-pagination-hover-color);
|
|
10086
|
-
text-decoration: none;
|
|
10087
10079
|
background-color: var(--dga-pagination-hover-bg);
|
|
10088
10080
|
border-color: var(--dga-pagination-hover-border-color);
|
|
10089
10081
|
}
|
|
@@ -11038,6 +11030,7 @@ textarea.form-control-lg {
|
|
|
11038
11030
|
display: block;
|
|
11039
11031
|
padding: var(--dga-list-group-item-padding-y) var(--dga-list-group-item-padding-x);
|
|
11040
11032
|
color: var(--dga-list-group-color);
|
|
11033
|
+
text-decoration: none;
|
|
11041
11034
|
background-color: var(--dga-list-group-bg);
|
|
11042
11035
|
border: var(--dga-list-group-border-width) solid var(--dga-list-group-border-color);
|
|
11043
11036
|
}
|
|
@@ -17113,10 +17106,6 @@ textarea.form-control-lg {
|
|
|
17113
17106
|
border-color: var(--dga-dark-border-subtle) !important;
|
|
17114
17107
|
}
|
|
17115
17108
|
|
|
17116
|
-
.border-0 {
|
|
17117
|
-
border-width: 0 !important;
|
|
17118
|
-
}
|
|
17119
|
-
|
|
17120
17109
|
.border-1 {
|
|
17121
17110
|
border-width: 1px !important;
|
|
17122
17111
|
}
|
|
@@ -26169,6 +26158,169 @@ textarea.form-control-lg {
|
|
|
26169
26158
|
display: none !important;
|
|
26170
26159
|
}
|
|
26171
26160
|
}
|
|
26161
|
+
.link-primary {
|
|
26162
|
+
color: #1B8354 !important;
|
|
26163
|
+
text-decoration-color: #1B8354 !important;
|
|
26164
|
+
}
|
|
26165
|
+
.link-primary:visited, .link-primary:focus-visible {
|
|
26166
|
+
color: #1B8354 !important;
|
|
26167
|
+
text-decoration-color: #1B8354 !important;
|
|
26168
|
+
}
|
|
26169
|
+
.link-primary:hover, .link-primary:focus {
|
|
26170
|
+
color: #54C08A !important;
|
|
26171
|
+
text-decoration-color: #54C08A !important;
|
|
26172
|
+
}
|
|
26173
|
+
.link-primary:active {
|
|
26174
|
+
color: #88D8AD !important;
|
|
26175
|
+
text-decoration-color: #88D8AD !important;
|
|
26176
|
+
}
|
|
26177
|
+
|
|
26178
|
+
.link-secondary {
|
|
26179
|
+
color: #4D5761 !important;
|
|
26180
|
+
text-decoration-color: #4D5761 !important;
|
|
26181
|
+
}
|
|
26182
|
+
.link-secondary:visited, .link-secondary:focus-visible {
|
|
26183
|
+
color: #4D5761 !important;
|
|
26184
|
+
text-decoration-color: #4D5761 !important;
|
|
26185
|
+
}
|
|
26186
|
+
.link-secondary:hover, .link-secondary:focus {
|
|
26187
|
+
color: #9DA4AE !important;
|
|
26188
|
+
text-decoration-color: #9DA4AE !important;
|
|
26189
|
+
}
|
|
26190
|
+
.link-secondary:active {
|
|
26191
|
+
color: #D2D6DB !important;
|
|
26192
|
+
text-decoration-color: #D2D6DB !important;
|
|
26193
|
+
}
|
|
26194
|
+
|
|
26195
|
+
.link-success {
|
|
26196
|
+
color: #079455 !important;
|
|
26197
|
+
text-decoration-color: #079455 !important;
|
|
26198
|
+
}
|
|
26199
|
+
.link-success:visited, .link-success:focus-visible {
|
|
26200
|
+
color: #079455 !important;
|
|
26201
|
+
text-decoration-color: #079455 !important;
|
|
26202
|
+
}
|
|
26203
|
+
.link-success:hover, .link-success:focus {
|
|
26204
|
+
color: #47CD89 !important;
|
|
26205
|
+
text-decoration-color: #47CD89 !important;
|
|
26206
|
+
}
|
|
26207
|
+
.link-success:active {
|
|
26208
|
+
color: #75E0A7 !important;
|
|
26209
|
+
text-decoration-color: #75E0A7 !important;
|
|
26210
|
+
}
|
|
26211
|
+
|
|
26212
|
+
.link-danger {
|
|
26213
|
+
color: #D92D20 !important;
|
|
26214
|
+
text-decoration-color: #D92D20 !important;
|
|
26215
|
+
}
|
|
26216
|
+
.link-danger:visited, .link-danger:focus-visible {
|
|
26217
|
+
color: #D92D20 !important;
|
|
26218
|
+
text-decoration-color: #D92D20 !important;
|
|
26219
|
+
}
|
|
26220
|
+
.link-danger:hover, .link-danger:focus {
|
|
26221
|
+
color: #F97066 !important;
|
|
26222
|
+
text-decoration-color: #F97066 !important;
|
|
26223
|
+
}
|
|
26224
|
+
.link-danger:active {
|
|
26225
|
+
color: #FDA29B !important;
|
|
26226
|
+
text-decoration-color: #FDA29B !important;
|
|
26227
|
+
}
|
|
26228
|
+
|
|
26229
|
+
.link-warning {
|
|
26230
|
+
color: #DC6803 !important;
|
|
26231
|
+
text-decoration-color: #DC6803 !important;
|
|
26232
|
+
}
|
|
26233
|
+
.link-warning:visited, .link-warning:focus-visible {
|
|
26234
|
+
color: #DC6803 !important;
|
|
26235
|
+
text-decoration-color: #DC6803 !important;
|
|
26236
|
+
}
|
|
26237
|
+
.link-warning:hover, .link-warning:focus {
|
|
26238
|
+
color: #FDB022 !important;
|
|
26239
|
+
text-decoration-color: #FDB022 !important;
|
|
26240
|
+
}
|
|
26241
|
+
.link-warning:active {
|
|
26242
|
+
color: #FEC84B !important;
|
|
26243
|
+
text-decoration-color: #FEC84B !important;
|
|
26244
|
+
}
|
|
26245
|
+
|
|
26246
|
+
.link-info {
|
|
26247
|
+
color: #1570EF !important;
|
|
26248
|
+
text-decoration-color: #1570EF !important;
|
|
26249
|
+
}
|
|
26250
|
+
.link-info:visited, .link-info:focus-visible {
|
|
26251
|
+
color: #1570EF !important;
|
|
26252
|
+
text-decoration-color: #1570EF !important;
|
|
26253
|
+
}
|
|
26254
|
+
.link-info:hover, .link-info:focus {
|
|
26255
|
+
color: #53B1FD !important;
|
|
26256
|
+
text-decoration-color: #53B1FD !important;
|
|
26257
|
+
}
|
|
26258
|
+
.link-info:active {
|
|
26259
|
+
color: #84CAFF !important;
|
|
26260
|
+
text-decoration-color: #84CAFF !important;
|
|
26261
|
+
}
|
|
26262
|
+
|
|
26263
|
+
.link-neutral {
|
|
26264
|
+
color: #384250 !important;
|
|
26265
|
+
text-decoration-color: #384250 !important;
|
|
26266
|
+
}
|
|
26267
|
+
.link-neutral:visited, .link-neutral:focus-visible {
|
|
26268
|
+
color: #384250 !important;
|
|
26269
|
+
text-decoration-color: #384250 !important;
|
|
26270
|
+
}
|
|
26271
|
+
.link-neutral:hover, .link-neutral:focus {
|
|
26272
|
+
color: #6C737F !important;
|
|
26273
|
+
text-decoration-color: #6C737F !important;
|
|
26274
|
+
}
|
|
26275
|
+
.link-neutral:active {
|
|
26276
|
+
color: #9DA4AE !important;
|
|
26277
|
+
text-decoration-color: #9DA4AE !important;
|
|
26278
|
+
}
|
|
26279
|
+
|
|
26280
|
+
.link-lavender {
|
|
26281
|
+
color: #6D428F !important;
|
|
26282
|
+
text-decoration-color: #6D428F !important;
|
|
26283
|
+
}
|
|
26284
|
+
.link-lavender:visited, .link-lavender:focus-visible {
|
|
26285
|
+
color: #6D428F !important;
|
|
26286
|
+
text-decoration-color: #6D428F !important;
|
|
26287
|
+
}
|
|
26288
|
+
.link-lavender:hover, .link-lavender:focus {
|
|
26289
|
+
color: #80519F !important;
|
|
26290
|
+
text-decoration-color: #80519F !important;
|
|
26291
|
+
}
|
|
26292
|
+
.link-lavender:active {
|
|
26293
|
+
color: #A57BBA !important;
|
|
26294
|
+
text-decoration-color: #A57BBA !important;
|
|
26295
|
+
}
|
|
26296
|
+
|
|
26297
|
+
.link-oncolor {
|
|
26298
|
+
color: #FFFFFF !important;
|
|
26299
|
+
text-decoration-color: #FFFFFF !important;
|
|
26300
|
+
}
|
|
26301
|
+
.link-oncolor:visited, .link-oncolor:focus-visible {
|
|
26302
|
+
color: #FFFFFF !important;
|
|
26303
|
+
text-decoration-color: #FFFFFF !important;
|
|
26304
|
+
}
|
|
26305
|
+
.link-oncolor:hover, .link-oncolor:focus {
|
|
26306
|
+
color: rgba(255, 255, 255, 0.8) !important;
|
|
26307
|
+
text-decoration-color: rgba(255, 255, 255, 0.8) !important;
|
|
26308
|
+
}
|
|
26309
|
+
.link-oncolor:active {
|
|
26310
|
+
color: rgba(255, 255, 255, 0.6) !important;
|
|
26311
|
+
text-decoration-color: rgba(255, 255, 255, 0.6) !important;
|
|
26312
|
+
}
|
|
26313
|
+
|
|
26314
|
+
a.disabled {
|
|
26315
|
+
color: #9DA4AE !important;
|
|
26316
|
+
text-decoration-color: #9DA4AE !important;
|
|
26317
|
+
pointer-events: none;
|
|
26318
|
+
}
|
|
26319
|
+
a.disabled.link-oncolor {
|
|
26320
|
+
color: rgba(255, 255, 255, 0.3) !important;
|
|
26321
|
+
text-decoration-color: rgba(255, 255, 255, 0.3) !important;
|
|
26322
|
+
}
|
|
26323
|
+
|
|
26172
26324
|
*:focus-visible {
|
|
26173
26325
|
outline-offset: 2px !important;
|
|
26174
26326
|
outline: 2px solid #161616 !important;
|
|
@@ -26640,20 +26792,14 @@ html {
|
|
|
26640
26792
|
--dga-btn-disabled-bg: #E5E7EB;
|
|
26641
26793
|
--dga-btn-disabled-border-color: #E5E7EB;
|
|
26642
26794
|
}
|
|
26643
|
-
.alert.alert-dismissible {
|
|
26644
|
-
padding-inline-end: 1.5rem;
|
|
26645
|
-
padding-inline-start: 1.5rem;
|
|
26646
|
-
}
|
|
26647
|
-
.alert.alert-dismissible .btn-close {
|
|
26648
|
-
position: absolute;
|
|
26649
|
-
top: 0.5rem;
|
|
26650
|
-
inset-inline-end: 0.5rem;
|
|
26651
|
-
}
|
|
26652
26795
|
}
|
|
26653
26796
|
|
|
26654
26797
|
.alert-dismissible .btn-close {
|
|
26798
|
+
padding: 0.5rem;
|
|
26799
|
+
position: absolute;
|
|
26800
|
+
top: 1rem;
|
|
26655
26801
|
right: unset;
|
|
26656
|
-
inset-inline-end:
|
|
26802
|
+
inset-inline-end: 1.5rem;
|
|
26657
26803
|
}
|
|
26658
26804
|
|
|
26659
26805
|
.toast-container {
|
|
@@ -26675,10 +26821,11 @@ html {
|
|
|
26675
26821
|
gap: 0.75rem;
|
|
26676
26822
|
}
|
|
26677
26823
|
.toast .btn-close {
|
|
26824
|
+
padding: 0.5rem;
|
|
26678
26825
|
position: absolute;
|
|
26679
26826
|
top: 1rem;
|
|
26827
|
+
right: unset;
|
|
26680
26828
|
inset-inline-end: 1.5rem;
|
|
26681
|
-
margin: 0;
|
|
26682
26829
|
}
|
|
26683
26830
|
.toast .toast-content {
|
|
26684
26831
|
width: 100%;
|
|
@@ -27151,166 +27298,4 @@ html {
|
|
|
27151
27298
|
border-block-end: var(--dga-border-width) solid #D2D6DB;
|
|
27152
27299
|
}
|
|
27153
27300
|
|
|
27154
|
-
.link-primary {
|
|
27155
|
-
color: #1B8354 !important;
|
|
27156
|
-
}
|
|
27157
|
-
.link-primary:hover, .link-primary:focus {
|
|
27158
|
-
color: #54C08A !important;
|
|
27159
|
-
text-decoration-color: #54C08A !important;
|
|
27160
|
-
}
|
|
27161
|
-
.link-primary:active {
|
|
27162
|
-
color: #88D8AD !important;
|
|
27163
|
-
text-decoration-color: #88D8AD !important;
|
|
27164
|
-
}
|
|
27165
|
-
|
|
27166
|
-
.link-secondary {
|
|
27167
|
-
color: #4D5761 !important;
|
|
27168
|
-
}
|
|
27169
|
-
.link-secondary:hover, .link-secondary:focus {
|
|
27170
|
-
color: #9DA4AE !important;
|
|
27171
|
-
text-decoration-color: #9DA4AE !important;
|
|
27172
|
-
}
|
|
27173
|
-
.link-secondary:active {
|
|
27174
|
-
color: #D2D6DB !important;
|
|
27175
|
-
text-decoration-color: #D2D6DB !important;
|
|
27176
|
-
}
|
|
27177
|
-
|
|
27178
|
-
.link-success {
|
|
27179
|
-
color: #079455 !important;
|
|
27180
|
-
}
|
|
27181
|
-
.link-success:hover, .link-success:focus {
|
|
27182
|
-
color: #47CD89 !important;
|
|
27183
|
-
text-decoration-color: #47CD89 !important;
|
|
27184
|
-
}
|
|
27185
|
-
.link-success:active {
|
|
27186
|
-
color: #75E0A7 !important;
|
|
27187
|
-
text-decoration-color: #75E0A7 !important;
|
|
27188
|
-
}
|
|
27189
|
-
|
|
27190
|
-
.link-danger {
|
|
27191
|
-
color: #D92D20 !important;
|
|
27192
|
-
}
|
|
27193
|
-
.link-danger:hover, .link-danger:focus {
|
|
27194
|
-
color: #F97066 !important;
|
|
27195
|
-
text-decoration-color: #F97066 !important;
|
|
27196
|
-
}
|
|
27197
|
-
.link-danger:active {
|
|
27198
|
-
color: #FDA29B !important;
|
|
27199
|
-
text-decoration-color: #FDA29B !important;
|
|
27200
|
-
}
|
|
27201
|
-
|
|
27202
|
-
.link-warning {
|
|
27203
|
-
color: #DC6803 !important;
|
|
27204
|
-
}
|
|
27205
|
-
.link-warning:hover, .link-warning:focus {
|
|
27206
|
-
color: #FDB022 !important;
|
|
27207
|
-
text-decoration-color: #FDB022 !important;
|
|
27208
|
-
}
|
|
27209
|
-
.link-warning:active {
|
|
27210
|
-
color: #FEC84B !important;
|
|
27211
|
-
text-decoration-color: #FEC84B !important;
|
|
27212
|
-
}
|
|
27213
|
-
|
|
27214
|
-
.link-info {
|
|
27215
|
-
color: #1570EF !important;
|
|
27216
|
-
}
|
|
27217
|
-
.link-info:hover, .link-info:focus {
|
|
27218
|
-
color: #53B1FD !important;
|
|
27219
|
-
text-decoration-color: #53B1FD !important;
|
|
27220
|
-
}
|
|
27221
|
-
.link-info:active {
|
|
27222
|
-
color: #84CAFF !important;
|
|
27223
|
-
text-decoration-color: #84CAFF !important;
|
|
27224
|
-
}
|
|
27225
|
-
|
|
27226
|
-
.bg-neutral {
|
|
27227
|
-
background-color: #4D5761 !important;
|
|
27228
|
-
}
|
|
27229
|
-
|
|
27230
|
-
.text-neutral {
|
|
27231
|
-
color: #4D5761 !important;
|
|
27232
|
-
}
|
|
27233
|
-
|
|
27234
|
-
.border-neutral {
|
|
27235
|
-
border-color: #4D5761 !important;
|
|
27236
|
-
}
|
|
27237
|
-
|
|
27238
|
-
.shadow-xs {
|
|
27239
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
|
|
27240
|
-
}
|
|
27241
|
-
|
|
27242
|
-
.shadow-2xl {
|
|
27243
|
-
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
|
|
27244
|
-
}
|
|
27245
|
-
|
|
27246
|
-
.bg-gradient-primary {
|
|
27247
|
-
background: linear-gradient(135deg, #1B8354 0%, rgb(14.04, 68.12, 43.68) 100%) !important;
|
|
27248
|
-
}
|
|
27249
|
-
|
|
27250
|
-
.bg-gradient-secondary {
|
|
27251
|
-
background: linear-gradient(135deg, #F3F4F6 0%, rgb(108.9771428571, 121.0857142857, 145.3028571429) 100%) !important;
|
|
27252
|
-
}
|
|
27253
|
-
|
|
27254
|
-
.bg-gradient-lavender {
|
|
27255
|
-
background: linear-gradient(135deg, #6D428F 0%, rgb(56.68, 34.32, 74.36) 100%) !important;
|
|
27256
|
-
}
|
|
27257
|
-
|
|
27258
|
-
.link-lavender {
|
|
27259
|
-
color: #6D428F !important;
|
|
27260
|
-
}
|
|
27261
|
-
.link-lavender:hover, .link-lavender:focus {
|
|
27262
|
-
color: rgb(74.12, 44.88, 97.24) !important;
|
|
27263
|
-
}
|
|
27264
|
-
|
|
27265
|
-
.link-neutral {
|
|
27266
|
-
color: #4D5761 !important;
|
|
27267
|
-
}
|
|
27268
|
-
.link-neutral:hover, .link-neutral:focus {
|
|
27269
|
-
color: rgb(52.36, 59.16, 65.96) !important;
|
|
27270
|
-
}
|
|
27271
|
-
|
|
27272
|
-
.text-muted-light {
|
|
27273
|
-
color: #9DA4AE !important;
|
|
27274
|
-
}
|
|
27275
|
-
|
|
27276
|
-
.text-muted-dark {
|
|
27277
|
-
color: #4D5761 !important;
|
|
27278
|
-
}
|
|
27279
|
-
|
|
27280
|
-
@media (min-width: 768px) {
|
|
27281
|
-
.py-md-6 {
|
|
27282
|
-
padding-top: 2rem !important;
|
|
27283
|
-
padding-bottom: 2rem !important;
|
|
27284
|
-
}
|
|
27285
|
-
.py-md-7 {
|
|
27286
|
-
padding-top: 2.5rem !important;
|
|
27287
|
-
padding-bottom: 2.5rem !important;
|
|
27288
|
-
}
|
|
27289
|
-
.py-md-8 {
|
|
27290
|
-
padding-top: 3rem !important;
|
|
27291
|
-
padding-bottom: 3rem !important;
|
|
27292
|
-
}
|
|
27293
|
-
}
|
|
27294
|
-
.custom-scrollbar::-webkit-scrollbar {
|
|
27295
|
-
width: 8px;
|
|
27296
|
-
height: 8px;
|
|
27297
|
-
}
|
|
27298
|
-
.custom-scrollbar::-webkit-scrollbar-track {
|
|
27299
|
-
background: #F3F4F6;
|
|
27300
|
-
border-radius: 0.25rem;
|
|
27301
|
-
}
|
|
27302
|
-
.custom-scrollbar::-webkit-scrollbar-thumb {
|
|
27303
|
-
background: #9DA4AE;
|
|
27304
|
-
border-radius: 0.25rem;
|
|
27305
|
-
}
|
|
27306
|
-
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
27307
|
-
background: #6C737F;
|
|
27308
|
-
}
|
|
27309
|
-
|
|
27310
|
-
@media print {
|
|
27311
|
-
.no-print {
|
|
27312
|
-
display: none !important;
|
|
27313
|
-
}
|
|
27314
|
-
}
|
|
27315
|
-
|
|
27316
27301
|
/*# sourceMappingURL=dga-ui.css.map */
|