blue-react 9.9.3 → 9.10.0
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/dist/components/HeaderTitle.js +2 -5
- package/dist/components/Layout.js +4 -4
- package/dist/components/MenuItem.js +1 -8
- package/dist/components/Search.js +2 -3
- package/dist/components/Utilities.js +23 -146
- package/dist/style.css +17 -7
- package/dist/style.min.css +6 -3
- package/dist/style.scss +2 -54
- package/dist/types/components/Utilities.d.ts +11 -16
- package/package.json +4 -4
- package/dist/components/DocumentView.js +0 -83
- package/dist/neu.css +0 -156
- package/dist/neu.min.css +0 -2
- package/dist/neu.scss +0 -90
- package/dist/styles/_action-menu.scss +0 -69
- package/dist/styles/_bootstrap-mixins_overwritten.scss +0 -106
- package/dist/styles/_bootstrap-variables.scss +0 -18
- package/dist/styles/_bootstrap.scss +0 -58
- package/dist/styles/_buttons.scss +0 -110
- package/dist/styles/_caret.scss +0 -50
- package/dist/styles/_general.scss +0 -142
- package/dist/styles/_hover.scss +0 -44
- package/dist/styles/_keyframes.scss +0 -73
- package/dist/styles/_layout.scss +0 -378
- package/dist/styles/_mixins.scss +0 -7
- package/dist/styles/_router.scss +0 -19
- package/dist/styles/_search.scss +0 -62
- package/dist/styles/_sidebar.scss +0 -36
- package/dist/styles/_status.scss +0 -147
- package/dist/styles/_tooltips.scss +0 -196
- package/dist/styles/_variables.scss +0 -123
- package/dist/styles/mixins/_action-menu.scss +0 -67
- package/dist/styles/mixins/_custom-property.scss +0 -10
- package/dist/styles/mixins/_menu-item.scss +0 -23
- package/dist/styles/mixins/_misc.scss +0 -49
- package/dist/styles/mixins/_scroll-shadow.scss +0 -9
- package/dist/styles/mixins/_sidebar.scss +0 -201
- package/dist/styles/mixins/_switch.scss +0 -85
- package/dist/types/components/DocumentView.d.ts +0 -24
package/dist/styles/_caret.scss
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
.blue-caret {
|
|
2
|
-
/* treat like a font icon */
|
|
3
|
-
font-family: "blueicon" !important;
|
|
4
|
-
speak: none;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
font-weight: normal;
|
|
7
|
-
font-variant: normal;
|
|
8
|
-
text-transform: none;
|
|
9
|
-
line-height: 1;
|
|
10
|
-
-webkit-font-smoothing: antialiased;
|
|
11
|
-
-moz-osx-font-smoothing: grayscale;
|
|
12
|
-
|
|
13
|
-
font-size: 1.15em;
|
|
14
|
-
position: relative;
|
|
15
|
-
top: 0.063rem;
|
|
16
|
-
display: inline-block;
|
|
17
|
-
/* END treat like a font icon */
|
|
18
|
-
|
|
19
|
-
--caret-size: 0.5em;
|
|
20
|
-
--caret-strength: 0.09em;
|
|
21
|
-
|
|
22
|
-
width: 1em;
|
|
23
|
-
|
|
24
|
-
&::before {
|
|
25
|
-
content: "";
|
|
26
|
-
display: block;
|
|
27
|
-
position: absolute;
|
|
28
|
-
top: 50%;
|
|
29
|
-
left: 50%;
|
|
30
|
-
width: var(--caret-size);
|
|
31
|
-
height: var(--caret-size);
|
|
32
|
-
background: transparent;
|
|
33
|
-
box-shadow: var(--caret-strength) var(--caret-strength) 0 currentColor;
|
|
34
|
-
transform: rotate(-45deg) translate(-50%, -50%);
|
|
35
|
-
margin-top: calc((var(--caret-size) + var(--caret-strength)) * -1);
|
|
36
|
-
transition: all 0.2s;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
&.blue-caret-mirrored {
|
|
40
|
-
&::before {
|
|
41
|
-
transform: rotate(135deg) translate(-50%, -50%);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
&.blue-caret-open {
|
|
46
|
-
&::before {
|
|
47
|
-
transform: rotate(45deg) translate(-50%, -50%);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
@include blue-custom-scrollbar(
|
|
2
|
-
transparent,
|
|
3
|
-
rgba(var(--blue-scrollbar-thumb-color-rgb), 0.5),
|
|
4
|
-
rgba(var(--blue-scrollbar-thumb-color-rgb), 0.6),
|
|
5
|
-
rgba(var(--blue-scrollbar-thumb-color-rgb), 0.7)
|
|
6
|
-
);
|
|
7
|
-
|
|
8
|
-
* {
|
|
9
|
-
scrollbar-width: thin;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
@media screen and (min-width: 768px) {
|
|
13
|
-
::-webkit-scrollbar {
|
|
14
|
-
height: var(--blue-scrollbar-size);
|
|
15
|
-
overflow: visible;
|
|
16
|
-
width: var(--blue-scrollbar-size);
|
|
17
|
-
}
|
|
18
|
-
::-webkit-scrollbar-thumb {
|
|
19
|
-
background-clip: padding-box;
|
|
20
|
-
border: solid transparent;
|
|
21
|
-
border-width: 1px;
|
|
22
|
-
min-height: 28px;
|
|
23
|
-
padding: 100px 0 0;
|
|
24
|
-
border-radius: 0.3rem;
|
|
25
|
-
}
|
|
26
|
-
::-webkit-scrollbar-button {
|
|
27
|
-
height: 0;
|
|
28
|
-
width: 0;
|
|
29
|
-
}
|
|
30
|
-
::-webkit-scrollbar-track {
|
|
31
|
-
border: solid transparent;
|
|
32
|
-
border-width: 0 0 0 4px;
|
|
33
|
-
}
|
|
34
|
-
::-webkit-scrollbar-corner {
|
|
35
|
-
background: 0 0;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
html,
|
|
40
|
-
body {
|
|
41
|
-
height: 100%;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
body {
|
|
45
|
-
background: var(--blue-app-bg, #{$app-bg});
|
|
46
|
-
|
|
47
|
-
.blue-wrapper {
|
|
48
|
-
position: fixed;
|
|
49
|
-
width: 100%;
|
|
50
|
-
width: 100%;
|
|
51
|
-
left: 0;
|
|
52
|
-
right: 0;
|
|
53
|
-
top: 0;
|
|
54
|
-
bottom: 0;
|
|
55
|
-
z-index: 1;
|
|
56
|
-
display: none;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
&.open {
|
|
60
|
-
.blue-wrapper {
|
|
61
|
-
display: block;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
// Idee für Effekt von http://www.w3schools.com/howto/howto_css_animate_buttons.asp
|
|
67
|
-
.btn,
|
|
68
|
-
.nav-pills > li > a,
|
|
69
|
-
.pager li > a,
|
|
70
|
-
.pagination > li > a,
|
|
71
|
-
.list-group a.list-group-item {
|
|
72
|
-
&:not(.disabled):not(.readonly):not(.dropdown-toggle) {
|
|
73
|
-
-webkit-transition: background-color 0.3s, color 0.15s, box-shadow 0.3s, opacity 0.3s;
|
|
74
|
-
transition: background-color 0.3s, color 0.15s, box-shadow 0.3s, opacity 0.3s;
|
|
75
|
-
position: relative;
|
|
76
|
-
|
|
77
|
-
&:hover,
|
|
78
|
-
&:active,
|
|
79
|
-
&:focus {
|
|
80
|
-
z-index: 1;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.page-link {
|
|
86
|
-
&:hover,
|
|
87
|
-
&:focus {
|
|
88
|
-
text-decoration: none;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.page-header {
|
|
93
|
-
padding-bottom: 0.563rem;
|
|
94
|
-
margin: 2.5rem 0 1.25rem;
|
|
95
|
-
border-bottom: 0.25rem solid var(--blue-page-header-border-color, $table-border-color);
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.blue-wrapper {
|
|
99
|
-
z-index: 3 !important;
|
|
100
|
-
|
|
101
|
-
&.active {
|
|
102
|
-
display: block;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
@media screen and (max-width: 768px) {
|
|
107
|
-
.blue-header-extension .blue-header-title-labels:not(.keep) {
|
|
108
|
-
display: none;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.sign-in-screen {
|
|
113
|
-
padding-top: $normal-size;
|
|
114
|
-
|
|
115
|
-
.sign-in-container {
|
|
116
|
-
animation: enabledBlueAppPage 0.5s;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
@media screen and (min-width: 768px) {
|
|
120
|
-
.sign-in-container {
|
|
121
|
-
padding: var(--blue-sign-in-container-md-padding, 0 calc(50% - 18rem));
|
|
122
|
-
width: var(--blue-sign-in-container-md-width, auto);
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.w-bla-sidebar-width {
|
|
128
|
-
width: $bla-sidebar-width;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.blue-header-title.sidebar {
|
|
132
|
-
width: $bla-sidebar-width;
|
|
133
|
-
padding-left: calc(#{$normal-size} + #{$spacer});
|
|
134
|
-
transform: translateX(-100%);
|
|
135
|
-
transition: transform 0.4s;
|
|
136
|
-
background: var(--blue-sidebar-bg);
|
|
137
|
-
color: $sidebar-color;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.blue-scroll-shadow {
|
|
141
|
-
@include scroll-shadow(var(--bs-body-bg));
|
|
142
|
-
}
|
package/dist/styles/_hover.scss
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
.blue-btn-silent {
|
|
2
|
-
&:not(:hover):not(:focus):not(:active) {
|
|
3
|
-
border-color: transparent;
|
|
4
|
-
color: inherit;
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
@media (hover: hover) {
|
|
9
|
-
.blue-d-hover {
|
|
10
|
-
&:not(:hover):not(:focus):not(:active):not(.active):not(:focus-within) {
|
|
11
|
-
.blue-d-hover-content-active {
|
|
12
|
-
display: none !important;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
&:hover,
|
|
17
|
-
&:focus,
|
|
18
|
-
&:active,
|
|
19
|
-
&.active,
|
|
20
|
-
&:focus-within {
|
|
21
|
-
.blue-d-hover-content-default {
|
|
22
|
-
display: none !important;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.blue-opacity-hover {
|
|
28
|
-
&:not(:hover):not(:focus):not(:active):not(.active):not(:focus-within) {
|
|
29
|
-
.blue-opacity-hover-content-active {
|
|
30
|
-
opacity: 0;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&:hover,
|
|
35
|
-
&:focus,
|
|
36
|
-
&:active,
|
|
37
|
-
&.active,
|
|
38
|
-
&:focus-within {
|
|
39
|
-
.blue-opacity-hover-content-default {
|
|
40
|
-
opacity: 0;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
@keyframes fade-in {
|
|
2
|
-
from {
|
|
3
|
-
opacity: 0;
|
|
4
|
-
}
|
|
5
|
-
to {
|
|
6
|
-
opacity: 1;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
@keyframes blAppearUp {
|
|
11
|
-
from {
|
|
12
|
-
margin-top: 2.5rem;
|
|
13
|
-
}
|
|
14
|
-
to {
|
|
15
|
-
margin-top: 0;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@keyframes blue-menu-item-dropdown {
|
|
20
|
-
from {
|
|
21
|
-
transform: translateY(-50%);
|
|
22
|
-
opacity: 0;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
@keyframes enabledBlueAppPage {
|
|
27
|
-
from {
|
|
28
|
-
transform: scale(0.98);
|
|
29
|
-
opacity: 0;
|
|
30
|
-
}
|
|
31
|
-
to {
|
|
32
|
-
opacity: 1;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
@keyframes fadeInDown {
|
|
37
|
-
from {
|
|
38
|
-
opacity: 0;
|
|
39
|
-
transform: translate3d(0, -100%, 0);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
to {
|
|
43
|
-
opacity: 1;
|
|
44
|
-
transform: none;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
@keyframes alert-in {
|
|
49
|
-
from {
|
|
50
|
-
transform: scale(0, 0);
|
|
51
|
-
opacity: 0.2;
|
|
52
|
-
transition: 0s;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
@keyframes circlebounce {
|
|
57
|
-
0%,
|
|
58
|
-
100% {
|
|
59
|
-
transform: scale(0);
|
|
60
|
-
}
|
|
61
|
-
50% {
|
|
62
|
-
transform: scale(1);
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
@keyframes scrolling {
|
|
67
|
-
from {
|
|
68
|
-
transform: translateX(-100%);
|
|
69
|
-
}
|
|
70
|
-
to {
|
|
71
|
-
transform: translateX(100%);
|
|
72
|
-
}
|
|
73
|
-
}
|
package/dist/styles/_layout.scss
DELETED
|
@@ -1,378 +0,0 @@
|
|
|
1
|
-
.blue-layout {
|
|
2
|
-
position: relative;
|
|
3
|
-
min-height: 100vh;
|
|
4
|
-
min-height: 100dvh;
|
|
5
|
-
|
|
6
|
-
&.hasNoSidebarMenu {
|
|
7
|
-
.blue-page,
|
|
8
|
-
.blue-header {
|
|
9
|
-
padding-left: 0;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.blue-sidebar-toggler {
|
|
13
|
-
display: none;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.blue-page {
|
|
17
|
-
margin-left: 0;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.blue-header-extension {
|
|
21
|
-
left: 0;
|
|
22
|
-
padding-right: 0;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
&.open {
|
|
27
|
-
@media screen and (max-width: 1400px) {
|
|
28
|
-
.router-page.active {
|
|
29
|
-
.blue-page {
|
|
30
|
-
filter: blur(3px) brightness(0.8);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
@include openSidebarMenu();
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
&:not(.open) {
|
|
39
|
-
.blue-sidebar-visible-on-open {
|
|
40
|
-
display: none !important;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.blue-sidebar-hidden-on-open {
|
|
44
|
-
animation: fade-in 1s;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.blue-sidebar-toggler {
|
|
50
|
-
position: fixed;
|
|
51
|
-
width: $normal-size;
|
|
52
|
-
height: $normal-size;
|
|
53
|
-
left: 0;
|
|
54
|
-
top: 0;
|
|
55
|
-
z-index: 5;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.blue-header {
|
|
59
|
-
@include header-bg();
|
|
60
|
-
color: var(--blue-header-color);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.blue-header {
|
|
64
|
-
height: $normal-size;
|
|
65
|
-
position: fixed;
|
|
66
|
-
top: 0;
|
|
67
|
-
left: $normal-size;
|
|
68
|
-
right: 0;
|
|
69
|
-
z-index: 4;
|
|
70
|
-
|
|
71
|
-
@media screen and (min-width: 768px) {
|
|
72
|
-
right: $scrollbar-size;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.navbar-nav {
|
|
76
|
-
margin: 0;
|
|
77
|
-
|
|
78
|
-
> li {
|
|
79
|
-
float: left;
|
|
80
|
-
|
|
81
|
-
> a {
|
|
82
|
-
background-color: transparent;
|
|
83
|
-
color: var(--blue-header-color);
|
|
84
|
-
padding: $bla-header-nav-padding;
|
|
85
|
-
|
|
86
|
-
&:hover,
|
|
87
|
-
&:focus {
|
|
88
|
-
background-color: $bla-button-bg-hover;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.navbar-left {
|
|
95
|
-
float: left !important;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.navbar-right {
|
|
99
|
-
float: right !important;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.blue-search {
|
|
103
|
-
width: 16rem;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.blue-normal-scrollbar,
|
|
108
|
-
.modal-body,
|
|
109
|
-
.blue-page {
|
|
110
|
-
@include blue-custom-scrollbar(
|
|
111
|
-
var(--bs-body-bg, #{$body-bg}),
|
|
112
|
-
var(--bs-tertiary-color, #{$body-color}),
|
|
113
|
-
var(--bs-secondary-color, #{$body-color}),
|
|
114
|
-
var(--bs-body-color, #{$body-color}),
|
|
115
|
-
0.3rem
|
|
116
|
-
);
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.blue-page {
|
|
120
|
-
margin-left: $normal-size;
|
|
121
|
-
animation: enabledBlueAppPage 0.5s;
|
|
122
|
-
border-top-left-radius: var(--bs-border-radius, 0.5rem);
|
|
123
|
-
border-top-right-radius: var(--bs-border-radius, 0.5rem);
|
|
124
|
-
--bs-bg-opacity: 1;
|
|
125
|
-
background-color: rgba(var(--bs-body-bg-rgb, 255, 255, 255), var(--bs-bg-opacity));
|
|
126
|
-
|
|
127
|
-
&::before,
|
|
128
|
-
&::after {
|
|
129
|
-
content: "";
|
|
130
|
-
display: table;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
@include blue-sidebar($normal-size);
|
|
135
|
-
|
|
136
|
-
@media (max-width: 600px) {
|
|
137
|
-
@include blue-sidebar(0);
|
|
138
|
-
.blue-layout:not(.open) .blue-sidebar {
|
|
139
|
-
left: -$normal-size;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.blue-page {
|
|
143
|
-
margin-left: 0;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.blue-layout.disableHeaders {
|
|
147
|
-
.blue-page {
|
|
148
|
-
padding-top: $normal-size;
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.blue-sidebar-toggler {
|
|
153
|
-
transition: transform 0.5s;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.blue-layout:not(.open).disableHeaders .blue-sidebar-toggler {
|
|
157
|
-
transform: translate(0.25rem, 0.25rem);
|
|
158
|
-
border-radius: $border-radius;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
@media (min-width: 1400px) {
|
|
163
|
-
.blue-layout.expandSidebar {
|
|
164
|
-
@include openSidebarMenu();
|
|
165
|
-
|
|
166
|
-
.blue-sidebar {
|
|
167
|
-
box-shadow: none !important;
|
|
168
|
-
// background: transparent;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.blue-page {
|
|
172
|
-
margin-left: $bla-sidebar-width;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.blue-sidebar-toggler {
|
|
176
|
-
display: none;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
&.hideToggleExpandSidebar .blue-header {
|
|
180
|
-
left: 0;
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
.blue-layout .blue-header-title {
|
|
185
|
-
padding-left: $spacer;
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.blue-open-menu {
|
|
190
|
-
position: absolute !important;
|
|
191
|
-
margin-top: 0 !important;
|
|
192
|
-
left: 0;
|
|
193
|
-
justify-content: center;
|
|
194
|
-
|
|
195
|
-
&,
|
|
196
|
-
&:hover,
|
|
197
|
-
&:focus {
|
|
198
|
-
color: var(--blue-sidebar-color);
|
|
199
|
-
background-color: var(--blue-sidebar-bg);
|
|
200
|
-
border-color: transparent;
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.blue-sidebar {
|
|
205
|
-
@include blue-custom-scrollbar(
|
|
206
|
-
var(--blue-sidebar-bg),
|
|
207
|
-
rgba($sidebar-color, 0.5),
|
|
208
|
-
rgba($sidebar-color, 0.6),
|
|
209
|
-
rgba($sidebar-color, 0.7),
|
|
210
|
-
0.3rem
|
|
211
|
-
);
|
|
212
|
-
overflow-y: auto;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
.blue-sidebar-bottom {
|
|
216
|
-
width: auto;
|
|
217
|
-
background-color: var(--blue-sidebar-bg);
|
|
218
|
-
transition: box-shadow 0.2s;
|
|
219
|
-
|
|
220
|
-
&.has-shadow {
|
|
221
|
-
box-shadow: 0 -2rem 2rem rgba(black, 0.1);
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
.blue-page {
|
|
226
|
-
min-height: calc(100vh - #{$normal-size});
|
|
227
|
-
min-height: calc(100dvh - #{$normal-size});
|
|
228
|
-
margin-top: $normal-size;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.blue-layout.disableHeaders {
|
|
232
|
-
.blue-page {
|
|
233
|
-
margin-top: initial;
|
|
234
|
-
min-height: calc(100vh);
|
|
235
|
-
min-height: calc(100dvh);
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.blue-header-title {
|
|
240
|
-
a {
|
|
241
|
-
color: inherit;
|
|
242
|
-
|
|
243
|
-
&:focus {
|
|
244
|
-
text-decoration: none;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
.blue-header-title-image {
|
|
250
|
-
width: 2rem;
|
|
251
|
-
height: 2rem;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.blue-menu-item {
|
|
255
|
-
transition: width 0.5s, background-color 0.3s, color 0.15s, box-shadow 0.3s, opacity 0.3s !important;
|
|
256
|
-
padding: 0.5rem 0.75rem;
|
|
257
|
-
border: none;
|
|
258
|
-
|
|
259
|
-
&:focus {
|
|
260
|
-
box-shadow: none;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
&:focus-visible {
|
|
264
|
-
&,
|
|
265
|
-
&.active {
|
|
266
|
-
box-shadow: inset 0 0 0.25rem;
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
.blue-menu-item-label {
|
|
272
|
-
display: none;
|
|
273
|
-
max-height: 100%;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.blue-menu-item-icon {
|
|
277
|
-
display: inline-block;
|
|
278
|
-
|
|
279
|
-
& > * {
|
|
280
|
-
display: block;
|
|
281
|
-
width: 1.5rem;
|
|
282
|
-
}
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.blue-menu-item-icon.iconForActive {
|
|
286
|
-
display: none;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.blue-menu-item.active {
|
|
290
|
-
.blue-menu-item-icon.hasIconForActive {
|
|
291
|
-
display: none;
|
|
292
|
-
}
|
|
293
|
-
.blue-menu-item-icon.iconForActive {
|
|
294
|
-
display: inline-block;
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.blue-menu-item-dropdown {
|
|
299
|
-
margin-left: 1rem;
|
|
300
|
-
animation: blue-menu-item-dropdown 0.15s;
|
|
301
|
-
position: relative;
|
|
302
|
-
|
|
303
|
-
&::before {
|
|
304
|
-
content: "";
|
|
305
|
-
position: absolute;
|
|
306
|
-
top: 0.125rem;
|
|
307
|
-
right: 0.125rem;
|
|
308
|
-
bottom: 0.125rem;
|
|
309
|
-
left: 0.125rem;
|
|
310
|
-
border-radius: $border-radius;
|
|
311
|
-
box-shadow: $box-shadow;
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
.blue-sidebar .blue-menu-item-dropdown {
|
|
316
|
-
--blue-sidebar-bg: var(--blue-sidebar-depth-1-bg, #{$sidebar-deep-bg});
|
|
317
|
-
|
|
318
|
-
&::before {
|
|
319
|
-
background-color: var(--blue-sidebar-bg);
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
.blue-menu-item-dropdown {
|
|
323
|
-
--blue-sidebar-bg: var(--blue-sidebar-depth-2-bg, #{darken($sidebar-deep-bg, 4%)});
|
|
324
|
-
|
|
325
|
-
.blue-menu-item-dropdown {
|
|
326
|
-
--blue-sidebar-bg: var(--blue-sidebar-depth-3-bg, #{darken($sidebar-deep-bg, 8%)});
|
|
327
|
-
|
|
328
|
-
.blue-menu-item-dropdown {
|
|
329
|
-
--blue-sidebar-bg: var(--blue-sidebar-depth-4-bg, #{darken($sidebar-deep-bg, 12%)});
|
|
330
|
-
|
|
331
|
-
.blue-menu-item-dropdown {
|
|
332
|
-
--blue-sidebar-bg: var(--blue-sidebar-depth-5-bg, #{darken($sidebar-deep-bg, 16%)});
|
|
333
|
-
|
|
334
|
-
.blue-menu-item-dropdown {
|
|
335
|
-
--blue-sidebar-bg: var(--blue-sidebar-depth-6-bg, #{darken($sidebar-deep-bg, 20%)});
|
|
336
|
-
}
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
.blue-header .blue-menu-item-dropdown {
|
|
344
|
-
--blue-sidebar-bg: #{$header-deep-bg};
|
|
345
|
-
|
|
346
|
-
&::before {
|
|
347
|
-
background-color: var(--blue-header-bg);
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
.blue-menu-item-dropdown {
|
|
351
|
-
--blue-sidebar-bg: #{darken($header-deep-bg, 4%)};
|
|
352
|
-
|
|
353
|
-
.blue-menu-item-dropdown {
|
|
354
|
-
--blue-sidebar-bg: #{darken($header-deep-bg, 8%)};
|
|
355
|
-
|
|
356
|
-
.blue-menu-item-dropdown {
|
|
357
|
-
--blue-sidebar-bg: #{darken($header-deep-bg, 12%)};
|
|
358
|
-
|
|
359
|
-
.blue-menu-item-dropdown {
|
|
360
|
-
--blue-sidebar-bg: #{darken($header-deep-bg, 16%)};
|
|
361
|
-
|
|
362
|
-
.blue-menu-item-dropdown {
|
|
363
|
-
--blue-sidebar-bg: #{darken($header-deep-bg, 20%)};
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
.blue-menu-item-dropdown-caret.blue-caret {
|
|
372
|
-
display: none;
|
|
373
|
-
position: absolute;
|
|
374
|
-
right: 1.5rem;
|
|
375
|
-
top: 50%;
|
|
376
|
-
transform: translateY(-50%);
|
|
377
|
-
align-items: center;
|
|
378
|
-
}
|
package/dist/styles/_mixins.scss
DELETED
package/dist/styles/_router.scss
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
body {
|
|
2
|
-
overflow: hidden;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.router-page {
|
|
6
|
-
/* This is nessesary, because scrolling on iOS devices would not be smooth without it */
|
|
7
|
-
-webkit-overflow-scrolling: touch;
|
|
8
|
-
|
|
9
|
-
overflow-y: auto;
|
|
10
|
-
overflow-x: hidden;
|
|
11
|
-
width: 100vw;
|
|
12
|
-
|
|
13
|
-
height: 100vh;
|
|
14
|
-
height: 100dvh;
|
|
15
|
-
|
|
16
|
-
&:not(.active) {
|
|
17
|
-
display: none;
|
|
18
|
-
}
|
|
19
|
-
}
|