@enso-ui/themes 3.0.8 → 3.0.12
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/bulma/dark/enso.scss +5 -0
- package/bulma/dark-rtl.lazy.scss +1 -1
- package/bulma/dark.lazy.scss +1 -1
- package/bulma/enso.scss +86 -0
- package/bulma/light-rtl.lazy.scss +1 -1
- package/bulma/light.lazy.scss +1 -1
- package/package.json +4 -3
- package/src/bulma/register.js +1 -1
package/bulma/dark/enso.scss
CHANGED
package/bulma/dark-rtl.lazy.scss
CHANGED
package/bulma/dark.lazy.scss
CHANGED
package/bulma/enso.scss
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
@import 'v-tooltip/dist/v-tooltip';
|
|
2
|
+
|
|
3
|
+
[v-cloak] {
|
|
4
|
+
display: none;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
*:focus {
|
|
8
|
+
outline:0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@media screen and (max-width: 769px) {
|
|
12
|
+
.columns.is-reverse-mobile {
|
|
13
|
+
flex-direction: column-reverse;
|
|
14
|
+
display: flex;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.mx-a {
|
|
19
|
+
margin-left: auto;
|
|
20
|
+
margin-right: auto;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.is-bold {
|
|
24
|
+
font-weight: bold;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.is-clickable {
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.has-text-muted {
|
|
32
|
+
opacity: 0.7;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.is-naked {
|
|
36
|
+
opacity: 0.6;
|
|
37
|
+
transition: opacity ease 0.3s;
|
|
38
|
+
&:hover {
|
|
39
|
+
opacity: 1;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
a.is-naked {
|
|
44
|
+
color: inherit;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.button.is-naked {
|
|
48
|
+
background: 0;
|
|
49
|
+
border: none;
|
|
50
|
+
&:focus {
|
|
51
|
+
box-shadow: unset;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.is-raised {
|
|
56
|
+
-webkit-box-shadow: 0 0.25em 0.3em 0.15em rgba(42,51,83,.35);
|
|
57
|
+
box-shadow: 0 0.25em 0.3em 0.15em rgba(42,51,83,.35);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.raises-on-hover {
|
|
61
|
+
transition: box-shadow 0.3s ease-in-out;
|
|
62
|
+
|
|
63
|
+
&:hover {
|
|
64
|
+
-webkit-box-shadow: 0 0.1em 0.3em 0.2em rgba(42,51,83,.35);
|
|
65
|
+
box-shadow: 0 0.1em 0.3em 0.2em rgba(42,51,83,.35);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.no-scrollbars {
|
|
70
|
+
-ms-overflow-style: none;
|
|
71
|
+
overflow: -moz-scrollbars-none;
|
|
72
|
+
|
|
73
|
+
&::-webkit-scrollbar {
|
|
74
|
+
display: none;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.is-hoverable-item:hover {
|
|
79
|
+
background-color: $light;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.form-box {
|
|
83
|
+
position: relative;
|
|
84
|
+
z-index: 2;
|
|
85
|
+
overflow: visible;
|
|
86
|
+
}
|
package/bulma/light.lazy.scss
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enso-ui/themes",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.12",
|
|
4
4
|
"description": "Enso UI Themes",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,11 +22,12 @@
|
|
|
22
22
|
"homepage": "https://github.com/enso-ui/themes#readme",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@fortawesome/fontawesome-svg-core": "^1.2.2",
|
|
25
|
-
"@fortawesome/free-solid-svg-icons": "^5.2
|
|
25
|
+
"@fortawesome/free-solid-svg-icons": "^5.11.2",
|
|
26
26
|
"@fortawesome/vue-fontawesome": "3.0.0-5",
|
|
27
27
|
"bulma": "^0.9.0",
|
|
28
28
|
"bulma-extensions": "^6.0.0",
|
|
29
|
-
"flatpickr": "^4.5.0"
|
|
29
|
+
"flatpickr": "^4.5.0",
|
|
30
|
+
"vuex": "^4.0.0"
|
|
30
31
|
},
|
|
31
32
|
"devDependencies": {
|
|
32
33
|
"@vue/cli-plugin-babel": "5.0.0-beta.6",
|
package/src/bulma/register.js
CHANGED