blue-web 1.14.2 → 1.14.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/merged.scss +7 -1
- package/dist/style.css +6 -3
- package/dist/style.css.map +1 -1
- package/dist/style.min.css +3 -3
- package/dist/style.scss +1 -1
- package/dist/styles/_tabs.scss +6 -0
- package/package.json +1 -1
package/dist/merged.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Blue Web v1.14.
|
|
2
|
+
* Blue Web v1.14.3 (https://bruegmann.github.io/blue-web)
|
|
3
3
|
* Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-web/blob/master/LICENSE).
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -11858,10 +11858,16 @@ body {
|
|
|
11858
11858
|
}
|
|
11859
11859
|
|
|
11860
11860
|
.blue-tab {
|
|
11861
|
+
// Unsetting to solve issues in Safari
|
|
11862
|
+
width: unset;
|
|
11863
|
+
height: unset;
|
|
11864
|
+
border-radius: unset;
|
|
11865
|
+
|
|
11861
11866
|
position: relative;
|
|
11862
11867
|
order: 0;
|
|
11863
11868
|
cursor: pointer;
|
|
11864
11869
|
user-select: none;
|
|
11870
|
+
-webkit-appearance: none;
|
|
11865
11871
|
appearance: none;
|
|
11866
11872
|
}
|
|
11867
11873
|
|