2022-03-30 18:18:06 +02:00
|
|
|
:root {
|
|
|
|
--offcanvas-background-color: var(--default-color);
|
2022-04-18 13:09:54 +02:00
|
|
|
--offcanvas-shadow: var(--shadow-large-dark);
|
|
|
|
--offcanvas-button-shadow: var(--shadow-medium);
|
2022-03-30 18:18:06 +02:00
|
|
|
}
|
|
|
|
|
2022-06-17 01:55:55 +02:00
|
|
|
.uk-offcanvas-switcher {
|
2022-03-30 18:18:06 +02:00
|
|
|
top: 320px !important;
|
|
|
|
position: fixed;
|
|
|
|
width: 60px;
|
|
|
|
height: 60px;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 4px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
right: 0;
|
|
|
|
z-index: 980;
|
|
|
|
background: var(--offcanvas-background-color);
|
|
|
|
border-radius: 6px 0px 0px 6px;
|
2022-04-07 16:50:49 +02:00
|
|
|
box-shadow: var(--offcanvas-button-shadow);
|
2022-03-30 18:18:06 +02:00
|
|
|
clip-path: inset(-30px 0px -30px -30px);
|
|
|
|
}
|
|
|
|
|
2022-06-17 01:55:55 +02:00
|
|
|
.uk-offcanvas-switcher .uk-offcanvas-count {
|
2022-03-30 18:18:06 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2022-04-05 18:55:01 +02:00
|
|
|
font-size: 12px;
|
|
|
|
line-height: 20px;
|
2022-03-30 18:18:06 +02:00
|
|
|
-webkit-transform: translate(-50%, -50%);
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
height: 20px;
|
2022-04-05 18:55:01 +02:00
|
|
|
width: 20px;
|
2022-03-30 18:18:06 +02:00
|
|
|
border-radius: 50%;
|
2022-04-05 18:55:01 +02:00
|
|
|
padding: 1px;
|
2022-03-30 18:18:06 +02:00
|
|
|
background-color: var(--secondary-color);
|
|
|
|
color: var(--light-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-06-17 01:55:55 +02:00
|
|
|
.uk-offcanvas .uk-offcanvas-bar {
|
2022-03-30 18:18:06 +02:00
|
|
|
background-color: var(--offcanvas-background-color);
|
|
|
|
box-shadow: var(--offcanvas-shadow);
|
2022-06-17 01:55:55 +02:00
|
|
|
border-radius: 4px 0 0 4px;
|
2022-03-30 18:18:06 +02:00
|
|
|
width: 550px;
|
2022-05-30 14:36:33 +02:00
|
|
|
max-width: 100vw;
|
2022-03-30 18:18:06 +02:00
|
|
|
}
|