File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,6 @@ export class UUIPaginationElement extends LitElement {
34
34
--uui-button-border-color: var(--uui-color-border-standalone);
35
35
--uui-button-border-color-hover: var(--uui-color-interactive-emphasis);
36
36
--uui-button-border-color-disabled: var(--uui-color-border-standalone);
37
- --uui-button-background-color-hover: transparent;
38
- --uui-button-contrast-hover: var(--uui-color-default-emphasis);
39
37
}
40
38
41
39
.page {
@@ -238,6 +236,7 @@ export class UUIPaginationElement extends LitElement {
238
236
protected renderFirst ( ) {
239
237
return html `< uui-button
240
238
compact
239
+ look ="outline "
241
240
class ="nav "
242
241
role ="listitem "
243
242
label ="Go to first page "
@@ -250,6 +249,7 @@ export class UUIPaginationElement extends LitElement {
250
249
protected renderPrevious ( ) {
251
250
return html `< uui-button
252
251
compact
252
+ look ="outline "
253
253
class ="nav "
254
254
role ="listitem "
255
255
label ="Go to previous page "
@@ -262,6 +262,7 @@ export class UUIPaginationElement extends LitElement {
262
262
protected renderNext ( ) {
263
263
return html `< uui-button
264
264
compact
265
+ look ="outline "
265
266
role ="listitem "
266
267
class ="nav "
267
268
label ="Go to next page "
@@ -275,6 +276,7 @@ export class UUIPaginationElement extends LitElement {
275
276
return html `
276
277
< uui-button
277
278
compact
279
+ look ="outline "
278
280
role ="listitem "
279
281
class ="nav "
280
282
label ="Go to last page "
@@ -288,6 +290,7 @@ export class UUIPaginationElement extends LitElement {
288
290
protected renderDots ( ) {
289
291
return html `< uui-button
290
292
compact
293
+ look ="outline "
291
294
tabindex ="-1 "
292
295
class ="dots "
293
296
label ="More pages "
@@ -298,6 +301,7 @@ export class UUIPaginationElement extends LitElement {
298
301
protected renderPage ( page : number ) {
299
302
return html `< uui-button
300
303
compact
304
+ look ="outline "
301
305
role ="listitem "
302
306
label ="Go to page ${ page } "
303
307
class =${ 'page' + ( page === this . _current ? ' active' : '' ) }
Original file line number Diff line number Diff line change @@ -25,11 +25,9 @@ export default {
25
25
26
26
export const AAAOverview : Story = props => html `
27
27
< h4 >
28
- Resize the orange container to see how the number of pagination buttons
29
- changes.
28
+ Resize the container to see how the number of pagination buttons changes.
30
29
</ h4 >
31
- < div
32
- style ="resize: horizontal; overflow: hidden; padding: 2em; border: 1px solid orange ">
30
+ < div style ="resize: horizontal; overflow: hidden; padding: 6px; ">
33
31
< uui-pagination
34
32
.total =${ props . total }
35
33
.current =${ props . current } > </ uui-pagination >
You can’t perform that action at this time.
0 commit comments