blue-react 7.8.0-next.2 → 7.8.3

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/style.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Blue React v7.8.0-next.2 (https://bruegmann.github.io/blue-react)
2
+ * Blue React v7.8.3 (https://bruegmann.github.io/blue-react)
3
3
  * Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-react/blob/master/LICENSE).
4
4
  */
5
5
 
@@ -1,81 +1,81 @@
1
- .blue-app-actions-menu {
2
- .nav-link {
3
- position: relative;
4
- margin-left: 2px;
5
-
6
- background-color: var(--action-link-bg-color);
7
-
8
- &:hover {
9
- background-color: $bla-button-bg-hover;
10
- }
11
- }
12
- }
13
-
14
- .blue-app-actions {
15
- display: inline;
16
- transition: background-color 0.5s linear;
17
- position: absolute;
18
- left: 0;
19
- right: 0;
20
- top: 0;
21
- padding: 0;
22
- max-height: $normal-size;
23
- overflow: hidden;
24
-
25
- .blue-app-actions-menu {
26
- max-width: $normal-size;
27
- }
28
-
29
- &.open {
30
- left: -#{$normal-size};
31
- width: calc(100% + #{$normal-size});
32
- }
33
-
34
- .navbar-nav > li > a {
35
- animation: fadeInDown 0.5s;
36
- }
37
-
38
- &.none {
39
- @include actions(0px);
40
- }
41
-
42
- &.sm {
43
- @include actions(768px);
44
- }
45
-
46
- &.md {
47
- @include actions(992px);
48
- }
49
-
50
- &.lg {
51
- @include actions(1200px);
52
- }
53
-
54
- // Support for MenuItems
55
- .blue-app-sidebar-btn {
56
- width: auto;
57
- margin-top: 0;
58
- margin-bottom: 0;
59
- }
60
-
61
- .blue-app-sidebar-dropdown-toggle .blue-app-sidebar-label {
62
- margin-right: 2rem;
63
- }
64
-
65
- .blue-app-sidebar-label,
66
- .blue-app-sidebar-dropdown-caret.caret {
67
- display: initial;
68
- }
69
- }
70
-
71
- .blue-app-actions-menu-toggle {
72
- & > span:first-child {
73
- transform: rotate(90deg);
74
- }
75
- }
76
-
77
- .blue-app-actions-menu-item {
78
- display: flex;
79
- align-items: center;
80
- color: inherit;
81
- }
1
+ .blue-app-actions-menu {
2
+ .nav-link {
3
+ position: relative;
4
+ margin-left: 2px;
5
+
6
+ background-color: var(--action-link-bg-color);
7
+
8
+ &:hover {
9
+ background-color: $bla-button-bg-hover;
10
+ }
11
+ }
12
+ }
13
+
14
+ .blue-app-actions {
15
+ display: inline;
16
+ transition: background-color 0.5s linear;
17
+ position: absolute;
18
+ left: 0;
19
+ right: 0;
20
+ top: 0;
21
+ padding: 0;
22
+ max-height: $normal-size;
23
+ overflow: hidden;
24
+
25
+ .blue-app-actions-menu {
26
+ max-width: $normal-size;
27
+ }
28
+
29
+ &.open {
30
+ left: -#{$normal-size};
31
+ width: calc(100% + #{$normal-size});
32
+ }
33
+
34
+ .navbar-nav > li > a {
35
+ animation: fadeInDown 0.5s;
36
+ }
37
+
38
+ &.none {
39
+ @include actions(0px);
40
+ }
41
+
42
+ &.sm {
43
+ @include actions(768px);
44
+ }
45
+
46
+ &.md {
47
+ @include actions(992px);
48
+ }
49
+
50
+ &.lg {
51
+ @include actions(1200px);
52
+ }
53
+
54
+ // Support for MenuItems
55
+ .blue-app-sidebar-btn {
56
+ width: auto;
57
+ margin-top: 0;
58
+ margin-bottom: 0;
59
+ }
60
+
61
+ .blue-app-sidebar-dropdown-toggle .blue-app-sidebar-label {
62
+ margin-right: 2rem;
63
+ }
64
+
65
+ .blue-app-sidebar-label,
66
+ .blue-app-sidebar-dropdown-caret.caret {
67
+ display: initial;
68
+ }
69
+ }
70
+
71
+ .blue-app-actions-menu-toggle {
72
+ & > span:first-child {
73
+ transform: rotate(90deg);
74
+ }
75
+ }
76
+
77
+ .blue-app-actions-menu-item {
78
+ display: flex;
79
+ align-items: center;
80
+ color: inherit;
81
+ }
@@ -1,137 +1,137 @@
1
- $blue-actions-indicator-height: 2rem !default;
2
-
3
- .blue-actions {
4
- --sidebar-bg: transparent;
5
-
6
- display: flex;
7
- align-items: stretch;
8
- color: $header-color;
9
- position: fixed;
10
- right: 0.5rem;
11
- z-index: 41;
12
- transition: height 0.3s;
13
-
14
- .blue-app-sidebar-btn {
15
- color: $header-color;
16
-
17
- &:hover,
18
- &:active {
19
- background-color: $actions-control-bg-hover;
20
- }
21
- }
22
-
23
- &.closed {
24
- .blue-actions-featured {
25
- display: flex;
26
- }
27
-
28
- .blue-actions-indicator {
29
- padding-bottom: $spacer / 2;
30
- &::before {
31
- transform: rotate(45deg);
32
- -webkit-transform: rotate(45deg);
33
- }
34
- }
35
- }
36
-
37
- &.break-sm {
38
- @include actions-break(map-get($grid-breakpoints, "sm"));
39
- }
40
-
41
- &.break-md {
42
- @include actions-break(map-get($grid-breakpoints, "md"));
43
- }
44
-
45
- &.break-lg {
46
- @include actions-break(map-get($grid-breakpoints, "lg"));
47
- }
48
-
49
- &.break-xl {
50
- @include actions-break(map-get($grid-breakpoints, "xl"));
51
- }
52
- }
53
-
54
- .blue-actions-indicator {
55
- min-height: $blue-actions-indicator-height;
56
- display: flex;
57
- justify-content: center;
58
- align-items: center;
59
- cursor: pointer;
60
- position: relative;
61
-
62
- &::before {
63
- content: "";
64
- border: solid;
65
- border-width: 0 3px 3px 0;
66
- display: block;
67
- padding: 3px;
68
- margin: 0 $spacer;
69
-
70
- transform: rotate(-135deg);
71
- -webkit-transform: rotate(-135deg);
72
- }
73
- }
74
-
75
- .blue-actions-controls {
76
- .blue-app-sidebar-btn {
77
- width: 100%;
78
- }
79
-
80
- .blue-app-sidebar-label {
81
- display: inline-block;
82
- }
83
- }
84
-
85
- .blue-actions-featured {
86
- display: none;
87
- justify-content: center;
88
-
89
- > .fluent-btn {
90
- display: inline-flex;
91
- justify-content: center;
92
- }
93
-
94
- .blue-app-sidebar-btn {
95
- margin: 2px;
96
-
97
- &.has-label {
98
- width: auto;
99
-
100
- .blue-app-sidebar-label {
101
- display: inline-block;
102
- }
103
- }
104
- }
105
- }
106
-
107
- .has-actions {
108
- &.break-sm {
109
- @include has-actions(map-get($grid-breakpoints, "sm"));
110
- }
111
-
112
- &.break-md {
113
- @include has-actions(map-get($grid-breakpoints, "md"));
114
- }
115
-
116
- &.break-lg {
117
- @include has-actions(map-get($grid-breakpoints, "lg"));
118
- }
119
-
120
- &.break-xl {
121
- @include has-actions(map-get($grid-breakpoints, "xl"));
122
- }
123
- }
124
-
125
- .blue-app-page-wrapper:not(.hasHeader) {
126
- .blue-actions {
127
- background-color: $theme;
128
- @extend .mt-1 !optional;
129
- @extend .me-1 !optional;
130
- border-radius: $blue-actions-indicator-height / 2;
131
- box-shadow: $box-shadow;
132
-
133
- &.closed {
134
- @extend .ps-3 !optional;
135
- }
136
- }
137
- }
1
+ $blue-actions-indicator-height: 2rem !default;
2
+
3
+ .blue-actions {
4
+ --sidebar-bg: transparent;
5
+
6
+ display: flex;
7
+ align-items: stretch;
8
+ color: $header-color;
9
+ position: fixed;
10
+ right: 0.5rem;
11
+ z-index: 41;
12
+ transition: height 0.3s;
13
+
14
+ .blue-app-sidebar-btn {
15
+ color: $header-color;
16
+
17
+ &:hover,
18
+ &:active {
19
+ background-color: $actions-control-bg-hover;
20
+ }
21
+ }
22
+
23
+ &.closed {
24
+ .blue-actions-featured {
25
+ display: flex;
26
+ }
27
+
28
+ .blue-actions-indicator {
29
+ padding-bottom: $spacer / 2;
30
+ &::before {
31
+ transform: rotate(45deg);
32
+ -webkit-transform: rotate(45deg);
33
+ }
34
+ }
35
+ }
36
+
37
+ &.break-sm {
38
+ @include actions-break(map-get($grid-breakpoints, "sm"));
39
+ }
40
+
41
+ &.break-md {
42
+ @include actions-break(map-get($grid-breakpoints, "md"));
43
+ }
44
+
45
+ &.break-lg {
46
+ @include actions-break(map-get($grid-breakpoints, "lg"));
47
+ }
48
+
49
+ &.break-xl {
50
+ @include actions-break(map-get($grid-breakpoints, "xl"));
51
+ }
52
+ }
53
+
54
+ .blue-actions-indicator {
55
+ min-height: $blue-actions-indicator-height;
56
+ display: flex;
57
+ justify-content: center;
58
+ align-items: center;
59
+ cursor: pointer;
60
+ position: relative;
61
+
62
+ &::before {
63
+ content: "";
64
+ border: solid;
65
+ border-width: 0 3px 3px 0;
66
+ display: block;
67
+ padding: 3px;
68
+ margin: 0 $spacer;
69
+
70
+ transform: rotate(-135deg);
71
+ -webkit-transform: rotate(-135deg);
72
+ }
73
+ }
74
+
75
+ .blue-actions-controls {
76
+ .blue-app-sidebar-btn {
77
+ width: 100%;
78
+ }
79
+
80
+ .blue-app-sidebar-label {
81
+ display: inline-block;
82
+ }
83
+ }
84
+
85
+ .blue-actions-featured {
86
+ display: none;
87
+ justify-content: center;
88
+
89
+ > .fluent-btn {
90
+ display: inline-flex;
91
+ justify-content: center;
92
+ }
93
+
94
+ .blue-app-sidebar-btn {
95
+ margin: 2px;
96
+
97
+ &.has-label {
98
+ width: auto;
99
+
100
+ .blue-app-sidebar-label {
101
+ display: inline-block;
102
+ }
103
+ }
104
+ }
105
+ }
106
+
107
+ .has-actions {
108
+ &.break-sm {
109
+ @include has-actions(map-get($grid-breakpoints, "sm"));
110
+ }
111
+
112
+ &.break-md {
113
+ @include has-actions(map-get($grid-breakpoints, "md"));
114
+ }
115
+
116
+ &.break-lg {
117
+ @include has-actions(map-get($grid-breakpoints, "lg"));
118
+ }
119
+
120
+ &.break-xl {
121
+ @include has-actions(map-get($grid-breakpoints, "xl"));
122
+ }
123
+ }
124
+
125
+ .blue-app-page-wrapper:not(.hasHeader) {
126
+ .blue-actions {
127
+ background-color: $theme;
128
+ @extend .mt-1 !optional;
129
+ @extend .me-1 !optional;
130
+ border-radius: $blue-actions-indicator-height / 2;
131
+ box-shadow: $box-shadow;
132
+
133
+ &.closed {
134
+ @extend .ps-3 !optional;
135
+ }
136
+ }
137
+ }
@@ -1,73 +1,73 @@
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-app-sidebar-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
- }
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-app-sidebar-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
+ }
@@ -1,7 +1,7 @@
1
- @import "./mixins/_misc.scss";
2
- @import "./mixins/_sidebar.scss";
3
- @import "./mixins/action-menu.scss";
4
- @import "./mixins/_actions.scss";
5
- @import "./mixins/_switch.scss";
6
- @import "./mixins/custom-property.scss";
7
- @import "./mixins/scroll-shadow";
1
+ @import "./mixins/_misc.scss";
2
+ @import "./mixins/_sidebar.scss";
3
+ @import "./mixins/action-menu.scss";
4
+ @import "./mixins/_actions.scss";
5
+ @import "./mixins/_switch.scss";
6
+ @import "./mixins/custom-property.scss";
7
+ @import "./mixins/scroll-shadow";
@@ -1,30 +1,30 @@
1
- .ripple {
2
- position: relative;
3
- overflow: hidden;
4
- transform: translate3d(0, 0, 0);
5
- }
6
- .ripple:after {
7
- content: "";
8
- display: block;
9
- position: absolute;
10
- width: 100%;
11
- height: 100%;
12
- top: 0;
13
- left: 0;
14
- pointer-events: none;
15
- background-image: radial-gradient(
16
- circle,
17
- rgba(black, 0.7) 10%,
18
- transparent 10.01%
19
- );
20
- background-repeat: no-repeat;
21
- background-position: 50%;
22
- transform: scale(10, 10);
23
- opacity: 0;
24
- transition: transform 0.5s, opacity 1s;
25
- }
26
- .ripple:active:after {
27
- transform: scale(0, 0);
28
- opacity: 0.2;
29
- transition: 0s;
30
- }
1
+ .ripple {
2
+ position: relative;
3
+ overflow: hidden;
4
+ transform: translate3d(0, 0, 0);
5
+ }
6
+ .ripple:after {
7
+ content: "";
8
+ display: block;
9
+ position: absolute;
10
+ width: 100%;
11
+ height: 100%;
12
+ top: 0;
13
+ left: 0;
14
+ pointer-events: none;
15
+ background-image: radial-gradient(
16
+ circle,
17
+ rgba(black, 0.7) 10%,
18
+ transparent 10.01%
19
+ );
20
+ background-repeat: no-repeat;
21
+ background-position: 50%;
22
+ transform: scale(10, 10);
23
+ opacity: 0;
24
+ transition: transform 0.5s, opacity 1s;
25
+ }
26
+ .ripple:active:after {
27
+ transform: scale(0, 0);
28
+ opacity: 0.2;
29
+ transition: 0s;
30
+ }
@@ -57,5 +57,5 @@
57
57
  }
58
58
 
59
59
  .blue-app-search.blue-app-search-sidebar:not(:hover):not(.focus) {
60
- opacity: 0.5;
60
+ opacity: 0.7;
61
61
  }