blue-react 9.5.3 → 9.6.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 +8 -10
- package/dist/style.css +14 -24
- package/dist/style.min.css +3 -3
- package/dist/style.scss +1 -1
- package/dist/styles/_general.scss +2 -20
- package/dist/styles/_layout.scss +3 -13
- package/dist/styles/_variables.scss +0 -3
- package/dist/styles/mixins/_sidebar.scss +1 -1
- package/package.json +1 -1
package/dist/style.scss
CHANGED
|
@@ -95,24 +95,6 @@ body {
|
|
|
95
95
|
border-bottom: 0.25rem solid var(--blue-page-header-border-color, $table-border-color);
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
// .dark-area {
|
|
99
|
-
// background-color: $gray-900;
|
|
100
|
-
// color: #fff;
|
|
101
|
-
|
|
102
|
-
// a:not(.btn) {
|
|
103
|
-
// color: lighten($link-color, 15%);
|
|
104
|
-
|
|
105
|
-
// &:hover,
|
|
106
|
-
// &:focus {
|
|
107
|
-
// color: lighten($link-color, 30%);
|
|
108
|
-
// }
|
|
109
|
-
// }
|
|
110
|
-
// }
|
|
111
|
-
|
|
112
|
-
// .alert-dismissible .close {
|
|
113
|
-
// top: -0.375rem;
|
|
114
|
-
// }
|
|
115
|
-
|
|
116
98
|
.blue-wrapper {
|
|
117
99
|
z-index: 3 !important;
|
|
118
100
|
|
|
@@ -122,7 +104,7 @@ body {
|
|
|
122
104
|
}
|
|
123
105
|
|
|
124
106
|
@media screen and (max-width: 768px) {
|
|
125
|
-
.blue-header-extension .blue-header-
|
|
107
|
+
.blue-header-extension .blue-header-title-labels:not(.keep) {
|
|
126
108
|
display: none;
|
|
127
109
|
}
|
|
128
110
|
}
|
|
@@ -146,7 +128,7 @@ body {
|
|
|
146
128
|
width: $bla-sidebar-width;
|
|
147
129
|
}
|
|
148
130
|
|
|
149
|
-
.blue-header-
|
|
131
|
+
.blue-header-title.sidebar {
|
|
150
132
|
width: $bla-sidebar-width;
|
|
151
133
|
padding-left: calc(#{$normal-size} + #{$spacer});
|
|
152
134
|
transform: translateX(-100%);
|
package/dist/styles/_layout.scss
CHANGED
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
-
.blue-layout .blue-header-
|
|
191
|
+
.blue-layout .blue-header-title {
|
|
192
192
|
padding-left: $spacer;
|
|
193
193
|
}
|
|
194
194
|
}
|
|
@@ -241,16 +241,7 @@
|
|
|
241
241
|
}
|
|
242
242
|
}
|
|
243
243
|
|
|
244
|
-
.blue-header-
|
|
245
|
-
padding: 0.625rem 0.938rem;
|
|
246
|
-
margin: 0;
|
|
247
|
-
cursor: default;
|
|
248
|
-
display: inline-block;
|
|
249
|
-
font-weight: 400;
|
|
250
|
-
font-size: $bla-header-logo-font-size;
|
|
251
|
-
position: absolute;
|
|
252
|
-
z-index: 1;
|
|
253
|
-
|
|
244
|
+
.blue-header-title {
|
|
254
245
|
a {
|
|
255
246
|
color: inherit;
|
|
256
247
|
|
|
@@ -260,10 +251,9 @@
|
|
|
260
251
|
}
|
|
261
252
|
}
|
|
262
253
|
|
|
263
|
-
.blue-header-
|
|
254
|
+
.blue-header-title-image {
|
|
264
255
|
width: 2rem;
|
|
265
256
|
height: 2rem;
|
|
266
|
-
margin-top: -0.25rem;
|
|
267
257
|
}
|
|
268
258
|
|
|
269
259
|
.blue-menu-item {
|
|
@@ -44,9 +44,6 @@ $bla-button-bg-hover: rgba(white, 0.25) !default;
|
|
|
44
44
|
// Font size for sidebar menu items.
|
|
45
45
|
$bla-btn-font-size: 1em !default;
|
|
46
46
|
|
|
47
|
-
// Font size for app title on the header.
|
|
48
|
-
$bla-header-logo-font-size: 1.5rem !default;
|
|
49
|
-
|
|
50
47
|
// Padding for action menu items.
|
|
51
48
|
$bla-header-nav-padding: 0.75rem !default;
|
|
52
49
|
|