@lifeonlars/prime-yggdrasil 0.1.1 → 0.1.2

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.
@@ -0,0 +1,167 @@
1
+ /**
2
+ * media components
3
+ */
4
+
5
+ .p-galleria .p-galleria-close {
6
+ margin: 0.5rem;
7
+ background: transparent;
8
+ color: var(--surface-neutral-secondary);
9
+ width: 4rem;
10
+ height: 4rem;
11
+ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
12
+ border-radius: var(--radius-full);
13
+ }
14
+ .p-galleria .p-galleria-close .p-galleria-close-icon {
15
+ font-size: 2rem;
16
+ }
17
+ .p-galleria .p-galleria-close .p-galleria-close-icon.p-icon {
18
+ width: 2rem;
19
+ height: 2rem;
20
+ }
21
+ .p-galleria .p-galleria-close:hover {
22
+ background: rgba(255, 255, 255, 0.1);
23
+ color: var(--surface-neutral-secondary);
24
+ }
25
+ .p-galleria .p-galleria-item-nav {
26
+ background: transparent;
27
+ color: var(--surface-neutral-secondary);
28
+ width: 4rem;
29
+ height: 4rem;
30
+ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
31
+ border-radius: var(--radius-md);
32
+ margin: 0 0.5rem;
33
+ }
34
+ .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon,
35
+ .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon {
36
+ font-size: 2rem;
37
+ }
38
+ .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon.p-icon,
39
+ .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon.p-icon {
40
+ width: 2rem;
41
+ height: 2rem;
42
+ }
43
+ .p-galleria .p-galleria-item-nav:not(.p-disabled):hover {
44
+ background: rgba(255, 255, 255, 0.1);
45
+ color: var(--surface-neutral-secondary);
46
+ }
47
+ .p-galleria .p-galleria-caption {
48
+ background: rgba(0, 0, 0, 0.5);
49
+ color: var(--surface-neutral-secondary);
50
+ padding: 1rem;
51
+ }
52
+ .p-galleria .p-galleria-indicators {
53
+ padding: 1rem;
54
+ }
55
+ .p-galleria .p-galleria-indicators .p-galleria-indicator button {
56
+ background-color: var(--border-neutral-subdued);
57
+ width: 1rem;
58
+ height: 1rem;
59
+ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
60
+ border-radius: var(--radius-full);
61
+ }
62
+ .p-galleria .p-galleria-indicators .p-galleria-indicator button:hover {
63
+ background: var(--icon-neutral-disabled);
64
+ }
65
+ .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
66
+ background: var(--surface-brand-overlay);
67
+ color: var(--text-state-interactive);
68
+ }
69
+ .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator {
70
+ margin-right: 0.5rem;
71
+ }
72
+ .p-galleria.p-galleria-indicators-left .p-galleria-indicator, .p-galleria.p-galleria-indicators-right .p-galleria-indicator {
73
+ margin-bottom: 0.5rem;
74
+ }
75
+ .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators {
76
+ background: rgba(0, 0, 0, 0.5);
77
+ }
78
+ .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button {
79
+ background: rgba(255, 255, 255, 0.4);
80
+ }
81
+ .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button:hover {
82
+ background: rgba(255, 255, 255, 0.6);
83
+ }
84
+ .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
85
+ background: var(--surface-brand-overlay);
86
+ color: var(--text-state-interactive);
87
+ }
88
+ .p-galleria .p-galleria-thumbnail-container {
89
+ background: rgba(0, 0, 0, 0.9);
90
+ padding: 1rem 0.25rem;
91
+ }
92
+ .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev,
93
+ .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next {
94
+ margin: 0.5rem;
95
+ background-color: transparent;
96
+ color: var(--surface-neutral-secondary);
97
+ width: 2rem;
98
+ height: 2rem;
99
+ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
100
+ border-radius: var(--radius-full);
101
+ }
102
+ .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover,
103
+ .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover {
104
+ background: rgba(255, 255, 255, 0.1);
105
+ color: var(--surface-neutral-secondary);
106
+ }
107
+ .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content {
108
+ transition: box-shadow 0.2s;
109
+ }
110
+ .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content:focus-visible {
111
+ outline: 0 none;
112
+ outline-offset: 0;
113
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
114
+ }
115
+ .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
116
+ background-color: var(--surface-brand-primary);
117
+ }
118
+ .p-carousel .p-carousel-content .p-carousel-prev,
119
+ .p-carousel .p-carousel-content .p-carousel-next {
120
+ width: 2rem;
121
+ height: 2rem;
122
+ color: var(--icon-neutral-subdued);
123
+ border: 0 none;
124
+ background: transparent;
125
+ border-radius: var(--radius-full);
126
+ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
127
+ }
128
+ .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover,
129
+ .p-carousel .p-carousel-content .p-carousel-next:enabled:hover {
130
+ color: var(--text-neutral-default);
131
+ border-color: transparent;
132
+ background: var(--surface-state-hover);
133
+ }
134
+ .p-carousel .p-carousel-content .p-carousel-prev:focus-visible,
135
+ .p-carousel .p-carousel-content .p-carousel-next:focus-visible {
136
+ outline: 0 none;
137
+ outline-offset: 0;
138
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
139
+ }
140
+ .p-carousel .p-carousel-content .p-carousel-prev,
141
+ .p-carousel .p-carousel-content .p-carousel-next {
142
+ margin: 0.5rem;
143
+ }
144
+ .p-carousel .p-carousel-indicators {
145
+ padding: 1rem;
146
+ }
147
+ .p-carousel .p-carousel-indicators .p-carousel-indicator {
148
+ margin-right: 0.5rem;
149
+ margin-bottom: 0.5rem;
150
+ }
151
+ .p-carousel .p-carousel-indicators .p-carousel-indicator button {
152
+ background-color: var(--border-neutral-subdued);
153
+ width: 2rem;
154
+ height: 0.5rem;
155
+ transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
156
+ border-radius: 0;
157
+ }
158
+ .p-carousel .p-carousel-indicators .p-carousel-indicator button:hover {
159
+ background: var(--icon-neutral-disabled);
160
+ }
161
+ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button {
162
+ background: var(--surface-brand-overlay);
163
+ color: var(--text-state-interactive);
164
+ }
165
+ .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button {
166
+ background-color: var(--surface-brand-primary);
167
+ }